RTEMS 4.11
Annotated Report
Sat Oct 9 13:18:04 2010

ffc0d960 <IMFS_Set_handlers>:                                         
{                                                                     
  IMFS_jnode_t    *node = loc->node_access;                           
  IMFS_fs_info_t  *fs_info;                                           
                                                                      
  fs_info = loc->mt_entry->fs_info;                                   
  switch( node->type ) {                                              
ffc0d960:	81 63 00 00 	lwz     r11,0(r3)                              
)                                                                     
{                                                                     
  IMFS_jnode_t    *node = loc->node_access;                           
  IMFS_fs_info_t  *fs_info;                                           
                                                                      
  fs_info = loc->mt_entry->fs_info;                                   
ffc0d964:	81 23 00 10 	lwz     r9,16(r3)                              
  switch( node->type ) {                                              
ffc0d968:	80 0b 00 4c 	lwz     r0,76(r11)                             
)                                                                     
{                                                                     
  IMFS_jnode_t    *node = loc->node_access;                           
  IMFS_fs_info_t  *fs_info;                                           
                                                                      
  fs_info = loc->mt_entry->fs_info;                                   
ffc0d96c:	81 29 00 34 	lwz     r9,52(r9)                              
  switch( node->type ) {                                              
ffc0d970:	2b 80 00 07 	cmplwi  cr7,r0,7                               
ffc0d974:	41 9d 00 28 	bgt-    cr7,ffc0d99c <IMFS_Set_handlers+0x3c>  <== NEVER TAKEN
ffc0d978:	3d 60 ff c2 	lis     r11,-62                                
ffc0d97c:	39 6b 8e 54 	addi    r11,r11,-29100                         
ffc0d980:	54 00 10 3a 	rlwinm  r0,r0,2,0,29                           
ffc0d984:	7c 0b 00 2e 	lwzx    r0,r11,r0                              
ffc0d988:	7d 60 5a 14 	add     r11,r0,r11                             
ffc0d98c:	7d 69 03 a6 	mtctr   r11                                    
ffc0d990:	4e 80 04 20 	bctr                                           
    case IMFS_DIRECTORY:                                              
      loc->handlers = fs_info->directory_handlers;                    
ffc0d994:	80 09 00 0c 	lwz     r0,12(r9)                              
ffc0d998:	90 03 00 08 	stw     r0,8(r3)                               
      loc->handlers = fs_info->fifo_handlers;                         
      break;                                                          
  }                                                                   
                                                                      
  return 0;                                                           
}                                                                     
ffc0d99c:	38 60 00 00 	li      r3,0                                   
ffc0d9a0:	4e 80 00 20 	blr                                            
      break;                                                          
    case IMFS_LINEAR_FILE:                                            
      loc->handlers = fs_info->memfile_handlers;                      
      break;                                                          
    case IMFS_MEMORY_FILE:                                            
      loc->handlers = fs_info->memfile_handlers;                      
ffc0d9a4:	80 09 00 08 	lwz     r0,8(r9)                               
ffc0d9a8:	90 03 00 08 	stw     r0,8(r3)                               
      loc->handlers = fs_info->fifo_handlers;                         
      break;                                                          
  }                                                                   
                                                                      
  return 0;                                                           
}                                                                     
ffc0d9ac:	38 60 00 00 	li      r3,0                                   
ffc0d9b0:	4e 80 00 20 	blr                                            
    case IMFS_DEVICE:                                                 
      loc->handlers = &IMFS_device_handlers;                          
      break;                                                          
    case IMFS_SYM_LINK:                                               
    case IMFS_HARD_LINK:                                              
      loc->handlers = &IMFS_link_handlers;                            
ffc0d9b4:	3d 20 ff c2 	lis     r9,-62                                 
ffc0d9b8:	38 09 8e f4 	addi    r0,r9,-28940                           
ffc0d9bc:	90 03 00 08 	stw     r0,8(r3)                               
      loc->handlers = fs_info->fifo_handlers;                         
      break;                                                          
  }                                                                   
                                                                      
  return 0;                                                           
}                                                                     
ffc0d9c0:	38 60 00 00 	li      r3,0                                   
ffc0d9c4:	4e 80 00 20 	blr                                            
      break;                                                          
    case IMFS_MEMORY_FILE:                                            
      loc->handlers = fs_info->memfile_handlers;                      
      break;                                                          
    case IMFS_FIFO:                                                   
      loc->handlers = fs_info->fifo_handlers;                         
ffc0d9c8:	80 09 00 10 	lwz     r0,16(r9)                              
ffc0d9cc:	90 03 00 08 	stw     r0,8(r3)                               
      break;                                                          
  }                                                                   
                                                                      
  return 0;                                                           
}                                                                     
ffc0d9d0:	38 60 00 00 	li      r3,0                                   
ffc0d9d4:	4e 80 00 20 	blr                                            
  switch( node->type ) {                                              
    case IMFS_DIRECTORY:                                              
      loc->handlers = fs_info->directory_handlers;                    
      break;                                                          
    case IMFS_DEVICE:                                                 
      loc->handlers = &IMFS_device_handlers;                          
ffc0d9d8:	3d 20 ff c2 	lis     r9,-62                                 
ffc0d9dc:	38 09 8e 84 	addi    r0,r9,-29052                           
ffc0d9e0:	90 03 00 08 	stw     r0,8(r3)                               
      loc->handlers = fs_info->fifo_handlers;                         
      break;                                                          
  }                                                                   
                                                                      
  return 0;                                                           
}                                                                     
ffc0d9e4:	38 60 00 00 	li      r3,0                                   
ffc0d9e8:	4e 80 00 20 	blr                                            
                                                                      

ffc0d750 <IMFS_create_node>: IMFS_jnode_types_t type, const char *name, mode_t mode, const IMFS_types_union *info ) {
ffc0d750:	7d 80 00 26 	mfcr    r12                                    
  IMFS_fs_info_t      *fs_info;                                       
                                                                      
  /*                                                                  
   *  MUST have a parent node to call this routine.                   
   */                                                                 
  if ( parent_loc == NULL )                                           
ffc0d754:	7c 69 1b 79 	mr.     r9,r3                                  
  IMFS_jnode_types_t                type,                             
  const char                       *name,                             
  mode_t                            mode,                             
  const IMFS_types_union           *info                              
)                                                                     
{                                                                     
ffc0d758:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc0d75c:	7c 08 02 a6 	mflr    r0                                     
ffc0d760:	93 61 00 0c 	stw     r27,12(r1)                             
                                                                      
  /*                                                                  
   *  MUST have a parent node to call this routine.                   
   */                                                                 
  if ( parent_loc == NULL )                                           
    return NULL;                                                      
ffc0d764:	3b 60 00 00 	li      r27,0                                  
  IMFS_jnode_types_t                type,                             
  const char                       *name,                             
  mode_t                            mode,                             
  const IMFS_types_union           *info                              
)                                                                     
{                                                                     
ffc0d768:	93 81 00 10 	stw     r28,16(r1)                             
ffc0d76c:	7c fc 3b 78 	mr      r28,r7                                 
ffc0d770:	93 e1 00 1c 	stw     r31,28(r1)                             
ffc0d774:	7c 9f 23 78 	mr      r31,r4                                 
ffc0d778:	90 01 00 24 	stw     r0,36(r1)                              
ffc0d77c:	93 a1 00 14 	stw     r29,20(r1)                             
ffc0d780:	93 c1 00 18 	stw     r30,24(r1)                             
ffc0d784:	91 81 00 08 	stw     r12,8(r1)                              
  IMFS_fs_info_t      *fs_info;                                       
                                                                      
  /*                                                                  
   *  MUST have a parent node to call this routine.                   
   */                                                                 
  if ( parent_loc == NULL )                                           
ffc0d788:	41 82 00 b4 	beq-    ffc0d83c <IMFS_create_node+0xec>       <== NEVER TAKEN
  fs_info = parent_loc->mt_entry->fs_info;                            
                                                                      
  /*                                                                  
   *  Reject creation of FIFOs if support is disabled.                
   */                                                                 
  if ( type == IMFS_FIFO &&                                           
ffc0d78c:	2e 04 00 07 	cmpwi   cr4,r4,7                               
   */                                                                 
  if ( parent_loc == NULL )                                           
    return NULL;                                                      
                                                                      
  parent = parent_loc->node_access;                                   
  fs_info = parent_loc->mt_entry->fs_info;                            
ffc0d790:	81 69 00 10 	lwz     r11,16(r9)                             
   *  MUST have a parent node to call this routine.                   
   */                                                                 
  if ( parent_loc == NULL )                                           
    return NULL;                                                      
                                                                      
  parent = parent_loc->node_access;                                   
ffc0d794:	83 a9 00 00 	lwz     r29,0(r9)                              
  fs_info = parent_loc->mt_entry->fs_info;                            
ffc0d798:	83 cb 00 34 	lwz     r30,52(r11)                            
                                                                      
  /*                                                                  
   *  Reject creation of FIFOs if support is disabled.                
   */                                                                 
  if ( type == IMFS_FIFO &&                                           
ffc0d79c:	41 92 00 d0 	beq-    cr4,ffc0d86c <IMFS_create_node+0x11c>  
    return NULL;                                                      
                                                                      
  /*                                                                  
   *  Allocate filesystem node and fill in basic information          
   */                                                                 
  node  = IMFS_allocate_node( type, name, mode & ~rtems_filesystem_umask );
ffc0d7a0:	3d 20 00 00 	lis     r9,0                                   
ffc0d7a4:	81 29 26 9c 	lwz     r9,9884(r9)                            
ffc0d7a8:	7c a4 2b 78 	mr      r4,r5                                  
ffc0d7ac:	7f e3 fb 78 	mr      r3,r31                                 
ffc0d7b0:	80 09 00 2c 	lwz     r0,44(r9)                              
ffc0d7b4:	7c c5 00 78 	andc    r5,r6,r0                               
ffc0d7b8:	4b ff fe f1 	bl      ffc0d6a8 <IMFS_allocate_node>          
  if ( !node )                                                        
ffc0d7bc:	7c 7b 1b 79 	mr.     r27,r3                                 
ffc0d7c0:	41 82 00 7c 	beq-    ffc0d83c <IMFS_create_node+0xec>       
    return NULL;                                                      
                                                                      
  /*                                                                  
   *  Set the type specific information                               
   */                                                                 
  if ( type == IMFS_DIRECTORY ) {                                     
ffc0d7c4:	2f 9f 00 01 	cmpwi   cr7,r31,1                              
ffc0d7c8:	41 9e 00 3c 	beq-    cr7,ffc0d804 <IMFS_create_node+0xb4>   
    rtems_chain_initialize_empty(&node->info.directory.Entries);      
  } else if ( type == IMFS_HARD_LINK ) {                              
ffc0d7cc:	2f 9f 00 03 	cmpwi   cr7,r31,3                              
ffc0d7d0:	41 9e 00 f4 	beq-    cr7,ffc0d8c4 <IMFS_create_node+0x174>  
    node->info.hard_link.link_node = info->hard_link.link_node;       
  } else if ( type == IMFS_SYM_LINK ) {                               
ffc0d7d4:	2f 9f 00 04 	cmpwi   cr7,r31,4                              
ffc0d7d8:	41 9e 00 ec 	beq-    cr7,ffc0d8c4 <IMFS_create_node+0x174>  
    node->info.sym_link.name = info->sym_link.name;                   
  } else if ( type == IMFS_DEVICE ) {                                 
ffc0d7dc:	2f 9f 00 02 	cmpwi   cr7,r31,2                              
ffc0d7e0:	41 9e 00 d0 	beq-    cr7,ffc0d8b0 <IMFS_create_node+0x160>  
    node->info.device.major = info->device.major;                     
    node->info.device.minor = info->device.minor;                     
  } else if ( type == IMFS_LINEAR_FILE ) {                            
ffc0d7e4:	2f 9f 00 06 	cmpwi   cr7,r31,6                              
ffc0d7e8:	41 9e 00 e8 	beq-    cr7,ffc0d8d0 <IMFS_create_node+0x180>  
    node->info.linearfile.size      = 0;                              
    node->info.linearfile.direct    = 0;                              
  } else if ( type == IMFS_MEMORY_FILE ) {                            
ffc0d7ec:	2f 9f 00 05 	cmpwi   cr7,r31,5                              
ffc0d7f0:	41 9e 00 fc 	beq-    cr7,ffc0d8ec <IMFS_create_node+0x19c>  
      node->info.file.size            = 0;                            
      node->info.file.indirect        = 0;                            
      node->info.file.doubly_indirect = 0;                            
      node->info.file.triply_indirect = 0;                            
  } else if ( type == IMFS_FIFO ) {                                   
ffc0d7f4:	40 b2 00 28 	bne+    cr4,ffc0d81c <IMFS_create_node+0xcc>   <== NEVER TAKEN
    node->info.fifo.pipe = NULL;                                      
ffc0d7f8:	38 00 00 00 	li      r0,0                                   
ffc0d7fc:	90 1b 00 50 	stw     r0,80(r27)                             
ffc0d800:	48 00 00 1c 	b       ffc0d81c <IMFS_create_node+0xcc>       
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc0d804:	39 3b 00 54 	addi    r9,r27,84                              
                                                                      
  /*                                                                  
   *  Set the type specific information                               
   */                                                                 
  if ( type == IMFS_DIRECTORY ) {                                     
    rtems_chain_initialize_empty(&node->info.directory.Entries);      
ffc0d808:	38 1b 00 50 	addi    r0,r27,80                              
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
ffc0d80c:	91 3b 00 50 	stw     r9,80(r27)                             
  the_chain->permanent_null = NULL;                                   
ffc0d810:	39 20 00 00 	li      r9,0                                   
ffc0d814:	91 3b 00 54 	stw     r9,84(r27)                             
  the_chain->last           = _Chain_Head(the_chain);                 
ffc0d818:	90 1b 00 58 	stw     r0,88(r27)                             
                                                                      
  /*                                                                  
   *  This node MUST have a parent, so put it in that directory list. 
   */                                                                 
  node->Parent = parent;                                              
  node->st_ino = ++fs_info->ino_count;                                
ffc0d81c:	81 3e 00 04 	lwz     r9,4(r30)                              
ffc0d820:	38 7d 00 50 	addi    r3,r29,80                              
  }                                                                   
                                                                      
  /*                                                                  
   *  This node MUST have a parent, so put it in that directory list. 
   */                                                                 
  node->Parent = parent;                                              
ffc0d824:	93 bb 00 08 	stw     r29,8(r27)                             
ffc0d828:	7f 64 db 78 	mr      r4,r27                                 
  node->st_ino = ++fs_info->ino_count;                                
ffc0d82c:	38 09 00 01 	addi    r0,r9,1                                
ffc0d830:	90 1e 00 04 	stw     r0,4(r30)                              
ffc0d834:	90 1b 00 38 	stw     r0,56(r27)                             
ffc0d838:	4b ff c4 1d 	bl      ffc09c54 <_Chain_Append>               
                                                                      
  rtems_chain_append( &parent->info.directory.Entries, &node->Node ); 
                                                                      
  return node;                                                        
}                                                                     
ffc0d83c:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0d840:	7f 63 db 78 	mr      r3,r27                                 
ffc0d844:	81 81 00 08 	lwz     r12,8(r1)                              
ffc0d848:	7c 08 03 a6 	mtlr    r0                                     
ffc0d84c:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc0d850:	83 81 00 10 	lwz     r28,16(r1)                             
ffc0d854:	7d 80 81 20 	mtcrf   8,r12                                  
ffc0d858:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc0d85c:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0d860:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0d864:	38 21 00 20 	addi    r1,r1,32                               
ffc0d868:	4e 80 00 20 	blr                                            
  fs_info = parent_loc->mt_entry->fs_info;                            
                                                                      
  /*                                                                  
   *  Reject creation of FIFOs if support is disabled.                
   */                                                                 
  if ( type == IMFS_FIFO &&                                           
ffc0d86c:	81 3e 00 10 	lwz     r9,16(r30)                             
ffc0d870:	3d 60 ff c2 	lis     r11,-62                                
ffc0d874:	38 0b 8d ec 	addi    r0,r11,-29204                          
ffc0d878:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc0d87c:	40 be ff 24 	bne-    cr7,ffc0d7a0 <IMFS_create_node+0x50>   
  node->st_ino = ++fs_info->ino_count;                                
                                                                      
  rtems_chain_append( &parent->info.directory.Entries, &node->Node ); 
                                                                      
  return node;                                                        
}                                                                     
ffc0d880:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0d884:	7f 63 db 78 	mr      r3,r27                                 
ffc0d888:	81 81 00 08 	lwz     r12,8(r1)                              
ffc0d88c:	7c 08 03 a6 	mtlr    r0                                     
ffc0d890:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc0d894:	83 81 00 10 	lwz     r28,16(r1)                             
ffc0d898:	7d 80 81 20 	mtcrf   8,r12                                  
ffc0d89c:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc0d8a0:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0d8a4:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0d8a8:	38 21 00 20 	addi    r1,r1,32                               
ffc0d8ac:	4e 80 00 20 	blr                                            
  } else if ( type == IMFS_HARD_LINK ) {                              
    node->info.hard_link.link_node = info->hard_link.link_node;       
  } else if ( type == IMFS_SYM_LINK ) {                               
    node->info.sym_link.name = info->sym_link.name;                   
  } else if ( type == IMFS_DEVICE ) {                                 
    node->info.device.major = info->device.major;                     
ffc0d8b0:	81 3c 00 00 	lwz     r9,0(r28)                              
    node->info.device.minor = info->device.minor;                     
ffc0d8b4:	80 1c 00 04 	lwz     r0,4(r28)                              
  } else if ( type == IMFS_HARD_LINK ) {                              
    node->info.hard_link.link_node = info->hard_link.link_node;       
  } else if ( type == IMFS_SYM_LINK ) {                               
    node->info.sym_link.name = info->sym_link.name;                   
  } else if ( type == IMFS_DEVICE ) {                                 
    node->info.device.major = info->device.major;                     
ffc0d8b8:	91 3b 00 50 	stw     r9,80(r27)                             
    node->info.device.minor = info->device.minor;                     
ffc0d8bc:	90 1b 00 54 	stw     r0,84(r27)                             
ffc0d8c0:	4b ff ff 5c 	b       ffc0d81c <IMFS_create_node+0xcc>       
  if ( type == IMFS_DIRECTORY ) {                                     
    rtems_chain_initialize_empty(&node->info.directory.Entries);      
  } else if ( type == IMFS_HARD_LINK ) {                              
    node->info.hard_link.link_node = info->hard_link.link_node;       
  } else if ( type == IMFS_SYM_LINK ) {                               
    node->info.sym_link.name = info->sym_link.name;                   
ffc0d8c4:	80 1c 00 00 	lwz     r0,0(r28)                              
ffc0d8c8:	90 1b 00 50 	stw     r0,80(r27)                             
ffc0d8cc:	4b ff ff 50 	b       ffc0d81c <IMFS_create_node+0xcc>       
  } else if ( type == IMFS_DEVICE ) {                                 
    node->info.device.major = info->device.major;                     
    node->info.device.minor = info->device.minor;                     
  } else if ( type == IMFS_LINEAR_FILE ) {                            
    node->info.linearfile.size      = 0;                              
ffc0d8d0:	39 20 00 00 	li      r9,0                                   
ffc0d8d4:	39 40 00 00 	li      r10,0                                  
ffc0d8d8:	91 3b 00 50 	stw     r9,80(r27)                             
    node->info.linearfile.direct    = 0;                              
ffc0d8dc:	38 00 00 00 	li      r0,0                                   
    node->info.sym_link.name = info->sym_link.name;                   
  } else if ( type == IMFS_DEVICE ) {                                 
    node->info.device.major = info->device.major;                     
    node->info.device.minor = info->device.minor;                     
  } else if ( type == IMFS_LINEAR_FILE ) {                            
    node->info.linearfile.size      = 0;                              
ffc0d8e0:	91 5b 00 54 	stw     r10,84(r27)                            
    node->info.linearfile.direct    = 0;                              
ffc0d8e4:	90 1b 00 58 	stw     r0,88(r27)                             
ffc0d8e8:	4b ff ff 34 	b       ffc0d81c <IMFS_create_node+0xcc>       
  } else if ( type == IMFS_MEMORY_FILE ) {                            
      node->info.file.size            = 0;                            
      node->info.file.indirect        = 0;                            
ffc0d8ec:	38 00 00 00 	li      r0,0                                   
    node->info.device.minor = info->device.minor;                     
  } else if ( type == IMFS_LINEAR_FILE ) {                            
    node->info.linearfile.size      = 0;                              
    node->info.linearfile.direct    = 0;                              
  } else if ( type == IMFS_MEMORY_FILE ) {                            
      node->info.file.size            = 0;                            
ffc0d8f0:	39 20 00 00 	li      r9,0                                   
      node->info.file.indirect        = 0;                            
ffc0d8f4:	90 1b 00 58 	stw     r0,88(r27)                             
    node->info.device.minor = info->device.minor;                     
  } else if ( type == IMFS_LINEAR_FILE ) {                            
    node->info.linearfile.size      = 0;                              
    node->info.linearfile.direct    = 0;                              
  } else if ( type == IMFS_MEMORY_FILE ) {                            
      node->info.file.size            = 0;                            
ffc0d8f8:	39 40 00 00 	li      r10,0                                  
ffc0d8fc:	91 3b 00 50 	stw     r9,80(r27)                             
ffc0d900:	91 5b 00 54 	stw     r10,84(r27)                            
      node->info.file.indirect        = 0;                            
      node->info.file.doubly_indirect = 0;                            
ffc0d904:	90 1b 00 5c 	stw     r0,92(r27)                             
      node->info.file.triply_indirect = 0;                            
ffc0d908:	90 1b 00 60 	stw     r0,96(r27)                             
ffc0d90c:	4b ff ff 10 	b       ffc0d81c <IMFS_create_node+0xcc>       
                                                                      

ffc07570 <IMFS_dump_directory>: */ void IMFS_dump_directory( IMFS_jnode_t *the_directory, int level ) {
ffc07570:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc07574:	7d 80 00 26 	mfcr    r12                                    
ffc07578:	7c 08 02 a6 	mflr    r0                                     
ffc0757c:	93 41 00 18 	stw     r26,24(r1)                             
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc07580:	3b 43 00 54 	addi    r26,r3,84                              
ffc07584:	93 a1 00 24 	stw     r29,36(r1)                             
ffc07588:	7c 9d 23 78 	mr      r29,r4                                 
ffc0758c:	90 01 00 34 	stw     r0,52(r1)                              
ffc07590:	93 01 00 10 	stw     r24,16(r1)                             
ffc07594:	93 21 00 14 	stw     r25,20(r1)                             
ffc07598:	93 61 00 1c 	stw     r27,28(r1)                             
ffc0759c:	93 81 00 20 	stw     r28,32(r1)                             
ffc075a0:	93 c1 00 28 	stw     r30,40(r1)                             
ffc075a4:	93 e1 00 2c 	stw     r31,44(r1)                             
ffc075a8:	91 81 00 0c 	stw     r12,12(r1)                             
  IMFS_assert( level >= 0 );                                          
  IMFS_assert( the_directory->type == IMFS_DIRECTORY );               
                                                                      
  the_chain = &the_directory->info.directory.Entries;                 
                                                                      
  for ( the_node = the_chain->first;                                  
ffc075ac:	83 63 00 50 	lwz     r27,80(r3)                             
ffc075b0:	7f 9b d0 00 	cmpw    cr7,r27,r26                            
ffc075b4:	41 9e 00 68 	beq-    cr7,ffc0761c <IMFS_dump_directory+0xac>
ffc075b8:	2e 04 00 00 	cmpwi   cr4,r4,0                               
ffc075bc:	3f 80 ff c3 	lis     r28,-61                                
ffc075c0:	3b 9c 90 c0 	addi    r28,r28,-28480                         
ffc075c4:	3f 20 00 00 	lis     r25,0                                  
                                                                      
    for ( i=0 ; i<=level ; i++ )                                      
      fprintf(stdout, "...." );                                       
    IMFS_print_jnode( the_jnode );                                    
    if ( the_jnode->type == IMFS_DIRECTORY )                          
      IMFS_dump_directory( the_jnode, level + 1 );                    
ffc075c8:	3b 04 00 01 	addi    r24,r4,1                               
        !rtems_chain_is_tail( the_chain, the_node );                  
        the_node = the_node->next ) {                                 
                                                                      
    the_jnode = (IMFS_jnode_t *) the_node;                            
                                                                      
    for ( i=0 ; i<=level ; i++ )                                      
ffc075cc:	41 90 00 30 	blt-    cr4,ffc075fc <IMFS_dump_directory+0x8c><== NEVER TAKEN
ffc075d0:	3b e0 00 00 	li      r31,0                                  
ffc075d4:	3b d9 26 ec 	addi    r30,r25,9964                           
      fprintf(stdout, "...." );                                       
ffc075d8:	81 3e 00 00 	lwz     r9,0(r30)                              
ffc075dc:	7f 83 e3 78 	mr      r3,r28                                 
ffc075e0:	38 80 00 01 	li      r4,1                                   
ffc075e4:	80 c9 00 08 	lwz     r6,8(r9)                               
ffc075e8:	38 a0 00 04 	li      r5,4                                   
        !rtems_chain_is_tail( the_chain, the_node );                  
        the_node = the_node->next ) {                                 
                                                                      
    the_jnode = (IMFS_jnode_t *) the_node;                            
                                                                      
    for ( i=0 ; i<=level ; i++ )                                      
ffc075ec:	3b ff 00 01 	addi    r31,r31,1                              
      fprintf(stdout, "...." );                                       
ffc075f0:	48 01 15 39 	bl      ffc18b28 <fwrite>                      
        !rtems_chain_is_tail( the_chain, the_node );                  
        the_node = the_node->next ) {                                 
                                                                      
    the_jnode = (IMFS_jnode_t *) the_node;                            
                                                                      
    for ( i=0 ; i<=level ; i++ )                                      
ffc075f4:	7f 9d f8 00 	cmpw    cr7,r29,r31                            
ffc075f8:	40 9c ff e0 	bge+    cr7,ffc075d8 <IMFS_dump_directory+0x68>
      fprintf(stdout, "...." );                                       
    IMFS_print_jnode( the_jnode );                                    
ffc075fc:	7f 63 db 78 	mr      r3,r27                                 
ffc07600:	4b ff fd e9 	bl      ffc073e8 <IMFS_print_jnode>            
    if ( the_jnode->type == IMFS_DIRECTORY )                          
ffc07604:	80 1b 00 4c 	lwz     r0,76(r27)                             
ffc07608:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0760c:	41 9e 00 48 	beq-    cr7,ffc07654 <IMFS_dump_directory+0xe4>
                                                                      
  the_chain = &the_directory->info.directory.Entries;                 
                                                                      
  for ( the_node = the_chain->first;                                  
        !rtems_chain_is_tail( the_chain, the_node );                  
        the_node = the_node->next ) {                                 
ffc07610:	83 7b 00 00 	lwz     r27,0(r27)                             
  IMFS_assert( level >= 0 );                                          
  IMFS_assert( the_directory->type == IMFS_DIRECTORY );               
                                                                      
  the_chain = &the_directory->info.directory.Entries;                 
                                                                      
  for ( the_node = the_chain->first;                                  
ffc07614:	7f 9b d0 00 	cmpw    cr7,r27,r26                            
ffc07618:	40 9e ff b4 	bne+    cr7,ffc075cc <IMFS_dump_directory+0x5c>
      fprintf(stdout, "...." );                                       
    IMFS_print_jnode( the_jnode );                                    
    if ( the_jnode->type == IMFS_DIRECTORY )                          
      IMFS_dump_directory( the_jnode, level + 1 );                    
  }                                                                   
}                                                                     
ffc0761c:	80 01 00 34 	lwz     r0,52(r1)                              
ffc07620:	81 81 00 0c 	lwz     r12,12(r1)                             
ffc07624:	7c 08 03 a6 	mtlr    r0                                     
ffc07628:	83 01 00 10 	lwz     r24,16(r1)                             
ffc0762c:	83 21 00 14 	lwz     r25,20(r1)                             
ffc07630:	7d 80 81 20 	mtcrf   8,r12                                  
ffc07634:	83 41 00 18 	lwz     r26,24(r1)                             
ffc07638:	83 61 00 1c 	lwz     r27,28(r1)                             
ffc0763c:	83 81 00 20 	lwz     r28,32(r1)                             
ffc07640:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc07644:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc07648:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc0764c:	38 21 00 30 	addi    r1,r1,48                               
ffc07650:	4e 80 00 20 	blr                                            
                                                                      
    for ( i=0 ; i<=level ; i++ )                                      
      fprintf(stdout, "...." );                                       
    IMFS_print_jnode( the_jnode );                                    
    if ( the_jnode->type == IMFS_DIRECTORY )                          
      IMFS_dump_directory( the_jnode, level + 1 );                    
ffc07654:	7f 63 db 78 	mr      r3,r27                                 
ffc07658:	7f 04 c3 78 	mr      r4,r24                                 
ffc0765c:	4b ff ff 15 	bl      ffc07570 <IMFS_dump_directory>         
ffc07660:	4b ff ff b0 	b       ffc07610 <IMFS_dump_directory+0xa0>    
                                                                      

ffc0daa8 <IMFS_eval_path>: const char *pathname, /* IN */ size_t pathnamelen, /* IN */ int flags, /* IN */ rtems_filesystem_location_info_t *pathloc /* IN/OUT */ ) {
ffc0daa8:	94 21 ff 90 	stwu    r1,-112(r1)                            
ffc0daac:	7c 08 02 a6 	mflr    r0                                     
ffc0dab0:	90 01 00 74 	stw     r0,116(r1)                             
  char                                token[ IMFS_NAME_MAX + 1 ];     
  rtems_filesystem_location_info_t    newloc;                         
  IMFS_jnode_t                       *node;                           
  int                                 result;                         
                                                                      
  if ( !rtems_libio_is_valid_perms( flags ) ) {                       
ffc0dab4:	54 a0 00 39 	rlwinm. r0,r5,0,0,28                           
  const char                        *pathname,     /* IN     */       
  size_t                             pathnamelen,  /* IN     */       
  int                                flags,        /* IN     */       
  rtems_filesystem_location_info_t  *pathloc       /* IN/OUT */       
                   )                                                  
{                                                                     
ffc0dab8:	93 01 00 50 	stw     r24,80(r1)                             
ffc0dabc:	7c b8 2b 78 	mr      r24,r5                                 
ffc0dac0:	93 41 00 58 	stw     r26,88(r1)                             
ffc0dac4:	7c 7a 1b 78 	mr      r26,r3                                 
ffc0dac8:	93 81 00 60 	stw     r28,96(r1)                             
ffc0dacc:	7c dc 33 78 	mr      r28,r6                                 
ffc0dad0:	93 e1 00 6c 	stw     r31,108(r1)                            
ffc0dad4:	7c 9f 23 78 	mr      r31,r4                                 
ffc0dad8:	92 c1 00 48 	stw     r22,72(r1)                             
ffc0dadc:	92 e1 00 4c 	stw     r23,76(r1)                             
ffc0dae0:	93 21 00 54 	stw     r25,84(r1)                             
ffc0dae4:	93 61 00 5c 	stw     r27,92(r1)                             
ffc0dae8:	93 a1 00 64 	stw     r29,100(r1)                            
ffc0daec:	93 c1 00 68 	stw     r30,104(r1)                            
  char                                token[ IMFS_NAME_MAX + 1 ];     
  rtems_filesystem_location_info_t    newloc;                         
  IMFS_jnode_t                       *node;                           
  int                                 result;                         
                                                                      
  if ( !rtems_libio_is_valid_perms( flags ) ) {                       
ffc0daf0:	40 82 02 9c 	bne-    ffc0dd8c <IMFS_eval_path+0x2e4>        <== NEVER TAKEN
  /*                                                                  
   *  This was filled in by the caller and is valid in the            
   *  mount table.                                                    
   */                                                                 
                                                                      
  node = pathloc->node_access;                                        
ffc0daf4:	83 a6 00 00 	lwz     r29,0(r6)                              
  size_t                             pathnamelen,  /* IN     */       
  int                                flags,        /* IN     */       
  rtems_filesystem_location_info_t  *pathloc       /* IN/OUT */       
                   )                                                  
{                                                                     
  int                                 i = 0;                          
ffc0daf8:	3b c0 00 00 	li      r30,0                                  
ffc0dafc:	3b 61 00 20 	addi    r27,r1,32                              
ffc0db00:	3b 21 00 08 	addi    r25,r1,8                               
      case IMFS_UP_DIR:                                               
        /*                                                            
         *  Am I at the root of all filesystems? (chroot'ed?)         
         */                                                           
                                                                      
        if ( pathloc->node_access == rtems_filesystem_root.node_access )
ffc0db04:	3e e0 00 00 	lis     r23,0                                  
   *  Evaluate all tokens until we are done or an error occurs.       
   */                                                                 
                                                                      
  while( (type != IMFS_NO_MORE_PATH) && (type != IMFS_INVALID_TOKEN) ) {
                                                                      
    type = IMFS_get_token( &pathname[i], pathnamelen, token, &len );  
ffc0db08:	7c 7a f2 14 	add     r3,r26,r30                             
ffc0db0c:	7f e4 fb 78 	mr      r4,r31                                 
ffc0db10:	7f 65 db 78 	mr      r5,r27                                 
ffc0db14:	7f 26 cb 78 	mr      r6,r25                                 
ffc0db18:	48 00 09 89 	bl      ffc0e4a0 <IMFS_get_token>              
    pathnamelen -= len;                                               
    i += len;                                                         
                                                                      
    if ( !pathloc->node_access )                                      
ffc0db1c:	81 3c 00 00 	lwz     r9,0(r28)                              
   *  Evaluate all tokens until we are done or an error occurs.       
   */                                                                 
                                                                      
  while( (type != IMFS_NO_MORE_PATH) && (type != IMFS_INVALID_TOKEN) ) {
                                                                      
    type = IMFS_get_token( &pathname[i], pathnamelen, token, &len );  
ffc0db20:	7c 76 1b 78 	mr      r22,r3                                 
    pathnamelen -= len;                                               
ffc0db24:	80 01 00 08 	lwz     r0,8(r1)                               
    i += len;                                                         
                                                                      
    if ( !pathloc->node_access )                                      
ffc0db28:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0db2c:	41 9e 02 18 	beq-    cr7,ffc0dd44 <IMFS_eval_path+0x29c>    <== NEVER TAKEN
      rtems_set_errno_and_return_minus_one( ENOENT );                 
                                                                      
    /*                                                                
     * I cannot move out of this directory without execute permission.
     */                                                               
    if ( type != IMFS_NO_MORE_PATH )                                  
ffc0db30:	2f 83 00 00 	cmpwi   cr7,r3,0                               
   */                                                                 
                                                                      
  while( (type != IMFS_NO_MORE_PATH) && (type != IMFS_INVALID_TOKEN) ) {
                                                                      
    type = IMFS_get_token( &pathname[i], pathnamelen, token, &len );  
    pathnamelen -= len;                                               
ffc0db34:	7f e0 f8 50 	subf    r31,r0,r31                             
    i += len;                                                         
ffc0db38:	7f de 02 14 	add     r30,r30,r0                             
      rtems_set_errno_and_return_minus_one( ENOENT );                 
                                                                      
    /*                                                                
     * I cannot move out of this directory without execute permission.
     */                                                               
    if ( type != IMFS_NO_MORE_PATH )                                  
ffc0db3c:	40 9e 00 44 	bne-    cr7,ffc0db80 <IMFS_eval_path+0xd8>     
   *  new fs root node and let let the mounted filesystem set the handlers.
   *                                                                  
   *  NOTE: The behavior of stat() on a mount point appears to be questionable.
   */                                                                 
                                                                      
  if ( node->type == IMFS_DIRECTORY ) {                               
ffc0db40:	80 09 00 4c 	lwz     r0,76(r9)                              
ffc0db44:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0db48:	41 9e 01 50 	beq-    cr7,ffc0dc98 <IMFS_eval_path+0x1f0>    
                                          flags, pathloc );           
    } else {                                                          
      result = IMFS_Set_handlers( pathloc );                          
    }                                                                 
  } else {                                                            
    result = IMFS_Set_handlers( pathloc );                            
ffc0db4c:	7f 83 e3 78 	mr      r3,r28                                 
ffc0db50:	4b ff fe 11 	bl      ffc0d960 <IMFS_Set_handlers>           
                                                                      
  /*                                                                  
   * Verify we have the correct permissions for this node.            
   */                                                                 
                                                                      
  if ( !IMFS_evaluate_permission( pathloc, flags ) )                  
ffc0db54:	7f 04 c3 78 	mr      r4,r24                                 
                                          flags, pathloc );           
    } else {                                                          
      result = IMFS_Set_handlers( pathloc );                          
    }                                                                 
  } else {                                                            
    result = IMFS_Set_handlers( pathloc );                            
ffc0db58:	7c 76 1b 78 	mr      r22,r3                                 
                                                                      
  /*                                                                  
   * Verify we have the correct permissions for this node.            
   */                                                                 
                                                                      
  if ( !IMFS_evaluate_permission( pathloc, flags ) )                  
ffc0db5c:	7f 83 e3 78 	mr      r3,r28                                 
ffc0db60:	4b ff fe 8d 	bl      ffc0d9ec <IMFS_evaluate_permission>    
ffc0db64:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0db68:	40 be 00 d8 	bne+    cr7,ffc0dc40 <IMFS_eval_path+0x198>    
    rtems_set_errno_and_return_minus_one( EACCES );                   
ffc0db6c:	48 00 45 dd 	bl      ffc12148 <__errno>                     
ffc0db70:	38 00 00 0d 	li      r0,13                                  
ffc0db74:	90 03 00 00 	stw     r0,0(r3)                               
ffc0db78:	3a c0 ff ff 	li      r22,-1                                 
ffc0db7c:	48 00 00 c4 	b       ffc0dc40 <IMFS_eval_path+0x198>        
                                                                      
    /*                                                                
     * I cannot move out of this directory without execute permission.
     */                                                               
    if ( type != IMFS_NO_MORE_PATH )                                  
      if ( node->type == IMFS_DIRECTORY )                             
ffc0db80:	80 1d 00 4c 	lwz     r0,76(r29)                             
ffc0db84:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0db88:	41 9e 00 f4 	beq-    cr7,ffc0dc7c <IMFS_eval_path+0x1d4>    
        if ( !IMFS_evaluate_permission( pathloc, RTEMS_LIBIO_PERMS_SEARCH ) )
          rtems_set_errno_and_return_minus_one( EACCES );             
                                                                      
    node = pathloc->node_access;                                      
                                                                      
    switch( type ) {                                                  
ffc0db8c:	2f 96 00 03 	cmpwi   cr7,r22,3                              
    if ( type != IMFS_NO_MORE_PATH )                                  
      if ( node->type == IMFS_DIRECTORY )                             
        if ( !IMFS_evaluate_permission( pathloc, RTEMS_LIBIO_PERMS_SEARCH ) )
          rtems_set_errno_and_return_minus_one( EACCES );             
                                                                      
    node = pathloc->node_access;                                      
ffc0db90:	7d 3d 4b 78 	mr      r29,r9                                 
                                                                      
    switch( type ) {                                                  
ffc0db94:	41 9e 00 1c 	beq-    cr7,ffc0dbb0 <IMFS_eval_path+0x108>    
ffc0db98:	2f 96 00 04 	cmpwi   cr7,r22,4                              
ffc0db9c:	41 9e 00 94 	beq-    cr7,ffc0dc30 <IMFS_eval_path+0x188>    
ffc0dba0:	2f 16 00 02 	cmpwi   cr6,r22,2                              
ffc0dba4:	41 9a 00 50 	beq-    cr6,ffc0dbf4 <IMFS_eval_path+0x14c>    
                                                                      
  /*                                                                  
   *  Evaluate all tokens until we are done or an error occurs.       
   */                                                                 
                                                                      
  while( (type != IMFS_NO_MORE_PATH) && (type != IMFS_INVALID_TOKEN) ) {
ffc0dba8:	40 9e ff 60 	bne+    cr7,ffc0db08 <IMFS_eval_path+0x60>     <== ALWAYS TAKEN
ffc0dbac:	4b ff ff 94 	b       ffc0db40 <IMFS_eval_path+0x98>         <== NOT EXECUTED
                                                                      
      case IMFS_NAME:                                                 
        /*                                                            
         *  If we are at a link follow it.                            
         */                                                           
        if ( node->type == IMFS_HARD_LINK ) {                         
ffc0dbb0:	80 09 00 4c 	lwz     r0,76(r9)                              
ffc0dbb4:	2f 80 00 03 	cmpwi   cr7,r0,3                               
ffc0dbb8:	41 9e 01 a0 	beq-    cr7,ffc0dd58 <IMFS_eval_path+0x2b0>    
	   * It would be a design error if we evaluated the link and         
	   * was broken.                                                     
	   */                                                                
          IMFS_assert( node );                                        
                                                                      
        } else if ( node->type == IMFS_SYM_LINK ) {                   
ffc0dbbc:	2f 80 00 04 	cmpwi   cr7,r0,4                               
ffc0dbc0:	41 9e 01 f4 	beq-    cr7,ffc0ddb4 <IMFS_eval_path+0x30c>    
        }                                                             
                                                                      
        /*                                                            
         *  Only a directory can be decended into.                    
         */                                                           
        if ( node->type != IMFS_DIRECTORY )                           
ffc0dbc4:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0dbc8:	40 9e 01 d8 	bne-    cr7,ffc0dda0 <IMFS_eval_path+0x2f8>    
                                                                      
        /*                                                            
         *  If we are at a node that is a mount point. Set loc to the 
         *  new fs root node and let them finish evaluating the path. 
         */                                                           
        if ( node->info.directory.mt_fs != NULL ) {                   
ffc0dbcc:	80 fd 00 5c 	lwz     r7,92(r29)                             
ffc0dbd0:	2f 87 00 00 	cmpwi   cr7,r7,0                               
ffc0dbd4:	40 9e 00 d0 	bne-    cr7,ffc0dca4 <IMFS_eval_path+0x1fc>    
        }                                                             
                                                                      
        /*                                                            
         *  Otherwise find the token name in the present location.    
         */                                                           
        node = IMFS_find_match_in_dir( node, token );                 
ffc0dbd8:	7f a3 eb 78 	mr      r3,r29                                 
ffc0dbdc:	7f 64 db 78 	mr      r4,r27                                 
ffc0dbe0:	48 00 07 fd 	bl      ffc0e3dc <IMFS_find_match_in_dir>      
        if ( !node )                                                  
ffc0dbe4:	7c 7d 1b 79 	mr.     r29,r3                                 
ffc0dbe8:	41 82 01 5c 	beq-    ffc0dd44 <IMFS_eval_path+0x29c>        
                                                                      
        /*                                                            
         *  Set the node access to the point we have found.           
         */                                                           
                                                                      
        pathloc->node_access = node;                                  
ffc0dbec:	93 bc 00 00 	stw     r29,0(r28)                             
ffc0dbf0:	4b ff ff 18 	b       ffc0db08 <IMFS_eval_path+0x60>         
      case IMFS_UP_DIR:                                               
        /*                                                            
         *  Am I at the root of all filesystems? (chroot'ed?)         
         */                                                           
                                                                      
        if ( pathloc->node_access == rtems_filesystem_root.node_access )
ffc0dbf4:	81 77 26 9c 	lwz     r11,9884(r23)                          
ffc0dbf8:	80 0b 00 18 	lwz     r0,24(r11)                             
ffc0dbfc:	7f 80 48 00 	cmpw    cr7,r0,r9                              
ffc0dc00:	41 be ff 08 	beq-    cr7,ffc0db08 <IMFS_eval_path+0x60>     
        /*                                                            
         *  Am I at the root of this mounted filesystem?              
         */                                                           
                                                                      
        if (pathloc->node_access ==                                   
            pathloc->mt_entry->mt_fs_root.node_access) {              
ffc0dc04:	80 fc 00 10 	lwz     r7,16(r28)                             
                                                                      
        /*                                                            
         *  Am I at the root of this mounted filesystem?              
         */                                                           
                                                                      
        if (pathloc->node_access ==                                   
ffc0dc08:	80 07 00 1c 	lwz     r0,28(r7)                              
ffc0dc0c:	7f 80 48 00 	cmpw    cr7,r0,r9                              
ffc0dc10:	41 9e 01 60 	beq-    cr7,ffc0dd70 <IMFS_eval_path+0x2c8>    
                                               pathnamelen+len,       
                                               flags,pathloc);        
          }                                                           
        } else {                                                      
                                                                      
          if ( !node->Parent )                                        
ffc0dc14:	83 a9 00 08 	lwz     r29,8(r9)                              
ffc0dc18:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
ffc0dc1c:	40 9e ff d0 	bne+    cr7,ffc0dbec <IMFS_eval_path+0x144>    
            rtems_set_errno_and_return_minus_one( ENOENT );           
ffc0dc20:	48 00 45 29 	bl      ffc12148 <__errno>                     
ffc0dc24:	92 c3 00 00 	stw     r22,0(r3)                              
ffc0dc28:	3a c0 ff ff 	li      r22,-1                                 
ffc0dc2c:	48 00 00 14 	b       ffc0dc40 <IMFS_eval_path+0x198>        
      case IMFS_NO_MORE_PATH:                                         
      case IMFS_CURRENT_DIR:                                          
        break;                                                        
                                                                      
      case IMFS_INVALID_TOKEN:                                        
        rtems_set_errno_and_return_minus_one( ENAMETOOLONG );         
ffc0dc30:	48 00 45 19 	bl      ffc12148 <__errno>                     
ffc0dc34:	38 00 00 5b 	li      r0,91                                  
ffc0dc38:	90 03 00 00 	stw     r0,0(r3)                               
ffc0dc3c:	3a c0 ff ff 	li      r22,-1                                 
                                                                      
  if ( !IMFS_evaluate_permission( pathloc, flags ) )                  
    rtems_set_errno_and_return_minus_one( EACCES );                   
                                                                      
  return result;                                                      
}                                                                     
ffc0dc40:	80 01 00 74 	lwz     r0,116(r1)                             
ffc0dc44:	7e c3 b3 78 	mr      r3,r22                                 
ffc0dc48:	82 e1 00 4c 	lwz     r23,76(r1)                             
ffc0dc4c:	7c 08 03 a6 	mtlr    r0                                     
ffc0dc50:	82 c1 00 48 	lwz     r22,72(r1)                             
ffc0dc54:	83 01 00 50 	lwz     r24,80(r1)                             
ffc0dc58:	83 21 00 54 	lwz     r25,84(r1)                             
ffc0dc5c:	83 41 00 58 	lwz     r26,88(r1)                             
ffc0dc60:	83 61 00 5c 	lwz     r27,92(r1)                             
ffc0dc64:	83 81 00 60 	lwz     r28,96(r1)                             
ffc0dc68:	83 a1 00 64 	lwz     r29,100(r1)                            
ffc0dc6c:	83 c1 00 68 	lwz     r30,104(r1)                            
ffc0dc70:	83 e1 00 6c 	lwz     r31,108(r1)                            
ffc0dc74:	38 21 00 70 	addi    r1,r1,112                              
ffc0dc78:	4e 80 00 20 	blr                                            
    /*                                                                
     * I cannot move out of this directory without execute permission.
     */                                                               
    if ( type != IMFS_NO_MORE_PATH )                                  
      if ( node->type == IMFS_DIRECTORY )                             
        if ( !IMFS_evaluate_permission( pathloc, RTEMS_LIBIO_PERMS_SEARCH ) )
ffc0dc7c:	7f 83 e3 78 	mr      r3,r28                                 
ffc0dc80:	38 80 00 01 	li      r4,1                                   
ffc0dc84:	4b ff fd 69 	bl      ffc0d9ec <IMFS_evaluate_permission>    
ffc0dc88:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0dc8c:	41 be fe e0 	beq-    cr7,ffc0db6c <IMFS_eval_path+0xc4>     
ffc0dc90:	81 3c 00 00 	lwz     r9,0(r28)                              
ffc0dc94:	4b ff fe f8 	b       ffc0db8c <IMFS_eval_path+0xe4>         
   *                                                                  
   *  NOTE: The behavior of stat() on a mount point appears to be questionable.
   */                                                                 
                                                                      
  if ( node->type == IMFS_DIRECTORY ) {                               
    if ( node->info.directory.mt_fs != NULL ) {                       
ffc0dc98:	80 e9 00 5c 	lwz     r7,92(r9)                              
ffc0dc9c:	2f 87 00 00 	cmpwi   cr7,r7,0                               
ffc0dca0:	41 be fe ac 	beq-    cr7,ffc0db4c <IMFS_eval_path+0xa4>     
      newloc   = node->info.directory.mt_fs->mt_fs_root;              
      *pathloc = newloc;                                              
      return (*pathloc->ops->evalpath_h)( &pathname[i-len],           
ffc0dca4:	80 81 00 08 	lwz     r4,8(r1)                               
   *  NOTE: The behavior of stat() on a mount point appears to be questionable.
   */                                                                 
                                                                      
  if ( node->type == IMFS_DIRECTORY ) {                               
    if ( node->info.directory.mt_fs != NULL ) {                       
      newloc   = node->info.directory.mt_fs->mt_fs_root;              
ffc0dca8:	81 27 00 28 	lwz     r9,40(r7)                              
ffc0dcac:	81 07 00 1c 	lwz     r8,28(r7)                              
ffc0dcb0:	81 47 00 20 	lwz     r10,32(r7)                             
ffc0dcb4:	81 67 00 24 	lwz     r11,36(r7)                             
ffc0dcb8:	80 07 00 2c 	lwz     r0,44(r7)                              
ffc0dcbc:	90 01 00 1c 	stw     r0,28(r1)                              
      *pathloc = newloc;                                              
      return (*pathloc->ops->evalpath_h)( &pathname[i-len],           
ffc0dcc0:	7c 64 f0 50 	subf    r3,r4,r30                              
ffc0dcc4:	7c 7a 1a 14 	add     r3,r26,r3                              
   *  NOTE: The behavior of stat() on a mount point appears to be questionable.
   */                                                                 
                                                                      
  if ( node->type == IMFS_DIRECTORY ) {                               
    if ( node->info.directory.mt_fs != NULL ) {                       
      newloc   = node->info.directory.mt_fs->mt_fs_root;              
ffc0dcc8:	91 01 00 0c 	stw     r8,12(r1)                              
      *pathloc = newloc;                                              
      return (*pathloc->ops->evalpath_h)( &pathname[i-len],           
ffc0dccc:	7c 9f 22 14 	add     r4,r31,r4                              
ffc0dcd0:	7f 05 c3 78 	mr      r5,r24                                 
   *  NOTE: The behavior of stat() on a mount point appears to be questionable.
   */                                                                 
                                                                      
  if ( node->type == IMFS_DIRECTORY ) {                               
    if ( node->info.directory.mt_fs != NULL ) {                       
      newloc   = node->info.directory.mt_fs->mt_fs_root;              
ffc0dcd4:	91 41 00 10 	stw     r10,16(r1)                             
      *pathloc = newloc;                                              
      return (*pathloc->ops->evalpath_h)( &pathname[i-len],           
ffc0dcd8:	7f 86 e3 78 	mr      r6,r28                                 
   *  NOTE: The behavior of stat() on a mount point appears to be questionable.
   */                                                                 
                                                                      
  if ( node->type == IMFS_DIRECTORY ) {                               
    if ( node->info.directory.mt_fs != NULL ) {                       
      newloc   = node->info.directory.mt_fs->mt_fs_root;              
ffc0dcdc:	91 61 00 14 	stw     r11,20(r1)                             
ffc0dce0:	91 21 00 18 	stw     r9,24(r1)                              
      *pathloc = newloc;                                              
ffc0dce4:	90 1c 00 10 	stw     r0,16(r28)                             
      return (*pathloc->ops->evalpath_h)( &pathname[i-len],           
ffc0dce8:	80 09 00 00 	lwz     r0,0(r9)                               
   */                                                                 
                                                                      
  if ( node->type == IMFS_DIRECTORY ) {                               
    if ( node->info.directory.mt_fs != NULL ) {                       
      newloc   = node->info.directory.mt_fs->mt_fs_root;              
      *pathloc = newloc;                                              
ffc0dcec:	91 1c 00 00 	stw     r8,0(r28)                              
      return (*pathloc->ops->evalpath_h)( &pathname[i-len],           
ffc0dcf0:	7c 09 03 a6 	mtctr   r0                                     
   */                                                                 
                                                                      
  if ( node->type == IMFS_DIRECTORY ) {                               
    if ( node->info.directory.mt_fs != NULL ) {                       
      newloc   = node->info.directory.mt_fs->mt_fs_root;              
      *pathloc = newloc;                                              
ffc0dcf4:	91 5c 00 04 	stw     r10,4(r28)                             
ffc0dcf8:	91 7c 00 08 	stw     r11,8(r28)                             
ffc0dcfc:	91 3c 00 0c 	stw     r9,12(r28)                             
      return (*pathloc->ops->evalpath_h)( &pathname[i-len],           
ffc0dd00:	4e 80 04 21 	bctrl                                          
                                                                      
  if ( !IMFS_evaluate_permission( pathloc, flags ) )                  
    rtems_set_errno_and_return_minus_one( EACCES );                   
                                                                      
  return result;                                                      
}                                                                     
ffc0dd04:	80 01 00 74 	lwz     r0,116(r1)                             
                                                                      
  if ( node->type == IMFS_DIRECTORY ) {                               
    if ( node->info.directory.mt_fs != NULL ) {                       
      newloc   = node->info.directory.mt_fs->mt_fs_root;              
      *pathloc = newloc;                                              
      return (*pathloc->ops->evalpath_h)( &pathname[i-len],           
ffc0dd08:	7c 76 1b 78 	mr      r22,r3                                 
                                                                      
  if ( !IMFS_evaluate_permission( pathloc, flags ) )                  
    rtems_set_errno_and_return_minus_one( EACCES );                   
                                                                      
  return result;                                                      
}                                                                     
ffc0dd0c:	82 e1 00 4c 	lwz     r23,76(r1)                             
ffc0dd10:	7c 08 03 a6 	mtlr    r0                                     
ffc0dd14:	7e c3 b3 78 	mr      r3,r22                                 
ffc0dd18:	83 01 00 50 	lwz     r24,80(r1)                             
ffc0dd1c:	82 c1 00 48 	lwz     r22,72(r1)                             
ffc0dd20:	83 21 00 54 	lwz     r25,84(r1)                             
ffc0dd24:	83 41 00 58 	lwz     r26,88(r1)                             
ffc0dd28:	83 61 00 5c 	lwz     r27,92(r1)                             
ffc0dd2c:	83 81 00 60 	lwz     r28,96(r1)                             
ffc0dd30:	83 a1 00 64 	lwz     r29,100(r1)                            
ffc0dd34:	83 c1 00 68 	lwz     r30,104(r1)                            
ffc0dd38:	83 e1 00 6c 	lwz     r31,108(r1)                            
ffc0dd3c:	38 21 00 70 	addi    r1,r1,112                              
ffc0dd40:	4e 80 00 20 	blr                                            
        /*                                                            
         *  Otherwise find the token name in the present location.    
         */                                                           
        node = IMFS_find_match_in_dir( node, token );                 
        if ( !node )                                                  
          rtems_set_errno_and_return_minus_one( ENOENT );             
ffc0dd44:	48 00 44 05 	bl      ffc12148 <__errno>                     
ffc0dd48:	38 00 00 02 	li      r0,2                                   
ffc0dd4c:	90 03 00 00 	stw     r0,0(r3)                               
ffc0dd50:	3a c0 ff ff 	li      r22,-1                                 
ffc0dd54:	4b ff fe ec 	b       ffc0dc40 <IMFS_eval_path+0x198>        
      case IMFS_NAME:                                                 
        /*                                                            
         *  If we are at a link follow it.                            
         */                                                           
        if ( node->type == IMFS_HARD_LINK ) {                         
          IMFS_evaluate_hard_link( pathloc, 0 );                      
ffc0dd58:	7f 83 e3 78 	mr      r3,r28                                 
ffc0dd5c:	38 80 00 00 	li      r4,0                                   
ffc0dd60:	4b ff fc e1 	bl      ffc0da40 <IMFS_evaluate_hard_link>     
          node = pathloc->node_access;                                
ffc0dd64:	83 bc 00 00 	lwz     r29,0(r28)                             
ffc0dd68:	80 1d 00 4c 	lwz     r0,76(r29)                             
ffc0dd6c:	4b ff fe 58 	b       ffc0dbc4 <IMFS_eval_path+0x11c>        
          if ( pathloc->node_access == rtems_filesystem_root.node_access ) {
            break;       /* Throw out the .. in this case */          
          } else {                                                    
            newloc = pathloc->mt_entry->mt_point_node;                
            *pathloc = newloc;                                        
            return (*pathloc->ops->evalpath_h)(&(pathname[i-len]),    
ffc0dd70:	80 81 00 08 	lwz     r4,8(r1)                               
           */                                                         
                                                                      
          if ( pathloc->node_access == rtems_filesystem_root.node_access ) {
            break;       /* Throw out the .. in this case */          
          } else {                                                    
            newloc = pathloc->mt_entry->mt_point_node;                
ffc0dd74:	81 27 00 14 	lwz     r9,20(r7)                              
ffc0dd78:	81 07 00 08 	lwz     r8,8(r7)                               
ffc0dd7c:	81 47 00 0c 	lwz     r10,12(r7)                             
ffc0dd80:	81 67 00 10 	lwz     r11,16(r7)                             
ffc0dd84:	80 07 00 18 	lwz     r0,24(r7)                              
ffc0dd88:	4b ff ff 34 	b       ffc0dcbc <IMFS_eval_path+0x214>        
  rtems_filesystem_location_info_t    newloc;                         
  IMFS_jnode_t                       *node;                           
  int                                 result;                         
                                                                      
  if ( !rtems_libio_is_valid_perms( flags ) ) {                       
    rtems_set_errno_and_return_minus_one( EIO );                      
ffc0dd8c:	48 00 43 bd 	bl      ffc12148 <__errno>                     <== NOT EXECUTED
ffc0dd90:	38 00 00 05 	li      r0,5                                   <== NOT EXECUTED
ffc0dd94:	90 03 00 00 	stw     r0,0(r3)                               <== NOT EXECUTED
ffc0dd98:	3a c0 ff ff 	li      r22,-1                                 <== NOT EXECUTED
ffc0dd9c:	4b ff fe a4 	b       ffc0dc40 <IMFS_eval_path+0x198>        <== NOT EXECUTED
                                                                      
        /*                                                            
         *  Only a directory can be decended into.                    
         */                                                           
        if ( node->type != IMFS_DIRECTORY )                           
          rtems_set_errno_and_return_minus_one( ENOTDIR );            
ffc0dda0:	48 00 43 a9 	bl      ffc12148 <__errno>                     
ffc0dda4:	38 00 00 14 	li      r0,20                                  
ffc0dda8:	90 03 00 00 	stw     r0,0(r3)                               
ffc0ddac:	3a c0 ff ff 	li      r22,-1                                 
ffc0ddb0:	4b ff fe 90 	b       ffc0dc40 <IMFS_eval_path+0x198>        
	   * was broken.                                                     
	   */                                                                
          IMFS_assert( node );                                        
                                                                      
        } else if ( node->type == IMFS_SYM_LINK ) {                   
          result = IMFS_evaluate_sym_link( pathloc, 0 );              
ffc0ddb4:	7f 83 e3 78 	mr      r3,r28                                 
ffc0ddb8:	38 80 00 00 	li      r4,0                                   
ffc0ddbc:	48 00 00 1d 	bl      ffc0ddd8 <IMFS_evaluate_sym_link>      
                                                                      
          /*                                                          
           *  In contrast to a hard link, it is possible to have a broken
           *  symbolic link.                                          
           */                                                         
          node = pathloc->node_access;                                
ffc0ddc0:	83 bc 00 00 	lwz     r29,0(r28)                             
          if ( result == -1 )                                         
ffc0ddc4:	2f 83 ff ff 	cmpwi   cr7,r3,-1                              
	   * was broken.                                                     
	   */                                                                
          IMFS_assert( node );                                        
                                                                      
        } else if ( node->type == IMFS_SYM_LINK ) {                   
          result = IMFS_evaluate_sym_link( pathloc, 0 );              
ffc0ddc8:	7c 76 1b 78 	mr      r22,r3                                 
          /*                                                          
           *  In contrast to a hard link, it is possible to have a broken
           *  symbolic link.                                          
           */                                                         
          node = pathloc->node_access;                                
          if ( result == -1 )                                         
ffc0ddcc:	41 be fe 74 	beq-    cr7,ffc0dc40 <IMFS_eval_path+0x198>    <== NEVER TAKEN
                                                                      
          /*                                                          
           *  In contrast to a hard link, it is possible to have a broken
           *  symbolic link.                                          
           */                                                         
          node = pathloc->node_access;                                
ffc0ddd0:	80 1d 00 4c 	lwz     r0,76(r29)                             
ffc0ddd4:	4b ff fd f0 	b       ffc0dbc4 <IMFS_eval_path+0x11c>        
                                                                      

ffc0dfa4 <IMFS_evaluate_for_make>: int IMFS_evaluate_for_make( const char *path, /* IN */ rtems_filesystem_location_info_t *pathloc, /* IN/OUT */ const char **name /* OUT */ ) {
ffc0dfa4:	94 21 ff 88 	stwu    r1,-120(r1)                            
ffc0dfa8:	7c 08 02 a6 	mflr    r0                                     
ffc0dfac:	7d 80 00 26 	mfcr    r12                                    
ffc0dfb0:	90 01 00 7c 	stw     r0,124(r1)                             
ffc0dfb4:	92 e1 00 54 	stw     r23,84(r1)                             
ffc0dfb8:	7c b7 2b 78 	mr      r23,r5                                 
ffc0dfbc:	93 01 00 58 	stw     r24,88(r1)                             
      case IMFS_UP_DIR:                                               
       /*                                                             
        *  Am I at the root of all filesystems? (chroot'ed?)          
	*/                                                                   
                                                                      
       if ( pathloc->node_access == rtems_filesystem_root.node_access )
ffc0dfc0:	3f 00 00 00 	lis     r24,0                                  
int IMFS_evaluate_for_make(                                           
   const char                         *path,       /* IN     */       
   rtems_filesystem_location_info_t   *pathloc,    /* IN/OUT */       
   const char                        **name        /* OUT    */       
)                                                                     
{                                                                     
ffc0dfc4:	93 21 00 5c 	stw     r25,92(r1)                             
ffc0dfc8:	3b 21 00 08 	addi    r25,r1,8                               
ffc0dfcc:	93 41 00 60 	stw     r26,96(r1)                             
ffc0dfd0:	7c 7a 1b 78 	mr      r26,r3                                 
ffc0dfd4:	93 61 00 64 	stw     r27,100(r1)                            
ffc0dfd8:	3b 61 00 20 	addi    r27,r1,32                              
ffc0dfdc:	93 81 00 68 	stw     r28,104(r1)                            
  int                                 i = 0;                          
ffc0dfe0:	3b 80 00 00 	li      r28,0                                  
int IMFS_evaluate_for_make(                                           
   const char                         *path,       /* IN     */       
   rtems_filesystem_location_info_t   *pathloc,    /* IN/OUT */       
   const char                        **name        /* OUT    */       
)                                                                     
{                                                                     
ffc0dfe4:	93 a1 00 6c 	stw     r29,108(r1)                            
ffc0dfe8:	7c 9d 23 78 	mr      r29,r4                                 
ffc0dfec:	93 c1 00 70 	stw     r30,112(r1)                            
ffc0dff0:	93 e1 00 74 	stw     r31,116(r1)                            
ffc0dff4:	92 a1 00 4c 	stw     r21,76(r1)                             
ffc0dff8:	92 c1 00 50 	stw     r22,80(r1)                             
ffc0dffc:	91 81 00 48 	stw     r12,72(r1)                             
                                                                      
  /*                                                                  
   * This was filled in by the caller and is valid in the             
   * mount table.                                                     
   */                                                                 
  node = pathloc->node_access;                                        
ffc0e000:	83 c4 00 00 	lwz     r30,0(r4)                              
                                                                      
  /*                                                                  
   * Get the path length.                                             
   */                                                                 
  pathlen = strlen( path );                                           
ffc0e004:	48 00 53 cd 	bl      ffc133d0 <strlen>                      
ffc0e008:	7c 7f 1b 78 	mr      r31,r3                                 
   *  Evaluate all tokens until we are done or an error occurs.       
   */                                                                 
                                                                      
  while( !done ) {                                                    
                                                                      
    type = IMFS_get_token( &path[i], pathlen, token, &len );          
ffc0e00c:	7f e4 fb 78 	mr      r4,r31                                 
ffc0e010:	7c 7a e2 14 	add     r3,r26,r28                             
ffc0e014:	7f 65 db 78 	mr      r5,r27                                 
ffc0e018:	7f 26 cb 78 	mr      r6,r25                                 
ffc0e01c:	48 00 04 85 	bl      ffc0e4a0 <IMFS_get_token>              
    pathlen -= len;                                                   
    i +=  len;                                                        
                                                                      
    if ( !pathloc->node_access )                                      
ffc0e020:	81 3d 00 00 	lwz     r9,0(r29)                              
   */                                                                 
                                                                      
  while( !done ) {                                                    
                                                                      
    type = IMFS_get_token( &path[i], pathlen, token, &len );          
    pathlen -= len;                                                   
ffc0e024:	82 a1 00 08 	lwz     r21,8(r1)                              
   *  Evaluate all tokens until we are done or an error occurs.       
   */                                                                 
                                                                      
  while( !done ) {                                                    
                                                                      
    type = IMFS_get_token( &path[i], pathlen, token, &len );          
ffc0e028:	7c 76 1b 78 	mr      r22,r3                                 
    pathlen -= len;                                                   
    i +=  len;                                                        
                                                                      
    if ( !pathloc->node_access )                                      
ffc0e02c:	2f 89 00 00 	cmpwi   cr7,r9,0                               
   */                                                                 
                                                                      
  while( !done ) {                                                    
                                                                      
    type = IMFS_get_token( &path[i], pathlen, token, &len );          
    pathlen -= len;                                                   
ffc0e030:	7f f5 f8 50 	subf    r31,r21,r31                            
    i +=  len;                                                        
                                                                      
    if ( !pathloc->node_access )                                      
ffc0e034:	41 9e 01 7c 	beq-    cr7,ffc0e1b0 <IMFS_evaluate_for_make+0x20c><== NEVER TAKEN
                                                                      
    /*                                                                
     * I cannot move out of this directory without execute permission.
     */                                                               
                                                                      
    if ( type != IMFS_NO_MORE_PATH )                                  
ffc0e038:	2e 03 00 00 	cmpwi   cr4,r3,0                               
ffc0e03c:	40 92 00 5c 	bne-    cr4,ffc0e098 <IMFS_evaluate_for_make+0xf4>
          pathloc->node_access = node;                                
                                                                      
        break;                                                        
                                                                      
      case IMFS_NO_MORE_PATH:                                         
        rtems_set_errno_and_return_minus_one( EEXIST );               
ffc0e040:	48 00 41 09 	bl      ffc12148 <__errno>                     
ffc0e044:	38 00 00 11 	li      r0,17                                  
ffc0e048:	90 03 00 00 	stw     r0,0(r3)                               
ffc0e04c:	3b c0 ff ff 	li      r30,-1                                 
                                                                      
  if ( !IMFS_evaluate_permission( pathloc, RTEMS_LIBIO_PERMS_WX ) )   
    rtems_set_errno_and_return_minus_one( EACCES );                   
                                                                      
  return result;                                                      
}                                                                     
ffc0e050:	80 01 00 7c 	lwz     r0,124(r1)                             
ffc0e054:	7f c3 f3 78 	mr      r3,r30                                 
ffc0e058:	81 81 00 48 	lwz     r12,72(r1)                             
ffc0e05c:	7c 08 03 a6 	mtlr    r0                                     
ffc0e060:	82 a1 00 4c 	lwz     r21,76(r1)                             
ffc0e064:	82 c1 00 50 	lwz     r22,80(r1)                             
ffc0e068:	7d 80 81 20 	mtcrf   8,r12                                  
ffc0e06c:	82 e1 00 54 	lwz     r23,84(r1)                             
ffc0e070:	83 01 00 58 	lwz     r24,88(r1)                             
ffc0e074:	83 21 00 5c 	lwz     r25,92(r1)                             
ffc0e078:	83 41 00 60 	lwz     r26,96(r1)                             
ffc0e07c:	83 61 00 64 	lwz     r27,100(r1)                            
ffc0e080:	83 81 00 68 	lwz     r28,104(r1)                            
ffc0e084:	83 a1 00 6c 	lwz     r29,108(r1)                            
ffc0e088:	83 c1 00 70 	lwz     r30,112(r1)                            
ffc0e08c:	83 e1 00 74 	lwz     r31,116(r1)                            
ffc0e090:	38 21 00 78 	addi    r1,r1,120                              
ffc0e094:	4e 80 00 20 	blr                                            
    /*                                                                
     * I cannot move out of this directory without execute permission.
     */                                                               
                                                                      
    if ( type != IMFS_NO_MORE_PATH )                                  
      if ( node->type == IMFS_DIRECTORY )                             
ffc0e098:	80 1e 00 4c 	lwz     r0,76(r30)                             
ffc0e09c:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0e0a0:	41 9e 01 24 	beq-    cr7,ffc0e1c4 <IMFS_evaluate_for_make+0x220>
        if ( !IMFS_evaluate_permission( pathloc, RTEMS_LIBIO_PERMS_SEARCH ) )
           rtems_set_errno_and_return_minus_one( EACCES );            
                                                                      
    node = pathloc->node_access;                                      
                                                                      
    switch( type ) {                                                  
ffc0e0a4:	2f 96 00 02 	cmpwi   cr7,r22,2                              
                                                                      
  while( !done ) {                                                    
                                                                      
    type = IMFS_get_token( &path[i], pathlen, token, &len );          
    pathlen -= len;                                                   
    i +=  len;                                                        
ffc0e0a8:	7f 9c aa 14 	add     r28,r28,r21                            
    if ( type != IMFS_NO_MORE_PATH )                                  
      if ( node->type == IMFS_DIRECTORY )                             
        if ( !IMFS_evaluate_permission( pathloc, RTEMS_LIBIO_PERMS_SEARCH ) )
           rtems_set_errno_and_return_minus_one( EACCES );            
                                                                      
    node = pathloc->node_access;                                      
ffc0e0ac:	7d 3e 4b 78 	mr      r30,r9                                 
                                                                      
    switch( type ) {                                                  
ffc0e0b0:	41 9e 00 88 	beq-    cr7,ffc0e138 <IMFS_evaluate_for_make+0x194>
ffc0e0b4:	2b 96 00 02 	cmplwi  cr7,r22,2                              
ffc0e0b8:	40 9d 00 28 	ble-    cr7,ffc0e0e0 <IMFS_evaluate_for_make+0x13c>
ffc0e0bc:	2f 96 00 03 	cmpwi   cr7,r22,3                              
ffc0e0c0:	41 9e 00 28 	beq-    cr7,ffc0e0e8 <IMFS_evaluate_for_make+0x144>
ffc0e0c4:	2f 96 00 04 	cmpwi   cr7,r22,4                              
ffc0e0c8:	40 9e ff 44 	bne+    cr7,ffc0e00c <IMFS_evaluate_for_make+0x68><== NEVER TAKEN
      case IMFS_NO_MORE_PATH:                                         
        rtems_set_errno_and_return_minus_one( EEXIST );               
        break;                                                        
                                                                      
      case IMFS_INVALID_TOKEN:                                        
        rtems_set_errno_and_return_minus_one( ENAMETOOLONG );         
ffc0e0cc:	48 00 40 7d 	bl      ffc12148 <__errno>                     
ffc0e0d0:	38 00 00 5b 	li      r0,91                                  
ffc0e0d4:	90 03 00 00 	stw     r0,0(r3)                               
ffc0e0d8:	3b c0 ff ff 	li      r30,-1                                 
ffc0e0dc:	4b ff ff 74 	b       ffc0e050 <IMFS_evaluate_for_make+0xac> 
        if ( !IMFS_evaluate_permission( pathloc, RTEMS_LIBIO_PERMS_SEARCH ) )
           rtems_set_errno_and_return_minus_one( EACCES );            
                                                                      
    node = pathloc->node_access;                                      
                                                                      
    switch( type ) {                                                  
ffc0e0e0:	41 b2 ff 60 	beq-    cr4,ffc0e040 <IMFS_evaluate_for_make+0x9c><== NEVER TAKEN
ffc0e0e4:	4b ff ff 28 	b       ffc0e00c <IMFS_evaluate_for_make+0x68> 
        pathloc->node_access = node;                                  
        break;                                                        
                                                                      
      case IMFS_NAME:                                                 
                                                                      
	if ( node->type == IMFS_HARD_LINK ) {                                
ffc0e0e8:	80 09 00 4c 	lwz     r0,76(r9)                              
ffc0e0ec:	2f 80 00 03 	cmpwi   cr7,r0,3                               
ffc0e0f0:	41 9e 01 c4 	beq-    cr7,ffc0e2b4 <IMFS_evaluate_for_make+0x310>
                                                                      
          result = IMFS_evaluate_link( pathloc, 0 );                  
          if ( result == -1 )                                         
            return -1;                                                
                                                                      
	} else if ( node->type == IMFS_SYM_LINK ) {                          
ffc0e0f4:	2f 80 00 04 	cmpwi   cr7,r0,4                               
ffc0e0f8:	41 9e 01 bc 	beq-    cr7,ffc0e2b4 <IMFS_evaluate_for_make+0x310>
          if ( result == -1 )                                         
            return -1;                                                
	}                                                                    
                                                                      
        node = pathloc->node_access;                                  
        if ( !node )                                                  
ffc0e0fc:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc0e100:	41 9e 01 88 	beq-    cr7,ffc0e288 <IMFS_evaluate_for_make+0x2e4><== NEVER TAKEN
                                                                      
        /*                                                            
         * Only a directory can be decended into.                     
	 */                                                                  
                                                                      
        if ( node->type != IMFS_DIRECTORY )                           
ffc0e104:	80 1e 00 4c 	lwz     r0,76(r30)                             
ffc0e108:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0e10c:	40 9e 01 7c 	bne-    cr7,ffc0e288 <IMFS_evaluate_for_make+0x2e4>
	/*                                                                   
	 * If we are at a node that is a mount point. Set loc to the         
	 * new fs root node and let them finish evaluating the path.         
	 */                                                                  
                                                                      
        if ( node->info.directory.mt_fs != NULL ) {                   
ffc0e110:	80 fe 00 5c 	lwz     r7,92(r30)                             
ffc0e114:	2f 87 00 00 	cmpwi   cr7,r7,0                               
ffc0e118:	40 9e 01 84 	bne-    cr7,ffc0e29c <IMFS_evaluate_for_make+0x2f8>
                                                                      
	/*                                                                   
	 * Otherwise find the token name in the present location.            
	 */                                                                  
                                                                      
        node = IMFS_find_match_in_dir( node, token );                 
ffc0e11c:	7f c3 f3 78 	mr      r3,r30                                 
ffc0e120:	7f 64 db 78 	mr      r4,r27                                 
ffc0e124:	48 00 02 b9 	bl      ffc0e3dc <IMFS_find_match_in_dir>      
	/*                                                                   
	 * If there is no node we have found the name of the node we         
         * wish to create.                                            
	 */                                                                  
                                                                      
        if ( ! node )                                                 
ffc0e128:	7c 7e 1b 79 	mr.     r30,r3                                 
ffc0e12c:	41 82 00 48 	beq-    ffc0e174 <IMFS_evaluate_for_make+0x1d0>
          done = true;                                                
        else                                                          
          pathloc->node_access = node;                                
ffc0e130:	93 dd 00 00 	stw     r30,0(r29)                             
ffc0e134:	4b ff fe d8 	b       ffc0e00c <IMFS_evaluate_for_make+0x68> 
      case IMFS_UP_DIR:                                               
       /*                                                             
        *  Am I at the root of all filesystems? (chroot'ed?)          
	*/                                                                   
                                                                      
       if ( pathloc->node_access == rtems_filesystem_root.node_access )
ffc0e138:	81 78 26 9c 	lwz     r11,9884(r24)                          
ffc0e13c:	80 0b 00 18 	lwz     r0,24(r11)                             
ffc0e140:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc0e144:	41 be fe c8 	beq-    cr7,ffc0e00c <IMFS_evaluate_for_make+0x68>
                                                                      
	/*                                                                   
	 * Am I at the root of this mounted filesystem?                      
	 */                                                                  
                                                                      
        if (pathloc->node_access == pathloc->mt_entry->mt_fs_root.node_access){
ffc0e148:	80 fd 00 10 	lwz     r7,16(r29)                             
ffc0e14c:	80 07 00 1c 	lwz     r0,28(r7)                              
ffc0e150:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc0e154:	41 9e 00 8c 	beq-    cr7,ffc0e1e0 <IMFS_evaluate_for_make+0x23c>
            *pathloc = newloc;                                        
            return (*pathloc->ops->evalformake_h)( &path[i-len], pathloc, name );
	  }                                                                  
	} else {                                                             
                                                                      
          if ( !node->Parent )                                        
ffc0e158:	83 c9 00 08 	lwz     r30,8(r9)                              
ffc0e15c:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc0e160:	40 9e ff d0 	bne+    cr7,ffc0e130 <IMFS_evaluate_for_make+0x18c>
            rtems_set_errno_and_return_minus_one( ENOENT );           
ffc0e164:	48 00 3f e5 	bl      ffc12148 <__errno>                     
ffc0e168:	3b c0 ff ff 	li      r30,-1                                 
ffc0e16c:	92 c3 00 00 	stw     r22,0(r3)                              
ffc0e170:	4b ff fe e0 	b       ffc0e050 <IMFS_evaluate_for_make+0xac> 
      case IMFS_CURRENT_DIR:                                          
        break;                                                        
    }                                                                 
  }                                                                   
                                                                      
  *name = &path[ i - len ];                                           
ffc0e174:	80 01 00 08 	lwz     r0,8(r1)                               
  /*                                                                  
   * We have evaluated the path as far as we can.                     
   * Verify there is not any invalid stuff at the end of the name.    
   */                                                                 
                                                                      
  for( ; path[i] != '\0'; i++) {                                      
ffc0e178:	7f fa e2 14 	add     r31,r26,r28                            
      case IMFS_CURRENT_DIR:                                          
        break;                                                        
    }                                                                 
  }                                                                   
                                                                      
  *name = &path[ i - len ];                                           
ffc0e17c:	7c 00 e0 50 	subf    r0,r0,r28                              
ffc0e180:	7c 1a 02 14 	add     r0,r26,r0                              
ffc0e184:	90 17 00 00 	stw     r0,0(r23)                              
  /*                                                                  
   * We have evaluated the path as far as we can.                     
   * Verify there is not any invalid stuff at the end of the name.    
   */                                                                 
                                                                      
  for( ; path[i] != '\0'; i++) {                                      
ffc0e188:	7c 7a e0 ae 	lbzx    r3,r26,r28                             
ffc0e18c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0e190:	40 be 00 14 	bne+    cr7,ffc0e1a4 <IMFS_evaluate_for_make+0x200>
ffc0e194:	48 00 00 b0 	b       ffc0e244 <IMFS_evaluate_for_make+0x2a0>
ffc0e198:	8c 7f 00 01 	lbzu    r3,1(r31)                              
ffc0e19c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0e1a0:	41 9e 00 a4 	beq-    cr7,ffc0e244 <IMFS_evaluate_for_make+0x2a0>
    if ( !IMFS_is_separator( path[ i ] ) )                            
ffc0e1a4:	4b ff 7d 65 	bl      ffc05f08 <rtems_filesystem_is_separator>
ffc0e1a8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0e1ac:	40 9e ff ec 	bne+    cr7,ffc0e198 <IMFS_evaluate_for_make+0x1f4>
      rtems_set_errno_and_return_minus_one( ENOENT );                 
ffc0e1b0:	48 00 3f 99 	bl      ffc12148 <__errno>                     
ffc0e1b4:	38 00 00 02 	li      r0,2                                   
ffc0e1b8:	90 03 00 00 	stw     r0,0(r3)                               
ffc0e1bc:	3b c0 ff ff 	li      r30,-1                                 
ffc0e1c0:	4b ff fe 90 	b       ffc0e050 <IMFS_evaluate_for_make+0xac> 
     * I cannot move out of this directory without execute permission.
     */                                                               
                                                                      
    if ( type != IMFS_NO_MORE_PATH )                                  
      if ( node->type == IMFS_DIRECTORY )                             
        if ( !IMFS_evaluate_permission( pathloc, RTEMS_LIBIO_PERMS_SEARCH ) )
ffc0e1c4:	7f a3 eb 78 	mr      r3,r29                                 
ffc0e1c8:	38 80 00 01 	li      r4,1                                   
ffc0e1cc:	4b ff f8 21 	bl      ffc0d9ec <IMFS_evaluate_permission>    
ffc0e1d0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0e1d4:	41 9e 00 a0 	beq-    cr7,ffc0e274 <IMFS_evaluate_for_make+0x2d0>
ffc0e1d8:	81 3d 00 00 	lwz     r9,0(r29)                              
ffc0e1dc:	4b ff fe c8 	b       ffc0e0a4 <IMFS_evaluate_for_make+0x100>
                                                                      
          if ( pathloc->node_access == rtems_filesystem_root.node_access ) {
            break;                                                    
                                                                      
	  } else {                                                           
            newloc = pathloc->mt_entry->mt_point_node;                
ffc0e1e0:	81 27 00 14 	lwz     r9,20(r7)                              
ffc0e1e4:	81 07 00 08 	lwz     r8,8(r7)                               
ffc0e1e8:	81 47 00 0c 	lwz     r10,12(r7)                             
ffc0e1ec:	81 67 00 10 	lwz     r11,16(r7)                             
ffc0e1f0:	80 07 00 18 	lwz     r0,24(r7)                              
	 */                                                                  
                                                                      
        if ( node->info.directory.mt_fs != NULL ) {                   
          newloc  = node->info.directory.mt_fs->mt_fs_root;           
          *pathloc = newloc;                                          
          return (*pathloc->ops->evalformake_h)( &path[i-len], pathloc, name );
ffc0e1f4:	80 61 00 08 	lwz     r3,8(r1)                               
ffc0e1f8:	7f a4 eb 78 	mr      r4,r29                                 
	 * If we are at a node that is a mount point. Set loc to the         
	 * new fs root node and let them finish evaluating the path.         
	 */                                                                  
                                                                      
        if ( node->info.directory.mt_fs != NULL ) {                   
          newloc  = node->info.directory.mt_fs->mt_fs_root;           
ffc0e1fc:	90 01 00 1c 	stw     r0,28(r1)                              
          *pathloc = newloc;                                          
          return (*pathloc->ops->evalformake_h)( &path[i-len], pathloc, name );
ffc0e200:	7e e5 bb 78 	mr      r5,r23                                 
ffc0e204:	7c 63 e0 50 	subf    r3,r3,r28                              
	 * If we are at a node that is a mount point. Set loc to the         
	 * new fs root node and let them finish evaluating the path.         
	 */                                                                  
                                                                      
        if ( node->info.directory.mt_fs != NULL ) {                   
          newloc  = node->info.directory.mt_fs->mt_fs_root;           
ffc0e208:	91 01 00 0c 	stw     r8,12(r1)                              
          *pathloc = newloc;                                          
          return (*pathloc->ops->evalformake_h)( &path[i-len], pathloc, name );
ffc0e20c:	7c 7a 1a 14 	add     r3,r26,r3                              
	 * If we are at a node that is a mount point. Set loc to the         
	 * new fs root node and let them finish evaluating the path.         
	 */                                                                  
                                                                      
        if ( node->info.directory.mt_fs != NULL ) {                   
          newloc  = node->info.directory.mt_fs->mt_fs_root;           
ffc0e210:	91 41 00 10 	stw     r10,16(r1)                             
ffc0e214:	91 61 00 14 	stw     r11,20(r1)                             
ffc0e218:	91 21 00 18 	stw     r9,24(r1)                              
          *pathloc = newloc;                                          
ffc0e21c:	90 1d 00 10 	stw     r0,16(r29)                             
          return (*pathloc->ops->evalformake_h)( &path[i-len], pathloc, name );
ffc0e220:	80 09 00 04 	lwz     r0,4(r9)                               
	 * new fs root node and let them finish evaluating the path.         
	 */                                                                  
                                                                      
        if ( node->info.directory.mt_fs != NULL ) {                   
          newloc  = node->info.directory.mt_fs->mt_fs_root;           
          *pathloc = newloc;                                          
ffc0e224:	91 1d 00 00 	stw     r8,0(r29)                              
          return (*pathloc->ops->evalformake_h)( &path[i-len], pathloc, name );
ffc0e228:	7c 09 03 a6 	mtctr   r0                                     
	 * new fs root node and let them finish evaluating the path.         
	 */                                                                  
                                                                      
        if ( node->info.directory.mt_fs != NULL ) {                   
          newloc  = node->info.directory.mt_fs->mt_fs_root;           
          *pathloc = newloc;                                          
ffc0e22c:	91 5d 00 04 	stw     r10,4(r29)                             
ffc0e230:	91 7d 00 08 	stw     r11,8(r29)                             
ffc0e234:	91 3d 00 0c 	stw     r9,12(r29)                             
          return (*pathloc->ops->evalformake_h)( &path[i-len], pathloc, name );
ffc0e238:	4e 80 04 21 	bctrl                                          
ffc0e23c:	7c 7e 1b 78 	mr      r30,r3                                 
ffc0e240:	4b ff fe 10 	b       ffc0e050 <IMFS_evaluate_for_make+0xac> 
                                                                      
  /*                                                                  
   * Verify we can execute and write to this directory.               
   */                                                                 
                                                                      
  result = IMFS_Set_handlers( pathloc );                              
ffc0e244:	7f a3 eb 78 	mr      r3,r29                                 
ffc0e248:	4b ff f7 19 	bl      ffc0d960 <IMFS_Set_handlers>           
                                                                      
  /*                                                                  
   * The returned node must be a directory                            
   */                                                                 
  node = pathloc->node_access;                                        
  if ( node->type != IMFS_DIRECTORY )                                 
ffc0e24c:	81 3d 00 00 	lwz     r9,0(r29)                              
                                                                      
  /*                                                                  
   * Verify we can execute and write to this directory.               
   */                                                                 
                                                                      
  result = IMFS_Set_handlers( pathloc );                              
ffc0e250:	7c 7e 1b 78 	mr      r30,r3                                 
                                                                      
  /*                                                                  
   * The returned node must be a directory                            
   */                                                                 
  node = pathloc->node_access;                                        
  if ( node->type != IMFS_DIRECTORY )                                 
ffc0e254:	80 09 00 4c 	lwz     r0,76(r9)                              
ffc0e258:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0e25c:	40 9e 00 2c 	bne-    cr7,ffc0e288 <IMFS_evaluate_for_make+0x2e4><== NEVER TAKEN
                                                                      
  /*                                                                  
   * We must have Write and execute permission on the returned node.  
   */                                                                 
                                                                      
  if ( !IMFS_evaluate_permission( pathloc, RTEMS_LIBIO_PERMS_WX ) )   
ffc0e260:	7f a3 eb 78 	mr      r3,r29                                 
ffc0e264:	38 80 00 03 	li      r4,3                                   
ffc0e268:	4b ff f7 85 	bl      ffc0d9ec <IMFS_evaluate_permission>    
ffc0e26c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0e270:	40 9e fd e0 	bne+    cr7,ffc0e050 <IMFS_evaluate_for_make+0xac>
    rtems_set_errno_and_return_minus_one( EACCES );                   
ffc0e274:	48 00 3e d5 	bl      ffc12148 <__errno>                     
ffc0e278:	38 00 00 0d 	li      r0,13                                  
ffc0e27c:	90 03 00 00 	stw     r0,0(r3)                               
ffc0e280:	3b c0 ff ff 	li      r30,-1                                 
ffc0e284:	4b ff fd cc 	b       ffc0e050 <IMFS_evaluate_for_make+0xac> 
  /*                                                                  
   * The returned node must be a directory                            
   */                                                                 
  node = pathloc->node_access;                                        
  if ( node->type != IMFS_DIRECTORY )                                 
    rtems_set_errno_and_return_minus_one( ENOTDIR );                  
ffc0e288:	48 00 3e c1 	bl      ffc12148 <__errno>                     
ffc0e28c:	38 00 00 14 	li      r0,20                                  
ffc0e290:	90 03 00 00 	stw     r0,0(r3)                               
ffc0e294:	3b c0 ff ff 	li      r30,-1                                 
ffc0e298:	4b ff fd b8 	b       ffc0e050 <IMFS_evaluate_for_make+0xac> 
	 * If we are at a node that is a mount point. Set loc to the         
	 * new fs root node and let them finish evaluating the path.         
	 */                                                                  
                                                                      
        if ( node->info.directory.mt_fs != NULL ) {                   
          newloc  = node->info.directory.mt_fs->mt_fs_root;           
ffc0e29c:	81 27 00 28 	lwz     r9,40(r7)                              
ffc0e2a0:	81 07 00 1c 	lwz     r8,28(r7)                              
ffc0e2a4:	81 47 00 20 	lwz     r10,32(r7)                             
ffc0e2a8:	81 67 00 24 	lwz     r11,36(r7)                             
ffc0e2ac:	80 07 00 2c 	lwz     r0,44(r7)                              
ffc0e2b0:	4b ff ff 44 	b       ffc0e1f4 <IMFS_evaluate_for_make+0x250>
          if ( result == -1 )                                         
            return -1;                                                
                                                                      
	} else if ( node->type == IMFS_SYM_LINK ) {                          
                                                                      
          result = IMFS_evaluate_link( pathloc, 0 );                  
ffc0e2b4:	7f a3 eb 78 	mr      r3,r29                                 
ffc0e2b8:	38 80 00 00 	li      r4,0                                   
ffc0e2bc:	4b ff fb d5 	bl      ffc0de90 <IMFS_evaluate_link>          
                                                                      
          if ( result == -1 )                                         
ffc0e2c0:	2f 83 ff ff 	cmpwi   cr7,r3,-1                              
          if ( result == -1 )                                         
            return -1;                                                
                                                                      
	} else if ( node->type == IMFS_SYM_LINK ) {                          
                                                                      
          result = IMFS_evaluate_link( pathloc, 0 );                  
ffc0e2c4:	7c 7e 1b 78 	mr      r30,r3                                 
                                                                      
          if ( result == -1 )                                         
ffc0e2c8:	41 be fd 88 	beq-    cr7,ffc0e050 <IMFS_evaluate_for_make+0xac><== NEVER TAKEN
ffc0e2cc:	83 dd 00 00 	lwz     r30,0(r29)                             
ffc0e2d0:	4b ff fe 2c 	b       ffc0e0fc <IMFS_evaluate_for_make+0x158>
                                                                      

ffc0de90 <IMFS_evaluate_link>: */ int IMFS_evaluate_link( rtems_filesystem_location_info_t *node, /* IN/OUT */ int flags /* IN */ ) {
ffc0de90:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0de94:	7c 08 02 a6 	mflr    r0                                     
ffc0de98:	93 a1 00 0c 	stw     r29,12(r1)                             
     */                                                               
                                                                      
    rtems_filesystem_link_counts ++;                                  
    if ( rtems_filesystem_link_counts > MAXSYMLINK ) {                
      rtems_filesystem_link_counts = 0;                               
      rtems_set_errno_and_return_minus_one( ELOOP );                  
ffc0de9c:	3f a0 00 00 	lis     r29,0                                  
 */                                                                   
int IMFS_evaluate_link(                                               
  rtems_filesystem_location_info_t  *node,   /* IN/OUT */             
  int                                flags   /* IN     */             
)                                                                     
{                                                                     
ffc0dea0:	93 81 00 08 	stw     r28,8(r1)                              
ffc0dea4:	7c 9c 23 78 	mr      r28,r4                                 
ffc0dea8:	93 c1 00 10 	stw     r30,16(r1)                             
ffc0deac:	7c 7e 1b 78 	mr      r30,r3                                 
ffc0deb0:	90 01 00 1c 	stw     r0,28(r1)                              
ffc0deb4:	93 e1 00 14 	stw     r31,20(r1)                             
     */                                                               
                                                                      
    rtems_filesystem_link_counts ++;                                  
    if ( rtems_filesystem_link_counts > MAXSYMLINK ) {                
      rtems_filesystem_link_counts = 0;                               
      rtems_set_errno_and_return_minus_one( ELOOP );                  
ffc0deb8:	81 3d 26 9c 	lwz     r9,9884(r29)                           
ffc0debc:	48 00 00 14 	b       ffc0ded0 <IMFS_evaluate_link+0x40>     
     */                                                               
                                                                      
    if ( jnode->type == IMFS_HARD_LINK )                              
      result = IMFS_evaluate_hard_link( node, flags );                
                                                                      
    else if (jnode->type == IMFS_SYM_LINK )                           
ffc0dec0:	41 9a 00 90 	beq-    cr6,ffc0df50 <IMFS_evaluate_link+0xc0> 
      result = IMFS_evaluate_sym_link( node, flags );                 
                                                                      
  } while ( ( result == 0 ) && ( ( jnode->type == IMFS_SYM_LINK  ) || 
ffc0dec4:	39 6b ff fd 	addi    r11,r11,-3                             
ffc0dec8:	2b 8b 00 01 	cmplwi  cr7,r11,1                              
ffc0decc:	41 9d 00 58 	bgt-    cr7,ffc0df24 <IMFS_evaluate_link+0x94> <== ALWAYS TAKEN
                                                                      
    /*                                                                
     * Increment and check the link counter.                          
     */                                                               
                                                                      
    rtems_filesystem_link_counts ++;                                  
ffc0ded0:	a1 69 00 30 	lhz     r11,48(r9)                             
{                                                                     
  IMFS_jnode_t                     *jnode;                            
  int                               result = 0;                       
                                                                      
  do {                                                                
    jnode  = node->node_access;                                       
ffc0ded4:	83 fe 00 00 	lwz     r31,0(r30)                             
                                                                      
    /*                                                                
     * Increment and check the link counter.                          
     */                                                               
                                                                      
    rtems_filesystem_link_counts ++;                                  
ffc0ded8:	38 0b 00 01 	addi    r0,r11,1                               
ffc0dedc:	54 00 04 3e 	clrlwi  r0,r0,16                               
    if ( rtems_filesystem_link_counts > MAXSYMLINK ) {                
ffc0dee0:	2b 80 00 05 	cmplwi  cr7,r0,5                               
                                                                      
    /*                                                                
     * Increment and check the link counter.                          
     */                                                               
                                                                      
    rtems_filesystem_link_counts ++;                                  
ffc0dee4:	b0 09 00 30 	sth     r0,48(r9)                              
    if ( rtems_filesystem_link_counts > MAXSYMLINK ) {                
ffc0dee8:	41 9d 00 84 	bgt-    cr7,ffc0df6c <IMFS_evaluate_link+0xdc> 
                                                                      
    /*                                                                
     *  Follow the Link node.                                         
     */                                                               
                                                                      
    if ( jnode->type == IMFS_HARD_LINK )                              
ffc0deec:	81 7f 00 4c 	lwz     r11,76(r31)                            
ffc0def0:	2f 8b 00 03 	cmpwi   cr7,r11,3                              
      result = IMFS_evaluate_hard_link( node, flags );                
                                                                      
    else if (jnode->type == IMFS_SYM_LINK )                           
ffc0def4:	2f 0b 00 04 	cmpwi   cr6,r11,4                              
                                                                      
    /*                                                                
     *  Follow the Link node.                                         
     */                                                               
                                                                      
    if ( jnode->type == IMFS_HARD_LINK )                              
ffc0def8:	40 9e ff c8 	bne+    cr7,ffc0dec0 <IMFS_evaluate_link+0x30> 
      result = IMFS_evaluate_hard_link( node, flags );                
ffc0defc:	7f c3 f3 78 	mr      r3,r30                                 
ffc0df00:	7f 84 e3 78 	mr      r4,r28                                 
ffc0df04:	4b ff fb 3d 	bl      ffc0da40 <IMFS_evaluate_hard_link>     
                                                                      
    else if (jnode->type == IMFS_SYM_LINK )                           
      result = IMFS_evaluate_sym_link( node, flags );                 
                                                                      
  } while ( ( result == 0 ) && ( ( jnode->type == IMFS_SYM_LINK  ) || 
                                 ( jnode->type == IMFS_HARD_LINK ) ) );
ffc0df08:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0df0c:	40 9e 00 58 	bne-    cr7,ffc0df64 <IMFS_evaluate_link+0xd4> 
ffc0df10:	81 7f 00 4c 	lwz     r11,76(r31)                            
ffc0df14:	81 3d 26 9c 	lwz     r9,9884(r29)                           
      result = IMFS_evaluate_hard_link( node, flags );                
                                                                      
    else if (jnode->type == IMFS_SYM_LINK )                           
      result = IMFS_evaluate_sym_link( node, flags );                 
                                                                      
  } while ( ( result == 0 ) && ( ( jnode->type == IMFS_SYM_LINK  ) || 
ffc0df18:	39 6b ff fd 	addi    r11,r11,-3                             
ffc0df1c:	2b 8b 00 01 	cmplwi  cr7,r11,1                              
ffc0df20:	40 9d ff b0 	ble+    cr7,ffc0ded0 <IMFS_evaluate_link+0x40> <== ALWAYS TAKEN
ffc0df24:	38 60 00 00 	li      r3,0                                   
                                                                      
  /*                                                                  
   * Clear link counter.                                              
   */                                                                 
                                                                      
  rtems_filesystem_link_counts = 0;                                   
ffc0df28:	38 00 00 00 	li      r0,0                                   
                                                                      
  return result;                                                      
}                                                                     
ffc0df2c:	83 81 00 08 	lwz     r28,8(r1)                              
                                                                      
  /*                                                                  
   * Clear link counter.                                              
   */                                                                 
                                                                      
  rtems_filesystem_link_counts = 0;                                   
ffc0df30:	b0 09 00 30 	sth     r0,48(r9)                              
                                                                      
  return result;                                                      
}                                                                     
ffc0df34:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0df38:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0df3c:	7c 08 03 a6 	mtlr    r0                                     
ffc0df40:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0df44:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0df48:	38 21 00 18 	addi    r1,r1,24                               
ffc0df4c:	4e 80 00 20 	blr                                            
                                                                      
    if ( jnode->type == IMFS_HARD_LINK )                              
      result = IMFS_evaluate_hard_link( node, flags );                
                                                                      
    else if (jnode->type == IMFS_SYM_LINK )                           
      result = IMFS_evaluate_sym_link( node, flags );                 
ffc0df50:	7f c3 f3 78 	mr      r3,r30                                 
ffc0df54:	7f 84 e3 78 	mr      r4,r28                                 
ffc0df58:	4b ff fe 81 	bl      ffc0ddd8 <IMFS_evaluate_sym_link>      
                                                                      
  } while ( ( result == 0 ) && ( ( jnode->type == IMFS_SYM_LINK  ) || 
                                 ( jnode->type == IMFS_HARD_LINK ) ) );
ffc0df5c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0df60:	41 9e ff b0 	beq+    cr7,ffc0df10 <IMFS_evaluate_link+0x80> 
ffc0df64:	81 3d 26 9c 	lwz     r9,9884(r29)                           
ffc0df68:	4b ff ff c0 	b       ffc0df28 <IMFS_evaluate_link+0x98>     
     * Increment and check the link counter.                          
     */                                                               
                                                                      
    rtems_filesystem_link_counts ++;                                  
    if ( rtems_filesystem_link_counts > MAXSYMLINK ) {                
      rtems_filesystem_link_counts = 0;                               
ffc0df6c:	38 00 00 00 	li      r0,0                                   
ffc0df70:	b0 09 00 30 	sth     r0,48(r9)                              
      rtems_set_errno_and_return_minus_one( ELOOP );                  
ffc0df74:	48 00 41 d5 	bl      ffc12148 <__errno>                     
ffc0df78:	38 00 00 5c 	li      r0,92                                  
ffc0df7c:	90 03 00 00 	stw     r0,0(r3)                               
ffc0df80:	38 60 ff ff 	li      r3,-1                                  
   */                                                                 
                                                                      
  rtems_filesystem_link_counts = 0;                                   
                                                                      
  return result;                                                      
}                                                                     
ffc0df84:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0df88:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0df8c:	7c 08 03 a6 	mtlr    r0                                     
ffc0df90:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0df94:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0df98:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0df9c:	38 21 00 18 	addi    r1,r1,24                               
ffc0dfa0:	4e 80 00 20 	blr                                            
                                                                      

ffc0d9ec <IMFS_evaluate_permission>: */ int IMFS_evaluate_permission( rtems_filesystem_location_info_t *node, int flags ) {
ffc0d9ec:	7c 08 02 a6 	mflr    r0                                     
ffc0d9f0:	94 21 ff f8 	stwu    r1,-8(r1)                              
ffc0d9f4:	90 01 00 0c 	stw     r0,12(r1)                              
  uid_t         st_uid;                                               
  gid_t         st_gid;                                               
  IMFS_jnode_t *jnode;                                                
  int           flags_to_test;                                        
                                                                      
  if ( !rtems_libio_is_valid_perms( flags ) )                         
ffc0d9f8:	54 80 00 39 	rlwinm. r0,r4,0,0,28                           
ffc0d9fc:	40 82 00 30 	bne-    ffc0da2c <IMFS_evaluate_permission+0x40><== NEVER TAKEN
                                                                      
  /*                                                                  
   * If all of the flags are set we have permission                   
   * to do this.                                                      
   */                                                                 
  if ( ( flags_to_test & jnode->st_mode) == flags_to_test )           
ffc0da00:	81 23 00 00 	lwz     r9,0(r3)                               
   */                                                                 
                                                                      
  flags_to_test = flags;                                              
                                                                      
  if ( st_uid == jnode->st_uid )                                      
    flags_to_test <<= 6;                                              
ffc0da04:	54 84 30 32 	rlwinm  r4,r4,6,0,25                           
                                                                      
  /*                                                                  
   * If all of the flags are set we have permission                   
   * to do this.                                                      
   */                                                                 
  if ( ( flags_to_test & jnode->st_mode) == flags_to_test )           
ffc0da08:	80 69 00 30 	lwz     r3,48(r9)                              
ffc0da0c:	7c 83 18 38 	and     r3,r4,r3                               
  gid_t         st_gid;                                               
  IMFS_jnode_t *jnode;                                                
  int           flags_to_test;                                        
                                                                      
  if ( !rtems_libio_is_valid_perms( flags ) )                         
    rtems_set_errno_and_return_minus_one( EPERM );                    
ffc0da10:	7c 83 1a 78 	xor     r3,r4,r3                               
ffc0da14:	7c 63 00 34 	cntlzw  r3,r3                                  
ffc0da18:	54 63 d9 7e 	rlwinm  r3,r3,27,5,31                          
   */                                                                 
  if ( ( flags_to_test & jnode->st_mode) == flags_to_test )           
    return 1;                                                         
                                                                      
  return 0;                                                           
}                                                                     
ffc0da1c:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc0da20:	38 21 00 08 	addi    r1,r1,8                                
ffc0da24:	7c 08 03 a6 	mtlr    r0                                     
ffc0da28:	4e 80 00 20 	blr                                            
  gid_t         st_gid;                                               
  IMFS_jnode_t *jnode;                                                
  int           flags_to_test;                                        
                                                                      
  if ( !rtems_libio_is_valid_perms( flags ) )                         
    rtems_set_errno_and_return_minus_one( EPERM );                    
ffc0da2c:	48 00 47 1d 	bl      ffc12148 <__errno>                     <== NOT EXECUTED
ffc0da30:	38 00 00 01 	li      r0,1                                   <== NOT EXECUTED
ffc0da34:	90 03 00 00 	stw     r0,0(r3)                               <== NOT EXECUTED
ffc0da38:	38 60 ff ff 	li      r3,-1                                  <== NOT EXECUTED
ffc0da3c:	4b ff ff e0 	b       ffc0da1c <IMFS_evaluate_permission+0x30><== NOT EXECUTED
                                                                      

ffc0589c <IMFS_fifo_lseek>: rtems_off64_t IMFS_fifo_lseek( rtems_libio_t *iop, rtems_off64_t offset, int whence ) {
ffc0589c:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc058a0:	7c 08 02 a6 	mflr    r0                                     
ffc058a4:	7c 68 1b 78 	mr      r8,r3                                  
ffc058a8:	90 01 00 14 	stw     r0,20(r1)                              
ffc058ac:	93 e1 00 0c 	stw     r31,12(r1)                             
  off_t err = pipe_lseek(LIBIO2PIPE(iop), offset, whence, iop);       
ffc058b0:	81 23 00 1c 	lwz     r9,28(r3)                              
ffc058b4:	80 69 00 50 	lwz     r3,80(r9)                              
ffc058b8:	48 00 c5 f1 	bl      ffc11ea8 <pipe_lseek>                  
ffc058bc:	7c 69 fe 70 	srawi   r9,r3,31                               
  IMFS_FIFO_RETURN(err);                                              
ffc058c0:	2f 89 00 00 	cmpwi   cr7,r9,0                               
  rtems_libio_t *iop,                                                 
  rtems_off64_t  offset,                                              
  int            whence                                               
)                                                                     
{                                                                     
  off_t err = pipe_lseek(LIBIO2PIPE(iop), offset, whence, iop);       
ffc058c4:	7c 7f 1b 78 	mr      r31,r3                                 
ffc058c8:	7c 6a 1b 78 	mr      r10,r3                                 
  IMFS_FIFO_RETURN(err);                                              
ffc058cc:	41 9c 00 20 	blt-    cr7,ffc058ec <IMFS_fifo_lseek+0x50>    <== ALWAYS TAKEN
}                                                                     
ffc058d0:	80 01 00 14 	lwz     r0,20(r1)                              
ffc058d4:	7d 23 4b 78 	mr      r3,r9                                  
ffc058d8:	7d 44 53 78 	mr      r4,r10                                 
ffc058dc:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc058e0:	7c 08 03 a6 	mtlr    r0                                     
ffc058e4:	38 21 00 10 	addi    r1,r1,16                               
ffc058e8:	4e 80 00 20 	blr                                            
  rtems_off64_t  offset,                                              
  int            whence                                               
)                                                                     
{                                                                     
  off_t err = pipe_lseek(LIBIO2PIPE(iop), offset, whence, iop);       
  IMFS_FIFO_RETURN(err);                                              
ffc058ec:	48 00 ef 69 	bl      ffc14854 <__errno>                     
ffc058f0:	7f ff 00 d0 	neg     r31,r31                                
ffc058f4:	93 e3 00 00 	stw     r31,0(r3)                              
ffc058f8:	39 20 ff ff 	li      r9,-1                                  
ffc058fc:	39 40 ff ff 	li      r10,-1                                 
ffc05900:	4b ff ff d0 	b       ffc058d0 <IMFS_fifo_lseek+0x34>        
                                                                      

ffc059c8 <IMFS_fifo_write>: ssize_t IMFS_fifo_write( rtems_libio_t *iop, const void *buffer, size_t count ) {
ffc059c8:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc059cc:	7c 08 02 a6 	mflr    r0                                     
ffc059d0:	7c 66 1b 78 	mr      r6,r3                                  
ffc059d4:	90 01 00 24 	stw     r0,36(r1)                              
ffc059d8:	93 c1 00 18 	stw     r30,24(r1)                             
ffc059dc:	93 e1 00 1c 	stw     r31,28(r1)                             
  IMFS_jnode_t *jnode = iop->pathinfo.node_access;                    
ffc059e0:	83 e3 00 1c 	lwz     r31,28(r3)                             
                                                                      
  int err = pipe_write(JNODE2PIPE(jnode), buffer, count, iop);        
ffc059e4:	80 7f 00 50 	lwz     r3,80(r31)                             
ffc059e8:	48 00 c1 c1 	bl      ffc11ba8 <pipe_write>                  
  if (err > 0) {                                                      
ffc059ec:	7c 7e 1b 79 	mr.     r30,r3                                 
ffc059f0:	40 81 00 38 	ble-    ffc05a28 <IMFS_fifo_write+0x60>        
    IMFS_mtime_ctime_update(jnode);                                   
ffc059f4:	38 61 00 08 	addi    r3,r1,8                                
ffc059f8:	38 80 00 00 	li      r4,0                                   
ffc059fc:	48 00 16 2d 	bl      ffc07028 <gettimeofday>                
ffc05a00:	80 01 00 08 	lwz     r0,8(r1)                               
ffc05a04:	90 1f 00 44 	stw     r0,68(r31)                             
ffc05a08:	90 1f 00 48 	stw     r0,72(r31)                             
  }                                                                   
                                                                      
  IMFS_FIFO_RETURN(err);                                              
}                                                                     
ffc05a0c:	80 01 00 24 	lwz     r0,36(r1)                              
ffc05a10:	7f c3 f3 78 	mr      r3,r30                                 
ffc05a14:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc05a18:	7c 08 03 a6 	mtlr    r0                                     
ffc05a1c:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc05a20:	38 21 00 20 	addi    r1,r1,32                               
ffc05a24:	4e 80 00 20 	blr                                            
  int err = pipe_write(JNODE2PIPE(jnode), buffer, count, iop);        
  if (err > 0) {                                                      
    IMFS_mtime_ctime_update(jnode);                                   
  }                                                                   
                                                                      
  IMFS_FIFO_RETURN(err);                                              
ffc05a28:	41 82 ff e4 	beq+    ffc05a0c <IMFS_fifo_write+0x44>        <== NEVER TAKEN
ffc05a2c:	7f de 00 d0 	neg     r30,r30                                
ffc05a30:	48 00 ee 25 	bl      ffc14854 <__errno>                     
ffc05a34:	93 c3 00 00 	stw     r30,0(r3)                              
ffc05a38:	3b c0 ff ff 	li      r30,-1                                 
ffc05a3c:	4b ff ff d0 	b       ffc05a0c <IMFS_fifo_write+0x44>        
                                                                      

ffc0e3dc <IMFS_find_match_in_dir>: IMFS_jnode_t *IMFS_find_match_in_dir( IMFS_jnode_t *directory, char *name ) {
ffc0e3dc:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0e3e0:	7c 08 02 a6 	mflr    r0                                     
ffc0e3e4:	93 a1 00 0c 	stw     r29,12(r1)                             
                                                                      
  /*                                                                  
   *  Check for "." and ".."                                          
   */                                                                 
                                                                      
  if ( !strcmp( name, dotname ) )                                     
ffc0e3e8:	3f a0 ff c2 	lis     r29,-62                                
ffc0e3ec:	3b bd 8e 74 	addi    r29,r29,-29068                         
                                                                      
IMFS_jnode_t *IMFS_find_match_in_dir(                                 
  IMFS_jnode_t *directory,                                            
  char         *name                                                  
)                                                                     
{                                                                     
ffc0e3f0:	93 c1 00 10 	stw     r30,16(r1)                             
ffc0e3f4:	7c 9e 23 78 	mr      r30,r4                                 
                                                                      
  /*                                                                  
   *  Check for "." and ".."                                          
   */                                                                 
                                                                      
  if ( !strcmp( name, dotname ) )                                     
ffc0e3f8:	7f a4 eb 78 	mr      r4,r29                                 
                                                                      
IMFS_jnode_t *IMFS_find_match_in_dir(                                 
  IMFS_jnode_t *directory,                                            
  char         *name                                                  
)                                                                     
{                                                                     
ffc0e3fc:	93 e1 00 14 	stw     r31,20(r1)                             
ffc0e400:	7c 7f 1b 78 	mr      r31,r3                                 
                                                                      
  /*                                                                  
   *  Check for "." and ".."                                          
   */                                                                 
                                                                      
  if ( !strcmp( name, dotname ) )                                     
ffc0e404:	7f c3 f3 78 	mr      r3,r30                                 
                                                                      
IMFS_jnode_t *IMFS_find_match_in_dir(                                 
  IMFS_jnode_t *directory,                                            
  char         *name                                                  
)                                                                     
{                                                                     
ffc0e408:	90 01 00 1c 	stw     r0,28(r1)                              
ffc0e40c:	93 81 00 08 	stw     r28,8(r1)                              
                                                                      
  /*                                                                  
   *  Check for "." and ".."                                          
   */                                                                 
                                                                      
  if ( !strcmp( name, dotname ) )                                     
ffc0e410:	48 00 4d fd 	bl      ffc1320c <strcmp>                      
ffc0e414:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0e418:	41 9e 00 1c 	beq-    cr7,ffc0e434 <IMFS_find_match_in_dir+0x58><== NEVER TAKEN
    return directory;                                                 
                                                                      
  if ( !strcmp( name, dotdotname ) )                                  
ffc0e41c:	7f c3 f3 78 	mr      r3,r30                                 
ffc0e420:	38 9d 00 04 	addi    r4,r29,4                               
ffc0e424:	48 00 4d e9 	bl      ffc1320c <strcmp>                      
ffc0e428:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0e42c:	40 9e 00 2c 	bne-    cr7,ffc0e458 <IMFS_find_match_in_dir+0x7c><== ALWAYS TAKEN
    return directory->Parent;                                         
ffc0e430:	83 ff 00 08 	lwz     r31,8(r31)                             <== NOT EXECUTED
    if ( !strcmp( name, the_jnode->name ) )                           
      return the_jnode;                                               
  }                                                                   
                                                                      
  return 0;                                                           
}                                                                     
ffc0e434:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0e438:	7f e3 fb 78 	mr      r3,r31                                 
ffc0e43c:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0e440:	7c 08 03 a6 	mtlr    r0                                     
ffc0e444:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0e448:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0e44c:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0e450:	38 21 00 18 	addi    r1,r1,24                               
ffc0e454:	4e 80 00 20 	blr                                            
  if ( !strcmp( name, dotdotname ) )                                  
    return directory->Parent;                                         
                                                                      
  the_chain = &directory->info.directory.Entries;                     
                                                                      
  for ( the_node = the_chain->first;                                  
ffc0e458:	83 bf 00 50 	lwz     r29,80(r31)                            
ffc0e45c:	3b 9f 00 54 	addi    r28,r31,84                             
                                                                      
    if ( !strcmp( name, the_jnode->name ) )                           
      return the_jnode;                                               
  }                                                                   
                                                                      
  return 0;                                                           
ffc0e460:	3b e0 00 00 	li      r31,0                                  
  if ( !strcmp( name, dotdotname ) )                                  
    return directory->Parent;                                         
                                                                      
  the_chain = &directory->info.directory.Entries;                     
                                                                      
  for ( the_node = the_chain->first;                                  
ffc0e464:	7f 9d e0 00 	cmpw    cr7,r29,r28                            
ffc0e468:	40 be 00 14 	bne+    cr7,ffc0e47c <IMFS_find_match_in_dir+0xa0>
ffc0e46c:	4b ff ff c8 	b       ffc0e434 <IMFS_find_match_in_dir+0x58> 
        !rtems_chain_is_tail( the_chain, the_node );                  
        the_node = the_node->next ) {                                 
ffc0e470:	83 bd 00 00 	lwz     r29,0(r29)                             
  if ( !strcmp( name, dotdotname ) )                                  
    return directory->Parent;                                         
                                                                      
  the_chain = &directory->info.directory.Entries;                     
                                                                      
  for ( the_node = the_chain->first;                                  
ffc0e474:	7f 9d e0 00 	cmpw    cr7,r29,r28                            
ffc0e478:	41 9e 00 20 	beq-    cr7,ffc0e498 <IMFS_find_match_in_dir+0xbc>
        !rtems_chain_is_tail( the_chain, the_node );                  
        the_node = the_node->next ) {                                 
                                                                      
    the_jnode = (IMFS_jnode_t *) the_node;                            
                                                                      
    if ( !strcmp( name, the_jnode->name ) )                           
ffc0e47c:	38 9d 00 0c 	addi    r4,r29,12                              
ffc0e480:	7f c3 f3 78 	mr      r3,r30                                 
ffc0e484:	48 00 4d 89 	bl      ffc1320c <strcmp>                      
ffc0e488:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0e48c:	40 9e ff e4 	bne+    cr7,ffc0e470 <IMFS_find_match_in_dir+0x94>
                                                                      
  for ( the_node = the_chain->first;                                  
        !rtems_chain_is_tail( the_chain, the_node );                  
        the_node = the_node->next ) {                                 
                                                                      
    the_jnode = (IMFS_jnode_t *) the_node;                            
ffc0e490:	7f bf eb 78 	mr      r31,r29                                
ffc0e494:	4b ff ff a0 	b       ffc0e434 <IMFS_find_match_in_dir+0x58> 
                                                                      
    if ( !strcmp( name, the_jnode->name ) )                           
      return the_jnode;                                               
  }                                                                   
                                                                      
  return 0;                                                           
ffc0e498:	3b e0 00 00 	li      r31,0                                  
ffc0e49c:	4b ff ff 98 	b       ffc0e434 <IMFS_find_match_in_dir+0x58> 
                                                                      

ffc0e2d4 <IMFS_fsunmount>: ((IMFS_jnode_t *)( rtems_chain_head( jnode_get_control( jnode ) )->next)) int IMFS_fsunmount( rtems_filesystem_mount_table_entry_t *temp_mt_entry ) {
ffc0e2d4:	94 21 ff c8 	stwu    r1,-56(r1)                             
ffc0e2d8:	7c 08 02 a6 	mflr    r0                                     
ffc0e2dc:	90 01 00 3c 	stw     r0,60(r1)                              
    * Traverse tree that starts at the mt_fs_root and deallocate memory
    * associated memory space                                         
    */                                                                
                                                                      
   jnode = (IMFS_jnode_t *)temp_mt_entry->mt_fs_root.node_access;     
   loc = temp_mt_entry->mt_fs_root;                                   
ffc0e2e0:	80 03 00 2c 	lwz     r0,44(r3)                              
    ((IMFS_jnode_t *)( rtems_chain_head( jnode_get_control( jnode ) )->next))
                                                                      
int IMFS_fsunmount(                                                   
  rtems_filesystem_mount_table_entry_t *temp_mt_entry                 
)                                                                     
{                                                                     
ffc0e2e4:	93 a1 00 2c 	stw     r29,44(r1)                             
    * Traverse tree that starts at the mt_fs_root and deallocate memory
    * associated memory space                                         
    */                                                                
                                                                      
   jnode = (IMFS_jnode_t *)temp_mt_entry->mt_fs_root.node_access;     
   loc = temp_mt_entry->mt_fs_root;                                   
ffc0e2e8:	81 43 00 20 	lwz     r10,32(r3)                             
   /*                                                                 
    * Traverse tree that starts at the mt_fs_root and deallocate memory
    * associated memory space                                         
    */                                                                
                                                                      
   jnode = (IMFS_jnode_t *)temp_mt_entry->mt_fs_root.node_access;     
ffc0e2ec:	83 a3 00 1c 	lwz     r29,28(r3)                             
   loc = temp_mt_entry->mt_fs_root;                                   
ffc0e2f0:	81 63 00 24 	lwz     r11,36(r3)                             
ffc0e2f4:	81 23 00 28 	lwz     r9,40(r3)                              
ffc0e2f8:	90 01 00 18 	stw     r0,24(r1)                              
                                                                      
   /*                                                                 
    *  Set this to null to indicate that it is being unmounted.       
    */                                                                
                                                                      
   temp_mt_entry->mt_fs_root.node_access = NULL;                      
ffc0e2fc:	38 00 00 00 	li      r0,0                                   
    ((IMFS_jnode_t *)( rtems_chain_head( jnode_get_control( jnode ) )->next))
                                                                      
int IMFS_fsunmount(                                                   
  rtems_filesystem_mount_table_entry_t *temp_mt_entry                 
)                                                                     
{                                                                     
ffc0e300:	93 e1 00 34 	stw     r31,52(r1)                             
ffc0e304:	3b e1 00 08 	addi    r31,r1,8                               
ffc0e308:	93 c1 00 30 	stw     r30,48(r1)                             
    * Traverse tree that starts at the mt_fs_root and deallocate memory
    * associated memory space                                         
    */                                                                
                                                                      
   jnode = (IMFS_jnode_t *)temp_mt_entry->mt_fs_root.node_access;     
   loc = temp_mt_entry->mt_fs_root;                                   
ffc0e30c:	93 a1 00 08 	stw     r29,8(r1)                              
ffc0e310:	91 41 00 0c 	stw     r10,12(r1)                             
ffc0e314:	91 61 00 10 	stw     r11,16(r1)                             
ffc0e318:	91 21 00 14 	stw     r9,20(r1)                              
                                                                      
   /*                                                                 
    *  Set this to null to indicate that it is being unmounted.       
    */                                                                
                                                                      
   temp_mt_entry->mt_fs_root.node_access = NULL;                      
ffc0e31c:	90 03 00 1c 	stw     r0,28(r3)                              
                                                                      
   do {                                                               
     next = jnode->Parent;                                            
     loc.node_access = (void *)jnode;                                 
     IMFS_Set_handlers( &loc );                                       
ffc0e320:	7f e3 fb 78 	mr      r3,r31                                 
    */                                                                
                                                                      
   temp_mt_entry->mt_fs_root.node_access = NULL;                      
                                                                      
   do {                                                               
     next = jnode->Parent;                                            
ffc0e324:	83 dd 00 08 	lwz     r30,8(r29)                             
     loc.node_access = (void *)jnode;                                 
ffc0e328:	93 a1 00 08 	stw     r29,8(r1)                              
     IMFS_Set_handlers( &loc );                                       
ffc0e32c:	4b ff f6 35 	bl      ffc0d960 <IMFS_Set_handlers>           
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc0e330:	39 3d 00 54 	addi    r9,r29,84                              
                                                                      
     if ( jnode->type != IMFS_DIRECTORY ) {                           
ffc0e334:	80 1d 00 4c 	lwz     r0,76(r29)                             
ffc0e338:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0e33c:	40 9e 00 60 	bne-    cr7,ffc0e39c <IMFS_fsunmount+0xc8>     
        result = IMFS_unlink( NULL, &loc );                           
        if (result != 0)                                              
          return -1;                                                  
        jnode = next;                                                 
     } else if ( jnode_has_no_children( jnode ) ) {                   
ffc0e340:	80 1d 00 50 	lwz     r0,80(r29)                             
ffc0e344:	7f 80 48 00 	cmpw    cr7,r0,r9                              
ffc0e348:	41 9e 00 74 	beq-    cr7,ffc0e3bc <IMFS_fsunmount+0xe8>     
        result = IMFS_unlink( NULL, &loc );                           
        if (result != 0)                                              
          return -1;                                                  
        jnode = next;                                                 
     }                                                                
     if ( jnode != NULL ) {                                           
ffc0e34c:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
ffc0e350:	41 9e 00 2c 	beq-    cr7,ffc0e37c <IMFS_fsunmount+0xa8>     
       if ( jnode->type == IMFS_DIRECTORY ) {                         
ffc0e354:	80 1d 00 4c 	lwz     r0,76(r29)                             
ffc0e358:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0e35c:	40 9e ff c4 	bne+    cr7,ffc0e320 <IMFS_fsunmount+0x4c>     <== NEVER TAKEN
         if ( jnode_has_children( jnode ) )                           
ffc0e360:	80 1d 00 50 	lwz     r0,80(r29)                             
ffc0e364:	39 3d 00 54 	addi    r9,r29,84                              
ffc0e368:	7f 80 48 00 	cmpw    cr7,r0,r9                              
ffc0e36c:	41 be ff b4 	beq-    cr7,ffc0e320 <IMFS_fsunmount+0x4c>     
           jnode = jnode_get_first_child( jnode );                    
       }                                                              
     }                                                                
   } while (jnode != NULL);                                           
ffc0e370:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0e374:	7c 1d 03 78 	mr      r29,r0                                 
ffc0e378:	40 9e ff a8 	bne+    cr7,ffc0e320 <IMFS_fsunmount+0x4c>     <== ALWAYS TAKEN
                                                                      
   return 0;                                                          
ffc0e37c:	38 60 00 00 	li      r3,0                                   
}                                                                     
ffc0e380:	80 01 00 3c 	lwz     r0,60(r1)                              
ffc0e384:	83 a1 00 2c 	lwz     r29,44(r1)                             
ffc0e388:	7c 08 03 a6 	mtlr    r0                                     
ffc0e38c:	83 c1 00 30 	lwz     r30,48(r1)                             
ffc0e390:	83 e1 00 34 	lwz     r31,52(r1)                             
ffc0e394:	38 21 00 38 	addi    r1,r1,56                               
ffc0e398:	4e 80 00 20 	blr                                            
     next = jnode->Parent;                                            
     loc.node_access = (void *)jnode;                                 
     IMFS_Set_handlers( &loc );                                       
                                                                      
     if ( jnode->type != IMFS_DIRECTORY ) {                           
        result = IMFS_unlink( NULL, &loc );                           
ffc0e39c:	7f e4 fb 78 	mr      r4,r31                                 
ffc0e3a0:	38 60 00 00 	li      r3,0                                   
ffc0e3a4:	4b ff 61 a9 	bl      ffc0454c <IMFS_unlink>                 
        if (result != 0)                                              
          return -1;                                                  
        jnode = next;                                                 
ffc0e3a8:	7f dd f3 78 	mr      r29,r30                                
     loc.node_access = (void *)jnode;                                 
     IMFS_Set_handlers( &loc );                                       
                                                                      
     if ( jnode->type != IMFS_DIRECTORY ) {                           
        result = IMFS_unlink( NULL, &loc );                           
        if (result != 0)                                              
ffc0e3ac:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0e3b0:	41 9e ff 9c 	beq+    cr7,ffc0e34c <IMFS_fsunmount+0x78>     <== ALWAYS TAKEN
          return -1;                                                  
        jnode = next;                                                 
     } else if ( jnode_has_no_children( jnode ) ) {                   
        result = IMFS_unlink( NULL, &loc );                           
        if (result != 0)                                              
          return -1;                                                  
ffc0e3b4:	38 60 ff ff 	li      r3,-1                                  <== NOT EXECUTED
ffc0e3b8:	4b ff ff c8 	b       ffc0e380 <IMFS_fsunmount+0xac>         <== NOT EXECUTED
        result = IMFS_unlink( NULL, &loc );                           
        if (result != 0)                                              
          return -1;                                                  
        jnode = next;                                                 
     } else if ( jnode_has_no_children( jnode ) ) {                   
        result = IMFS_unlink( NULL, &loc );                           
ffc0e3bc:	38 60 00 00 	li      r3,0                                   
ffc0e3c0:	7f e4 fb 78 	mr      r4,r31                                 
ffc0e3c4:	4b ff 61 89 	bl      ffc0454c <IMFS_unlink>                 
        if (result != 0)                                              
          return -1;                                                  
        jnode = next;                                                 
ffc0e3c8:	7f dd f3 78 	mr      r29,r30                                
        if (result != 0)                                              
          return -1;                                                  
        jnode = next;                                                 
     } else if ( jnode_has_no_children( jnode ) ) {                   
        result = IMFS_unlink( NULL, &loc );                           
        if (result != 0)                                              
ffc0e3cc:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0e3d0:	41 9e ff 7c 	beq+    cr7,ffc0e34c <IMFS_fsunmount+0x78>     <== ALWAYS TAKEN
          return -1;                                                  
ffc0e3d4:	38 60 ff ff 	li      r3,-1                                  <== NOT EXECUTED
ffc0e3d8:	4b ff ff a8 	b       ffc0e380 <IMFS_fsunmount+0xac>         <== NOT EXECUTED
                                                                      

ffc0e4a0 <IMFS_get_token>: const char *path, int pathlen, char *token, int *token_len ) {
ffc0e4a0:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc0e4a4:	7c 08 02 a6 	mflr    r0                                     
ffc0e4a8:	93 41 00 08 	stw     r26,8(r1)                              
ffc0e4ac:	7c da 33 78 	mr      r26,r6                                 
ffc0e4b0:	93 81 00 10 	stw     r28,16(r1)                             
  register int i = 0;                                                 
ffc0e4b4:	3b 80 00 00 	li      r28,0                                  
  const char       *path,                                             
  int               pathlen,                                          
  char             *token,                                            
  int              *token_len                                         
)                                                                     
{                                                                     
ffc0e4b8:	93 a1 00 14 	stw     r29,20(r1)                             
ffc0e4bc:	7c 9d 23 78 	mr      r29,r4                                 
ffc0e4c0:	93 c1 00 18 	stw     r30,24(r1)                             
ffc0e4c4:	7c be 2b 78 	mr      r30,r5                                 
ffc0e4c8:	93 e1 00 1c 	stw     r31,28(r1)                             
ffc0e4cc:	7c 7f 1b 78 	mr      r31,r3                                 
ffc0e4d0:	90 01 00 24 	stw     r0,36(r1)                              
ffc0e4d4:	93 61 00 0c 	stw     r27,12(r1)                             
  register char c;                                                    
                                                                      
  /*                                                                  
   *  Copy a name into token.  (Remember NULL is a token.)            
   */                                                                 
  c = path[i];                                                        
ffc0e4d8:	8b 63 00 00 	lbz     r27,0(r3)                              
  while ( (!IMFS_is_separator(c)) && (i < pathlen) && (i <= IMFS_NAME_MAX) ) {
ffc0e4dc:	48 00 00 08 	b       ffc0e4e4 <IMFS_get_token+0x44>         
       return IMFS_INVALID_TOKEN;                                     
                                                                      
     if ( !IMFS_is_valid_name_char(c) )                               
       type = IMFS_INVALID_TOKEN;                                     
                                                                      
     c = path [++i];                                                  
ffc0e4e0:	7f 7f e0 ae 	lbzx    r27,r31,r28                            
                                                                      
  /*                                                                  
   *  Copy a name into token.  (Remember NULL is a token.)            
   */                                                                 
  c = path[i];                                                        
  while ( (!IMFS_is_separator(c)) && (i < pathlen) && (i <= IMFS_NAME_MAX) ) {
ffc0e4e4:	7f 63 db 78 	mr      r3,r27                                 
ffc0e4e8:	4b ff 7a 21 	bl      ffc05f08 <rtems_filesystem_is_separator>
ffc0e4ec:	7f 1c e8 00 	cmpw    cr6,r28,r29                            
ffc0e4f0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
                                                                      
     token[i] = c;                                                    
                                                                      
     if ( i == IMFS_NAME_MAX )                                        
ffc0e4f4:	2c 9c 00 20 	cmpwi   cr1,r28,32                             
                                                                      
  /*                                                                  
   *  Copy a name into token.  (Remember NULL is a token.)            
   */                                                                 
  c = path[i];                                                        
  while ( (!IMFS_is_separator(c)) && (i < pathlen) && (i <= IMFS_NAME_MAX) ) {
ffc0e4f8:	40 9e 00 40 	bne-    cr7,ffc0e538 <IMFS_get_token+0x98>     
ffc0e4fc:	40 98 00 3c 	bge-    cr6,ffc0e538 <IMFS_get_token+0x98>     <== NEVER TAKEN
                                                                      
     token[i] = c;                                                    
ffc0e500:	7f 7e e1 ae 	stbx    r27,r30,r28                            
       return IMFS_INVALID_TOKEN;                                     
                                                                      
     if ( !IMFS_is_valid_name_char(c) )                               
       type = IMFS_INVALID_TOKEN;                                     
                                                                      
     c = path [++i];                                                  
ffc0e504:	3b 9c 00 01 	addi    r28,r28,1                              
  c = path[i];                                                        
  while ( (!IMFS_is_separator(c)) && (i < pathlen) && (i <= IMFS_NAME_MAX) ) {
                                                                      
     token[i] = c;                                                    
                                                                      
     if ( i == IMFS_NAME_MAX )                                        
ffc0e508:	40 86 ff d8 	bne+    cr1,ffc0e4e0 <IMFS_get_token+0x40>     
       return IMFS_INVALID_TOKEN;                                     
ffc0e50c:	38 60 00 04 	li      r3,4                                   
    else if ( strcmp( token, "." ) == 0 )                             
      type = IMFS_CURRENT_DIR;                                        
  }                                                                   
                                                                      
  return type;                                                        
}                                                                     
ffc0e510:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0e514:	83 41 00 08 	lwz     r26,8(r1)                              
ffc0e518:	7c 08 03 a6 	mtlr    r0                                     
ffc0e51c:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc0e520:	83 81 00 10 	lwz     r28,16(r1)                             
ffc0e524:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc0e528:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0e52c:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0e530:	38 21 00 20 	addi    r1,r1,32                               
ffc0e534:	4e 80 00 20 	blr                                            
                                                                      
  /*                                                                  
   *  Copy a seperator into token.                                    
   */                                                                 
                                                                      
  if ( i == 0 ) {                                                     
ffc0e538:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
ffc0e53c:	40 9e 00 28 	bne-    cr7,ffc0e564 <IMFS_get_token+0xc4>     
    token[i] = c;                                                     
                                                                      
    if ( (token[i] != '\0') && pathlen ) {                            
ffc0e540:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
  /*                                                                  
   *  Copy a seperator into token.                                    
   */                                                                 
                                                                      
  if ( i == 0 ) {                                                     
    token[i] = c;                                                     
ffc0e544:	9b 7e 00 00 	stb     r27,0(r30)                             
                                                                      
    if ( (token[i] != '\0') && pathlen ) {                            
      i++;                                                            
      type = IMFS_CURRENT_DIR;                                        
    } else {                                                          
      type = IMFS_NO_MORE_PATH;                                       
ffc0e548:	38 60 00 00 	li      r3,0                                   
   */                                                                 
                                                                      
  if ( i == 0 ) {                                                     
    token[i] = c;                                                     
                                                                      
    if ( (token[i] != '\0') && pathlen ) {                            
ffc0e54c:	41 9e 00 10 	beq-    cr7,ffc0e55c <IMFS_get_token+0xbc>     
ffc0e550:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
      i++;                                                            
      type = IMFS_CURRENT_DIR;                                        
    } else {                                                          
      type = IMFS_NO_MORE_PATH;                                       
ffc0e554:	7f 83 e3 78 	mr      r3,r28                                 
   */                                                                 
                                                                      
  if ( i == 0 ) {                                                     
    token[i] = c;                                                     
                                                                      
    if ( (token[i] != '\0') && pathlen ) {                            
ffc0e558:	40 9e 00 8c 	bne-    cr7,ffc0e5e4 <IMFS_get_token+0x144>    
                                                                      
  /*                                                                  
   *  Set token_len to the number of characters copied.               
   */                                                                 
                                                                      
  *token_len = i;                                                     
ffc0e55c:	93 9a 00 00 	stw     r28,0(r26)                             
ffc0e560:	4b ff ff b0 	b       ffc0e510 <IMFS_get_token+0x70>         
      i++;                                                            
      type = IMFS_CURRENT_DIR;                                        
    } else {                                                          
      type = IMFS_NO_MORE_PATH;                                       
    }                                                                 
  } else if (token[ i-1 ] != '\0') {                                  
ffc0e564:	7d 3e e2 14 	add     r9,r30,r28                             
ffc0e568:	88 09 ff ff 	lbz     r0,-1(r9)                              
ffc0e56c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0e570:	41 9e 00 0c 	beq-    cr7,ffc0e57c <IMFS_get_token+0xdc>     <== NEVER TAKEN
    token[i] = '\0';                                                  
ffc0e574:	38 00 00 00 	li      r0,0                                   
ffc0e578:	7c 1e e1 ae 	stbx    r0,r30,r28                             
                                                                      
  /*                                                                  
   *  Set token_len to the number of characters copied.               
   */                                                                 
                                                                      
  *token_len = i;                                                     
ffc0e57c:	93 9a 00 00 	stw     r28,0(r26)                             
   *  If we copied something that was not a seperator see if          
   *  it was a special name.                                          
   */                                                                 
                                                                      
  if ( type == IMFS_NAME ) {                                          
    if ( strcmp( token, "..") == 0 )                                  
ffc0e580:	3c 80 ff c2 	lis     r4,-62                                 
ffc0e584:	7f c3 f3 78 	mr      r3,r30                                 
ffc0e588:	38 84 8e 80 	addi    r4,r4,-29056                           
ffc0e58c:	48 00 4c 81 	bl      ffc1320c <strcmp>                      
ffc0e590:	2f 83 00 00 	cmpwi   cr7,r3,0                               
      type = IMFS_UP_DIR;                                             
ffc0e594:	38 60 00 02 	li      r3,2                                   
   *  If we copied something that was not a seperator see if          
   *  it was a special name.                                          
   */                                                                 
                                                                      
  if ( type == IMFS_NAME ) {                                          
    if ( strcmp( token, "..") == 0 )                                  
ffc0e598:	41 be ff 78 	beq-    cr7,ffc0e510 <IMFS_get_token+0x70>     
      type = IMFS_UP_DIR;                                             
    else if ( strcmp( token, "." ) == 0 )                             
ffc0e59c:	3c 80 ff c2 	lis     r4,-62                                 
ffc0e5a0:	7f c3 f3 78 	mr      r3,r30                                 
ffc0e5a4:	38 84 8e 7c 	addi    r4,r4,-29060                           
ffc0e5a8:	48 00 4c 65 	bl      ffc1320c <strcmp>                      
      type = IMFS_CURRENT_DIR;                                        
  }                                                                   
                                                                      
  return type;                                                        
}                                                                     
ffc0e5ac:	80 01 00 24 	lwz     r0,36(r1)                              
   */                                                                 
                                                                      
  if ( type == IMFS_NAME ) {                                          
    if ( strcmp( token, "..") == 0 )                                  
      type = IMFS_UP_DIR;                                             
    else if ( strcmp( token, "." ) == 0 )                             
ffc0e5b0:	30 63 ff ff 	addic   r3,r3,-1                               
ffc0e5b4:	7c 63 19 10 	subfe   r3,r3,r3                               
      type = IMFS_CURRENT_DIR;                                        
  }                                                                   
                                                                      
  return type;                                                        
}                                                                     
ffc0e5b8:	83 41 00 08 	lwz     r26,8(r1)                              
ffc0e5bc:	7c 08 03 a6 	mtlr    r0                                     
ffc0e5c0:	83 61 00 0c 	lwz     r27,12(r1)                             
   */                                                                 
                                                                      
  if ( type == IMFS_NAME ) {                                          
    if ( strcmp( token, "..") == 0 )                                  
      type = IMFS_UP_DIR;                                             
    else if ( strcmp( token, "." ) == 0 )                             
ffc0e5c4:	54 63 00 3c 	rlwinm  r3,r3,0,0,30                           
      type = IMFS_CURRENT_DIR;                                        
  }                                                                   
                                                                      
  return type;                                                        
}                                                                     
ffc0e5c8:	83 81 00 10 	lwz     r28,16(r1)                             
   */                                                                 
                                                                      
  if ( type == IMFS_NAME ) {                                          
    if ( strcmp( token, "..") == 0 )                                  
      type = IMFS_UP_DIR;                                             
    else if ( strcmp( token, "." ) == 0 )                             
ffc0e5cc:	38 63 00 03 	addi    r3,r3,3                                
      type = IMFS_CURRENT_DIR;                                        
  }                                                                   
                                                                      
  return type;                                                        
}                                                                     
ffc0e5d0:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc0e5d4:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0e5d8:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0e5dc:	38 21 00 20 	addi    r1,r1,32                               
ffc0e5e0:	4e 80 00 20 	blr                                            
                                                                      
  if ( i == 0 ) {                                                     
    token[i] = c;                                                     
                                                                      
    if ( (token[i] != '\0') && pathlen ) {                            
      i++;                                                            
ffc0e5e4:	3b 80 00 01 	li      r28,1                                  
      type = IMFS_CURRENT_DIR;                                        
ffc0e5e8:	38 60 00 01 	li      r3,1                                   
                                                                      
  /*                                                                  
   *  Set token_len to the number of characters copied.               
   */                                                                 
                                                                      
  *token_len = i;                                                     
ffc0e5ec:	93 9a 00 00 	stw     r28,0(r26)                             
ffc0e5f0:	4b ff ff 20 	b       ffc0e510 <IMFS_get_token+0x70>         
                                                                      

ffc04048 <IMFS_initialize_support>: const rtems_filesystem_operations_table *op_table, const rtems_filesystem_file_handlers_r *memfile_handlers, const rtems_filesystem_file_handlers_r *directory_handlers, const rtems_filesystem_file_handlers_r *fifo_handlers ) {
ffc04048:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc0404c:	7c 08 02 a6 	mflr    r0                                     
  IMFS_jnode_t                          *jnode;                       
                                                                      
  /*                                                                  
   * determine/check value for imfs_memfile_bytes_per_block           
   */                                                                 
  IMFS_determine_bytes_per_block(&imfs_memfile_bytes_per_block,       
ffc04050:	3d 20 00 00 	lis     r9,0                                   
   const rtems_filesystem_operations_table    *op_table,              
   const rtems_filesystem_file_handlers_r     *memfile_handlers,      
   const rtems_filesystem_file_handlers_r     *directory_handlers,    
   const rtems_filesystem_file_handlers_r     *fifo_handlers          
)                                                                     
{                                                                     
ffc04054:	90 01 00 24 	stw     r0,36(r1)                              
  IMFS_jnode_t                          *jnode;                       
                                                                      
  /*                                                                  
   * determine/check value for imfs_memfile_bytes_per_block           
   */                                                                 
  IMFS_determine_bytes_per_block(&imfs_memfile_bytes_per_block,       
ffc04058:	80 09 26 50 	lwz     r0,9808(r9)                            
   const rtems_filesystem_operations_table    *op_table,              
   const rtems_filesystem_file_handlers_r     *memfile_handlers,      
   const rtems_filesystem_file_handlers_r     *directory_handlers,    
   const rtems_filesystem_file_handlers_r     *fifo_handlers          
)                                                                     
{                                                                     
ffc0405c:	93 41 00 08 	stw     r26,8(r1)                              
ffc04060:	7c fa 3b 78 	mr      r26,r7                                 
                                                                      
  /*                                                                  
   * check, whether requested bytes per block is valid                
   */                                                                 
  for (bit_mask = 16; !is_valid && (bit_mask <= 512); bit_mask <<= 1) {
    if (bit_mask == requested_bytes_per_block) {                      
ffc04064:	2f 80 00 10 	cmpwi   cr7,r0,16                              
   const rtems_filesystem_operations_table    *op_table,              
   const rtems_filesystem_file_handlers_r     *memfile_handlers,      
   const rtems_filesystem_file_handlers_r     *directory_handlers,    
   const rtems_filesystem_file_handlers_r     *fifo_handlers          
)                                                                     
{                                                                     
ffc04068:	93 81 00 10 	stw     r28,16(r1)                             
ffc0406c:	7c dc 33 78 	mr      r28,r6                                 
ffc04070:	93 a1 00 14 	stw     r29,20(r1)                             
ffc04074:	7c 9d 23 78 	mr      r29,r4                                 
ffc04078:	93 c1 00 18 	stw     r30,24(r1)                             
ffc0407c:	7c be 2b 78 	mr      r30,r5                                 
ffc04080:	93 e1 00 1c 	stw     r31,28(r1)                             
ffc04084:	7c 7f 1b 78 	mr      r31,r3                                 
ffc04088:	93 61 00 0c 	stw     r27,12(r1)                             
                                                                      
  /*                                                                  
   * check, whether requested bytes per block is valid                
   */                                                                 
  for (bit_mask = 16; !is_valid && (bit_mask <= 512); bit_mask <<= 1) {
    if (bit_mask == requested_bytes_per_block) {                      
ffc0408c:	41 9e 00 30 	beq-    cr7,ffc040bc <IMFS_initialize_support+0x74>
      is_valid = true;                                                
      break;                                                          
    }                                                                 
    if(bit_mask > requested_bytes_per_block)                          
ffc04090:	2f 80 00 0f 	cmpwi   cr7,r0,15                              
ffc04094:	40 9d 00 24 	ble-    cr7,ffc040b8 <IMFS_initialize_support+0x70>
ffc04098:	39 60 00 05 	li      r11,5                                  
ffc0409c:	7d 69 03 a6 	mtctr   r11                                    
ffc040a0:	39 20 00 20 	li      r9,32                                  
                                                                      
  /*                                                                  
   * check, whether requested bytes per block is valid                
   */                                                                 
  for (bit_mask = 16; !is_valid && (bit_mask <= 512); bit_mask <<= 1) {
    if (bit_mask == requested_bytes_per_block) {                      
ffc040a4:	7f 80 48 00 	cmpw    cr7,r0,r9                              
  int bit_mask;                                                       
                                                                      
  /*                                                                  
   * check, whether requested bytes per block is valid                
   */                                                                 
  for (bit_mask = 16; !is_valid && (bit_mask <= 512); bit_mask <<= 1) {
ffc040a8:	55 29 08 3c 	rlwinm  r9,r9,1,0,30                           
    if (bit_mask == requested_bytes_per_block) {                      
ffc040ac:	41 9e 00 10 	beq-    cr7,ffc040bc <IMFS_initialize_support+0x74>
      is_valid = true;                                                
      break;                                                          
    }                                                                 
    if(bit_mask > requested_bytes_per_block)                          
ffc040b0:	41 9c 00 08 	blt-    cr7,ffc040b8 <IMFS_initialize_support+0x70><== NEVER TAKEN
  int bit_mask;                                                       
                                                                      
  /*                                                                  
   * check, whether requested bytes per block is valid                
   */                                                                 
  for (bit_mask = 16; !is_valid && (bit_mask <= 512); bit_mask <<= 1) {
ffc040b4:	42 00 ff f0 	bdnz+   ffc040a4 <IMFS_initialize_support+0x5c>
    if(bit_mask > requested_bytes_per_block)                          
      break;                                                          
  }                                                                   
  *dest_bytes_per_block = ((is_valid)                                 
			   ? requested_bytes_per_block                                     
			   : default_bytes_per_block);                                     
ffc040b8:	38 00 00 80 	li      r0,128                                 
      break;                                                          
    }                                                                 
    if(bit_mask > requested_bytes_per_block)                          
      break;                                                          
  }                                                                   
  *dest_bytes_per_block = ((is_valid)                                 
ffc040bc:	3d 20 00 00 	lis     r9,0                                   
ffc040c0:	90 09 27 08 	stw     r0,9992(r9)                            
  /*                                                                  
   *  Create the root node                                            
   *                                                                  
   *  NOTE: UNIX root is 755 and owned by root/root (0/0).            
   */                                                                 
  temp_mt_entry->mt_fs_root.node_access      = IMFS_create_root_node();
ffc040c4:	48 00 98 4d 	bl      ffc0d910 <IMFS_create_root_node>       
  temp_mt_entry->mt_fs_root.handlers         = directory_handlers;    
  temp_mt_entry->mt_fs_root.ops              = op_table;              
  temp_mt_entry->pathconf_limits_and_options = IMFS_LIMITS_AND_OPTIONS;
ffc040c8:	3c 80 ff c2 	lis     r4,-62                                 
  /*                                                                  
   *  Create the root node                                            
   *                                                                  
   *  NOTE: UNIX root is 755 and owned by root/root (0/0).            
   */                                                                 
  temp_mt_entry->mt_fs_root.node_access      = IMFS_create_root_node();
ffc040cc:	90 7f 00 1c 	stw     r3,28(r31)                             
  temp_mt_entry->mt_fs_root.handlers         = directory_handlers;    
  temp_mt_entry->mt_fs_root.ops              = op_table;              
  temp_mt_entry->pathconf_limits_and_options = IMFS_LIMITS_AND_OPTIONS;
ffc040d0:	38 84 8e 24 	addi    r4,r4,-29148                           
ffc040d4:	38 a0 00 30 	li      r5,48                                  
   *  Create the root node                                            
   *                                                                  
   *  NOTE: UNIX root is 755 and owned by root/root (0/0).            
   */                                                                 
  temp_mt_entry->mt_fs_root.node_access      = IMFS_create_root_node();
  temp_mt_entry->mt_fs_root.handlers         = directory_handlers;    
ffc040d8:	93 9f 00 24 	stw     r28,36(r31)                            
  /*                                                                  
   *  Create the root node                                            
   *                                                                  
   *  NOTE: UNIX root is 755 and owned by root/root (0/0).            
   */                                                                 
  temp_mt_entry->mt_fs_root.node_access      = IMFS_create_root_node();
ffc040dc:	7c 7b 1b 78 	mr      r27,r3                                 
  temp_mt_entry->mt_fs_root.handlers         = directory_handlers;    
  temp_mt_entry->mt_fs_root.ops              = op_table;              
  temp_mt_entry->pathconf_limits_and_options = IMFS_LIMITS_AND_OPTIONS;
ffc040e0:	38 7f 00 38 	addi    r3,r31,56                              
   *                                                                  
   *  NOTE: UNIX root is 755 and owned by root/root (0/0).            
   */                                                                 
  temp_mt_entry->mt_fs_root.node_access      = IMFS_create_root_node();
  temp_mt_entry->mt_fs_root.handlers         = directory_handlers;    
  temp_mt_entry->mt_fs_root.ops              = op_table;              
ffc040e4:	93 bf 00 28 	stw     r29,40(r31)                            
  temp_mt_entry->pathconf_limits_and_options = IMFS_LIMITS_AND_OPTIONS;
ffc040e8:	48 00 ec c1 	bl      ffc12da8 <memcpy>                      
                                                                      
  /*                                                                  
   * Create custom file system data.                                  
   */                                                                 
  fs_info = calloc( 1, sizeof( IMFS_fs_info_t ) );                    
ffc040ec:	38 60 00 01 	li      r3,1                                   
ffc040f0:	38 80 00 14 	li      r4,20                                  
ffc040f4:	48 00 08 dd 	bl      ffc049d0 <calloc>                      
  if ( !fs_info ) {                                                   
ffc040f8:	7c 69 1b 79 	mr.     r9,r3                                  
ffc040fc:	41 82 00 60 	beq-    ffc0415c <IMFS_initialize_support+0x114>
                                                                      
  /*                                                                  
   * Set st_ino for the root to 1.                                    
   */                                                                 
                                                                      
  fs_info->instance              = imfs_instance++;                   
ffc04100:	3d 60 00 00 	lis     r11,0                                  
  fs_info = calloc( 1, sizeof( IMFS_fs_info_t ) );                    
  if ( !fs_info ) {                                                   
    free(temp_mt_entry->mt_fs_root.node_access);                      
    rtems_set_errno_and_return_minus_one(ENOMEM);                     
  }                                                                   
  temp_mt_entry->fs_info = fs_info;                                   
ffc04104:	91 3f 00 34 	stw     r9,52(r31)                             
  /*                                                                  
   * Set st_ino for the root to 1.                                    
   */                                                                 
                                                                      
  fs_info->instance              = imfs_instance++;                   
  fs_info->ino_count             = 1;                                 
ffc04108:	38 00 00 01 	li      r0,1                                   
                                                                      
  /*                                                                  
   * Set st_ino for the root to 1.                                    
   */                                                                 
                                                                      
  fs_info->instance              = imfs_instance++;                   
ffc0410c:	81 4b 27 d0 	lwz     r10,10192(r11)                         
  fs_info->fifo_handlers         = fifo_handlers;                     
                                                                      
  jnode = temp_mt_entry->mt_fs_root.node_access;                      
  jnode->st_ino = fs_info->ino_count;                                 
                                                                      
  return 0;                                                           
ffc04110:	38 60 00 00 	li      r3,0                                   
  /*                                                                  
   * Set st_ino for the root to 1.                                    
   */                                                                 
                                                                      
  fs_info->instance              = imfs_instance++;                   
  fs_info->ino_count             = 1;                                 
ffc04114:	90 09 00 04 	stw     r0,4(r9)                               
                                                                      
  /*                                                                  
   * Set st_ino for the root to 1.                                    
   */                                                                 
                                                                      
  fs_info->instance              = imfs_instance++;                   
ffc04118:	39 0a 00 01 	addi    r8,r10,1                               
ffc0411c:	91 49 00 00 	stw     r10,0(r9)                              
  fs_info->ino_count             = 1;                                 
  fs_info->memfile_handlers      = memfile_handlers;                  
ffc04120:	93 c9 00 08 	stw     r30,8(r9)                              
  fs_info->directory_handlers    = directory_handlers;                
ffc04124:	93 89 00 0c 	stw     r28,12(r9)                             
  fs_info->fifo_handlers         = fifo_handlers;                     
ffc04128:	93 49 00 10 	stw     r26,16(r9)                             
                                                                      
  /*                                                                  
   * Set st_ino for the root to 1.                                    
   */                                                                 
                                                                      
  fs_info->instance              = imfs_instance++;                   
ffc0412c:	91 0b 27 d0 	stw     r8,10192(r11)                          
  fs_info->memfile_handlers      = memfile_handlers;                  
  fs_info->directory_handlers    = directory_handlers;                
  fs_info->fifo_handlers         = fifo_handlers;                     
                                                                      
  jnode = temp_mt_entry->mt_fs_root.node_access;                      
  jnode->st_ino = fs_info->ino_count;                                 
ffc04130:	90 1b 00 38 	stw     r0,56(r27)                             
                                                                      
  return 0;                                                           
}                                                                     
ffc04134:	80 01 00 24 	lwz     r0,36(r1)                              
ffc04138:	83 41 00 08 	lwz     r26,8(r1)                              
ffc0413c:	7c 08 03 a6 	mtlr    r0                                     
ffc04140:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc04144:	83 81 00 10 	lwz     r28,16(r1)                             
ffc04148:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc0414c:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc04150:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc04154:	38 21 00 20 	addi    r1,r1,32                               
ffc04158:	4e 80 00 20 	blr                                            
  /*                                                                  
   * Create custom file system data.                                  
   */                                                                 
  fs_info = calloc( 1, sizeof( IMFS_fs_info_t ) );                    
  if ( !fs_info ) {                                                   
    free(temp_mt_entry->mt_fs_root.node_access);                      
ffc0415c:	7f 63 db 78 	mr      r3,r27                                 
ffc04160:	48 00 0b 1d 	bl      ffc04c7c <free>                        
    rtems_set_errno_and_return_minus_one(ENOMEM);                     
ffc04164:	48 00 df e5 	bl      ffc12148 <__errno>                     
ffc04168:	38 00 00 0c 	li      r0,12                                  
ffc0416c:	90 03 00 00 	stw     r0,0(r3)                               
ffc04170:	38 60 ff ff 	li      r3,-1                                  
ffc04174:	4b ff ff c0 	b       ffc04134 <IMFS_initialize_support+0xec>
                                                                      

ffc10bb4 <IMFS_memfile_extend>: */ MEMFILE_STATIC int IMFS_memfile_extend( IMFS_jnode_t *the_jnode, off_t new_length ) {
ffc10bb4:	94 21 ff d8 	stwu    r1,-40(r1)                             
    IMFS_assert( the_jnode->type == IMFS_MEMORY_FILE );               
                                                                      
  /*                                                                  
   *  Verify new file size is supported                               
   */                                                                 
  if ( new_length >= IMFS_MEMFILE_MAXIMUM_SIZE )                      
ffc10bb8:	3d 20 00 00 	lis     r9,0                                   
 */                                                                   
MEMFILE_STATIC int IMFS_memfile_extend(                               
   IMFS_jnode_t  *the_jnode,                                          
   off_t          new_length                                          
)                                                                     
{                                                                     
ffc10bbc:	7c 08 02 a6 	mflr    r0                                     
ffc10bc0:	93 a1 00 1c 	stw     r29,28(r1)                             
    IMFS_assert( the_jnode->type == IMFS_MEMORY_FILE );               
                                                                      
  /*                                                                  
   *  Verify new file size is supported                               
   */                                                                 
  if ( new_length >= IMFS_MEMFILE_MAXIMUM_SIZE )                      
ffc10bc4:	83 a9 27 08 	lwz     r29,9992(r9)                           
 */                                                                   
MEMFILE_STATIC int IMFS_memfile_extend(                               
   IMFS_jnode_t  *the_jnode,                                          
   off_t          new_length                                          
)                                                                     
{                                                                     
ffc10bc8:	90 01 00 2c 	stw     r0,44(r1)                              
    IMFS_assert( the_jnode->type == IMFS_MEMORY_FILE );               
                                                                      
  /*                                                                  
   *  Verify new file size is supported                               
   */                                                                 
  if ( new_length >= IMFS_MEMFILE_MAXIMUM_SIZE )                      
ffc10bcc:	57 a9 f0 be 	rlwinm  r9,r29,30,2,31                         
ffc10bd0:	39 69 00 01 	addi    r11,r9,1                               
 */                                                                   
MEMFILE_STATIC int IMFS_memfile_extend(                               
   IMFS_jnode_t  *the_jnode,                                          
   off_t          new_length                                          
)                                                                     
{                                                                     
ffc10bd4:	93 41 00 10 	stw     r26,16(r1)                             
    IMFS_assert( the_jnode->type == IMFS_MEMORY_FILE );               
                                                                      
  /*                                                                  
   *  Verify new file size is supported                               
   */                                                                 
  if ( new_length >= IMFS_MEMFILE_MAXIMUM_SIZE )                      
ffc10bd8:	7d 6b 49 d6 	mullw   r11,r11,r9                             
 */                                                                   
MEMFILE_STATIC int IMFS_memfile_extend(                               
   IMFS_jnode_t  *the_jnode,                                          
   off_t          new_length                                          
)                                                                     
{                                                                     
ffc10bdc:	93 81 00 18 	stw     r28,24(r1)                             
ffc10be0:	7c da 33 78 	mr      r26,r6                                 
    IMFS_assert( the_jnode->type == IMFS_MEMORY_FILE );               
                                                                      
  /*                                                                  
   *  Verify new file size is supported                               
   */                                                                 
  if ( new_length >= IMFS_MEMFILE_MAXIMUM_SIZE )                      
ffc10be4:	38 0b 00 01 	addi    r0,r11,1                               
 */                                                                   
MEMFILE_STATIC int IMFS_memfile_extend(                               
   IMFS_jnode_t  *the_jnode,                                          
   off_t          new_length                                          
)                                                                     
{                                                                     
ffc10be8:	93 e1 00 24 	stw     r31,36(r1)                             
    IMFS_assert( the_jnode->type == IMFS_MEMORY_FILE );               
                                                                      
  /*                                                                  
   *  Verify new file size is supported                               
   */                                                                 
  if ( new_length >= IMFS_MEMFILE_MAXIMUM_SIZE )                      
ffc10bec:	39 60 00 00 	li      r11,0                                  
ffc10bf0:	7f 8b 28 00 	cmpw    cr7,r11,r5                             
 */                                                                   
MEMFILE_STATIC int IMFS_memfile_extend(                               
   IMFS_jnode_t  *the_jnode,                                          
   off_t          new_length                                          
)                                                                     
{                                                                     
ffc10bf4:	93 01 00 08 	stw     r24,8(r1)                              
    IMFS_assert( the_jnode->type == IMFS_MEMORY_FILE );               
                                                                      
  /*                                                                  
   *  Verify new file size is supported                               
   */                                                                 
  if ( new_length >= IMFS_MEMFILE_MAXIMUM_SIZE )                      
ffc10bf8:	7d 20 49 d6 	mullw   r9,r0,r9                               
 */                                                                   
MEMFILE_STATIC int IMFS_memfile_extend(                               
   IMFS_jnode_t  *the_jnode,                                          
   off_t          new_length                                          
)                                                                     
{                                                                     
ffc10bfc:	93 21 00 0c 	stw     r25,12(r1)                             
ffc10c00:	7c bc 2b 78 	mr      r28,r5                                 
    IMFS_assert( the_jnode->type == IMFS_MEMORY_FILE );               
                                                                      
  /*                                                                  
   *  Verify new file size is supported                               
   */                                                                 
  if ( new_length >= IMFS_MEMFILE_MAXIMUM_SIZE )                      
ffc10c04:	39 29 ff ff 	addi    r9,r9,-1                               
 */                                                                   
MEMFILE_STATIC int IMFS_memfile_extend(                               
   IMFS_jnode_t  *the_jnode,                                          
   off_t          new_length                                          
)                                                                     
{                                                                     
ffc10c08:	93 61 00 14 	stw     r27,20(r1)                             
ffc10c0c:	7c 7f 1b 78 	mr      r31,r3                                 
ffc10c10:	93 c1 00 20 	stw     r30,32(r1)                             
    IMFS_assert( the_jnode->type == IMFS_MEMORY_FILE );               
                                                                      
  /*                                                                  
   *  Verify new file size is supported                               
   */                                                                 
  if ( new_length >= IMFS_MEMFILE_MAXIMUM_SIZE )                      
ffc10c14:	7d 29 e9 d6 	mullw   r9,r9,r29                              
ffc10c18:	40 9d 01 50 	ble-    cr7,ffc10d68 <IMFS_memfile_extend+0x1b4><== ALWAYS TAKEN
    rtems_set_errno_and_return_minus_one( EINVAL );                   
                                                                      
  /*                                                                  
   *  Verify new file size is actually larger than current size       
   */                                                                 
  if ( new_length <= the_jnode->info.file.size )                      
ffc10c1c:	83 7f 00 50 	lwz     r27,80(r31)                            
ffc10c20:	83 3f 00 54 	lwz     r25,84(r31)                            
ffc10c24:	7f 9c d8 00 	cmpw    cr7,r28,r27                            
ffc10c28:	40 9d 00 c4 	ble-    cr7,ffc10cec <IMFS_memfile_extend+0x138><== ALWAYS TAKEN
    return 0;                                                         
                                                                      
  /*                                                                  
   *  Calculate the number of range of blocks to allocate             
   */                                                                 
  new_blocks = new_length / IMFS_MEMFILE_BYTES_PER_BLOCK;             
ffc10c2c:	7f b8 fe 70 	srawi   r24,r29,31                             
ffc10c30:	7f 05 c3 78 	mr      r5,r24                                 
ffc10c34:	7f a6 eb 78 	mr      r6,r29                                 
ffc10c38:	7f 83 e3 78 	mr      r3,r28                                 
ffc10c3c:	7f 44 d3 78 	mr      r4,r26                                 
ffc10c40:	48 00 53 b5 	bl      ffc15ff4 <__divdi3>                    
  old_blocks = the_jnode->info.file.size / IMFS_MEMFILE_BYTES_PER_BLOCK;
ffc10c44:	7f 63 db 78 	mr      r3,r27                                 
    return 0;                                                         
                                                                      
  /*                                                                  
   *  Calculate the number of range of blocks to allocate             
   */                                                                 
  new_blocks = new_length / IMFS_MEMFILE_BYTES_PER_BLOCK;             
ffc10c48:	7c 9e 23 78 	mr      r30,r4                                 
  old_blocks = the_jnode->info.file.size / IMFS_MEMFILE_BYTES_PER_BLOCK;
ffc10c4c:	7f 05 c3 78 	mr      r5,r24                                 
ffc10c50:	7f 24 cb 78 	mr      r4,r25                                 
ffc10c54:	7f a6 eb 78 	mr      r6,r29                                 
ffc10c58:	48 00 53 9d 	bl      ffc15ff4 <__divdi3>                    
                                                                      
  /*                                                                  
   *  Now allocate each of those blocks.                              
   */                                                                 
  for ( block=old_blocks ; block<=new_blocks ; block++ ) {            
ffc10c5c:	7f 9e 20 40 	cmplw   cr7,r30,r4                             
                                                                      
  /*                                                                  
   *  Calculate the number of range of blocks to allocate             
   */                                                                 
  new_blocks = new_length / IMFS_MEMFILE_BYTES_PER_BLOCK;             
  old_blocks = the_jnode->info.file.size / IMFS_MEMFILE_BYTES_PER_BLOCK;
ffc10c60:	7c 9b 23 78 	mr      r27,r4                                 
                                                                      
  /*                                                                  
   *  Now allocate each of those blocks.                              
   */                                                                 
  for ( block=old_blocks ; block<=new_blocks ; block++ ) {            
ffc10c64:	41 9c 00 c8 	blt-    cr7,ffc10d2c <IMFS_memfile_extend+0x178><== NEVER TAKEN
ffc10c68:	7c 9d 23 78 	mr      r29,r4                                 
ffc10c6c:	48 00 00 10 	b       ffc10c7c <IMFS_memfile_extend+0xc8>    
ffc10c70:	3b bd 00 01 	addi    r29,r29,1                              
ffc10c74:	7f 9e e8 40 	cmplw   cr7,r30,r29                            
ffc10c78:	41 9c 00 b4 	blt-    cr7,ffc10d2c <IMFS_memfile_extend+0x178>
    if ( IMFS_memfile_addblock( the_jnode, block ) ) {                
ffc10c7c:	7f a4 eb 78 	mr      r4,r29                                 
ffc10c80:	7f e3 fb 78 	mr      r3,r31                                 
ffc10c84:	4b ff fc 2d 	bl      ffc108b0 <IMFS_memfile_addblock>       
ffc10c88:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc10c8c:	41 9e ff e4 	beq+    cr7,ffc10c70 <IMFS_memfile_extend+0xbc>
ffc10c90:	48 00 00 14 	b       ffc10ca4 <IMFS_memfile_extend+0xf0>    
       for ( ; block>=old_blocks ; block-- ) {                        
         IMFS_memfile_remove_block( the_jnode, block );               
ffc10c94:	7f a4 eb 78 	mr      r4,r29                                 
ffc10c98:	7f e3 fb 78 	mr      r3,r31                                 
  /*                                                                  
   *  Now allocate each of those blocks.                              
   */                                                                 
  for ( block=old_blocks ; block<=new_blocks ; block++ ) {            
    if ( IMFS_memfile_addblock( the_jnode, block ) ) {                
       for ( ; block>=old_blocks ; block-- ) {                        
ffc10c9c:	3b bd ff ff 	addi    r29,r29,-1                             
         IMFS_memfile_remove_block( the_jnode, block );               
ffc10ca0:	4b ff fe d9 	bl      ffc10b78 <IMFS_memfile_remove_block>   
  /*                                                                  
   *  Now allocate each of those blocks.                              
   */                                                                 
  for ( block=old_blocks ; block<=new_blocks ; block++ ) {            
    if ( IMFS_memfile_addblock( the_jnode, block ) ) {                
       for ( ; block>=old_blocks ; block-- ) {                        
ffc10ca4:	7f 9b e8 40 	cmplw   cr7,r27,r29                            
ffc10ca8:	40 9d ff ec 	ble+    cr7,ffc10c94 <IMFS_memfile_extend+0xe0>
         IMFS_memfile_remove_block( the_jnode, block );               
       }                                                              
       rtems_set_errno_and_return_minus_one( ENOSPC );                
ffc10cac:	48 00 14 9d 	bl      ffc12148 <__errno>                     
ffc10cb0:	38 00 00 1c 	li      r0,28                                  
ffc10cb4:	90 03 00 00 	stw     r0,0(r3)                               
ffc10cb8:	38 60 ff ff 	li      r3,-1                                  
  /*                                                                  
   *  Set the new length of the file.                                 
   */                                                                 
  the_jnode->info.file.size = new_length;                             
  return 0;                                                           
}                                                                     
ffc10cbc:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc10cc0:	83 01 00 08 	lwz     r24,8(r1)                              
ffc10cc4:	7c 08 03 a6 	mtlr    r0                                     
ffc10cc8:	83 21 00 0c 	lwz     r25,12(r1)                             
ffc10ccc:	83 41 00 10 	lwz     r26,16(r1)                             
ffc10cd0:	83 61 00 14 	lwz     r27,20(r1)                             
ffc10cd4:	83 81 00 18 	lwz     r28,24(r1)                             
ffc10cd8:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc10cdc:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc10ce0:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc10ce4:	38 21 00 28 	addi    r1,r1,40                               
ffc10ce8:	4e 80 00 20 	blr                                            
    rtems_set_errno_and_return_minus_one( EINVAL );                   
                                                                      
  /*                                                                  
   *  Verify new file size is actually larger than current size       
   */                                                                 
  if ( new_length <= the_jnode->info.file.size )                      
ffc10cec:	40 9e 00 0c 	bne-    cr7,ffc10cf8 <IMFS_memfile_extend+0x144><== NEVER TAKEN
ffc10cf0:	7f 9a c8 40 	cmplw   cr7,r26,r25                            
ffc10cf4:	41 9d ff 38 	bgt+    cr7,ffc10c2c <IMFS_memfile_extend+0x78>
  /*                                                                  
   *  Set the new length of the file.                                 
   */                                                                 
  the_jnode->info.file.size = new_length;                             
  return 0;                                                           
}                                                                     
ffc10cf8:	80 01 00 2c 	lwz     r0,44(r1)                              
                                                                      
  /*                                                                  
   *  Verify new file size is actually larger than current size       
   */                                                                 
  if ( new_length <= the_jnode->info.file.size )                      
    return 0;                                                         
ffc10cfc:	38 60 00 00 	li      r3,0                                   
  /*                                                                  
   *  Set the new length of the file.                                 
   */                                                                 
  the_jnode->info.file.size = new_length;                             
  return 0;                                                           
}                                                                     
ffc10d00:	83 01 00 08 	lwz     r24,8(r1)                              
ffc10d04:	7c 08 03 a6 	mtlr    r0                                     
ffc10d08:	83 21 00 0c 	lwz     r25,12(r1)                             
ffc10d0c:	83 41 00 10 	lwz     r26,16(r1)                             
ffc10d10:	83 61 00 14 	lwz     r27,20(r1)                             
ffc10d14:	83 81 00 18 	lwz     r28,24(r1)                             
ffc10d18:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc10d1c:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc10d20:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc10d24:	38 21 00 28 	addi    r1,r1,40                               
ffc10d28:	4e 80 00 20 	blr                                            
  }                                                                   
                                                                      
  /*                                                                  
   *  Set the new length of the file.                                 
   */                                                                 
  the_jnode->info.file.size = new_length;                             
ffc10d2c:	93 9f 00 50 	stw     r28,80(r31)                            
  return 0;                                                           
ffc10d30:	38 60 00 00 	li      r3,0                                   
  }                                                                   
                                                                      
  /*                                                                  
   *  Set the new length of the file.                                 
   */                                                                 
  the_jnode->info.file.size = new_length;                             
ffc10d34:	93 5f 00 54 	stw     r26,84(r31)                            
  return 0;                                                           
}                                                                     
ffc10d38:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc10d3c:	83 01 00 08 	lwz     r24,8(r1)                              
ffc10d40:	7c 08 03 a6 	mtlr    r0                                     
ffc10d44:	83 21 00 0c 	lwz     r25,12(r1)                             
ffc10d48:	83 41 00 10 	lwz     r26,16(r1)                             
ffc10d4c:	83 61 00 14 	lwz     r27,20(r1)                             
ffc10d50:	83 81 00 18 	lwz     r28,24(r1)                             
ffc10d54:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc10d58:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc10d5c:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc10d60:	38 21 00 28 	addi    r1,r1,40                               
ffc10d64:	4e 80 00 20 	blr                                            
    IMFS_assert( the_jnode->type == IMFS_MEMORY_FILE );               
                                                                      
  /*                                                                  
   *  Verify new file size is supported                               
   */                                                                 
  if ( new_length >= IMFS_MEMFILE_MAXIMUM_SIZE )                      
ffc10d68:	40 9e 00 0c 	bne-    cr7,ffc10d74 <IMFS_memfile_extend+0x1c0><== NEVER TAKEN
ffc10d6c:	7f 89 30 40 	cmplw   cr7,r9,r6                              
ffc10d70:	41 9d fe ac 	bgt+    cr7,ffc10c1c <IMFS_memfile_extend+0x68>
    rtems_set_errno_and_return_minus_one( EINVAL );                   
ffc10d74:	48 00 13 d5 	bl      ffc12148 <__errno>                     
ffc10d78:	38 00 00 16 	li      r0,22                                  
ffc10d7c:	90 03 00 00 	stw     r0,0(r3)                               
ffc10d80:	38 60 ff ff 	li      r3,-1                                  
ffc10d84:	4b ff ff 38 	b       ffc10cbc <IMFS_memfile_extend+0x108>   
                                                                      

ffc1036c <IMFS_memfile_get_block_pointer>: #endif IMFS_jnode_t *the_jnode, unsigned int block, int malloc_it ) {
ffc1036c:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc10370:	7c 08 02 a6 	mflr    r0                                     
  my_block = block;                                                   
                                                                      
  /*                                                                  
   *  Is the block number in the simple indirect portion?             
   */                                                                 
  if ( my_block <= LAST_INDIRECT ) {                                  
ffc10374:	3d 20 00 00 	lis     r9,0                                   
#endif                                                                
   IMFS_jnode_t   *the_jnode,                                         
   unsigned int    block,                                             
   int             malloc_it                                          
)                                                                     
{                                                                     
ffc10378:	90 01 00 2c 	stw     r0,44(r1)                              
  my_block = block;                                                   
                                                                      
  /*                                                                  
   *  Is the block number in the simple indirect portion?             
   */                                                                 
  if ( my_block <= LAST_INDIRECT ) {                                  
ffc1037c:	80 09 27 08 	lwz     r0,9992(r9)                            
#endif                                                                
   IMFS_jnode_t   *the_jnode,                                         
   unsigned int    block,                                             
   int             malloc_it                                          
)                                                                     
{                                                                     
ffc10380:	93 e1 00 24 	stw     r31,36(r1)                             
ffc10384:	7c 7f 1b 78 	mr      r31,r3                                 
  my_block = block;                                                   
                                                                      
  /*                                                                  
   *  Is the block number in the simple indirect portion?             
   */                                                                 
  if ( my_block <= LAST_INDIRECT ) {                                  
ffc10388:	54 09 f0 be 	rlwinm  r9,r0,30,2,31                          
ffc1038c:	38 09 ff ff 	addi    r0,r9,-1                               
#endif                                                                
   IMFS_jnode_t   *the_jnode,                                         
   unsigned int    block,                                             
   int             malloc_it                                          
)                                                                     
{                                                                     
ffc10390:	93 61 00 14 	stw     r27,20(r1)                             
  my_block = block;                                                   
                                                                      
  /*                                                                  
   *  Is the block number in the simple indirect portion?             
   */                                                                 
  if ( my_block <= LAST_INDIRECT ) {                                  
ffc10394:	7f 84 00 40 	cmplw   cr7,r4,r0                              
#endif                                                                
   IMFS_jnode_t   *the_jnode,                                         
   unsigned int    block,                                             
   int             malloc_it                                          
)                                                                     
{                                                                     
ffc10398:	93 81 00 18 	stw     r28,24(r1)                             
ffc1039c:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc103a0:	93 c1 00 20 	stw     r30,32(r1)                             
  my_block = block;                                                   
                                                                      
  /*                                                                  
   *  Is the block number in the simple indirect portion?             
   */                                                                 
  if ( my_block <= LAST_INDIRECT ) {                                  
ffc103a4:	41 9d 00 48 	bgt-    cr7,ffc103ec <IMFS_memfile_get_block_pointer+0x80>
    p = info->indirect;                                               
                                                                      
    if ( malloc_it ) {                                                
ffc103a8:	2f 85 00 00 	cmpwi   cr7,r5,0                               
                                                                      
  /*                                                                  
   *  Is the block number in the simple indirect portion?             
   */                                                                 
  if ( my_block <= LAST_INDIRECT ) {                                  
    p = info->indirect;                                               
ffc103ac:	80 63 00 58 	lwz     r3,88(r3)                              
                                                                      
    if ( malloc_it ) {                                                
ffc103b0:	41 9e 00 b8 	beq-    cr7,ffc10468 <IMFS_memfile_get_block_pointer+0xfc>
                                                                      
      if ( !p ) {                                                     
ffc103b4:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc103b8:	41 9e 01 70 	beq-    cr7,ffc10528 <IMFS_memfile_get_block_pointer+0x1bc>
                                                                      
  /*                                                                  
   *  This means the requested block number is out of range.          
   */                                                                 
  return 0;                                                           
}                                                                     
ffc103bc:	80 01 00 2c 	lwz     r0,44(r1)                              
    }                                                                 
                                                                      
    if ( !p )                                                         
      return 0;                                                       
                                                                      
    return &info->indirect[ my_block ];                               
ffc103c0:	54 84 10 3a 	rlwinm  r4,r4,2,0,29                           
ffc103c4:	7f c3 22 14 	add     r30,r3,r4                              
                                                                      
  /*                                                                  
   *  This means the requested block number is out of range.          
   */                                                                 
  return 0;                                                           
}                                                                     
ffc103c8:	83 61 00 14 	lwz     r27,20(r1)                             
ffc103cc:	7c 08 03 a6 	mtlr    r0                                     
ffc103d0:	7f c3 f3 78 	mr      r3,r30                                 
ffc103d4:	83 81 00 18 	lwz     r28,24(r1)                             
ffc103d8:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc103dc:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc103e0:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc103e4:	38 21 00 28 	addi    r1,r1,40                               
ffc103e8:	4e 80 00 20 	blr                                            
                                                                      
  /*                                                                  
   *  Is the block number in the doubly indirect portion?             
   */                                                                 
                                                                      
  if ( my_block <= LAST_DOUBLY_INDIRECT ) {                           
ffc103ec:	3b 89 00 01 	addi    r28,r9,1                               
ffc103f0:	7f 9c 49 d6 	mullw   r28,r28,r9                             
ffc103f4:	38 1c ff ff 	addi    r0,r28,-1                              
ffc103f8:	7f 84 00 40 	cmplw   cr7,r4,r0                              
ffc103fc:	41 9d 00 7c 	bgt-    cr7,ffc10478 <IMFS_memfile_get_block_pointer+0x10c>
    my_block -= FIRST_DOUBLY_INDIRECT;                                
ffc10400:	7c 89 20 50 	subf    r4,r9,r4                               
                                                                      
    singly = my_block % IMFS_MEMFILE_BLOCK_SLOTS;                     
    doubly = my_block / IMFS_MEMFILE_BLOCK_SLOTS;                     
                                                                      
    p = info->doubly_indirect;                                        
ffc10404:	81 63 00 5c 	lwz     r11,92(r3)                             
   */                                                                 
                                                                      
  if ( my_block <= LAST_DOUBLY_INDIRECT ) {                           
    my_block -= FIRST_DOUBLY_INDIRECT;                                
                                                                      
    singly = my_block % IMFS_MEMFILE_BLOCK_SLOTS;                     
ffc10408:	7f a4 4b 96 	divwu   r29,r4,r9                              
    doubly = my_block / IMFS_MEMFILE_BLOCK_SLOTS;                     
                                                                      
    p = info->doubly_indirect;                                        
    if ( malloc_it ) {                                                
ffc1040c:	2f 85 00 00 	cmpwi   cr7,r5,0                               
   */                                                                 
                                                                      
  if ( my_block <= LAST_DOUBLY_INDIRECT ) {                           
    my_block -= FIRST_DOUBLY_INDIRECT;                                
                                                                      
    singly = my_block % IMFS_MEMFILE_BLOCK_SLOTS;                     
ffc10410:	7d 3d 49 d6 	mullw   r9,r29,r9                              
ffc10414:	7f 89 20 50 	subf    r28,r9,r4                              
    doubly = my_block / IMFS_MEMFILE_BLOCK_SLOTS;                     
                                                                      
    p = info->doubly_indirect;                                        
    if ( malloc_it ) {                                                
ffc10418:	41 9e 00 e8 	beq-    cr7,ffc10500 <IMFS_memfile_get_block_pointer+0x194>
                                                                      
      if ( !p ) {                                                     
ffc1041c:	2f 8b 00 00 	cmpwi   cr7,r11,0                              
ffc10420:	41 9e 01 28 	beq-    cr7,ffc10548 <IMFS_memfile_get_block_pointer+0x1dc>
        if ( !p )                                                     
           return 0;                                                  
        info->doubly_indirect = p;                                    
      }                                                               
                                                                      
      p1 = (block_p *)p[ doubly ];                                    
ffc10424:	57 bd 10 3a 	rlwinm  r29,r29,2,0,29                         
ffc10428:	7c 6b e8 2e 	lwzx    r3,r11,r29                             
ffc1042c:	7f ab ea 14 	add     r29,r11,r29                            
      if ( !p1 ) {                                                    
ffc10430:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc10434:	41 9e 01 2c 	beq-    cr7,ffc10560 <IMFS_memfile_get_block_pointer+0x1f4>
        p2 = memfile_alloc_block();                                   
        if ( !p2 )                                                    
           return 0;                                                  
        p1[ doubly ] = (block_p) p2;                                  
      }                                                               
      return (block_p *)&p2[ singly ];                                
ffc10438:	57 9e 10 3a 	rlwinm  r30,r28,2,0,29                         
ffc1043c:	7f c3 f2 14 	add     r30,r3,r30                             
                                                                      
  /*                                                                  
   *  This means the requested block number is out of range.          
   */                                                                 
  return 0;                                                           
}                                                                     
ffc10440:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc10444:	7f c3 f3 78 	mr      r3,r30                                 
ffc10448:	83 61 00 14 	lwz     r27,20(r1)                             
ffc1044c:	7c 08 03 a6 	mtlr    r0                                     
ffc10450:	83 81 00 18 	lwz     r28,24(r1)                             
ffc10454:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc10458:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc1045c:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc10460:	38 21 00 28 	addi    r1,r1,40                               
ffc10464:	4e 80 00 20 	blr                                            
        info->indirect = p;                                           
      }                                                               
      return &info->indirect[ my_block ];                             
    }                                                                 
                                                                      
    if ( !p )                                                         
ffc10468:	2f 83 00 00 	cmpwi   cr7,r3,0                               
      return 0;                                                       
ffc1046c:	3b c0 00 00 	li      r30,0                                  
        info->indirect = p;                                           
      }                                                               
      return &info->indirect[ my_block ];                             
    }                                                                 
                                                                      
    if ( !p )                                                         
ffc10470:	40 9e ff 4c 	bne+    cr7,ffc103bc <IMFS_memfile_get_block_pointer+0x50><== ALWAYS TAKEN
ffc10474:	4b ff ff cc 	b       ffc10440 <IMFS_memfile_get_block_pointer+0xd4><== NOT EXECUTED
  }                                                                   
                                                                      
  /*                                                                  
   *  Is the block number in the triply indirect portion?             
   */                                                                 
  if ( my_block <= LAST_TRIPLY_INDIRECT ) {                           
ffc10478:	39 7c 00 01 	addi    r11,r28,1                              
ffc1047c:	7d 6b 49 d6 	mullw   r11,r11,r9                             
  }                                                                   
                                                                      
  /*                                                                  
   *  This means the requested block number is out of range.          
   */                                                                 
  return 0;                                                           
ffc10480:	3b c0 00 00 	li      r30,0                                  
  }                                                                   
                                                                      
  /*                                                                  
   *  Is the block number in the triply indirect portion?             
   */                                                                 
  if ( my_block <= LAST_TRIPLY_INDIRECT ) {                           
ffc10484:	38 0b ff ff 	addi    r0,r11,-1                              
ffc10488:	7f 84 00 40 	cmplw   cr7,r4,r0                              
ffc1048c:	41 bd ff b4 	bgt-    cr7,ffc10440 <IMFS_memfile_get_block_pointer+0xd4><== NEVER TAKEN
    my_block -= FIRST_TRIPLY_INDIRECT;                                
ffc10490:	7c 9c 20 50 	subf    r4,r28,r4                              
    singly = my_block % IMFS_MEMFILE_BLOCK_SLOTS;                     
    doubly = my_block / IMFS_MEMFILE_BLOCK_SLOTS;                     
    triply = doubly / IMFS_MEMFILE_BLOCK_SLOTS;                       
    doubly %= IMFS_MEMFILE_BLOCK_SLOTS;                               
                                                                      
    p = info->triply_indirect;                                        
ffc10494:	81 43 00 60 	lwz     r10,96(r3)                             
   *  Is the block number in the triply indirect portion?             
   */                                                                 
  if ( my_block <= LAST_TRIPLY_INDIRECT ) {                           
    my_block -= FIRST_TRIPLY_INDIRECT;                                
                                                                      
    singly = my_block % IMFS_MEMFILE_BLOCK_SLOTS;                     
ffc10498:	7d 64 4b 96 	divwu   r11,r4,r9                              
    doubly = my_block / IMFS_MEMFILE_BLOCK_SLOTS;                     
    triply = doubly / IMFS_MEMFILE_BLOCK_SLOTS;                       
ffc1049c:	7f ab 4b 96 	divwu   r29,r11,r9                             
    doubly %= IMFS_MEMFILE_BLOCK_SLOTS;                               
                                                                      
    p = info->triply_indirect;                                        
                                                                      
    if ( malloc_it ) {                                                
ffc104a0:	2f 85 00 00 	cmpwi   cr7,r5,0                               
   *  Is the block number in the triply indirect portion?             
   */                                                                 
  if ( my_block <= LAST_TRIPLY_INDIRECT ) {                           
    my_block -= FIRST_TRIPLY_INDIRECT;                                
                                                                      
    singly = my_block % IMFS_MEMFILE_BLOCK_SLOTS;                     
ffc104a4:	7f 8b 49 d6 	mullw   r28,r11,r9                             
    doubly = my_block / IMFS_MEMFILE_BLOCK_SLOTS;                     
    triply = doubly / IMFS_MEMFILE_BLOCK_SLOTS;                       
    doubly %= IMFS_MEMFILE_BLOCK_SLOTS;                               
ffc104a8:	7d 3d 49 d6 	mullw   r9,r29,r9                              
   *  Is the block number in the triply indirect portion?             
   */                                                                 
  if ( my_block <= LAST_TRIPLY_INDIRECT ) {                           
    my_block -= FIRST_TRIPLY_INDIRECT;                                
                                                                      
    singly = my_block % IMFS_MEMFILE_BLOCK_SLOTS;                     
ffc104ac:	7f 9c 20 50 	subf    r28,r28,r4                             
    doubly = my_block / IMFS_MEMFILE_BLOCK_SLOTS;                     
    triply = doubly / IMFS_MEMFILE_BLOCK_SLOTS;                       
    doubly %= IMFS_MEMFILE_BLOCK_SLOTS;                               
ffc104b0:	7f 69 58 50 	subf    r27,r9,r11                             
                                                                      
    p = info->triply_indirect;                                        
                                                                      
    if ( malloc_it ) {                                                
ffc104b4:	41 9e 00 c4 	beq-    cr7,ffc10578 <IMFS_memfile_get_block_pointer+0x20c>
      if ( !p ) {                                                     
ffc104b8:	2f 8a 00 00 	cmpwi   cr7,r10,0                              
ffc104bc:	41 9e 01 00 	beq-    cr7,ffc105bc <IMFS_memfile_get_block_pointer+0x250>
        if ( !p )                                                     
           return 0;                                                  
        info->triply_indirect = p;                                    
      }                                                               
                                                                      
      p1 = (block_p *) p[ triply ];                                   
ffc104c0:	57 bd 10 3a 	rlwinm  r29,r29,2,0,29                         
ffc104c4:	7d 2a e8 2e 	lwzx    r9,r10,r29                             
ffc104c8:	7f aa ea 14 	add     r29,r10,r29                            
      if ( !p1 ) {                                                    
ffc104cc:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc104d0:	41 9e 00 d4 	beq-    cr7,ffc105a4 <IMFS_memfile_get_block_pointer+0x238>
        if ( !p1 )                                                    
           return 0;                                                  
        p[ triply ] = (block_p) p1;                                   
      }                                                               
                                                                      
      p2 = (block_p *)p1[ doubly ];                                   
ffc104d4:	57 7b 10 3a 	rlwinm  r27,r27,2,0,29                         
ffc104d8:	7c 69 d8 2e 	lwzx    r3,r9,r27                              
ffc104dc:	7f 69 da 14 	add     r27,r9,r27                             
      if ( !p2 ) {                                                    
ffc104e0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc104e4:	40 9e ff 54 	bne+    cr7,ffc10438 <IMFS_memfile_get_block_pointer+0xcc>
        p2 = memfile_alloc_block();                                   
ffc104e8:	4b ff fe 41 	bl      ffc10328 <memfile_alloc_block>         
        if ( !p2 )                                                    
           return 0;                                                  
ffc104ec:	3b c0 00 00 	li      r30,0                                  
      }                                                               
                                                                      
      p2 = (block_p *)p1[ doubly ];                                   
      if ( !p2 ) {                                                    
        p2 = memfile_alloc_block();                                   
        if ( !p2 )                                                    
ffc104f0:	2c 03 00 00 	cmpwi   r3,0                                   
ffc104f4:	41 a2 ff 4c 	beq-    ffc10440 <IMFS_memfile_get_block_pointer+0xd4><== NEVER TAKEN
           return 0;                                                  
        p1[ doubly ] = (block_p) p2;                                  
ffc104f8:	90 7b 00 00 	stw     r3,0(r27)                              
ffc104fc:	4b ff ff 3c 	b       ffc10438 <IMFS_memfile_get_block_pointer+0xcc>
      }                                                               
                                                                      
      return (block_p *)&p1[ singly ];                                
    }                                                                 
                                                                      
    if ( !p )                                                         
ffc10500:	2f 8b 00 00 	cmpwi   cr7,r11,0                              
      return 0;                                                       
ffc10504:	3b c0 00 00 	li      r30,0                                  
      }                                                               
                                                                      
      return (block_p *)&p1[ singly ];                                
    }                                                                 
                                                                      
    if ( !p )                                                         
ffc10508:	41 9e ff 38 	beq+    cr7,ffc10440 <IMFS_memfile_get_block_pointer+0xd4><== NEVER TAKEN
      return 0;                                                       
                                                                      
    p = (block_p *)p[ doubly ];                                       
ffc1050c:	57 bd 10 3a 	rlwinm  r29,r29,2,0,29                         
ffc10510:	7c 0b e8 2e 	lwzx    r0,r11,r29                             
    if ( !p )                                                         
ffc10514:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc10518:	41 be ff 28 	beq-    cr7,ffc10440 <IMFS_memfile_get_block_pointer+0xd4><== NEVER TAKEN
                                                                      
    p2 = (block_p *)p1[ doubly ];                                     
    if ( !p2 )                                                        
      return 0;                                                       
                                                                      
    return (block_p *)&p2[ singly ];                                  
ffc1051c:	57 9e 10 3a 	rlwinm  r30,r28,2,0,29                         
ffc10520:	7f c0 f2 14 	add     r30,r0,r30                             
ffc10524:	4b ff ff 1c 	b       ffc10440 <IMFS_memfile_get_block_pointer+0xd4>
    p = info->indirect;                                               
                                                                      
    if ( malloc_it ) {                                                
                                                                      
      if ( !p ) {                                                     
        p = memfile_alloc_block();                                    
ffc10528:	90 81 00 08 	stw     r4,8(r1)                               
ffc1052c:	4b ff fd fd 	bl      ffc10328 <memfile_alloc_block>         
        if ( !p )                                                     
ffc10530:	2c 03 00 00 	cmpwi   r3,0                                   
           return 0;                                                  
ffc10534:	3b c0 00 00 	li      r30,0                                  
                                                                      
    if ( malloc_it ) {                                                
                                                                      
      if ( !p ) {                                                     
        p = memfile_alloc_block();                                    
        if ( !p )                                                     
ffc10538:	80 81 00 08 	lwz     r4,8(r1)                               
ffc1053c:	41 a2 ff 04 	beq-    ffc10440 <IMFS_memfile_get_block_pointer+0xd4><== NEVER TAKEN
           return 0;                                                  
        info->indirect = p;                                           
ffc10540:	90 7f 00 58 	stw     r3,88(r31)                             
ffc10544:	4b ff fe 78 	b       ffc103bc <IMFS_memfile_get_block_pointer+0x50>
                                                                      
    p = info->doubly_indirect;                                        
    if ( malloc_it ) {                                                
                                                                      
      if ( !p ) {                                                     
        p = memfile_alloc_block();                                    
ffc10548:	4b ff fd e1 	bl      ffc10328 <memfile_alloc_block>         
        if ( !p )                                                     
           return 0;                                                  
ffc1054c:	3b c0 00 00 	li      r30,0                                  
    p = info->doubly_indirect;                                        
    if ( malloc_it ) {                                                
                                                                      
      if ( !p ) {                                                     
        p = memfile_alloc_block();                                    
        if ( !p )                                                     
ffc10550:	7c 6b 1b 79 	mr.     r11,r3                                 
ffc10554:	41 a2 fe ec 	beq-    ffc10440 <IMFS_memfile_get_block_pointer+0xd4><== NEVER TAKEN
           return 0;                                                  
        info->doubly_indirect = p;                                    
ffc10558:	91 7f 00 5c 	stw     r11,92(r31)                            
ffc1055c:	4b ff fe c8 	b       ffc10424 <IMFS_memfile_get_block_pointer+0xb8>
      }                                                               
                                                                      
      p1 = (block_p *)p[ doubly ];                                    
      if ( !p1 ) {                                                    
        p1 = memfile_alloc_block();                                   
ffc10560:	4b ff fd c9 	bl      ffc10328 <memfile_alloc_block>         
        if ( !p1 )                                                    
           return 0;                                                  
ffc10564:	3b c0 00 00 	li      r30,0                                  
      }                                                               
                                                                      
      p1 = (block_p *)p[ doubly ];                                    
      if ( !p1 ) {                                                    
        p1 = memfile_alloc_block();                                   
        if ( !p1 )                                                    
ffc10568:	2c 03 00 00 	cmpwi   r3,0                                   
ffc1056c:	41 a2 fe d4 	beq-    ffc10440 <IMFS_memfile_get_block_pointer+0xd4><== NEVER TAKEN
           return 0;                                                  
        p[ doubly ] = (block_p) p1;                                   
ffc10570:	90 7d 00 00 	stw     r3,0(r29)                              
ffc10574:	4b ff fe c4 	b       ffc10438 <IMFS_memfile_get_block_pointer+0xcc>
        p1[ doubly ] = (block_p) p2;                                  
      }                                                               
      return (block_p *)&p2[ singly ];                                
    }                                                                 
                                                                      
    if ( !p )                                                         
ffc10578:	2f 8a 00 00 	cmpwi   cr7,r10,0                              
ffc1057c:	41 9e fe c4 	beq+    cr7,ffc10440 <IMFS_memfile_get_block_pointer+0xd4><== NEVER TAKEN
      return 0;                                                       
                                                                      
    p1 = (block_p *) p[ triply ];                                     
ffc10580:	57 bd 10 3a 	rlwinm  r29,r29,2,0,29                         
ffc10584:	7d 2a e8 2e 	lwzx    r9,r10,r29                             
    if ( !p1 )                                                        
ffc10588:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc1058c:	41 9e fe b4 	beq+    cr7,ffc10440 <IMFS_memfile_get_block_pointer+0xd4><== NEVER TAKEN
      return 0;                                                       
                                                                      
    p2 = (block_p *)p1[ doubly ];                                     
ffc10590:	57 7b 10 3a 	rlwinm  r27,r27,2,0,29                         
ffc10594:	7c 09 d8 2e 	lwzx    r0,r9,r27                              
    if ( !p2 )                                                        
ffc10598:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc1059c:	40 9e ff 80 	bne+    cr7,ffc1051c <IMFS_memfile_get_block_pointer+0x1b0><== ALWAYS TAKEN
ffc105a0:	4b ff fe a0 	b       ffc10440 <IMFS_memfile_get_block_pointer+0xd4><== NOT EXECUTED
        info->triply_indirect = p;                                    
      }                                                               
                                                                      
      p1 = (block_p *) p[ triply ];                                   
      if ( !p1 ) {                                                    
        p1 = memfile_alloc_block();                                   
ffc105a4:	4b ff fd 85 	bl      ffc10328 <memfile_alloc_block>         
        if ( !p1 )                                                    
           return 0;                                                  
ffc105a8:	3b c0 00 00 	li      r30,0                                  
      }                                                               
                                                                      
      p1 = (block_p *) p[ triply ];                                   
      if ( !p1 ) {                                                    
        p1 = memfile_alloc_block();                                   
        if ( !p1 )                                                    
ffc105ac:	7c 69 1b 79 	mr.     r9,r3                                  
ffc105b0:	41 a2 fe 90 	beq-    ffc10440 <IMFS_memfile_get_block_pointer+0xd4><== NEVER TAKEN
           return 0;                                                  
        p[ triply ] = (block_p) p1;                                   
ffc105b4:	91 3d 00 00 	stw     r9,0(r29)                              
ffc105b8:	4b ff ff 1c 	b       ffc104d4 <IMFS_memfile_get_block_pointer+0x168>
                                                                      
    p = info->triply_indirect;                                        
                                                                      
    if ( malloc_it ) {                                                
      if ( !p ) {                                                     
        p = memfile_alloc_block();                                    
ffc105bc:	4b ff fd 6d 	bl      ffc10328 <memfile_alloc_block>         
        if ( !p )                                                     
ffc105c0:	7c 6a 1b 79 	mr.     r10,r3                                 
ffc105c4:	41 a2 fe 7c 	beq-    ffc10440 <IMFS_memfile_get_block_pointer+0xd4><== NEVER TAKEN
           return 0;                                                  
        info->triply_indirect = p;                                    
ffc105c8:	91 5f 00 60 	stw     r10,96(r31)                            
ffc105cc:	4b ff fe f4 	b       ffc104c0 <IMFS_memfile_get_block_pointer+0x154>
                                                                      

ffc105d0 <IMFS_memfile_read>: IMFS_jnode_t *the_jnode, off_t start, unsigned char *destination, unsigned int length ) {
ffc105d0:	94 21 ff c0 	stwu    r1,-64(r1)                             
ffc105d4:	7c 08 02 a6 	mflr    r0                                     
ffc105d8:	90 01 00 44 	stw     r0,68(r1)                              
   *  Linear files (as created from a tar file are easier to handle   
   *  than block files).                                              
   */                                                                 
  my_length = length;                                                 
                                                                      
  if (the_jnode->type == IMFS_LINEAR_FILE) {                          
ffc105dc:	80 03 00 4c 	lwz     r0,76(r3)                              
   IMFS_jnode_t    *the_jnode,                                        
   off_t            start,                                            
   unsigned char   *destination,                                      
   unsigned int     length                                            
)                                                                     
{                                                                     
ffc105e0:	93 81 00 30 	stw     r28,48(r1)                             
ffc105e4:	7c fc 3b 78 	mr      r28,r7                                 
   *  Linear files (as created from a tar file are easier to handle   
   *  than block files).                                              
   */                                                                 
  my_length = length;                                                 
                                                                      
  if (the_jnode->type == IMFS_LINEAR_FILE) {                          
ffc105e8:	2f 80 00 06 	cmpwi   cr7,r0,6                               
   IMFS_jnode_t    *the_jnode,                                        
   off_t            start,                                            
   unsigned char   *destination,                                      
   unsigned int     length                                            
)                                                                     
{                                                                     
ffc105ec:	93 a1 00 34 	stw     r29,52(r1)                             
ffc105f0:	7c 7d 1b 78 	mr      r29,r3                                 
ffc105f4:	93 c1 00 38 	stw     r30,56(r1)                             
ffc105f8:	7c be 2b 78 	mr      r30,r5                                 
ffc105fc:	93 e1 00 3c 	stw     r31,60(r1)                             
ffc10600:	7c df 33 78 	mr      r31,r6                                 
ffc10604:	92 e1 00 1c 	stw     r23,28(r1)                             
ffc10608:	93 01 00 20 	stw     r24,32(r1)                             
ffc1060c:	93 21 00 24 	stw     r25,36(r1)                             
ffc10610:	93 41 00 28 	stw     r26,40(r1)                             
ffc10614:	93 61 00 2c 	stw     r27,44(r1)                             
   *  Linear files (as created from a tar file are easier to handle   
   *  than block files).                                              
   */                                                                 
  my_length = length;                                                 
                                                                      
  if (the_jnode->type == IMFS_LINEAR_FILE) {                          
ffc10618:	41 9e 01 d0 	beq-    cr7,ffc107e8 <IMFS_memfile_read+0x218> 
  /*                                                                  
   *  If the last byte we are supposed to read is past the end of this
   *  in memory file, then shorten the length to read.                
   */                                                                 
  last_byte = start + length;                                         
  if ( last_byte > the_jnode->info.file.size )                        
ffc1061c:	80 03 00 50 	lwz     r0,80(r3)                              
ffc10620:	39 20 00 00 	li      r9,0                                   
ffc10624:	83 43 00 54 	lwz     r26,84(r3)                             
ffc10628:	7f 89 00 00 	cmpw    cr7,r9,r0                              
                                                                      
  /*                                                                  
   *  If the last byte we are supposed to read is past the end of this
   *  in memory file, then shorten the length to read.                
   */                                                                 
  last_byte = start + length;                                         
ffc1062c:	7c c0 33 78 	mr      r0,r6                                  
ffc10630:	7d 28 32 14 	add     r9,r8,r6                               
  if ( last_byte > the_jnode->info.file.size )                        
ffc10634:	40 9d 01 28 	ble-    cr7,ffc1075c <IMFS_memfile_read+0x18c> <== ALWAYS TAKEN
    my_length = the_jnode->info.file.size - start;                    
ffc10638:	7f 40 d0 50 	subf    r26,r0,r26                             
   */                                                                 
                                                                      
  /*                                                                  
   *  Phase 1: possibly the last part of one block                    
   */                                                                 
  start_offset = start % IMFS_MEMFILE_BYTES_PER_BLOCK;                
ffc1063c:	3f 20 00 00 	lis     r25,0                                  
ffc10640:	83 79 27 08 	lwz     r27,9992(r25)                          
ffc10644:	7f c3 f3 78 	mr      r3,r30                                 
ffc10648:	7f e4 fb 78 	mr      r4,r31                                 
ffc1064c:	7f 78 fe 70 	srawi   r24,r27,31                             
ffc10650:	7f 05 c3 78 	mr      r5,r24                                 
ffc10654:	7f 66 db 78 	mr      r6,r27                                 
ffc10658:	48 00 5d b5 	bl      ffc1640c <__moddi3>                    
  block = start / IMFS_MEMFILE_BYTES_PER_BLOCK;                       
ffc1065c:	7f c3 f3 78 	mr      r3,r30                                 
   */                                                                 
                                                                      
  /*                                                                  
   *  Phase 1: possibly the last part of one block                    
   */                                                                 
  start_offset = start % IMFS_MEMFILE_BYTES_PER_BLOCK;                
ffc10660:	7c 97 23 78 	mr      r23,r4                                 
  block = start / IMFS_MEMFILE_BYTES_PER_BLOCK;                       
ffc10664:	7f 05 c3 78 	mr      r5,r24                                 
ffc10668:	7f e4 fb 78 	mr      r4,r31                                 
ffc1066c:	7f 66 db 78 	mr      r6,r27                                 
ffc10670:	48 00 59 85 	bl      ffc15ff4 <__divdi3>                    
  if ( start_offset )  {                                              
ffc10674:	2f 97 00 00 	cmpwi   cr7,r23,0                              
                                                                      
  /*                                                                  
   *  Phase 1: possibly the last part of one block                    
   */                                                                 
  start_offset = start % IMFS_MEMFILE_BYTES_PER_BLOCK;                
  block = start / IMFS_MEMFILE_BYTES_PER_BLOCK;                       
ffc10678:	7c 9e 23 78 	mr      r30,r4                                 
  unsigned int         last_byte;                                     
  unsigned int         copied;                                        
  unsigned int         start_offset;                                  
  unsigned char       *dest;                                          
                                                                      
  dest = destination;                                                 
ffc1067c:	7f 98 e3 78 	mr      r24,r28                                
   */                                                                 
  last_byte = start + length;                                         
  if ( last_byte > the_jnode->info.file.size )                        
    my_length = the_jnode->info.file.size - start;                    
                                                                      
  copied = 0;                                                         
ffc10680:	3b e0 00 00 	li      r31,0                                  
  /*                                                                  
   *  Phase 1: possibly the last part of one block                    
   */                                                                 
  start_offset = start % IMFS_MEMFILE_BYTES_PER_BLOCK;                
  block = start / IMFS_MEMFILE_BYTES_PER_BLOCK;                       
  if ( start_offset )  {                                              
ffc10684:	41 9e 00 50 	beq-    cr7,ffc106d4 <IMFS_memfile_read+0x104> 
    to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK - start_offset;            
    if ( to_copy > my_length )                                        
      to_copy = my_length;                                            
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
ffc10688:	7f a3 eb 78 	mr      r3,r29                                 
ffc1068c:	38 a0 00 00 	li      r5,0                                   
ffc10690:	4b ff fc dd 	bl      ffc1036c <IMFS_memfile_get_block_pointer>
    if ( !block_ptr )                                                 
ffc10694:	7c 69 1b 79 	mr.     r9,r3                                  
      return copied;                                                  
ffc10698:	38 60 00 00 	li      r3,0                                   
  if ( start_offset )  {                                              
    to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK - start_offset;            
    if ( to_copy > my_length )                                        
      to_copy = my_length;                                            
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
    if ( !block_ptr )                                                 
ffc1069c:	41 82 00 8c 	beq-    ffc10728 <IMFS_memfile_read+0x158>     <== NEVER TAKEN
   *  Phase 1: possibly the last part of one block                    
   */                                                                 
  start_offset = start % IMFS_MEMFILE_BYTES_PER_BLOCK;                
  block = start / IMFS_MEMFILE_BYTES_PER_BLOCK;                       
  if ( start_offset )  {                                              
    to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK - start_offset;            
ffc106a0:	7f 77 d8 50 	subf    r27,r23,r27                            
ffc106a4:	7f 9a d8 40 	cmplw   cr7,r26,r27                            
ffc106a8:	7f 5f d3 78 	mr      r31,r26                                
ffc106ac:	41 9d 01 cc 	bgt-    cr7,ffc10878 <IMFS_memfile_read+0x2a8> 
    if ( to_copy > my_length )                                        
      to_copy = my_length;                                            
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
    if ( !block_ptr )                                                 
      return copied;                                                  
    memcpy( dest, &(*block_ptr)[ start_offset ], to_copy );           
ffc106b0:	80 89 00 00 	lwz     r4,0(r9)                               
ffc106b4:	7f 83 e3 78 	mr      r3,r28                                 
ffc106b8:	7f e5 fb 78 	mr      r5,r31                                 
ffc106bc:	7c 84 ba 14 	add     r4,r4,r23                              
ffc106c0:	48 00 26 e9 	bl      ffc12da8 <memcpy>                      
    dest += to_copy;                                                  
    block++;                                                          
    my_length -= to_copy;                                             
ffc106c4:	83 79 27 08 	lwz     r27,9992(r25)                          
      to_copy = my_length;                                            
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
    if ( !block_ptr )                                                 
      return copied;                                                  
    memcpy( dest, &(*block_ptr)[ start_offset ], to_copy );           
    dest += to_copy;                                                  
ffc106c8:	7f 1c fa 14 	add     r24,r28,r31                            
    block++;                                                          
ffc106cc:	3b de 00 01 	addi    r30,r30,1                              
    my_length -= to_copy;                                             
ffc106d0:	7f 5f d0 50 	subf    r26,r31,r26                            
                                                                      
  /*                                                                  
   *  Phase 2: all of zero of more blocks                             
   */                                                                 
  to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK;                             
  while ( my_length >= IMFS_MEMFILE_BYTES_PER_BLOCK ) {               
ffc106d4:	7f 9a d8 40 	cmplw   cr7,r26,r27                            
ffc106d8:	40 bc 00 20 	bge+    cr7,ffc106f8 <IMFS_memfile_read+0x128> 
ffc106dc:	48 00 00 8c 	b       ffc10768 <IMFS_memfile_read+0x198>     
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
    if ( !block_ptr )                                                 
      return copied;                                                  
    memcpy( dest, &(*block_ptr)[ 0 ], to_copy );                      
ffc106e0:	80 89 00 00 	lwz     r4,0(r9)                               
    dest += to_copy;                                                  
    block++;                                                          
    my_length -= to_copy;                                             
    copied += to_copy;                                                
ffc106e4:	7f ff da 14 	add     r31,r31,r27                            
  to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK;                             
  while ( my_length >= IMFS_MEMFILE_BYTES_PER_BLOCK ) {               
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
    if ( !block_ptr )                                                 
      return copied;                                                  
    memcpy( dest, &(*block_ptr)[ 0 ], to_copy );                      
ffc106e8:	48 00 26 c1 	bl      ffc12da8 <memcpy>                      
                                                                      
  /*                                                                  
   *  Phase 2: all of zero of more blocks                             
   */                                                                 
  to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK;                             
  while ( my_length >= IMFS_MEMFILE_BYTES_PER_BLOCK ) {               
ffc106ec:	80 19 27 08 	lwz     r0,9992(r25)                           
ffc106f0:	7f 80 d0 40 	cmplw   cr7,r0,r26                             
ffc106f4:	41 9d 00 74 	bgt-    cr7,ffc10768 <IMFS_memfile_read+0x198> 
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
ffc106f8:	7f c4 f3 78 	mr      r4,r30                                 
ffc106fc:	38 a0 00 00 	li      r5,0                                   
ffc10700:	7f a3 eb 78 	mr      r3,r29                                 
ffc10704:	4b ff fc 69 	bl      ffc1036c <IMFS_memfile_get_block_pointer>
    if ( !block_ptr )                                                 
      return copied;                                                  
    memcpy( dest, &(*block_ptr)[ 0 ], to_copy );                      
    dest += to_copy;                                                  
    block++;                                                          
    my_length -= to_copy;                                             
ffc10708:	7f 5b d0 50 	subf    r26,r27,r26                            
   *  Phase 2: all of zero of more blocks                             
   */                                                                 
  to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK;                             
  while ( my_length >= IMFS_MEMFILE_BYTES_PER_BLOCK ) {               
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
    if ( !block_ptr )                                                 
ffc1070c:	7c 69 1b 79 	mr.     r9,r3                                  
      return copied;                                                  
    memcpy( dest, &(*block_ptr)[ 0 ], to_copy );                      
ffc10710:	7f 65 db 78 	mr      r5,r27                                 
ffc10714:	7f 03 c3 78 	mr      r3,r24                                 
    dest += to_copy;                                                  
    block++;                                                          
ffc10718:	3b de 00 01 	addi    r30,r30,1                              
  while ( my_length >= IMFS_MEMFILE_BYTES_PER_BLOCK ) {               
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
    if ( !block_ptr )                                                 
      return copied;                                                  
    memcpy( dest, &(*block_ptr)[ 0 ], to_copy );                      
    dest += to_copy;                                                  
ffc1071c:	7f 18 da 14 	add     r24,r24,r27                            
   *  Phase 2: all of zero of more blocks                             
   */                                                                 
  to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK;                             
  while ( my_length >= IMFS_MEMFILE_BYTES_PER_BLOCK ) {               
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
    if ( !block_ptr )                                                 
ffc10720:	40 82 ff c0 	bne+    ffc106e0 <IMFS_memfile_read+0x110>     <== ALWAYS TAKEN
  IMFS_assert( my_length < IMFS_MEMFILE_BYTES_PER_BLOCK );            
                                                                      
  if ( my_length ) {                                                  
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
    if ( !block_ptr )                                                 
      return copied;                                                  
ffc10724:	7f e3 fb 78 	mr      r3,r31                                 <== NOT EXECUTED
  }                                                                   
                                                                      
  IMFS_update_atime( the_jnode );                                     
                                                                      
  return copied;                                                      
}                                                                     
ffc10728:	80 01 00 44 	lwz     r0,68(r1)                              <== NOT EXECUTED
ffc1072c:	82 e1 00 1c 	lwz     r23,28(r1)                             <== NOT EXECUTED
ffc10730:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc10734:	83 01 00 20 	lwz     r24,32(r1)                             <== NOT EXECUTED
ffc10738:	83 21 00 24 	lwz     r25,36(r1)                             <== NOT EXECUTED
ffc1073c:	83 41 00 28 	lwz     r26,40(r1)                             <== NOT EXECUTED
ffc10740:	83 61 00 2c 	lwz     r27,44(r1)                             <== NOT EXECUTED
ffc10744:	83 81 00 30 	lwz     r28,48(r1)                             <== NOT EXECUTED
ffc10748:	83 a1 00 34 	lwz     r29,52(r1)                             <== NOT EXECUTED
ffc1074c:	83 c1 00 38 	lwz     r30,56(r1)                             <== NOT EXECUTED
ffc10750:	83 e1 00 3c 	lwz     r31,60(r1)                             <== NOT EXECUTED
ffc10754:	38 21 00 40 	addi    r1,r1,64                               <== NOT EXECUTED
ffc10758:	4e 80 00 20 	blr                                            <== NOT EXECUTED
  /*                                                                  
   *  If the last byte we are supposed to read is past the end of this
   *  in memory file, then shorten the length to read.                
   */                                                                 
  last_byte = start + length;                                         
  if ( last_byte > the_jnode->info.file.size )                        
ffc1075c:	41 9e 01 0c 	beq-    cr7,ffc10868 <IMFS_memfile_read+0x298> <== ALWAYS TAKEN
                                                                      
  /*                                                                  
   *  Linear files (as created from a tar file are easier to handle   
   *  than block files).                                              
   */                                                                 
  my_length = length;                                                 
ffc10760:	7d 1a 43 78 	mr      r26,r8                                 <== NOT EXECUTED
ffc10764:	4b ff fe d8 	b       ffc1063c <IMFS_memfile_read+0x6c>      <== NOT EXECUTED
  /*                                                                  
   *  Phase 3: possibly the first part of one block                   
   */                                                                 
  IMFS_assert( my_length < IMFS_MEMFILE_BYTES_PER_BLOCK );            
                                                                      
  if ( my_length ) {                                                  
ffc10768:	2f 9a 00 00 	cmpwi   cr7,r26,0                              
ffc1076c:	41 9e 00 30 	beq-    cr7,ffc1079c <IMFS_memfile_read+0x1cc> 
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
ffc10770:	7f a3 eb 78 	mr      r3,r29                                 
ffc10774:	7f c4 f3 78 	mr      r4,r30                                 
ffc10778:	38 a0 00 00 	li      r5,0                                   
ffc1077c:	4b ff fb f1 	bl      ffc1036c <IMFS_memfile_get_block_pointer>
    if ( !block_ptr )                                                 
ffc10780:	2c 03 00 00 	cmpwi   r3,0                                   
ffc10784:	41 a2 ff a0 	beq-    ffc10724 <IMFS_memfile_read+0x154>     <== NEVER TAKEN
      return copied;                                                  
    memcpy( dest, &(*block_ptr)[ 0 ], my_length );                    
ffc10788:	80 83 00 00 	lwz     r4,0(r3)                               
ffc1078c:	7f 45 d3 78 	mr      r5,r26                                 
ffc10790:	7f 03 c3 78 	mr      r3,r24                                 
ffc10794:	48 00 26 15 	bl      ffc12da8 <memcpy>                      
    copied += my_length;                                              
ffc10798:	7f ff d2 14 	add     r31,r31,r26                            
  }                                                                   
                                                                      
  IMFS_update_atime( the_jnode );                                     
ffc1079c:	38 61 00 08 	addi    r3,r1,8                                
ffc107a0:	38 80 00 00 	li      r4,0                                   
ffc107a4:	4b ff 45 a1 	bl      ffc04d44 <gettimeofday>                
ffc107a8:	80 01 00 08 	lwz     r0,8(r1)                               
                                                                      
  return copied;                                                      
ffc107ac:	7f e3 fb 78 	mr      r3,r31                                 
}                                                                     
ffc107b0:	82 e1 00 1c 	lwz     r23,28(r1)                             
      return copied;                                                  
    memcpy( dest, &(*block_ptr)[ 0 ], my_length );                    
    copied += my_length;                                              
  }                                                                   
                                                                      
  IMFS_update_atime( the_jnode );                                     
ffc107b4:	90 1d 00 40 	stw     r0,64(r29)                             
                                                                      
  return copied;                                                      
}                                                                     
ffc107b8:	80 01 00 44 	lwz     r0,68(r1)                              
ffc107bc:	83 01 00 20 	lwz     r24,32(r1)                             
ffc107c0:	7c 08 03 a6 	mtlr    r0                                     
ffc107c4:	83 21 00 24 	lwz     r25,36(r1)                             
ffc107c8:	83 41 00 28 	lwz     r26,40(r1)                             
ffc107cc:	83 61 00 2c 	lwz     r27,44(r1)                             
ffc107d0:	83 81 00 30 	lwz     r28,48(r1)                             
ffc107d4:	83 a1 00 34 	lwz     r29,52(r1)                             
ffc107d8:	83 c1 00 38 	lwz     r30,56(r1)                             
ffc107dc:	83 e1 00 3c 	lwz     r31,60(r1)                             
ffc107e0:	38 21 00 40 	addi    r1,r1,64                               
ffc107e4:	4e 80 00 20 	blr                                            
  if (the_jnode->type == IMFS_LINEAR_FILE) {                          
    unsigned char  *file_ptr;                                         
                                                                      
    file_ptr = (unsigned char *)the_jnode->info.linearfile.direct;    
                                                                      
    if (my_length > (the_jnode->info.linearfile.size - start))        
ffc107e8:	81 23 00 50 	lwz     r9,80(r3)                              
ffc107ec:	38 00 00 00 	li      r0,0                                   
ffc107f0:	81 43 00 54 	lwz     r10,84(r3)                             
  my_length = length;                                                 
                                                                      
  if (the_jnode->type == IMFS_LINEAR_FILE) {                          
    unsigned char  *file_ptr;                                         
                                                                      
    file_ptr = (unsigned char *)the_jnode->info.linearfile.direct;    
ffc107f4:	80 83 00 58 	lwz     r4,88(r3)                              
                                                                      
    if (my_length > (the_jnode->info.linearfile.size - start))        
ffc107f8:	7d 9f 50 10 	subfc   r12,r31,r10                            
ffc107fc:	7d 7e 49 10 	subfe   r11,r30,r9                             
ffc10800:	7f 80 58 00 	cmpw    cr7,r0,r11                             
ffc10804:	40 9d 00 7c 	ble-    cr7,ffc10880 <IMFS_memfile_read+0x2b0> <== ALWAYS TAKEN
      my_length = the_jnode->info.linearfile.size - start;            
ffc10808:	7f 5f 50 50 	subf    r26,r31,r10                            
                                                                      
    memcpy(dest, &file_ptr[start], my_length);                        
ffc1080c:	7c 84 fa 14 	add     r4,r4,r31                              
ffc10810:	7f 45 d3 78 	mr      r5,r26                                 
ffc10814:	7f 83 e3 78 	mr      r3,r28                                 
ffc10818:	48 00 25 91 	bl      ffc12da8 <memcpy>                      
                                                                      
    IMFS_update_atime( the_jnode );                                   
ffc1081c:	38 61 00 08 	addi    r3,r1,8                                
ffc10820:	38 80 00 00 	li      r4,0                                   
ffc10824:	4b ff 45 21 	bl      ffc04d44 <gettimeofday>                
ffc10828:	80 01 00 08 	lwz     r0,8(r1)                               
                                                                      
    return my_length;                                                 
ffc1082c:	7f 43 d3 78 	mr      r3,r26                                 
  }                                                                   
                                                                      
  IMFS_update_atime( the_jnode );                                     
                                                                      
  return copied;                                                      
}                                                                     
ffc10830:	82 e1 00 1c 	lwz     r23,28(r1)                             
    if (my_length > (the_jnode->info.linearfile.size - start))        
      my_length = the_jnode->info.linearfile.size - start;            
                                                                      
    memcpy(dest, &file_ptr[start], my_length);                        
                                                                      
    IMFS_update_atime( the_jnode );                                   
ffc10834:	90 1d 00 40 	stw     r0,64(r29)                             
  }                                                                   
                                                                      
  IMFS_update_atime( the_jnode );                                     
                                                                      
  return copied;                                                      
}                                                                     
ffc10838:	80 01 00 44 	lwz     r0,68(r1)                              
ffc1083c:	83 01 00 20 	lwz     r24,32(r1)                             
ffc10840:	7c 08 03 a6 	mtlr    r0                                     
ffc10844:	83 21 00 24 	lwz     r25,36(r1)                             
ffc10848:	83 41 00 28 	lwz     r26,40(r1)                             
ffc1084c:	83 61 00 2c 	lwz     r27,44(r1)                             
ffc10850:	83 81 00 30 	lwz     r28,48(r1)                             
ffc10854:	83 a1 00 34 	lwz     r29,52(r1)                             
ffc10858:	83 c1 00 38 	lwz     r30,56(r1)                             
ffc1085c:	83 e1 00 3c 	lwz     r31,60(r1)                             
ffc10860:	38 21 00 40 	addi    r1,r1,64                               
ffc10864:	4e 80 00 20 	blr                                            
  /*                                                                  
   *  If the last byte we are supposed to read is past the end of this
   *  in memory file, then shorten the length to read.                
   */                                                                 
  last_byte = start + length;                                         
  if ( last_byte > the_jnode->info.file.size )                        
ffc10868:	7f 89 d0 40 	cmplw   cr7,r9,r26                             
ffc1086c:	41 bd fd cc 	bgt-    cr7,ffc10638 <IMFS_memfile_read+0x68>  
                                                                      
  /*                                                                  
   *  Linear files (as created from a tar file are easier to handle   
   *  than block files).                                              
   */                                                                 
  my_length = length;                                                 
ffc10870:	7d 1a 43 78 	mr      r26,r8                                 
ffc10874:	4b ff fd c8 	b       ffc1063c <IMFS_memfile_read+0x6c>      
   *  Phase 1: possibly the last part of one block                    
   */                                                                 
  start_offset = start % IMFS_MEMFILE_BYTES_PER_BLOCK;                
  block = start / IMFS_MEMFILE_BYTES_PER_BLOCK;                       
  if ( start_offset )  {                                              
    to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK - start_offset;            
ffc10878:	7f 7f db 78 	mr      r31,r27                                
ffc1087c:	4b ff fe 34 	b       ffc106b0 <IMFS_memfile_read+0xe0>      
  if (the_jnode->type == IMFS_LINEAR_FILE) {                          
    unsigned char  *file_ptr;                                         
                                                                      
    file_ptr = (unsigned char *)the_jnode->info.linearfile.direct;    
                                                                      
    if (my_length > (the_jnode->info.linearfile.size - start))        
ffc10880:	40 9e 00 0c 	bne-    cr7,ffc1088c <IMFS_memfile_read+0x2bc> <== NEVER TAKEN
ffc10884:	7f 88 60 40 	cmplw   cr7,r8,r12                             
ffc10888:	41 9d ff 80 	bgt+    cr7,ffc10808 <IMFS_memfile_read+0x238> <== ALWAYS TAKEN
                                                                      
  /*                                                                  
   *  Linear files (as created from a tar file are easier to handle   
   *  than block files).                                              
   */                                                                 
  my_length = length;                                                 
ffc1088c:	7d 1a 43 78 	mr      r26,r8                                 <== NOT EXECUTED
ffc10890:	4b ff ff 7c 	b       ffc1080c <IMFS_memfile_read+0x23c>     <== NOT EXECUTED
                                                                      

ffc109cc <IMFS_memfile_remove>: * is better to stick to simple, easy to understand algorithms. */ int IMFS_memfile_remove( IMFS_jnode_t *the_jnode ) {
ffc109cc:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc109d0:	7c 08 02 a6 	mflr    r0                                     
ffc109d4:	93 41 00 10 	stw     r26,16(r1)                             
ffc109d8:	7c 7a 1b 78 	mr      r26,r3                                 
ffc109dc:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc109e0:	93 c1 00 20 	stw     r30,32(r1)                             
                                                                      
  /*                                                                  
   *  Eventually this could be set smarter at each call to            
   *  memfile_free_blocks_in_table to greatly speed this up.          
   */                                                                 
  to_free = IMFS_MEMFILE_BLOCK_SLOTS;                                 
ffc109e4:	3f c0 00 00 	lis     r30,0                                  
 *         is better to stick to simple, easy to understand algorithms.
 */                                                                   
int IMFS_memfile_remove(                                              
 IMFS_jnode_t  *the_jnode                                             
)                                                                     
{                                                                     
ffc109e8:	90 01 00 2c 	stw     r0,44(r1)                              
ffc109ec:	93 21 00 0c 	stw     r25,12(r1)                             
ffc109f0:	93 61 00 14 	stw     r27,20(r1)                             
ffc109f4:	93 81 00 18 	stw     r28,24(r1)                             
ffc109f8:	93 e1 00 24 	stw     r31,36(r1)                             
   *    + doubly indirect                                             
   *    + triply indirect                                             
   */                                                                 
  info = &the_jnode->info.file;                                       
                                                                      
  if ( info->indirect ) {                                             
ffc109fc:	80 03 00 58 	lwz     r0,88(r3)                              
                                                                      
  /*                                                                  
   *  Eventually this could be set smarter at each call to            
   *  memfile_free_blocks_in_table to greatly speed this up.          
   */                                                                 
  to_free = IMFS_MEMFILE_BLOCK_SLOTS;                                 
ffc10a00:	83 be 27 08 	lwz     r29,9992(r30)                          
   *    + doubly indirect                                             
   *    + triply indirect                                             
   */                                                                 
  info = &the_jnode->info.file;                                       
                                                                      
  if ( info->indirect ) {                                             
ffc10a04:	2f 80 00 00 	cmpwi   cr7,r0,0                               
                                                                      
  /*                                                                  
   *  Eventually this could be set smarter at each call to            
   *  memfile_free_blocks_in_table to greatly speed this up.          
   */                                                                 
  to_free = IMFS_MEMFILE_BLOCK_SLOTS;                                 
ffc10a08:	57 bd f0 be 	rlwinm  r29,r29,30,2,31                        
   *    + doubly indirect                                             
   *    + triply indirect                                             
   */                                                                 
  info = &the_jnode->info.file;                                       
                                                                      
  if ( info->indirect ) {                                             
ffc10a0c:	41 9e 00 10 	beq-    cr7,ffc10a1c <IMFS_memfile_remove+0x50>
    memfile_free_blocks_in_table( &info->indirect, to_free );         
ffc10a10:	38 63 00 58 	addi    r3,r3,88                               
ffc10a14:	7f a4 eb 78 	mr      r4,r29                                 
ffc10a18:	4b ff ff 25 	bl      ffc1093c <memfile_free_blocks_in_table>
  }                                                                   
                                                                      
  if ( info->doubly_indirect ) {                                      
ffc10a1c:	81 3a 00 5c 	lwz     r9,92(r26)                             
ffc10a20:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc10a24:	41 9e 00 68 	beq-    cr7,ffc10a8c <IMFS_memfile_remove+0xc0>
    for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) {                  
ffc10a28:	80 1e 27 08 	lwz     r0,9992(r30)                           
ffc10a2c:	54 0b f0 bf 	rlwinm. r11,r0,30,2,31                         
ffc10a30:	41 82 00 50 	beq-    ffc10a80 <IMFS_memfile_remove+0xb4>    <== NEVER TAKEN
ffc10a34:	3f 80 00 00 	lis     r28,0                                  
ffc10a38:	38 60 00 00 	li      r3,0                                   
ffc10a3c:	3b e0 00 00 	li      r31,0                                  
ffc10a40:	3b 9c 27 08 	addi    r28,r28,9992                           
ffc10a44:	48 00 00 08 	b       ffc10a4c <IMFS_memfile_remove+0x80>    
ffc10a48:	81 3a 00 5c 	lwz     r9,92(r26)                             
      if ( info->doubly_indirect[i] ) {                               
ffc10a4c:	54 63 10 3a 	rlwinm  r3,r3,2,0,29                           
ffc10a50:	7c 09 18 2e 	lwzx    r0,r9,r3                               
  if ( info->indirect ) {                                             
    memfile_free_blocks_in_table( &info->indirect, to_free );         
  }                                                                   
                                                                      
  if ( info->doubly_indirect ) {                                      
    for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) {                  
ffc10a54:	3b ff 00 01 	addi    r31,r31,1                              
      if ( info->doubly_indirect[i] ) {                               
        memfile_free_blocks_in_table(                                 
ffc10a58:	7c 69 1a 14 	add     r3,r9,r3                               
    memfile_free_blocks_in_table( &info->indirect, to_free );         
  }                                                                   
                                                                      
  if ( info->doubly_indirect ) {                                      
    for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) {                  
      if ( info->doubly_indirect[i] ) {                               
ffc10a5c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
        memfile_free_blocks_in_table(                                 
ffc10a60:	7f a4 eb 78 	mr      r4,r29                                 
    memfile_free_blocks_in_table( &info->indirect, to_free );         
  }                                                                   
                                                                      
  if ( info->doubly_indirect ) {                                      
    for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) {                  
      if ( info->doubly_indirect[i] ) {                               
ffc10a64:	41 9e 00 08 	beq-    cr7,ffc10a6c <IMFS_memfile_remove+0xa0><== NEVER TAKEN
        memfile_free_blocks_in_table(                                 
ffc10a68:	4b ff fe d5 	bl      ffc1093c <memfile_free_blocks_in_table>
  if ( info->indirect ) {                                             
    memfile_free_blocks_in_table( &info->indirect, to_free );         
  }                                                                   
                                                                      
  if ( info->doubly_indirect ) {                                      
    for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) {                  
ffc10a6c:	80 1c 00 00 	lwz     r0,0(r28)                              
ffc10a70:	7f e3 fb 78 	mr      r3,r31                                 
ffc10a74:	54 00 f0 be 	rlwinm  r0,r0,30,2,31                          
ffc10a78:	7f 80 f8 40 	cmplw   cr7,r0,r31                             
ffc10a7c:	41 9d ff cc 	bgt+    cr7,ffc10a48 <IMFS_memfile_remove+0x7c>
      if ( info->doubly_indirect[i] ) {                               
        memfile_free_blocks_in_table(                                 
         (block_p **)&info->doubly_indirect[i], to_free );            
      }                                                               
    }                                                                 
    memfile_free_blocks_in_table( &info->doubly_indirect, to_free );  
ffc10a80:	38 7a 00 5c 	addi    r3,r26,92                              
ffc10a84:	7f a4 eb 78 	mr      r4,r29                                 
ffc10a88:	4b ff fe b5 	bl      ffc1093c <memfile_free_blocks_in_table>
                                                                      
  }                                                                   
                                                                      
  if ( info->triply_indirect ) {                                      
ffc10a8c:	80 7a 00 60 	lwz     r3,96(r26)                             
ffc10a90:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc10a94:	41 9e 00 b4 	beq-    cr7,ffc10b48 <IMFS_memfile_remove+0x17c>
    for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) {                  
ffc10a98:	80 1e 27 08 	lwz     r0,9992(r30)                           
ffc10a9c:	54 00 f0 bf 	rlwinm. r0,r0,30,2,31                          
ffc10aa0:	41 82 00 9c 	beq-    ffc10b3c <IMFS_memfile_remove+0x170>   <== NEVER TAKEN
      p = (block_p *) info->triply_indirect[i];                       
ffc10aa4:	83 c3 00 00 	lwz     r30,0(r3)                              
      if ( !p )  /* ensure we have a valid pointer */                 
ffc10aa8:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc10aac:	41 9e 00 90 	beq-    cr7,ffc10b3c <IMFS_memfile_remove+0x170><== NEVER TAKEN
ffc10ab0:	3f 80 00 00 	lis     r28,0                                  
                                                                      
  }                                                                   
                                                                      
  if ( info->triply_indirect ) {                                      
    for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) {                  
      p = (block_p *) info->triply_indirect[i];                       
ffc10ab4:	3b 20 00 00 	li      r25,0                                  
      if ( !p )  /* ensure we have a valid pointer */                 
ffc10ab8:	3b 60 00 00 	li      r27,0                                  
ffc10abc:	3b 9c 27 08 	addi    r28,r28,9992                           
         break;                                                       
      for ( j=0 ; j<IMFS_MEMFILE_BLOCK_SLOTS ; j++ ) {                
ffc10ac0:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc10ac4:	41 9e 00 44 	beq-    cr7,ffc10b08 <IMFS_memfile_remove+0x13c><== NEVER TAKEN
ffc10ac8:	38 60 00 00 	li      r3,0                                   
ffc10acc:	3b e0 00 00 	li      r31,0                                  
        if ( p[j] ) {                                                 
ffc10ad0:	54 63 10 3a 	rlwinm  r3,r3,2,0,29                           
ffc10ad4:	7c 1e 18 2e 	lwzx    r0,r30,r3                              
  if ( info->triply_indirect ) {                                      
    for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) {                  
      p = (block_p *) info->triply_indirect[i];                       
      if ( !p )  /* ensure we have a valid pointer */                 
         break;                                                       
      for ( j=0 ; j<IMFS_MEMFILE_BLOCK_SLOTS ; j++ ) {                
ffc10ad8:	3b ff 00 01 	addi    r31,r31,1                              
        if ( p[j] ) {                                                 
          memfile_free_blocks_in_table( (block_p **)&p[j], to_free);  
ffc10adc:	7c 7e 1a 14 	add     r3,r30,r3                              
    for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) {                  
      p = (block_p *) info->triply_indirect[i];                       
      if ( !p )  /* ensure we have a valid pointer */                 
         break;                                                       
      for ( j=0 ; j<IMFS_MEMFILE_BLOCK_SLOTS ; j++ ) {                
        if ( p[j] ) {                                                 
ffc10ae0:	2f 80 00 00 	cmpwi   cr7,r0,0                               
          memfile_free_blocks_in_table( (block_p **)&p[j], to_free);  
ffc10ae4:	7f a4 eb 78 	mr      r4,r29                                 
    for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) {                  
      p = (block_p *) info->triply_indirect[i];                       
      if ( !p )  /* ensure we have a valid pointer */                 
         break;                                                       
      for ( j=0 ; j<IMFS_MEMFILE_BLOCK_SLOTS ; j++ ) {                
        if ( p[j] ) {                                                 
ffc10ae8:	41 9e 00 08 	beq-    cr7,ffc10af0 <IMFS_memfile_remove+0x124><== NEVER TAKEN
          memfile_free_blocks_in_table( (block_p **)&p[j], to_free);  
ffc10aec:	4b ff fe 51 	bl      ffc1093c <memfile_free_blocks_in_table>
  if ( info->triply_indirect ) {                                      
    for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) {                  
      p = (block_p *) info->triply_indirect[i];                       
      if ( !p )  /* ensure we have a valid pointer */                 
         break;                                                       
      for ( j=0 ; j<IMFS_MEMFILE_BLOCK_SLOTS ; j++ ) {                
ffc10af0:	80 1c 00 00 	lwz     r0,0(r28)                              
ffc10af4:	7f e3 fb 78 	mr      r3,r31                                 
ffc10af8:	54 00 f0 be 	rlwinm  r0,r0,30,2,31                          
ffc10afc:	7f 9f 00 40 	cmplw   cr7,r31,r0                             
ffc10b00:	41 9c ff d0 	blt+    cr7,ffc10ad0 <IMFS_memfile_remove+0x104>
ffc10b04:	80 7a 00 60 	lwz     r3,96(r26)                             
        if ( p[j] ) {                                                 
          memfile_free_blocks_in_table( (block_p **)&p[j], to_free);  
        }                                                             
      }                                                               
      memfile_free_blocks_in_table(                                   
ffc10b08:	7c 63 ca 14 	add     r3,r3,r25                              
ffc10b0c:	7f a4 eb 78 	mr      r4,r29                                 
ffc10b10:	4b ff fe 2d 	bl      ffc1093c <memfile_free_blocks_in_table>
    memfile_free_blocks_in_table( &info->doubly_indirect, to_free );  
                                                                      
  }                                                                   
                                                                      
  if ( info->triply_indirect ) {                                      
    for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) {                  
ffc10b14:	80 1c 00 00 	lwz     r0,0(r28)                              
ffc10b18:	3b 7b 00 01 	addi    r27,r27,1                              
ffc10b1c:	54 00 f0 be 	rlwinm  r0,r0,30,2,31                          
ffc10b20:	7f 80 d8 40 	cmplw   cr7,r0,r27                             
ffc10b24:	40 9d 00 18 	ble-    cr7,ffc10b3c <IMFS_memfile_remove+0x170>
      p = (block_p *) info->triply_indirect[i];                       
ffc10b28:	80 7a 00 60 	lwz     r3,96(r26)                             
      if ( !p )  /* ensure we have a valid pointer */                 
ffc10b2c:	57 79 10 3a 	rlwinm  r25,r27,2,0,29                         
                                                                      
  }                                                                   
                                                                      
  if ( info->triply_indirect ) {                                      
    for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) {                  
      p = (block_p *) info->triply_indirect[i];                       
ffc10b30:	7f c3 c8 2e 	lwzx    r30,r3,r25                             
      if ( !p )  /* ensure we have a valid pointer */                 
ffc10b34:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc10b38:	40 9e ff 88 	bne+    cr7,ffc10ac0 <IMFS_memfile_remove+0xf4><== ALWAYS TAKEN
        }                                                             
      }                                                               
      memfile_free_blocks_in_table(                                   
        (block_p **)&info->triply_indirect[i], to_free );             
    }                                                                 
    memfile_free_blocks_in_table(                                     
ffc10b3c:	38 7a 00 60 	addi    r3,r26,96                              
ffc10b40:	7f a4 eb 78 	mr      r4,r29                                 
ffc10b44:	4b ff fd f9 	bl      ffc1093c <memfile_free_blocks_in_table>
        (block_p **)&info->triply_indirect, to_free );                
  }                                                                   
                                                                      
  return 0;                                                           
}                                                                     
ffc10b48:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc10b4c:	38 60 00 00 	li      r3,0                                   
ffc10b50:	83 21 00 0c 	lwz     r25,12(r1)                             
ffc10b54:	7c 08 03 a6 	mtlr    r0                                     
ffc10b58:	83 41 00 10 	lwz     r26,16(r1)                             
ffc10b5c:	83 61 00 14 	lwz     r27,20(r1)                             
ffc10b60:	83 81 00 18 	lwz     r28,24(r1)                             
ffc10b64:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc10b68:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc10b6c:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc10b70:	38 21 00 28 	addi    r1,r1,40                               
ffc10b74:	4e 80 00 20 	blr                                            
                                                                      

ffc10d88 <IMFS_memfile_write>: IMFS_jnode_t *the_jnode, off_t start, const unsigned char *source, unsigned int length ) {
ffc10d88:	94 21 ff c0 	stwu    r1,-64(r1)                             
ffc10d8c:	7c 08 02 a6 	mflr    r0                                     
ffc10d90:	92 e1 00 1c 	stw     r23,28(r1)                             
ffc10d94:	7c f7 3b 78 	mr      r23,r7                                 
ffc10d98:	93 81 00 30 	stw     r28,48(r1)                             
ffc10d9c:	7c bc 2b 78 	mr      r28,r5                                 
ffc10da0:	93 a1 00 34 	stw     r29,52(r1)                             
ffc10da4:	7d 1d 43 78 	mr      r29,r8                                 
ffc10da8:	93 c1 00 38 	stw     r30,56(r1)                             
ffc10dac:	7c de 33 78 	mr      r30,r6                                 
  /*                                                                  
   *  If the last byte we are supposed to write is past the end of this
   *  in memory file, then extend the length.                         
   */                                                                 
                                                                      
  last_byte = start + my_length;                                      
ffc10db0:	7c c8 32 14 	add     r6,r8,r6                               
   IMFS_jnode_t          *the_jnode,                                  
   off_t                  start,                                      
   const unsigned char   *source,                                     
   unsigned int           length                                      
)                                                                     
{                                                                     
ffc10db4:	93 e1 00 3c 	stw     r31,60(r1)                             
ffc10db8:	7c 7f 1b 78 	mr      r31,r3                                 
ffc10dbc:	90 01 00 44 	stw     r0,68(r1)                              
ffc10dc0:	93 01 00 20 	stw     r24,32(r1)                             
ffc10dc4:	93 21 00 24 	stw     r25,36(r1)                             
ffc10dc8:	93 41 00 28 	stw     r26,40(r1)                             
ffc10dcc:	93 61 00 2c 	stw     r27,44(r1)                             
   *  If the last byte we are supposed to write is past the end of this
   *  in memory file, then extend the length.                         
   */                                                                 
                                                                      
  last_byte = start + my_length;                                      
  if ( last_byte > the_jnode->info.file.size ) {                      
ffc10dd0:	80 03 00 50 	lwz     r0,80(r3)                              
ffc10dd4:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc10dd8:	41 9c 01 b4 	blt-    cr7,ffc10f8c <IMFS_memfile_write+0x204><== NEVER TAKEN
ffc10ddc:	41 9e 01 a4 	beq-    cr7,ffc10f80 <IMFS_memfile_write+0x1f8><== ALWAYS TAKEN
   */                                                                 
                                                                      
  /*                                                                  
   *  Phase 1: possibly the last part of one block                    
   */                                                                 
  start_offset = start % IMFS_MEMFILE_BYTES_PER_BLOCK;                
ffc10de0:	3f 40 00 00 	lis     r26,0                                  
ffc10de4:	83 7a 27 08 	lwz     r27,9992(r26)                          
ffc10de8:	7f 83 e3 78 	mr      r3,r28                                 
ffc10dec:	7f c4 f3 78 	mr      r4,r30                                 
ffc10df0:	7f 79 fe 70 	srawi   r25,r27,31                             
ffc10df4:	7f 25 cb 78 	mr      r5,r25                                 
ffc10df8:	7f 66 db 78 	mr      r6,r27                                 
ffc10dfc:	48 00 56 11 	bl      ffc1640c <__moddi3>                    
  block = start / IMFS_MEMFILE_BYTES_PER_BLOCK;                       
ffc10e00:	7f 83 e3 78 	mr      r3,r28                                 
   */                                                                 
                                                                      
  /*                                                                  
   *  Phase 1: possibly the last part of one block                    
   */                                                                 
  start_offset = start % IMFS_MEMFILE_BYTES_PER_BLOCK;                
ffc10e04:	7c 98 23 78 	mr      r24,r4                                 
  block = start / IMFS_MEMFILE_BYTES_PER_BLOCK;                       
ffc10e08:	7f 25 cb 78 	mr      r5,r25                                 
ffc10e0c:	7f c4 f3 78 	mr      r4,r30                                 
ffc10e10:	7f 66 db 78 	mr      r6,r27                                 
ffc10e14:	48 00 51 e1 	bl      ffc15ff4 <__divdi3>                    
  if ( start_offset )  {                                              
ffc10e18:	2f 98 00 00 	cmpwi   cr7,r24,0                              
                                                                      
  /*                                                                  
   *  Phase 1: possibly the last part of one block                    
   */                                                                 
  start_offset = start % IMFS_MEMFILE_BYTES_PER_BLOCK;                
  block = start / IMFS_MEMFILE_BYTES_PER_BLOCK;                       
ffc10e1c:	7c 9e 23 78 	mr      r30,r4                                 
    status = IMFS_memfile_extend( the_jnode, last_byte );             
    if ( status )                                                     
      rtems_set_errno_and_return_minus_one( ENOSPC );                 
  }                                                                   
                                                                      
  copied = 0;                                                         
ffc10e20:	3b 80 00 00 	li      r28,0                                  
  /*                                                                  
   *  Phase 1: possibly the last part of one block                    
   */                                                                 
  start_offset = start % IMFS_MEMFILE_BYTES_PER_BLOCK;                
  block = start / IMFS_MEMFILE_BYTES_PER_BLOCK;                       
  if ( start_offset )  {                                              
ffc10e24:	40 9e 00 8c 	bne-    cr7,ffc10eb0 <IMFS_memfile_write+0x128>
  /*                                                                  
   *  Phase 2: all of zero of more blocks                             
   */                                                                 
                                                                      
  to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK;                             
  while ( my_length >= IMFS_MEMFILE_BYTES_PER_BLOCK ) {               
ffc10e28:	7f 9d d8 40 	cmplw   cr7,r29,r27                            
ffc10e2c:	40 bc 00 20 	bge+    cr7,ffc10e4c <IMFS_memfile_write+0xc4> 
ffc10e30:	48 00 00 cc 	b       ffc10efc <IMFS_memfile_write+0x174>    
    if ( !block_ptr )                                                 
      return copied;                                                  
    #if 0                                                             
      fprintf(stdout, "write %d in %d: %*s\n", to_copy, block, to_copy, src );
    #endif                                                            
    memcpy( &(*block_ptr)[ 0 ], src, to_copy );                       
ffc10e34:	80 63 00 00 	lwz     r3,0(r3)                               
 *  IMFS_memfile_write                                                
 *                                                                    
 *  This routine writes the specified data buffer into the in memory  
 *  file pointed to by the_jnode.  The file is extended as needed.    
 */                                                                   
MEMFILE_STATIC ssize_t IMFS_memfile_write(                            
ffc10e38:	7f 9c da 14 	add     r28,r28,r27                            
    if ( !block_ptr )                                                 
      return copied;                                                  
    #if 0                                                             
      fprintf(stdout, "write %d in %d: %*s\n", to_copy, block, to_copy, src );
    #endif                                                            
    memcpy( &(*block_ptr)[ 0 ], src, to_copy );                       
ffc10e3c:	48 00 1f 6d 	bl      ffc12da8 <memcpy>                      
  /*                                                                  
   *  Phase 2: all of zero of more blocks                             
   */                                                                 
                                                                      
  to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK;                             
  while ( my_length >= IMFS_MEMFILE_BYTES_PER_BLOCK ) {               
ffc10e40:	80 1a 27 08 	lwz     r0,9992(r26)                           
ffc10e44:	7f 80 e8 40 	cmplw   cr7,r0,r29                             
ffc10e48:	41 9d 00 b4 	bgt-    cr7,ffc10efc <IMFS_memfile_write+0x174>
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
ffc10e4c:	7f c4 f3 78 	mr      r4,r30                                 
ffc10e50:	38 a0 00 00 	li      r5,0                                   
ffc10e54:	7f e3 fb 78 	mr      r3,r31                                 
ffc10e58:	4b ff f5 15 	bl      ffc1036c <IMFS_memfile_get_block_pointer>
      fprintf(stdout, "write %d in %d: %*s\n", to_copy, block, to_copy, src );
    #endif                                                            
    memcpy( &(*block_ptr)[ 0 ], src, to_copy );                       
    src += to_copy;                                                   
    block++;                                                          
    my_length -= to_copy;                                             
ffc10e5c:	7f bb e8 50 	subf    r29,r27,r29                            
   */                                                                 
                                                                      
  to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK;                             
  while ( my_length >= IMFS_MEMFILE_BYTES_PER_BLOCK ) {               
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
    if ( !block_ptr )                                                 
ffc10e60:	2c 03 00 00 	cmpwi   r3,0                                   
      return copied;                                                  
    #if 0                                                             
      fprintf(stdout, "write %d in %d: %*s\n", to_copy, block, to_copy, src );
    #endif                                                            
    memcpy( &(*block_ptr)[ 0 ], src, to_copy );                       
ffc10e64:	7e e4 bb 78 	mr      r4,r23                                 
ffc10e68:	7f 65 db 78 	mr      r5,r27                                 
    src += to_copy;                                                   
ffc10e6c:	7e f7 da 14 	add     r23,r23,r27                            
    block++;                                                          
ffc10e70:	3b de 00 01 	addi    r30,r30,1                              
   */                                                                 
                                                                      
  to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK;                             
  while ( my_length >= IMFS_MEMFILE_BYTES_PER_BLOCK ) {               
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
    if ( !block_ptr )                                                 
ffc10e74:	40 82 ff c0 	bne+    ffc10e34 <IMFS_memfile_write+0xac>     <== ALWAYS TAKEN
  }                                                                   
                                                                      
  IMFS_mtime_ctime_update( the_jnode );                               
                                                                      
  return copied;                                                      
}                                                                     
ffc10e78:	80 01 00 44 	lwz     r0,68(r1)                              
ffc10e7c:	7f 83 e3 78 	mr      r3,r28                                 
ffc10e80:	82 e1 00 1c 	lwz     r23,28(r1)                             
ffc10e84:	7c 08 03 a6 	mtlr    r0                                     
ffc10e88:	83 01 00 20 	lwz     r24,32(r1)                             
ffc10e8c:	83 21 00 24 	lwz     r25,36(r1)                             
ffc10e90:	83 41 00 28 	lwz     r26,40(r1)                             
ffc10e94:	83 61 00 2c 	lwz     r27,44(r1)                             
ffc10e98:	83 81 00 30 	lwz     r28,48(r1)                             
ffc10e9c:	83 a1 00 34 	lwz     r29,52(r1)                             
ffc10ea0:	83 c1 00 38 	lwz     r30,56(r1)                             
ffc10ea4:	83 e1 00 3c 	lwz     r31,60(r1)                             
ffc10ea8:	38 21 00 40 	addi    r1,r1,64                               
ffc10eac:	4e 80 00 20 	blr                                            
  block = start / IMFS_MEMFILE_BYTES_PER_BLOCK;                       
  if ( start_offset )  {                                              
    to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK - start_offset;            
    if ( to_copy > my_length )                                        
      to_copy = my_length;                                            
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
ffc10eb0:	7f e3 fb 78 	mr      r3,r31                                 
ffc10eb4:	38 a0 00 00 	li      r5,0                                   
ffc10eb8:	4b ff f4 b5 	bl      ffc1036c <IMFS_memfile_get_block_pointer>
    if ( !block_ptr )                                                 
      return copied;                                                  
ffc10ebc:	3b 80 00 00 	li      r28,0                                  
  if ( start_offset )  {                                              
    to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK - start_offset;            
    if ( to_copy > my_length )                                        
      to_copy = my_length;                                            
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
    if ( !block_ptr )                                                 
ffc10ec0:	2c 03 00 00 	cmpwi   r3,0                                   
ffc10ec4:	41 a2 ff b4 	beq-    ffc10e78 <IMFS_memfile_write+0xf0>     <== NEVER TAKEN
   *  Phase 1: possibly the last part of one block                    
   */                                                                 
  start_offset = start % IMFS_MEMFILE_BYTES_PER_BLOCK;                
  block = start / IMFS_MEMFILE_BYTES_PER_BLOCK;                       
  if ( start_offset )  {                                              
    to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK - start_offset;            
ffc10ec8:	7f 98 d8 50 	subf    r28,r24,r27                            
ffc10ecc:	7f 9c e8 40 	cmplw   cr7,r28,r29                            
ffc10ed0:	41 9d 00 e4 	bgt-    cr7,ffc10fb4 <IMFS_memfile_write+0x22c>
        block,                                                        
        to_copy,                                                      
        src                                                           
      );                                                              
    #endif                                                            
    memcpy( &(*block_ptr)[ start_offset ], src, to_copy );            
ffc10ed4:	80 63 00 00 	lwz     r3,0(r3)                               
ffc10ed8:	7e e4 bb 78 	mr      r4,r23                                 
ffc10edc:	7f 85 e3 78 	mr      r5,r28                                 
ffc10ee0:	7c 63 c2 14 	add     r3,r3,r24                              
ffc10ee4:	48 00 1e c5 	bl      ffc12da8 <memcpy>                      
    src += to_copy;                                                   
ffc10ee8:	7e f7 e2 14 	add     r23,r23,r28                            
    block++;                                                          
ffc10eec:	3b de 00 01 	addi    r30,r30,1                              
    my_length -= to_copy;                                             
    copied += to_copy;                                                
ffc10ef0:	83 7a 27 08 	lwz     r27,9992(r26)                          
      );                                                              
    #endif                                                            
    memcpy( &(*block_ptr)[ start_offset ], src, to_copy );            
    src += to_copy;                                                   
    block++;                                                          
    my_length -= to_copy;                                             
ffc10ef4:	7f bc e8 50 	subf    r29,r28,r29                            
ffc10ef8:	4b ff ff 30 	b       ffc10e28 <IMFS_memfile_write+0xa0>     
   *  Phase 3: possibly the first part of one block                   
   */                                                                 
  IMFS_assert( my_length < IMFS_MEMFILE_BYTES_PER_BLOCK );            
                                                                      
  to_copy = my_length;                                                
  if ( my_length ) {                                                  
ffc10efc:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
ffc10f00:	41 9e 00 30 	beq-    cr7,ffc10f30 <IMFS_memfile_write+0x1a8>
    block_ptr = IMFS_memfile_get_block_pointer( the_jnode, block, 0 );
ffc10f04:	7f e3 fb 78 	mr      r3,r31                                 
ffc10f08:	7f c4 f3 78 	mr      r4,r30                                 
ffc10f0c:	38 a0 00 00 	li      r5,0                                   
ffc10f10:	4b ff f4 5d 	bl      ffc1036c <IMFS_memfile_get_block_pointer>
    if ( !block_ptr )                                                 
ffc10f14:	2c 03 00 00 	cmpwi   r3,0                                   
ffc10f18:	41 a2 ff 60 	beq-    ffc10e78 <IMFS_memfile_write+0xf0>     <== NEVER TAKEN
      return copied;                                                  
    #if 0                                                             
    fprintf(stdout, "write %d in %d: %*s\n", to_copy, block, to_copy, src );
    #endif                                                            
    memcpy( &(*block_ptr)[ 0 ], src, my_length );                     
ffc10f1c:	80 63 00 00 	lwz     r3,0(r3)                               
ffc10f20:	7e e4 bb 78 	mr      r4,r23                                 
ffc10f24:	7f a5 eb 78 	mr      r5,r29                                 
ffc10f28:	48 00 1e 81 	bl      ffc12da8 <memcpy>                      
    my_length = 0;                                                    
    copied += to_copy;                                                
ffc10f2c:	7f 9c ea 14 	add     r28,r28,r29                            
  }                                                                   
                                                                      
  IMFS_mtime_ctime_update( the_jnode );                               
ffc10f30:	38 61 00 08 	addi    r3,r1,8                                
ffc10f34:	38 80 00 00 	li      r4,0                                   
ffc10f38:	4b ff 3e 0d 	bl      ffc04d44 <gettimeofday>                
ffc10f3c:	80 01 00 08 	lwz     r0,8(r1)                               
                                                                      
  return copied;                                                      
}                                                                     
ffc10f40:	7f 83 e3 78 	mr      r3,r28                                 
ffc10f44:	82 e1 00 1c 	lwz     r23,28(r1)                             
    memcpy( &(*block_ptr)[ 0 ], src, my_length );                     
    my_length = 0;                                                    
    copied += to_copy;                                                
  }                                                                   
                                                                      
  IMFS_mtime_ctime_update( the_jnode );                               
ffc10f48:	90 1f 00 44 	stw     r0,68(r31)                             
ffc10f4c:	90 1f 00 48 	stw     r0,72(r31)                             
                                                                      
  return copied;                                                      
}                                                                     
ffc10f50:	80 01 00 44 	lwz     r0,68(r1)                              
ffc10f54:	83 01 00 20 	lwz     r24,32(r1)                             
ffc10f58:	7c 08 03 a6 	mtlr    r0                                     
ffc10f5c:	83 21 00 24 	lwz     r25,36(r1)                             
ffc10f60:	83 41 00 28 	lwz     r26,40(r1)                             
ffc10f64:	83 61 00 2c 	lwz     r27,44(r1)                             
ffc10f68:	83 81 00 30 	lwz     r28,48(r1)                             
ffc10f6c:	83 a1 00 34 	lwz     r29,52(r1)                             
ffc10f70:	83 c1 00 38 	lwz     r30,56(r1)                             
ffc10f74:	83 e1 00 3c 	lwz     r31,60(r1)                             
ffc10f78:	38 21 00 40 	addi    r1,r1,64                               
ffc10f7c:	4e 80 00 20 	blr                                            
   *  If the last byte we are supposed to write is past the end of this
   *  in memory file, then extend the length.                         
   */                                                                 
                                                                      
  last_byte = start + my_length;                                      
  if ( last_byte > the_jnode->info.file.size ) {                      
ffc10f80:	80 03 00 54 	lwz     r0,84(r3)                              
ffc10f84:	7f 80 30 40 	cmplw   cr7,r0,r6                              
ffc10f88:	40 9c fe 58 	bge+    cr7,ffc10de0 <IMFS_memfile_write+0x58> <== NEVER TAKEN
    status = IMFS_memfile_extend( the_jnode, last_byte );             
ffc10f8c:	7f e3 fb 78 	mr      r3,r31                                 
ffc10f90:	38 a0 00 00 	li      r5,0                                   
ffc10f94:	4b ff fc 21 	bl      ffc10bb4 <IMFS_memfile_extend>         
    if ( status )                                                     
ffc10f98:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc10f9c:	41 9e fe 44 	beq+    cr7,ffc10de0 <IMFS_memfile_write+0x58> 
      rtems_set_errno_and_return_minus_one( ENOSPC );                 
ffc10fa0:	48 00 11 a9 	bl      ffc12148 <__errno>                     
ffc10fa4:	38 00 00 1c 	li      r0,28                                  
ffc10fa8:	90 03 00 00 	stw     r0,0(r3)                               
ffc10fac:	3b 80 ff ff 	li      r28,-1                                 
ffc10fb0:	4b ff fe c8 	b       ffc10e78 <IMFS_memfile_write+0xf0>     
        block,                                                        
        to_copy,                                                      
        src                                                           
      );                                                              
    #endif                                                            
    memcpy( &(*block_ptr)[ start_offset ], src, to_copy );            
ffc10fb4:	80 63 00 00 	lwz     r3,0(r3)                               
   *  Phase 1: possibly the last part of one block                    
   */                                                                 
  start_offset = start % IMFS_MEMFILE_BYTES_PER_BLOCK;                
  block = start / IMFS_MEMFILE_BYTES_PER_BLOCK;                       
  if ( start_offset )  {                                              
    to_copy = IMFS_MEMFILE_BYTES_PER_BLOCK - start_offset;            
ffc10fb8:	7f bc eb 78 	mr      r28,r29                                
        block,                                                        
        to_copy,                                                      
        src                                                           
      );                                                              
    #endif                                                            
    memcpy( &(*block_ptr)[ start_offset ], src, to_copy );            
ffc10fbc:	7e e4 bb 78 	mr      r4,r23                                 
ffc10fc0:	7c 63 c2 14 	add     r3,r3,r24                              
ffc10fc4:	7f 85 e3 78 	mr      r5,r28                                 
ffc10fc8:	48 00 1d e1 	bl      ffc12da8 <memcpy>                      
    src += to_copy;                                                   
ffc10fcc:	7e f7 e2 14 	add     r23,r23,r28                            
    block++;                                                          
ffc10fd0:	3b de 00 01 	addi    r30,r30,1                              
    my_length -= to_copy;                                             
    copied += to_copy;                                                
ffc10fd4:	83 7a 27 08 	lwz     r27,9992(r26)                          
      );                                                              
    #endif                                                            
    memcpy( &(*block_ptr)[ start_offset ], src, to_copy );            
    src += to_copy;                                                   
    block++;                                                          
    my_length -= to_copy;                                             
ffc10fd8:	7f bc e8 50 	subf    r29,r28,r29                            
ffc10fdc:	4b ff fe 4c 	b       ffc10e28 <IMFS_memfile_write+0xa0>     
                                                                      

ffc04364 <IMFS_mount>: #include <rtems/seterr.h> int IMFS_mount( rtems_filesystem_mount_table_entry_t *mt_entry ) {
ffc04364:	7c 08 02 a6 	mflr    r0                                     
ffc04368:	94 21 ff f8 	stwu    r1,-8(r1)                              
ffc0436c:	90 01 00 0c 	stw     r0,12(r1)                              
  IMFS_jnode_t  *node;                                                
                                                                      
  node = mt_entry->mt_point_node.node_access;                         
ffc04370:	81 23 00 08 	lwz     r9,8(r3)                               
                                                                      
  /*                                                                  
   *  Is the node that we are mounting onto a directory node ?        
   */                                                                 
                                                                      
  if ( node->type != IMFS_DIRECTORY )                                 
ffc04374:	80 09 00 4c 	lwz     r0,76(r9)                              
ffc04378:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0437c:	40 9e 00 1c 	bne-    cr7,ffc04398 <IMFS_mount+0x34>         <== NEVER TAKEN
  /*                                                                  
   *  Set mt_fs pointer to point to the mount table entry for         
   *  the mounted file system.                                        
   */                                                                 
                                                                      
  node->info.directory.mt_fs = mt_entry;                              
ffc04380:	90 69 00 5c 	stw     r3,92(r9)                              
  return 0;                                                           
ffc04384:	38 60 00 00 	li      r3,0                                   
}                                                                     
ffc04388:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc0438c:	38 21 00 08 	addi    r1,r1,8                                
ffc04390:	7c 08 03 a6 	mtlr    r0                                     
ffc04394:	4e 80 00 20 	blr                                            
  /*                                                                  
   *  Is the node that we are mounting onto a directory node ?        
   */                                                                 
                                                                      
  if ( node->type != IMFS_DIRECTORY )                                 
    rtems_set_errno_and_return_minus_one( ENOTDIR );                  
ffc04398:	48 00 dd b1 	bl      ffc12148 <__errno>                     <== NOT EXECUTED
ffc0439c:	38 00 00 14 	li      r0,20                                  <== NOT EXECUTED
ffc043a0:	90 03 00 00 	stw     r0,0(r3)                               <== NOT EXECUTED
ffc043a4:	38 60 ff ff 	li      r3,-1                                  <== NOT EXECUTED
ffc043a8:	4b ff ff e0 	b       ffc04388 <IMFS_mount+0x24>             <== NOT EXECUTED
                                                                      

ffc073e8 <IMFS_print_jnode>: * This routine prints the contents of the specified jnode. */ void IMFS_print_jnode( IMFS_jnode_t *the_jnode ) {
ffc073e8:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc073ec:	7c 08 02 a6 	mflr    r0                                     
ffc073f0:	93 c1 00 08 	stw     r30,8(r1)                              
  IMFS_assert( the_jnode );                                           
                                                                      
  fprintf(stdout, "%s", the_jnode->name );                            
ffc073f4:	3f c0 00 00 	lis     r30,0                                  
 *  This routine prints the contents of the specified jnode.          
 */                                                                   
void IMFS_print_jnode(                                                
  IMFS_jnode_t *the_jnode                                             
)                                                                     
{                                                                     
ffc073f8:	90 01 00 14 	stw     r0,20(r1)                              
  IMFS_assert( the_jnode );                                           
                                                                      
  fprintf(stdout, "%s", the_jnode->name );                            
ffc073fc:	81 3e 26 ec 	lwz     r9,9964(r30)                           
 *  This routine prints the contents of the specified jnode.          
 */                                                                   
void IMFS_print_jnode(                                                
  IMFS_jnode_t *the_jnode                                             
)                                                                     
{                                                                     
ffc07400:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc07404:	7c 7f 1b 78 	mr      r31,r3                                 
  IMFS_assert( the_jnode );                                           
                                                                      
  fprintf(stdout, "%s", the_jnode->name );                            
ffc07408:	38 63 00 0c 	addi    r3,r3,12                               
ffc0740c:	80 89 00 08 	lwz     r4,8(r9)                               
ffc07410:	48 01 08 c9 	bl      ffc17cd8 <fputs>                       
  switch( the_jnode->type ) {                                         
ffc07414:	80 bf 00 4c 	lwz     r5,76(r31)                             
ffc07418:	2b 85 00 07 	cmplwi  cr7,r5,7                               
ffc0741c:	40 9d 00 34 	ble-    cr7,ffc07450 <IMFS_print_jnode+0x68>   <== ALWAYS TAKEN
    case IMFS_FIFO:                                                   
      fprintf(stdout, " FIFO not printed\n" );                        
      return;                                                         
                                                                      
    default:                                                          
      fprintf(stdout, " bad type %d\n", the_jnode->type );            
ffc07420:	81 3e 26 ec 	lwz     r9,9964(r30)                           <== NOT EXECUTED
ffc07424:	3c 80 ff c3 	lis     r4,-61                                 <== NOT EXECUTED
ffc07428:	38 84 90 b0 	addi    r4,r4,-28496                           <== NOT EXECUTED
ffc0742c:	80 69 00 08 	lwz     r3,8(r9)                               <== NOT EXECUTED
ffc07430:	4c c6 31 82 	crclr   4*cr1+eq                               <== NOT EXECUTED
ffc07434:	48 01 06 a1 	bl      ffc17ad4 <fprintf>                     <== NOT EXECUTED
      return;                                                         
  }                                                                   
  puts("");                                                           
}                                                                     
ffc07438:	80 01 00 14 	lwz     r0,20(r1)                              <== NOT EXECUTED
ffc0743c:	83 c1 00 08 	lwz     r30,8(r1)                              <== NOT EXECUTED
ffc07440:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc07444:	83 e1 00 0c 	lwz     r31,12(r1)                             <== NOT EXECUTED
ffc07448:	38 21 00 10 	addi    r1,r1,16                               <== NOT EXECUTED
ffc0744c:	4e 80 00 20 	blr                                            <== NOT EXECUTED
)                                                                     
{                                                                     
  IMFS_assert( the_jnode );                                           
                                                                      
  fprintf(stdout, "%s", the_jnode->name );                            
  switch( the_jnode->type ) {                                         
ffc07450:	3d 20 ff c3 	lis     r9,-61                                 
ffc07454:	39 29 90 38 	addi    r9,r9,-28616                           
ffc07458:	54 a0 10 3a 	rlwinm  r0,r5,2,0,29                           
ffc0745c:	7c 09 00 2e 	lwzx    r0,r9,r0                               
ffc07460:	7d 20 4a 14 	add     r9,r0,r9                               
ffc07464:	7d 29 03 a6 	mtctr   r9                                     
ffc07468:	4e 80 04 20 	bctr                                           
    case IMFS_HARD_LINK:                                              
      fprintf(stdout, " links not printed\n" );                       
      return;                                                         
                                                                      
    case IMFS_SYM_LINK:                                               
      fprintf(stdout, " links not printed\n" );                       
ffc0746c:	81 3e 26 ec 	lwz     r9,9964(r30)                           <== NOT EXECUTED
ffc07470:	3c 60 ff c3 	lis     r3,-61                                 <== NOT EXECUTED
ffc07474:	38 63 90 88 	addi    r3,r3,-28536                           <== NOT EXECUTED
ffc07478:	80 c9 00 08 	lwz     r6,8(r9)                               <== NOT EXECUTED
ffc0747c:	38 80 00 01 	li      r4,1                                   <== NOT EXECUTED
ffc07480:	38 a0 00 13 	li      r5,19                                  <== NOT EXECUTED
ffc07484:	48 01 16 a5 	bl      ffc18b28 <fwrite>                      <== NOT EXECUTED
    default:                                                          
      fprintf(stdout, " bad type %d\n", the_jnode->type );            
      return;                                                         
  }                                                                   
  puts("");                                                           
}                                                                     
ffc07488:	80 01 00 14 	lwz     r0,20(r1)                              <== NOT EXECUTED
ffc0748c:	83 c1 00 08 	lwz     r30,8(r1)                              <== NOT EXECUTED
ffc07490:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc07494:	83 e1 00 0c 	lwz     r31,12(r1)                             <== NOT EXECUTED
ffc07498:	38 21 00 10 	addi    r1,r1,16                               <== NOT EXECUTED
ffc0749c:	4e 80 00 20 	blr                                            <== NOT EXECUTED
    case IMFS_SYM_LINK:                                               
      fprintf(stdout, " links not printed\n" );                       
      return;                                                         
                                                                      
    case IMFS_FIFO:                                                   
      fprintf(stdout, " FIFO not printed\n" );                        
ffc074a0:	81 3e 26 ec 	lwz     r9,9964(r30)                           <== NOT EXECUTED
ffc074a4:	3c 60 ff c3 	lis     r3,-61                                 <== NOT EXECUTED
ffc074a8:	38 63 90 9c 	addi    r3,r3,-28516                           <== NOT EXECUTED
ffc074ac:	80 c9 00 08 	lwz     r6,8(r9)                               <== NOT EXECUTED
ffc074b0:	38 80 00 01 	li      r4,1                                   <== NOT EXECUTED
ffc074b4:	38 a0 00 12 	li      r5,18                                  <== NOT EXECUTED
ffc074b8:	48 01 16 71 	bl      ffc18b28 <fwrite>                      <== NOT EXECUTED
    default:                                                          
      fprintf(stdout, " bad type %d\n", the_jnode->type );            
      return;                                                         
  }                                                                   
  puts("");                                                           
}                                                                     
ffc074bc:	80 01 00 14 	lwz     r0,20(r1)                              <== NOT EXECUTED
ffc074c0:	83 c1 00 08 	lwz     r30,8(r1)                              <== NOT EXECUTED
ffc074c4:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc074c8:	83 e1 00 0c 	lwz     r31,12(r1)                             <== NOT EXECUTED
ffc074cc:	38 21 00 10 	addi    r1,r1,16                               <== NOT EXECUTED
ffc074d0:	4e 80 00 20 	blr                                            <== NOT EXECUTED
        the_jnode->info.file.indirect,                                
        the_jnode->info.file.doubly_indirect,                         
        the_jnode->info.file.triply_indirect                          
      );                                                              
#else                                                                 
      fprintf(stdout, " (file %" PRId32 ")",                          
ffc074d4:	81 3e 26 ec 	lwz     r9,9964(r30)                           
ffc074d8:	3c 80 ff c3 	lis     r4,-61                                 
ffc074dc:	80 bf 00 54 	lwz     r5,84(r31)                             
ffc074e0:	38 84 90 7c 	addi    r4,r4,-28548                           
ffc074e4:	80 69 00 08 	lwz     r3,8(r9)                               
ffc074e8:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc074ec:	48 01 05 e9 	bl      ffc17ad4 <fprintf>                     
                                                                      
    default:                                                          
      fprintf(stdout, " bad type %d\n", the_jnode->type );            
      return;                                                         
  }                                                                   
  puts("");                                                           
ffc074f0:	3c 60 ff c3 	lis     r3,-61                                 
ffc074f4:	38 63 82 c4 	addi    r3,r3,-32060                           
ffc074f8:	48 01 28 a9 	bl      ffc19da0 <puts>                        
}                                                                     
ffc074fc:	80 01 00 14 	lwz     r0,20(r1)                              
ffc07500:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc07504:	7c 08 03 a6 	mtlr    r0                                     
ffc07508:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0750c:	38 21 00 10 	addi    r1,r1,16                               
ffc07510:	4e 80 00 20 	blr                                            
      fprintf(stdout, " (device %" PRId32 ", %" PRId32 ")",           
        the_jnode->info.device.major, the_jnode->info.device.minor ); 
      break;                                                          
                                                                      
    case IMFS_LINEAR_FILE:                                            
      fprintf(stdout, " (file %" PRId32 " %p)",                       
ffc07514:	81 3e 26 ec 	lwz     r9,9964(r30)                           
ffc07518:	3c 80 ff c3 	lis     r4,-61                                 
ffc0751c:	80 bf 00 54 	lwz     r5,84(r31)                             
ffc07520:	38 84 90 6c 	addi    r4,r4,-28564                           
ffc07524:	80 69 00 08 	lwz     r3,8(r9)                               
ffc07528:	80 df 00 58 	lwz     r6,88(r31)                             
ffc0752c:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc07530:	48 01 05 a5 	bl      ffc17ad4 <fprintf>                     
        (uint32_t)the_jnode->info.linearfile.size,                    
        the_jnode->info.linearfile.direct                             
      );                                                              
      break;                                                          
ffc07534:	4b ff ff bc 	b       ffc074f0 <IMFS_print_jnode+0x108>      
  IMFS_assert( the_jnode );                                           
                                                                      
  fprintf(stdout, "%s", the_jnode->name );                            
  switch( the_jnode->type ) {                                         
    case IMFS_DIRECTORY:                                              
      fprintf(stdout, "/" );                                          
ffc07538:	81 3e 26 ec 	lwz     r9,9964(r30)                           
ffc0753c:	38 60 00 2f 	li      r3,47                                  
ffc07540:	80 89 00 08 	lwz     r4,8(r9)                               
ffc07544:	48 01 06 79 	bl      ffc17bbc <fputc>                       
      break;                                                          
ffc07548:	4b ff ff a8 	b       ffc074f0 <IMFS_print_jnode+0x108>      
                                                                      
    case IMFS_DEVICE:                                                 
      fprintf(stdout, " (device %" PRId32 ", %" PRId32 ")",           
ffc0754c:	81 3e 26 ec 	lwz     r9,9964(r30)                           
ffc07550:	3c 80 ff c3 	lis     r4,-61                                 
ffc07554:	80 bf 00 50 	lwz     r5,80(r31)                             
ffc07558:	38 84 90 58 	addi    r4,r4,-28584                           
ffc0755c:	80 69 00 08 	lwz     r3,8(r9)                               
ffc07560:	80 df 00 54 	lwz     r6,84(r31)                             
ffc07564:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc07568:	48 01 05 6d 	bl      ffc17ad4 <fprintf>                     
        the_jnode->info.device.major, the_jnode->info.device.minor ); 
      break;                                                          
ffc0756c:	4b ff ff 84 	b       ffc074f0 <IMFS_print_jnode+0x108>      
                                                                      

ffc04408 <IMFS_rename>: rtems_filesystem_location_info_t *old_parent_loc, /* IN */ rtems_filesystem_location_info_t *old_loc, /* IN */ rtems_filesystem_location_info_t *new_parent_loc, /* IN */ const char *new_name /* IN */ ) {
ffc04408:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc0440c:	7c 08 02 a6 	mflr    r0                                     
ffc04410:	90 01 00 24 	stw     r0,36(r1)                              
ffc04414:	93 e1 00 1c 	stw     r31,28(r1)                             
  IMFS_jnode_t *the_jnode;                                            
  IMFS_jnode_t *new_parent;                                           
                                                                      
  the_jnode = old_loc->node_access;                                   
ffc04418:	83 e4 00 00 	lwz     r31,0(r4)                              
                                                                      
  strncpy( the_jnode->name, new_name, IMFS_NAME_MAX );                
ffc0441c:	7c c4 33 78 	mr      r4,r6                                  
  rtems_filesystem_location_info_t  *old_parent_loc,  /* IN */        
  rtems_filesystem_location_info_t  *old_loc,         /* IN */        
  rtems_filesystem_location_info_t  *new_parent_loc,  /* IN */        
  const char                        *new_name         /* IN */        
)                                                                     
{                                                                     
ffc04420:	93 c1 00 18 	stw     r30,24(r1)                             
ffc04424:	7c be 2b 78 	mr      r30,r5                                 
  IMFS_jnode_t *the_jnode;                                            
  IMFS_jnode_t *new_parent;                                           
                                                                      
  the_jnode = old_loc->node_access;                                   
                                                                      
  strncpy( the_jnode->name, new_name, IMFS_NAME_MAX );                
ffc04428:	38 7f 00 0c 	addi    r3,r31,12                              
ffc0442c:	38 a0 00 20 	li      r5,32                                  
ffc04430:	48 00 f0 45 	bl      ffc13474 <strncpy>                     
                                                                      
  if ( the_jnode->Parent != NULL )                                    
ffc04434:	80 1f 00 08 	lwz     r0,8(r31)                              
ffc04438:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0443c:	41 9e 00 0c 	beq-    cr7,ffc04448 <IMFS_rename+0x40>        <== NEVER TAKEN
 */                                                                   
RTEMS_INLINE_ROUTINE void rtems_chain_extract(                        
  rtems_chain_node *the_node                                          
)                                                                     
{                                                                     
  _Chain_Extract( the_node );                                         
ffc04440:	7f e3 fb 78 	mr      r3,r31                                 
ffc04444:	48 00 58 41 	bl      ffc09c84 <_Chain_Extract>              
    rtems_chain_extract( (rtems_chain_node *) the_jnode );            
                                                                      
  new_parent = new_parent_loc->node_access;                           
ffc04448:	80 7e 00 00 	lwz     r3,0(r30)                              
RTEMS_INLINE_ROUTINE void rtems_chain_append(                         
  rtems_chain_control *the_chain,                                     
  rtems_chain_node    *the_node                                       
)                                                                     
{                                                                     
  _Chain_Append( the_chain, the_node );                               
ffc0444c:	7f e4 fb 78 	mr      r4,r31                                 
  the_jnode->Parent = new_parent;                                     
ffc04450:	90 7f 00 08 	stw     r3,8(r31)                              
ffc04454:	38 63 00 50 	addi    r3,r3,80                               
ffc04458:	48 00 57 fd 	bl      ffc09c54 <_Chain_Append>               
  rtems_chain_append( &new_parent->info.directory.Entries, &the_jnode->Node );
                                                                      
  /*                                                                  
   * Update the time.                                                 
   */                                                                 
  IMFS_update_ctime( the_jnode );                                     
ffc0445c:	38 61 00 08 	addi    r3,r1,8                                
ffc04460:	38 80 00 00 	li      r4,0                                   
ffc04464:	48 00 08 e1 	bl      ffc04d44 <gettimeofday>                
ffc04468:	80 01 00 08 	lwz     r0,8(r1)                               
                                                                      
  return 0;                                                           
}                                                                     
ffc0446c:	38 60 00 00 	li      r3,0                                   
ffc04470:	83 c1 00 18 	lwz     r30,24(r1)                             
  rtems_chain_append( &new_parent->info.directory.Entries, &the_jnode->Node );
                                                                      
  /*                                                                  
   * Update the time.                                                 
   */                                                                 
  IMFS_update_ctime( the_jnode );                                     
ffc04474:	90 1f 00 48 	stw     r0,72(r31)                             
                                                                      
  return 0;                                                           
}                                                                     
ffc04478:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0447c:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc04480:	38 21 00 20 	addi    r1,r1,32                               
ffc04484:	7c 08 03 a6 	mtlr    r0                                     
ffc04488:	4e 80 00 20 	blr                                            
                                                                      

ffc0e730 <IMFS_stat>: int IMFS_stat( rtems_filesystem_location_info_t *loc, struct stat *buf ) {
ffc0e730:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc0e734:	7c 08 02 a6 	mflr    r0                                     
ffc0e738:	90 01 00 14 	stw     r0,20(r1)                              
  IMFS_fs_info_t *fs_info;                                            
  IMFS_jnode_t   *the_jnode;                                          
  IMFS_device_t  *io;                                                 
                                                                      
  the_jnode = loc->node_access;                                       
ffc0e73c:	81 23 00 00 	lwz     r9,0(r3)                               
                                                                      
int IMFS_stat(                                                        
  rtems_filesystem_location_info_t *loc,                              
  struct stat                      *buf                               
)                                                                     
{                                                                     
ffc0e740:	93 e1 00 0c 	stw     r31,12(r1)                             
  IMFS_device_t  *io;                                                 
                                                                      
  the_jnode = loc->node_access;                                       
                                                                      
                                                                      
  switch ( the_jnode->type ) {                                        
ffc0e744:	80 09 00 4c 	lwz     r0,76(r9)                              
ffc0e748:	2b 80 00 07 	cmplwi  cr7,r0,7                               
ffc0e74c:	40 9d 00 28 	ble-    cr7,ffc0e774 <IMFS_stat+0x44>          <== ALWAYS TAKEN
    case IMFS_FIFO:                                                   
      buf->st_size = 0;                                               
      break;                                                          
                                                                      
    default:                                                          
      rtems_set_errno_and_return_minus_one( ENOTSUP );                
ffc0e750:	48 00 39 f9 	bl      ffc12148 <__errno>                     
ffc0e754:	38 00 00 86 	li      r0,134                                 
ffc0e758:	90 03 00 00 	stw     r0,0(r3)                               
ffc0e75c:	38 60 ff ff 	li      r3,-1                                  
  buf->st_atime = the_jnode->stat_atime;                              
  buf->st_mtime = the_jnode->stat_mtime;                              
  buf->st_ctime = the_jnode->stat_ctime;                              
                                                                      
  return 0;                                                           
}                                                                     
ffc0e760:	80 01 00 14 	lwz     r0,20(r1)                              
ffc0e764:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0e768:	38 21 00 10 	addi    r1,r1,16                               
ffc0e76c:	7c 08 03 a6 	mtlr    r0                                     
ffc0e770:	4e 80 00 20 	blr                                            
  IMFS_device_t  *io;                                                 
                                                                      
  the_jnode = loc->node_access;                                       
                                                                      
                                                                      
  switch ( the_jnode->type ) {                                        
ffc0e774:	3d 60 ff c2 	lis     r11,-62                                
ffc0e778:	39 6b 8f 64 	addi    r11,r11,-28828                         
ffc0e77c:	54 00 10 3a 	rlwinm  r0,r0,2,0,29                           
ffc0e780:	7c 0b 00 2e 	lwzx    r0,r11,r0                              
ffc0e784:	7d 60 5a 14 	add     r11,r0,r11                             
ffc0e788:	7d 69 03 a6 	mtctr   r11                                    
ffc0e78c:	4e 80 04 20 	bctr                                           
    case IMFS_SYM_LINK:                                               
      buf->st_size = 0;                                               
      break;                                                          
                                                                      
    case IMFS_FIFO:                                                   
      buf->st_size = 0;                                               
ffc0e790:	39 60 00 00 	li      r11,0                                  
ffc0e794:	39 80 00 00 	li      r12,0                                  
ffc0e798:	91 64 00 20 	stw     r11,32(r4)                             
ffc0e79c:	91 84 00 24 	stw     r12,36(r4)                             
                                                                      
  /*                                                                  
   * The device number of the IMFS is the major number and the minor is the
   * instance.                                                        
   */                                                                 
  fs_info = loc->mt_entry->fs_info;                                   
ffc0e7a0:	81 63 00 10 	lwz     r11,16(r3)                             
                                                                      
  buf->st_atime = the_jnode->stat_atime;                              
  buf->st_mtime = the_jnode->stat_mtime;                              
  buf->st_ctime = the_jnode->stat_ctime;                              
                                                                      
  return 0;                                                           
ffc0e7a4:	38 60 00 00 	li      r3,0                                   
  buf->st_uid   = the_jnode->st_uid;                                  
  buf->st_gid   = the_jnode->st_gid;                                  
                                                                      
  buf->st_atime = the_jnode->stat_atime;                              
  buf->st_mtime = the_jnode->stat_mtime;                              
  buf->st_ctime = the_jnode->stat_ctime;                              
ffc0e7a8:	80 09 00 48 	lwz     r0,72(r9)                              
   * The device number of the IMFS is the major number and the minor is the
   * instance.                                                        
   */                                                                 
  fs_info = loc->mt_entry->fs_info;                                   
  buf->st_dev =                                                       
    rtems_filesystem_make_dev_t( IMFS_DEVICE_MAJOR_NUMBER, fs_info->instance );
ffc0e7ac:	81 6b 00 34 	lwz     r11,52(r11)                            
                                                                      
  buf->st_mode  = the_jnode->st_mode;                                 
ffc0e7b0:	81 89 00 30 	lwz     r12,48(r9)                             
   * The device number of the IMFS is the major number and the minor is the
   * instance.                                                        
   */                                                                 
  fs_info = loc->mt_entry->fs_info;                                   
  buf->st_dev =                                                       
    rtems_filesystem_make_dev_t( IMFS_DEVICE_MAJOR_NUMBER, fs_info->instance );
ffc0e7b4:	83 eb 00 00 	lwz     r31,0(r11)                             
                                                                      
  buf->st_mode  = the_jnode->st_mode;                                 
  buf->st_nlink = the_jnode->st_nlink;                                
ffc0e7b8:	a0 a9 00 34 	lhz     r5,52(r9)                              
  buf->st_ino   = the_jnode->st_ino;                                  
ffc0e7bc:	80 c9 00 38 	lwz     r6,56(r9)                              
  buf->st_uid   = the_jnode->st_uid;                                  
ffc0e7c0:	a0 e9 00 3c 	lhz     r7,60(r9)                              
  buf->st_gid   = the_jnode->st_gid;                                  
ffc0e7c4:	a1 09 00 3e 	lhz     r8,62(r9)                              
                                                                      
  buf->st_atime = the_jnode->stat_atime;                              
ffc0e7c8:	81 49 00 40 	lwz     r10,64(r9)                             
  buf->st_mtime = the_jnode->stat_mtime;                              
ffc0e7cc:	81 69 00 44 	lwz     r11,68(r9)                             
  rtems_device_minor_number _minor                                    
)                                                                     
{                                                                     
  union __rtems_dev_t temp;                                           
                                                                      
  temp.__overlay.major = _major;                                      
ffc0e7d0:	39 20 00 00 	li      r9,0                                   
  buf->st_ctime = the_jnode->stat_ctime;                              
ffc0e7d4:	90 04 00 38 	stw     r0,56(r4)                              
ffc0e7d8:	61 29 ff fe 	ori     r9,r9,65534                            
                                                                      
  return 0;                                                           
}                                                                     
ffc0e7dc:	80 01 00 14 	lwz     r0,20(r1)                              
  /*                                                                  
   * The device number of the IMFS is the major number and the minor is the
   * instance.                                                        
   */                                                                 
  fs_info = loc->mt_entry->fs_info;                                   
  buf->st_dev =                                                       
ffc0e7e0:	93 e4 00 04 	stw     r31,4(r4)                              
  buf->st_atime = the_jnode->stat_atime;                              
  buf->st_mtime = the_jnode->stat_mtime;                              
  buf->st_ctime = the_jnode->stat_ctime;                              
                                                                      
  return 0;                                                           
}                                                                     
ffc0e7e4:	7c 08 03 a6 	mtlr    r0                                     
ffc0e7e8:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0e7ec:	38 21 00 10 	addi    r1,r1,16                               
  /*                                                                  
   * The device number of the IMFS is the major number and the minor is the
   * instance.                                                        
   */                                                                 
  fs_info = loc->mt_entry->fs_info;                                   
  buf->st_dev =                                                       
ffc0e7f0:	91 24 00 00 	stw     r9,0(r4)                               
    rtems_filesystem_make_dev_t( IMFS_DEVICE_MAJOR_NUMBER, fs_info->instance );
                                                                      
  buf->st_mode  = the_jnode->st_mode;                                 
ffc0e7f4:	91 84 00 0c 	stw     r12,12(r4)                             
  buf->st_nlink = the_jnode->st_nlink;                                
ffc0e7f8:	b0 a4 00 10 	sth     r5,16(r4)                              
  buf->st_ino   = the_jnode->st_ino;                                  
ffc0e7fc:	90 c4 00 08 	stw     r6,8(r4)                               
  buf->st_uid   = the_jnode->st_uid;                                  
ffc0e800:	b0 e4 00 12 	sth     r7,18(r4)                              
  buf->st_gid   = the_jnode->st_gid;                                  
ffc0e804:	b1 04 00 14 	sth     r8,20(r4)                              
                                                                      
  buf->st_atime = the_jnode->stat_atime;                              
ffc0e808:	91 44 00 28 	stw     r10,40(r4)                             
  buf->st_mtime = the_jnode->stat_mtime;                              
ffc0e80c:	91 64 00 30 	stw     r11,48(r4)                             
  buf->st_ctime = the_jnode->stat_ctime;                              
                                                                      
  return 0;                                                           
}                                                                     
ffc0e810:	4e 80 00 20 	blr                                            
                                                                      
  switch ( the_jnode->type ) {                                        
                                                                      
    case IMFS_DEVICE:                                                 
      io           = &the_jnode->info.device;                         
      buf->st_rdev = rtems_filesystem_make_dev_t( io->major, io->minor );
ffc0e814:	81 69 00 54 	lwz     r11,84(r9)                             
ffc0e818:	80 09 00 50 	lwz     r0,80(r9)                              
ffc0e81c:	91 64 00 1c 	stw     r11,28(r4)                             
ffc0e820:	90 04 00 18 	stw     r0,24(r4)                              
      break;                                                          
ffc0e824:	4b ff ff 7c 	b       ffc0e7a0 <IMFS_stat+0x70>              
                                                                      
    case IMFS_LINEAR_FILE:                                            
    case IMFS_MEMORY_FILE:                                            
      buf->st_size = the_jnode->info.file.size;                       
ffc0e828:	81 69 00 50 	lwz     r11,80(r9)                             
ffc0e82c:	81 89 00 54 	lwz     r12,84(r9)                             
ffc0e830:	91 64 00 20 	stw     r11,32(r4)                             
ffc0e834:	91 84 00 24 	stw     r12,36(r4)                             
      break;                                                          
ffc0e838:	4b ff ff 68 	b       ffc0e7a0 <IMFS_stat+0x70>              
                                                                      

ffc0454c <IMFS_unlink>: int IMFS_unlink( rtems_filesystem_location_info_t *parentloc, /* IN */ rtems_filesystem_location_info_t *loc /* IN */ ) {
ffc0454c:	94 21 ff c8 	stwu    r1,-56(r1)                             
ffc04550:	7c 08 02 a6 	mflr    r0                                     
ffc04554:	90 01 00 3c 	stw     r0,60(r1)                              
ffc04558:	93 c1 00 30 	stw     r30,48(r1)                             
  IMFS_jnode_t                      *node;                            
  rtems_filesystem_location_info_t   the_link;                        
  int                                result = 0;                      
                                                                      
  node = loc->node_access;                                            
ffc0455c:	83 c4 00 00 	lwz     r30,0(r4)                              
                                                                      
int IMFS_unlink(                                                      
  rtems_filesystem_location_info_t  *parentloc, /* IN */              
  rtems_filesystem_location_info_t  *loc        /* IN */              
)                                                                     
{                                                                     
ffc04560:	93 a1 00 2c 	stw     r29,44(r1)                             
ffc04564:	7c 7d 1b 78 	mr      r29,r3                                 
  /*                                                                  
   * If this is the last last pointer to the node                     
   * free the node.                                                   
   */                                                                 
                                                                      
  if ( node->type == IMFS_HARD_LINK ) {                               
ffc04568:	80 1e 00 4c 	lwz     r0,76(r30)                             
                                                                      
int IMFS_unlink(                                                      
  rtems_filesystem_location_info_t  *parentloc, /* IN */              
  rtems_filesystem_location_info_t  *loc        /* IN */              
)                                                                     
{                                                                     
ffc0456c:	93 e1 00 34 	stw     r31,52(r1)                             
ffc04570:	7c 9f 23 78 	mr      r31,r4                                 
  /*                                                                  
   * If this is the last last pointer to the node                     
   * free the node.                                                   
   */                                                                 
                                                                      
  if ( node->type == IMFS_HARD_LINK ) {                               
ffc04574:	2f 80 00 03 	cmpwi   cr7,r0,3                               
                                                                      
int IMFS_unlink(                                                      
  rtems_filesystem_location_info_t  *parentloc, /* IN */              
  rtems_filesystem_location_info_t  *loc        /* IN */              
)                                                                     
{                                                                     
ffc04578:	93 81 00 28 	stw     r28,40(r1)                             
  /*                                                                  
   * If this is the last last pointer to the node                     
   * free the node.                                                   
   */                                                                 
                                                                      
  if ( node->type == IMFS_HARD_LINK ) {                               
ffc0457c:	41 9e 00 3c 	beq-    cr7,ffc045b8 <IMFS_unlink+0x6c>        
                                                                      
  /*                                                                  
   *  Now actually free the node we were asked to free.               
   */                                                                 
                                                                      
  result = (*loc->handlers->rmnod_h)( parentloc, loc );               
ffc04580:	81 3f 00 08 	lwz     r9,8(r31)                              
ffc04584:	7f a3 eb 78 	mr      r3,r29                                 
ffc04588:	7f e4 fb 78 	mr      r4,r31                                 
ffc0458c:	80 09 00 34 	lwz     r0,52(r9)                              
ffc04590:	7c 09 03 a6 	mtctr   r0                                     
ffc04594:	4e 80 04 21 	bctrl                                          
                                                                      
  return result;                                                      
}                                                                     
ffc04598:	80 01 00 3c 	lwz     r0,60(r1)                              
ffc0459c:	83 81 00 28 	lwz     r28,40(r1)                             
ffc045a0:	7c 08 03 a6 	mtlr    r0                                     
ffc045a4:	83 a1 00 2c 	lwz     r29,44(r1)                             
ffc045a8:	83 c1 00 30 	lwz     r30,48(r1)                             
ffc045ac:	83 e1 00 34 	lwz     r31,52(r1)                             
ffc045b0:	38 21 00 38 	addi    r1,r1,56                               
ffc045b4:	4e 80 00 20 	blr                                            
   * free the node.                                                   
   */                                                                 
                                                                      
  if ( node->type == IMFS_HARD_LINK ) {                               
                                                                      
    if ( !node->info.hard_link.link_node )                            
ffc045b8:	80 1e 00 50 	lwz     r0,80(r30)                             
ffc045bc:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc045c0:	41 9e 00 90 	beq-    cr7,ffc04650 <IMFS_unlink+0x104>       <== NEVER TAKEN
      rtems_set_errno_and_return_minus_one( EINVAL );                 
                                                                      
    the_link = *loc;                                                  
    the_link.node_access = node->info.hard_link.link_node;            
ffc045c4:	7c 3c 0b 78 	mr      r28,r1                                 
ffc045c8:	94 1c 00 10 	stwu    r0,16(r28)                             
  if ( node->type == IMFS_HARD_LINK ) {                               
                                                                      
    if ( !node->info.hard_link.link_node )                            
      rtems_set_errno_and_return_minus_one( EINVAL );                 
                                                                      
    the_link = *loc;                                                  
ffc045cc:	81 64 00 08 	lwz     r11,8(r4)                              
    the_link.node_access = node->info.hard_link.link_node;            
    IMFS_Set_handlers( &the_link );                                   
ffc045d0:	7f 83 e3 78 	mr      r3,r28                                 
  if ( node->type == IMFS_HARD_LINK ) {                               
                                                                      
    if ( !node->info.hard_link.link_node )                            
      rtems_set_errno_and_return_minus_one( EINVAL );                 
                                                                      
    the_link = *loc;                                                  
ffc045d4:	81 24 00 0c 	lwz     r9,12(r4)                              
ffc045d8:	81 44 00 04 	lwz     r10,4(r4)                              
ffc045dc:	80 04 00 10 	lwz     r0,16(r4)                              
ffc045e0:	91 61 00 18 	stw     r11,24(r1)                             
ffc045e4:	91 21 00 1c 	stw     r9,28(r1)                              
ffc045e8:	91 41 00 14 	stw     r10,20(r1)                             
ffc045ec:	90 01 00 20 	stw     r0,32(r1)                              
    the_link.node_access = node->info.hard_link.link_node;            
    IMFS_Set_handlers( &the_link );                                   
ffc045f0:	48 00 93 71 	bl      ffc0d960 <IMFS_Set_handlers>           
    /*                                                                
     *  If removing the last hard link to a node, then we need        
     *  to remove the node that is a link and the node itself.        
     */                                                               
                                                                      
    if ( node->info.hard_link.link_node->st_nlink == 1)               
ffc045f4:	81 3e 00 50 	lwz     r9,80(r30)                             
ffc045f8:	a1 69 00 34 	lhz     r11,52(r9)                             
ffc045fc:	2f 8b 00 01 	cmpwi   cr7,r11,1                              
ffc04600:	41 9e 00 28 	beq-    cr7,ffc04628 <IMFS_unlink+0xdc>        
        if ( result != 0 )                                            
            return -1;                                                
    }                                                                 
    else                                                              
    {                                                                 
        node->info.hard_link.link_node->st_nlink --;                  
ffc04604:	39 6b ff ff 	addi    r11,r11,-1                             
ffc04608:	b1 69 00 34 	sth     r11,52(r9)                             
        IMFS_update_ctime( node->info.hard_link.link_node );          
ffc0460c:	38 61 00 08 	addi    r3,r1,8                                
ffc04610:	38 80 00 00 	li      r4,0                                   
ffc04614:	48 00 07 31 	bl      ffc04d44 <gettimeofday>                
ffc04618:	81 3e 00 50 	lwz     r9,80(r30)                             
ffc0461c:	80 01 00 08 	lwz     r0,8(r1)                               
ffc04620:	90 09 00 48 	stw     r0,72(r9)                              
ffc04624:	4b ff ff 5c 	b       ffc04580 <IMFS_unlink+0x34>            
     *  to remove the node that is a link and the node itself.        
     */                                                               
                                                                      
    if ( node->info.hard_link.link_node->st_nlink == 1)               
    {                                                                 
        result = (*the_link.handlers->rmnod_h)( parentloc, &the_link );
ffc04628:	81 21 00 18 	lwz     r9,24(r1)                              
ffc0462c:	7f a3 eb 78 	mr      r3,r29                                 
ffc04630:	7f 84 e3 78 	mr      r4,r28                                 
ffc04634:	80 09 00 34 	lwz     r0,52(r9)                              
ffc04638:	7c 09 03 a6 	mtctr   r0                                     
ffc0463c:	4e 80 04 21 	bctrl                                          
        if ( result != 0 )                                            
ffc04640:	2f 83 00 00 	cmpwi   cr7,r3,0                               
            return -1;                                                
ffc04644:	38 60 ff ff 	li      r3,-1                                  
     */                                                               
                                                                      
    if ( node->info.hard_link.link_node->st_nlink == 1)               
    {                                                                 
        result = (*the_link.handlers->rmnod_h)( parentloc, &the_link );
        if ( result != 0 )                                            
ffc04648:	41 9e ff 38 	beq+    cr7,ffc04580 <IMFS_unlink+0x34>        
ffc0464c:	4b ff ff 4c 	b       ffc04598 <IMFS_unlink+0x4c>            
   */                                                                 
                                                                      
  if ( node->type == IMFS_HARD_LINK ) {                               
                                                                      
    if ( !node->info.hard_link.link_node )                            
      rtems_set_errno_and_return_minus_one( EINVAL );                 
ffc04650:	48 00 da f9 	bl      ffc12148 <__errno>                     <== NOT EXECUTED
ffc04654:	38 00 00 16 	li      r0,22                                  <== NOT EXECUTED
ffc04658:	90 03 00 00 	stw     r0,0(r3)                               <== NOT EXECUTED
ffc0465c:	38 60 ff ff 	li      r3,-1                                  <== NOT EXECUTED
ffc04660:	4b ff ff 38 	b       ffc04598 <IMFS_unlink+0x4c>            <== NOT EXECUTED
                                                                      

ffc04664 <IMFS_unmount>: #include <rtems/seterr.h> int IMFS_unmount( rtems_filesystem_mount_table_entry_t *mt_entry ) {
ffc04664:	7c 08 02 a6 	mflr    r0                                     
ffc04668:	94 21 ff f8 	stwu    r1,-8(r1)                              
ffc0466c:	90 01 00 0c 	stw     r0,12(r1)                              
  IMFS_jnode_t  *node;                                                
                                                                      
  node = mt_entry->mt_point_node.node_access;                         
ffc04670:	81 23 00 08 	lwz     r9,8(r3)                               
                                                                      
  /*                                                                  
   * Is the node that we are mounting onto a directory node ?         
   */                                                                 
                                                                      
  if ( node->type != IMFS_DIRECTORY )                                 
ffc04674:	80 09 00 4c 	lwz     r0,76(r9)                              
ffc04678:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0467c:	40 9e 00 2c 	bne-    cr7,ffc046a8 <IMFS_unmount+0x44>       <== NEVER TAKEN
                                                                      
  /*                                                                  
   * Did the node indicate that there was a directory mounted here?   
   */                                                                 
                                                                      
  if ( node->info.directory.mt_fs == NULL )                           
ffc04680:	80 09 00 5c 	lwz     r0,92(r9)                              
ffc04684:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc04688:	41 9e 00 34 	beq-    cr7,ffc046bc <IMFS_unmount+0x58>       <== NEVER TAKEN
  /*                                                                  
   * Set the mt_fs pointer to indicate that there is no longer        
   * a file system mounted to this point.                             
   */                                                                 
                                                                      
  node->info.directory.mt_fs = NULL;                                  
ffc0468c:	38 00 00 00 	li      r0,0                                   
ffc04690:	90 09 00 5c 	stw     r0,92(r9)                              
                                                                      
  return 0;                                                           
ffc04694:	38 60 00 00 	li      r3,0                                   
}                                                                     
ffc04698:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc0469c:	38 21 00 08 	addi    r1,r1,8                                
ffc046a0:	7c 08 03 a6 	mtlr    r0                                     
ffc046a4:	4e 80 00 20 	blr                                            
  /*                                                                  
   * Is the node that we are mounting onto a directory node ?         
   */                                                                 
                                                                      
  if ( node->type != IMFS_DIRECTORY )                                 
    rtems_set_errno_and_return_minus_one( ENOTDIR );                  
ffc046a8:	48 00 da a1 	bl      ffc12148 <__errno>                     <== NOT EXECUTED
ffc046ac:	38 00 00 14 	li      r0,20                                  <== NOT EXECUTED
ffc046b0:	90 03 00 00 	stw     r0,0(r3)                               <== NOT EXECUTED
ffc046b4:	38 60 ff ff 	li      r3,-1                                  <== NOT EXECUTED
ffc046b8:	4b ff ff e0 	b       ffc04698 <IMFS_unmount+0x34>           <== NOT EXECUTED
  /*                                                                  
   * Did the node indicate that there was a directory mounted here?   
   */                                                                 
                                                                      
  if ( node->info.directory.mt_fs == NULL )                           
    rtems_set_errno_and_return_minus_one( EINVAL );  /* XXX */        
ffc046bc:	48 00 da 8d 	bl      ffc12148 <__errno>                     <== NOT EXECUTED
ffc046c0:	38 00 00 16 	li      r0,22                                  <== NOT EXECUTED
ffc046c4:	90 03 00 00 	stw     r0,0(r3)                               <== NOT EXECUTED
ffc046c8:	38 60 ff ff 	li      r3,-1                                  <== NOT EXECUTED
ffc046cc:	4b ff ff cc 	b       ffc04698 <IMFS_unmount+0x34>           <== NOT EXECUTED
                                                                      

ffc04f80 <RTEMS_Malloc_Initialize>: ) { /* * If configured, initialize the statistics support */ if ( rtems_malloc_statistics_helpers != NULL ) {
ffc04f80:	3d 20 00 00 	lis     r9,0                                   
void RTEMS_Malloc_Initialize(                                         
  void *heap_begin,                                                   
  uintptr_t heap_size,                                                
  size_t sbrk_amount                                                  
)                                                                     
{                                                                     
ffc04f84:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc04f88:	7c 08 02 a6 	mflr    r0                                     
  /*                                                                  
   *  If configured, initialize the statistics support                
  */                                                                  
  if ( rtems_malloc_statistics_helpers != NULL ) {                    
ffc04f8c:	81 29 26 c8 	lwz     r9,9928(r9)                            
void RTEMS_Malloc_Initialize(                                         
  void *heap_begin,                                                   
  uintptr_t heap_size,                                                
  size_t sbrk_amount                                                  
)                                                                     
{                                                                     
ffc04f90:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc04f94:	7c 9d 23 78 	mr      r29,r4                                 
  /*                                                                  
   *  If configured, initialize the statistics support                
  */                                                                  
  if ( rtems_malloc_statistics_helpers != NULL ) {                    
ffc04f98:	2f 89 00 00 	cmpwi   cr7,r9,0                               
void RTEMS_Malloc_Initialize(                                         
  void *heap_begin,                                                   
  uintptr_t heap_size,                                                
  size_t sbrk_amount                                                  
)                                                                     
{                                                                     
ffc04f9c:	93 c1 00 10 	stw     r30,16(r1)                             
ffc04fa0:	7c 7e 1b 78 	mr      r30,r3                                 
ffc04fa4:	93 e1 00 14 	stw     r31,20(r1)                             
ffc04fa8:	7c bf 2b 78 	mr      r31,r5                                 
ffc04fac:	90 01 00 1c 	stw     r0,28(r1)                              
ffc04fb0:	93 81 00 08 	stw     r28,8(r1)                              
  /*                                                                  
   *  If configured, initialize the statistics support                
  */                                                                  
  if ( rtems_malloc_statistics_helpers != NULL ) {                    
ffc04fb4:	41 9e 00 10 	beq-    cr7,ffc04fc4 <RTEMS_Malloc_Initialize+0x44>
    (*rtems_malloc_statistics_helpers->initialize)();                 
ffc04fb8:	80 09 00 00 	lwz     r0,0(r9)                               
ffc04fbc:	7c 09 03 a6 	mtctr   r0                                     
ffc04fc0:	4e 80 04 21 	bctrl                                          
  }                                                                   
                                                                      
  /*                                                                  
   *  Initialize the garbage collection list to start with nothing on it.
   */                                                                 
  malloc_deferred_frees_initialize();                                 
ffc04fc4:	4b ff ff 2d 	bl      ffc04ef0 <malloc_deferred_frees_initialize>
                                                                      
  /*                                                                  
   *  Initialize the optional sbrk support for extending the heap     
   */                                                                 
  if ( rtems_malloc_sbrk_helpers != NULL ) {                          
ffc04fc8:	3d 20 00 00 	lis     r9,0                                   
ffc04fcc:	81 29 26 cc 	lwz     r9,9932(r9)                            
ffc04fd0:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc04fd4:	41 9e 00 20 	beq-    cr7,ffc04ff4 <RTEMS_Malloc_Initialize+0x74>
    heap_begin = (*rtems_malloc_sbrk_helpers->initialize)(            
ffc04fd8:	80 09 00 00 	lwz     r0,0(r9)                               
ffc04fdc:	7f c3 f3 78 	mr      r3,r30                                 
ffc04fe0:	7f e4 fb 78 	mr      r4,r31                                 
ffc04fe4:	7c 09 03 a6 	mtctr   r0                                     
      heap_begin,                                                     
      sbrk_amount                                                     
    );                                                                
    heap_size  = (uintptr_t) sbrk_amount;                             
ffc04fe8:	7f fd fb 78 	mr      r29,r31                                
                                                                      
  /*                                                                  
   *  Initialize the optional sbrk support for extending the heap     
   */                                                                 
  if ( rtems_malloc_sbrk_helpers != NULL ) {                          
    heap_begin = (*rtems_malloc_sbrk_helpers->initialize)(            
ffc04fec:	4e 80 04 21 	bctrl                                          
ffc04ff0:	7c 7e 1b 78 	mr      r30,r3                                 
   *  of the time under UNIX because zero'ing memory when it is first 
   *  given to a process eliminates the chance of a process seeing data
   *  left over from another process.  This would be a security violation.
   */                                                                 
                                                                      
  if (                                                                
ffc04ff4:	3f 80 00 00 	lis     r28,0                                  
ffc04ff8:	88 1c 26 c4 	lbz     r0,9924(r28)                           
ffc04ffc:	3f e0 00 00 	lis     r31,0                                  
ffc05000:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc05004:	40 9e 00 34 	bne-    cr7,ffc05038 <RTEMS_Malloc_Initialize+0xb8>
    !rtems_unified_work_area                                          
      && rtems_configuration_get_do_zero_of_workspace()               
ffc05008:	3d 20 00 00 	lis     r9,0                                   
ffc0500c:	88 09 20 c8 	lbz     r0,8392(r9)                            
ffc05010:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc05014:	40 9e 00 5c 	bne-    cr7,ffc05070 <RTEMS_Malloc_Initialize+0xf0>
  void *area_begin,                                                   
  uintptr_t area_size,                                                
  uintptr_t page_size                                                 
)                                                                     
{                                                                     
  return _Heap_Initialize( heap, area_begin, area_size, page_size );  
ffc05018:	3f e0 00 00 	lis     r31,0                                  
ffc0501c:	80 7f 26 5c 	lwz     r3,9820(r31)                           
ffc05020:	7f c4 f3 78 	mr      r4,r30                                 
ffc05024:	7f a5 eb 78 	mr      r5,r29                                 
ffc05028:	38 c0 00 08 	li      r6,8                                   
ffc0502c:	48 00 54 d1 	bl      ffc0a4fc <_Heap_Initialize>            
      RTEMS_Malloc_Heap,                                              
      heap_begin,                                                     
      heap_size,                                                      
      CPU_HEAP_ALIGNMENT                                              
    );                                                                
    if ( status == 0 ) {                                              
ffc05030:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05034:	41 9e 00 5c 	beq-    cr7,ffc05090 <RTEMS_Malloc_Initialize+0x110>
      rtems_fatal_error_occurred( RTEMS_NO_MEMORY );                  
    }                                                                 
  }                                                                   
                                                                      
  MSBUMP( space_available, _Protected_heap_Get_size(RTEMS_Malloc_Heap) );
ffc05038:	80 7f 26 5c 	lwz     r3,9820(r31)                           
ffc0503c:	3f c0 00 00 	lis     r30,0                                  
ffc05040:	83 fe 2a 48 	lwz     r31,10824(r30)                         
ffc05044:	48 00 62 49 	bl      ffc0b28c <_Protected_heap_Get_size>    
}                                                                     
ffc05048:	80 01 00 1c 	lwz     r0,28(r1)                              
    if ( status == 0 ) {                                              
      rtems_fatal_error_occurred( RTEMS_NO_MEMORY );                  
    }                                                                 
  }                                                                   
                                                                      
  MSBUMP( space_available, _Protected_heap_Get_size(RTEMS_Malloc_Heap) );
ffc0504c:	7c 63 fa 14 	add     r3,r3,r31                              
}                                                                     
ffc05050:	83 81 00 08 	lwz     r28,8(r1)                              
ffc05054:	7c 08 03 a6 	mtlr    r0                                     
    if ( status == 0 ) {                                              
      rtems_fatal_error_occurred( RTEMS_NO_MEMORY );                  
    }                                                                 
  }                                                                   
                                                                      
  MSBUMP( space_available, _Protected_heap_Get_size(RTEMS_Malloc_Heap) );
ffc05058:	90 7e 2a 48 	stw     r3,10824(r30)                          
}                                                                     
ffc0505c:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc05060:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc05064:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc05068:	38 21 00 18 	addi    r1,r1,24                               
ffc0506c:	4e 80 00 20 	blr                                            
                                                                      
  if (                                                                
    !rtems_unified_work_area                                          
      && rtems_configuration_get_do_zero_of_workspace()               
  ) {                                                                 
     memset( heap_begin, 0, heap_size );                              
ffc05070:	7f c3 f3 78 	mr      r3,r30                                 
ffc05074:	38 80 00 00 	li      r4,0                                   
ffc05078:	7f a5 eb 78 	mr      r5,r29                                 
ffc0507c:	48 00 de 0d 	bl      ffc12e88 <memset>                      
   *  Unfortunately we cannot use assert if this fails because if this
   *  has failed we do not have a heap and if we do not have a heap   
   *  STDIO cannot work because there will be no buffers.             
   */                                                                 
                                                                      
  if ( !rtems_unified_work_area ) {                                   
ffc05080:	88 1c 26 c4 	lbz     r0,9924(r28)                           
ffc05084:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc05088:	41 9e ff 90 	beq+    cr7,ffc05018 <RTEMS_Malloc_Initialize+0x98><== ALWAYS TAKEN
ffc0508c:	4b ff ff ac 	b       ffc05038 <RTEMS_Malloc_Initialize+0xb8><== NOT EXECUTED
      heap_begin,                                                     
      heap_size,                                                      
      CPU_HEAP_ALIGNMENT                                              
    );                                                                
    if ( status == 0 ) {                                              
      rtems_fatal_error_occurred( RTEMS_NO_MEMORY );                  
ffc05090:	38 60 00 1a 	li      r3,26                                  
ffc05094:	48 00 47 61 	bl      ffc097f4 <rtems_fatal_error_occurred>  
                                                                      

ffc03c24 <Stack_check_Dump_threads_usage>: static rtems_printk_plugin_t print_handler; void Stack_check_Dump_threads_usage( Thread_Control *the_thread ) {
ffc03c24:	94 21 ff c0 	stwu    r1,-64(r1)                             
ffc03c28:	7c 08 02 a6 	mflr    r0                                     
ffc03c2c:	90 01 00 44 	stw     r0,68(r1)                              
ffc03c30:	93 81 00 30 	stw     r28,48(r1)                             
    {                                                                 
      stack  = &the_thread->Start.Initial_stack;                      
      current = (void *)_CPU_Context_Get_SP( &the_thread->Registers );
    }                                                                 
                                                                      
  low  = Stack_check_usable_stack_start(stack);                       
ffc03c34:	81 03 00 cc 	lwz     r8,204(r3)                             
  size = Stack_check_usable_stack_size(stack);                        
ffc03c38:	83 83 00 c8 	lwz     r28,200(r3)                            
    {                                                                 
      stack  = &the_thread->Start.Initial_stack;                      
      current = (void *)_CPU_Context_Get_SP( &the_thread->Registers );
    }                                                                 
                                                                      
  low  = Stack_check_usable_stack_start(stack);                       
ffc03c3c:	39 08 00 80 	addi    r8,r8,128                              
static rtems_printk_plugin_t   print_handler;                         
                                                                      
void Stack_check_Dump_threads_usage(                                  
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc03c40:	93 41 00 28 	stw     r26,40(r1)                             
      stack  = &the_thread->Start.Initial_stack;                      
      current = (void *)_CPU_Context_Get_SP( &the_thread->Registers );
    }                                                                 
                                                                      
  low  = Stack_check_usable_stack_start(stack);                       
  size = Stack_check_usable_stack_size(stack);                        
ffc03c44:	3b 9c ff 80 	addi    r28,r28,-128                           
    /*                                                                
     * start at lower memory and find first word that does not        
     * match pattern                                                  
     */                                                               
                                                                      
    base += PATTERN_SIZE_WORDS;                                       
ffc03c48:	39 28 00 80 	addi    r9,r8,128                              
static rtems_printk_plugin_t   print_handler;                         
                                                                      
void Stack_check_Dump_threads_usage(                                  
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc03c4c:	93 61 00 2c 	stw     r27,44(r1)                             
     * start at lower memory and find first word that does not        
     * match pattern                                                  
     */                                                               
                                                                      
    base += PATTERN_SIZE_WORDS;                                       
    for (ebase = base + length; base < ebase; base++)                 
ffc03c50:	57 8b 00 3a 	rlwinm  r11,r28,0,0,29                         
ffc03c54:	7d 69 5a 14 	add     r11,r9,r11                             
static rtems_printk_plugin_t   print_handler;                         
                                                                      
void Stack_check_Dump_threads_usage(                                  
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc03c58:	93 a1 00 34 	stw     r29,52(r1)                             
     * start at lower memory and find first word that does not        
     * match pattern                                                  
     */                                                               
                                                                      
    base += PATTERN_SIZE_WORDS;                                       
    for (ebase = base + length; base < ebase; base++)                 
ffc03c5c:	7f 89 58 40 	cmplw   cr7,r9,r11                             
static rtems_printk_plugin_t   print_handler;                         
                                                                      
void Stack_check_Dump_threads_usage(                                  
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc03c60:	92 e1 00 1c 	stw     r23,28(r1)                             
ffc03c64:	7c 7b 1b 78 	mr      r27,r3                                 
  high_water_mark = Stack_check_find_high_water_mark(low, size);      
                                                                      
  if ( high_water_mark )                                              
    used = Stack_check_Calculate_used( low, size, high_water_mark );  
  else                                                                
    used = 0;                                                         
ffc03c68:	3b a0 00 00 	li      r29,0                                  
static rtems_printk_plugin_t   print_handler;                         
                                                                      
void Stack_check_Dump_threads_usage(                                  
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc03c6c:	93 01 00 20 	stw     r24,32(r1)                             
ffc03c70:	93 21 00 24 	stw     r25,36(r1)                             
ffc03c74:	93 c1 00 38 	stw     r30,56(r1)                             
ffc03c78:	93 e1 00 3c 	stw     r31,60(r1)                             
      current = 0;                                                    
    } else                                                            
  #endif                                                              
    {                                                                 
      stack  = &the_thread->Start.Initial_stack;                      
      current = (void *)_CPU_Context_Get_SP( &the_thread->Registers );
ffc03c7c:	83 43 00 d8 	lwz     r26,216(r3)                            
     * start at lower memory and find first word that does not        
     * match pattern                                                  
     */                                                               
                                                                      
    base += PATTERN_SIZE_WORDS;                                       
    for (ebase = base + length; base < ebase; base++)                 
ffc03c80:	40 9c 00 34 	bge-    cr7,ffc03cb4 <Stack_check_Dump_threads_usage+0x90><== NEVER TAKEN
      if (*base != U32_PATTERN)                                       
ffc03c84:	81 48 00 80 	lwz     r10,128(r8)                            
ffc03c88:	6d 40 5a 5a 	xoris   r0,r10,23130                           
ffc03c8c:	2f 80 a5 a5 	cmpwi   cr7,r0,-23131                          
ffc03c90:	41 9e 00 14 	beq-    cr7,ffc03ca4 <Stack_check_Dump_threads_usage+0x80><== ALWAYS TAKEN
ffc03c94:	48 00 00 f8 	b       ffc03d8c <Stack_check_Dump_threads_usage+0x168><== NOT EXECUTED
ffc03c98:	80 09 00 00 	lwz     r0,0(r9)                               
ffc03c9c:	7f 80 50 00 	cmpw    cr7,r0,r10                             
ffc03ca0:	40 9e 00 ec 	bne-    cr7,ffc03d8c <Stack_check_Dump_threads_usage+0x168>
     * start at lower memory and find first word that does not        
     * match pattern                                                  
     */                                                               
                                                                      
    base += PATTERN_SIZE_WORDS;                                       
    for (ebase = base + length; base < ebase; base++)                 
ffc03ca4:	39 29 00 04 	addi    r9,r9,4                                
ffc03ca8:	7f 8b 48 40 	cmplw   cr7,r11,r9                             
ffc03cac:	41 9d ff ec 	bgt+    cr7,ffc03c98 <Stack_check_Dump_threads_usage+0x74><== ALWAYS TAKEN
  high_water_mark = Stack_check_find_high_water_mark(low, size);      
                                                                      
  if ( high_water_mark )                                              
    used = Stack_check_Calculate_used( low, size, high_water_mark );  
  else                                                                
    used = 0;                                                         
ffc03cb0:	3b a0 00 00 	li      r29,0                                  <== NOT EXECUTED
                                                                      
  #if (CPU_ALLOCATE_INTERRUPT_STACK == TRUE)                          
    if ( the_thread )                                                 
  #endif                                                              
    {                                                                 
      (*print_handler)(                                               
ffc03cb4:	82 fb 00 08 	lwz     r23,8(r27)                             
ffc03cb8:	3f c0 00 00 	lis     r30,0                                  
ffc03cbc:	3b fe 27 cc 	addi    r31,r30,10188                          
ffc03cc0:	83 3e 27 cc 	lwz     r25,10188(r30)                         
ffc03cc4:	83 1f 00 04 	lwz     r24,4(r31)                             
ffc03cc8:	38 80 00 05 	li      r4,5                                   
ffc03ccc:	38 a1 00 08 	addi    r5,r1,8                                
ffc03cd0:	7e e3 bb 78 	mr      r3,r23                                 
ffc03cd4:	48 00 50 4d 	bl      ffc08d20 <rtems_object_get_name>       
ffc03cd8:	3c 80 ff c2 	lis     r4,-62                                 
ffc03cdc:	7c 66 1b 78 	mr      r6,r3                                  
ffc03ce0:	7f 29 03 a6 	mtctr   r25                                    
ffc03ce4:	38 84 8c 80 	addi    r4,r4,-29568                           
ffc03ce8:	7e e5 bb 78 	mr      r5,r23                                 
ffc03cec:	7f 03 c3 78 	mr      r3,r24                                 
ffc03cf0:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc03cf4:	4e 80 04 21 	bctrl                                          
                                                                      
  (*print_handler)(                                                   
    print_context,                                                    
    " %010p - %010p %010p  %8" PRId32 "   ",                          
    stack->area,                                                      
    stack->area + stack->size - 1,                                    
ffc03cf8:	80 db 00 c8 	lwz     r6,200(r27)                            
      else {                                                          
        (*print_handler)( print_context, "0x%08" PRIx32 "  INTR", ~0 );
      }                                                               
    #endif                                                            
                                                                      
  (*print_handler)(                                                   
ffc03cfc:	80 1e 27 cc 	lwz     r0,10188(r30)                          
ffc03d00:	3c 80 ff c2 	lis     r4,-62                                 
    print_context,                                                    
    " %010p - %010p %010p  %8" PRId32 "   ",                          
    stack->area,                                                      
    stack->area + stack->size - 1,                                    
ffc03d04:	80 bb 00 cc 	lwz     r5,204(r27)                            
ffc03d08:	38 c6 ff ff 	addi    r6,r6,-1                               
      else {                                                          
        (*print_handler)( print_context, "0x%08" PRIx32 "  INTR", ~0 );
      }                                                               
    #endif                                                            
                                                                      
  (*print_handler)(                                                   
ffc03d0c:	7c 09 03 a6 	mtctr   r0                                     
ffc03d10:	80 7f 00 04 	lwz     r3,4(r31)                              
ffc03d14:	38 84 8c 90 	addi    r4,r4,-29552                           
ffc03d18:	7c c5 32 14 	add     r6,r5,r6                               
ffc03d1c:	7f 47 d3 78 	mr      r7,r26                                 
ffc03d20:	7f 88 e3 78 	mr      r8,r28                                 
ffc03d24:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc03d28:	4e 80 04 21 	bctrl                                          
    stack->area + stack->size - 1,                                    
    current,                                                          
    size                                                              
  );                                                                  
                                                                      
  if (Stack_check_Initialized == 0) {                                 
ffc03d2c:	80 1f 00 08 	lwz     r0,8(r31)                              
ffc03d30:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc03d34:	41 9e 00 70 	beq-    cr7,ffc03da4 <Stack_check_Dump_threads_usage+0x180><== NEVER TAKEN
    (*print_handler)( print_context, "Unavailable\n" );               
  } else {                                                            
    (*print_handler)( print_context, "%8" PRId32 "\n", used );        
ffc03d38:	80 1e 27 cc 	lwz     r0,10188(r30)                          
ffc03d3c:	3c 80 ff c2 	lis     r4,-62                                 
ffc03d40:	80 7f 00 04 	lwz     r3,4(r31)                              
ffc03d44:	7f a5 eb 78 	mr      r5,r29                                 
ffc03d48:	7c 09 03 a6 	mtctr   r0                                     
ffc03d4c:	38 84 8c c0 	addi    r4,r4,-29504                           
ffc03d50:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc03d54:	4e 80 04 21 	bctrl                                          
  }                                                                   
                                                                      
                                                                      
}                                                                     
ffc03d58:	80 01 00 44 	lwz     r0,68(r1)                              
ffc03d5c:	82 e1 00 1c 	lwz     r23,28(r1)                             
ffc03d60:	7c 08 03 a6 	mtlr    r0                                     
ffc03d64:	83 01 00 20 	lwz     r24,32(r1)                             
ffc03d68:	83 21 00 24 	lwz     r25,36(r1)                             
ffc03d6c:	83 41 00 28 	lwz     r26,40(r1)                             
ffc03d70:	83 61 00 2c 	lwz     r27,44(r1)                             
ffc03d74:	83 81 00 30 	lwz     r28,48(r1)                             
ffc03d78:	83 a1 00 34 	lwz     r29,52(r1)                             
ffc03d7c:	83 c1 00 38 	lwz     r30,56(r1)                             
ffc03d80:	83 e1 00 3c 	lwz     r31,60(r1)                             
ffc03d84:	38 21 00 40 	addi    r1,r1,64                               
ffc03d88:	4e 80 00 20 	blr                                            
  low  = Stack_check_usable_stack_start(stack);                       
  size = Stack_check_usable_stack_size(stack);                        
                                                                      
  high_water_mark = Stack_check_find_high_water_mark(low, size);      
                                                                      
  if ( high_water_mark )                                              
ffc03d8c:	2f 89 00 00 	cmpwi   cr7,r9,0                               
    used = Stack_check_Calculate_used( low, size, high_water_mark );  
  else                                                                
    used = 0;                                                         
ffc03d90:	3b a0 00 00 	li      r29,0                                  
  low  = Stack_check_usable_stack_start(stack);                       
  size = Stack_check_usable_stack_size(stack);                        
                                                                      
  high_water_mark = Stack_check_find_high_water_mark(low, size);      
                                                                      
  if ( high_water_mark )                                              
ffc03d94:	41 be ff 20 	beq-    cr7,ffc03cb4 <Stack_check_Dump_threads_usage+0x90><== NEVER TAKEN
    used = Stack_check_Calculate_used( low, size, high_water_mark );  
ffc03d98:	7f a8 e2 14 	add     r29,r8,r28                             
ffc03d9c:	7f a9 e8 50 	subf    r29,r9,r29                             
ffc03da0:	4b ff ff 14 	b       ffc03cb4 <Stack_check_Dump_threads_usage+0x90>
    current,                                                          
    size                                                              
  );                                                                  
                                                                      
  if (Stack_check_Initialized == 0) {                                 
    (*print_handler)( print_context, "Unavailable\n" );               
ffc03da4:	80 1e 27 cc 	lwz     r0,10188(r30)                          <== NOT EXECUTED
ffc03da8:	3c 80 ff c2 	lis     r4,-62                                 <== NOT EXECUTED
ffc03dac:	80 7f 00 04 	lwz     r3,4(r31)                              <== NOT EXECUTED
ffc03db0:	38 84 8c b0 	addi    r4,r4,-29520                           <== NOT EXECUTED
ffc03db4:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc03db8:	4c c6 31 82 	crclr   4*cr1+eq                               <== NOT EXECUTED
ffc03dbc:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
  } else {                                                            
    (*print_handler)( print_context, "%8" PRId32 "\n", used );        
  }                                                                   
                                                                      
                                                                      
}                                                                     
ffc03dc0:	80 01 00 44 	lwz     r0,68(r1)                              <== NOT EXECUTED
ffc03dc4:	82 e1 00 1c 	lwz     r23,28(r1)                             <== NOT EXECUTED
ffc03dc8:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc03dcc:	83 01 00 20 	lwz     r24,32(r1)                             <== NOT EXECUTED
ffc03dd0:	83 21 00 24 	lwz     r25,36(r1)                             <== NOT EXECUTED
ffc03dd4:	83 41 00 28 	lwz     r26,40(r1)                             <== NOT EXECUTED
ffc03dd8:	83 61 00 2c 	lwz     r27,44(r1)                             <== NOT EXECUTED
ffc03ddc:	83 81 00 30 	lwz     r28,48(r1)                             <== NOT EXECUTED
ffc03de0:	83 a1 00 34 	lwz     r29,52(r1)                             <== NOT EXECUTED
ffc03de4:	83 c1 00 38 	lwz     r30,56(r1)                             <== NOT EXECUTED
ffc03de8:	83 e1 00 3c 	lwz     r31,60(r1)                             <== NOT EXECUTED
ffc03dec:	38 21 00 40 	addi    r1,r1,64                               <== NOT EXECUTED
ffc03df0:	4e 80 00 20 	blr                                            <== NOT EXECUTED
                                                                      

ffc03ecc <Stack_check_report_blown_task>: Thread_Control *running, bool pattern_ok ) RTEMS_COMPILER_NO_RETURN_ATTRIBUTE; void Stack_check_report_blown_task(Thread_Control *running, bool pattern_ok) {
ffc03ecc:	94 21 ff c8 	stwu    r1,-56(r1)                             
ffc03ed0:	7c 08 02 a6 	mflr    r0                                     
ffc03ed4:	93 a1 00 2c 	stw     r29,44(r1)                             
ffc03ed8:	7c 7d 1b 78 	mr      r29,r3                                 
  Stack_Control *stack = &running->Start.Initial_stack;               
  void *pattern_area = Stack_check_Get_pattern_area(stack);           
  char name [32];                                                     
                                                                      
  printk("BLOWN STACK!!!\n");                                         
ffc03edc:	3c 60 ff c2 	lis     r3,-62                                 
  Thread_Control *running,                                            
  bool pattern_ok                                                     
) RTEMS_COMPILER_NO_RETURN_ATTRIBUTE;                                 
                                                                      
void Stack_check_report_blown_task(Thread_Control *running, bool pattern_ok)
{                                                                     
ffc03ee0:	90 01 00 3c 	stw     r0,60(r1)                              
  Stack_Control *stack = &running->Start.Initial_stack;               
  void *pattern_area = Stack_check_Get_pattern_area(stack);           
  char name [32];                                                     
                                                                      
  printk("BLOWN STACK!!!\n");                                         
ffc03ee4:	38 63 8c c8 	addi    r3,r3,-29496                           
  Thread_Control *running,                                            
  bool pattern_ok                                                     
) RTEMS_COMPILER_NO_RETURN_ATTRIBUTE;                                 
                                                                      
void Stack_check_report_blown_task(Thread_Control *running, bool pattern_ok)
{                                                                     
ffc03ee8:	93 c1 00 30 	stw     r30,48(r1)                             
ffc03eec:	93 e1 00 34 	stw     r31,52(r1)                             
ffc03ef0:	7c 9f 23 78 	mr      r31,r4                                 
  Stack_Control *stack = &running->Start.Initial_stack;               
  void *pattern_area = Stack_check_Get_pattern_area(stack);           
ffc03ef4:	83 dd 00 cc 	lwz     r30,204(r29)                           
  char name [32];                                                     
                                                                      
  printk("BLOWN STACK!!!\n");                                         
ffc03ef8:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc03efc:	48 00 20 61 	bl      ffc05f5c <printk>                      
  printk("task control block: 0x%08" PRIxPTR "\n", running);          
ffc03f00:	3c 60 ff c2 	lis     r3,-62                                 
ffc03f04:	38 63 8c d8 	addi    r3,r3,-29480                           
ffc03f08:	7f a4 eb 78 	mr      r4,r29                                 
ffc03f0c:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc03f10:	48 00 20 4d 	bl      ffc05f5c <printk>                      
  printk("task ID: 0x%08lx\n", (unsigned long) running->Object.id);   
ffc03f14:	80 9d 00 08 	lwz     r4,8(r29)                              
ffc03f18:	3c 60 ff c2 	lis     r3,-62                                 
ffc03f1c:	38 63 8c f8 	addi    r3,r3,-29448                           
ffc03f20:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc03f24:	48 00 20 39 	bl      ffc05f5c <printk>                      
  printk(                                                             
ffc03f28:	80 9d 00 0c 	lwz     r4,12(r29)                             
ffc03f2c:	3c 60 ff c2 	lis     r3,-62                                 
ffc03f30:	38 63 8d 0c 	addi    r3,r3,-29428                           
ffc03f34:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc03f38:	48 00 20 25 	bl      ffc05f5c <printk>                      
    "task name: 0x%08" PRIx32 "\n",                                   
    running->Object.name.name_u32                                     
  );                                                                  
  printk(                                                             
ffc03f3c:	80 7d 00 08 	lwz     r3,8(r29)                              
ffc03f40:	38 a1 00 08 	addi    r5,r1,8                                
ffc03f44:	38 80 00 20 	li      r4,32                                  
ffc03f48:	48 00 4d d9 	bl      ffc08d20 <rtems_object_get_name>       
ffc03f4c:	7c 64 1b 78 	mr      r4,r3                                  
ffc03f50:	3c 60 ff c2 	lis     r3,-62                                 
ffc03f54:	38 63 8d 20 	addi    r3,r3,-29408                           
ffc03f58:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc03f5c:	48 00 20 01 	bl      ffc05f5c <printk>                      
  );                                                                  
  printk(                                                             
    "task stack area (%lu Bytes): 0x%08" PRIxPTR " .. 0x%08" PRIxPTR "\n",
    (unsigned long) stack->size,                                      
    stack->area,                                                      
    ((char *) stack->area + stack->size)                              
ffc03f60:	80 bd 00 cc 	lwz     r5,204(r29)                            
ffc03f64:	80 9d 00 c8 	lwz     r4,200(r29)                            
  );                                                                  
  printk(                                                             
    "task name string: %s\n",                                         
    rtems_object_get_name(running->Object.id, sizeof(name), name)     
  );                                                                  
  printk(                                                             
ffc03f68:	3c 60 ff c2 	lis     r3,-62                                 
ffc03f6c:	38 63 8d 38 	addi    r3,r3,-29384                           
ffc03f70:	7c c5 22 14 	add     r6,r5,r4                               
ffc03f74:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc03f78:	48 00 1f e5 	bl      ffc05f5c <printk>                      
    "task stack area (%lu Bytes): 0x%08" PRIxPTR " .. 0x%08" PRIxPTR "\n",
    (unsigned long) stack->size,                                      
    stack->area,                                                      
    ((char *) stack->area + stack->size)                              
  );                                                                  
  if (!pattern_ok) {                                                  
ffc03f7c:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc03f80:	41 9e 00 0c 	beq-    cr7,ffc03f8c <Stack_check_report_blown_task+0xc0><== ALWAYS TAKEN
          rtems_configuration_get_user_multiprocessing_table()->node  
      );                                                              
    }                                                                 
  #endif                                                              
                                                                      
  rtems_fatal_error_occurred(0x81);                                   
ffc03f84:	38 60 00 81 	li      r3,129                                 
ffc03f88:	48 00 5a 2d 	bl      ffc099b4 <rtems_fatal_error_occurred>  
    (unsigned long) stack->size,                                      
    stack->area,                                                      
    ((char *) stack->area + stack->size)                              
  );                                                                  
  if (!pattern_ok) {                                                  
    printk(                                                           
ffc03f8c:	3c 60 ff c2 	lis     r3,-62                                 
ffc03f90:	38 63 8d 6c 	addi    r3,r3,-29332                           
ffc03f94:	38 80 00 80 	li      r4,128                                 
ffc03f98:	38 be 00 08 	addi    r5,r30,8                               
ffc03f9c:	38 de 00 88 	addi    r6,r30,136                             
ffc03fa0:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc03fa4:	48 00 1f b9 	bl      ffc05f5c <printk>                      
ffc03fa8:	4b ff ff dc 	b       ffc03f84 <Stack_check_report_blown_task+0xb8>
                                                                      

ffc09a28 <_API_extensions_Run_postdriver>: * * _API_extensions_Run_postdriver */ void _API_extensions_Run_postdriver( void ) {
ffc09a28:	94 21 ff f0 	stwu    r1,-16(r1)                             
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
ffc09a2c:	3d 20 00 00 	lis     r9,0                                   
 *                                                                    
 *  _API_extensions_Run_postdriver                                    
 */                                                                   
                                                                      
void _API_extensions_Run_postdriver( void )                           
{                                                                     
ffc09a30:	7c 08 02 a6 	mflr    r0                                     
ffc09a34:	93 c1 00 08 	stw     r30,8(r1)                              
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
ffc09a38:	3b c9 2d 2c 	addi    r30,r9,11564                           
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc09a3c:	3b de 00 04 	addi    r30,r30,4                              
 *                                                                    
 *  _API_extensions_Run_postdriver                                    
 */                                                                   
                                                                      
void _API_extensions_Run_postdriver( void )                           
{                                                                     
ffc09a40:	93 e1 00 0c 	stw     r31,12(r1)                             
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
ffc09a44:	83 e9 2d 2c 	lwz     r31,11564(r9)                          
 *                                                                    
 *  _API_extensions_Run_postdriver                                    
 */                                                                   
                                                                      
void _API_extensions_Run_postdriver( void )                           
{                                                                     
ffc09a48:	90 01 00 14 	stw     r0,20(r1)                              
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
ffc09a4c:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
ffc09a50:	41 9e 00 1c 	beq-    cr7,ffc09a6c <_API_extensions_Run_postdriver+0x44><== 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)();                            
ffc09a54:	80 1f 00 08 	lwz     r0,8(r31)                              
ffc09a58:	7c 09 03 a6 	mtctr   r0                                     
ffc09a5c:	4e 80 04 21 	bctrl                                          
  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 ) {                                 
ffc09a60:	83 ff 00 00 	lwz     r31,0(r31)                             
void _API_extensions_Run_postdriver( void )                           
{                                                                     
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
ffc09a64:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
ffc09a68:	40 9e ff ec 	bne+    cr7,ffc09a54 <_API_extensions_Run_postdriver+0x2c><== NEVER TAKEN
#if defined(FUNCTIONALITY_NOT_CURRENTLY_USED_BY_ANY_API)              
    if ( the_extension->postdriver_hook )                             
#endif                                                                
      (*the_extension->postdriver_hook)();                            
  }                                                                   
}                                                                     
ffc09a6c:	80 01 00 14 	lwz     r0,20(r1)                              
ffc09a70:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc09a74:	7c 08 03 a6 	mtlr    r0                                     
ffc09a78:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc09a7c:	38 21 00 10 	addi    r1,r1,16                               
ffc09a80:	4e 80 00 20 	blr                                            
                                                                      

ffc09a84 <_API_extensions_Run_postswitch>: * * _API_extensions_Run_postswitch */ void _API_extensions_Run_postswitch( void ) {
ffc09a84:	94 21 ff e8 	stwu    r1,-24(r1)                             
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
ffc09a88:	3d 20 00 00 	lis     r9,0                                   
 *                                                                    
 *  _API_extensions_Run_postswitch                                    
 */                                                                   
                                                                      
void _API_extensions_Run_postswitch( void )                           
{                                                                     
ffc09a8c:	7c 08 02 a6 	mflr    r0                                     
ffc09a90:	93 c1 00 10 	stw     r30,16(r1)                             
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
ffc09a94:	3b c9 2d 2c 	addi    r30,r9,11564                           
ffc09a98:	3b de 00 04 	addi    r30,r30,4                              
 *                                                                    
 *  _API_extensions_Run_postswitch                                    
 */                                                                   
                                                                      
void _API_extensions_Run_postswitch( void )                           
{                                                                     
ffc09a9c:	93 e1 00 14 	stw     r31,20(r1)                             
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
ffc09aa0:	83 e9 2d 2c 	lwz     r31,11564(r9)                          
 *                                                                    
 *  _API_extensions_Run_postswitch                                    
 */                                                                   
                                                                      
void _API_extensions_Run_postswitch( void )                           
{                                                                     
ffc09aa4:	90 01 00 1c 	stw     r0,28(r1)                              
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
ffc09aa8:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
 *                                                                    
 *  _API_extensions_Run_postswitch                                    
 */                                                                   
                                                                      
void _API_extensions_Run_postswitch( void )                           
{                                                                     
ffc09aac:	93 a1 00 0c 	stw     r29,12(r1)                             
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
ffc09ab0:	41 9e 00 28 	beq-    cr7,ffc09ad8 <_API_extensions_Run_postswitch+0x54><== NEVER TAKEN
ffc09ab4:	3f a0 00 00 	lis     r29,0                                  
ffc09ab8:	3b bd 2d 64 	addi    r29,r29,11620                          
        !_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 );           
ffc09abc:	80 1f 00 0c 	lwz     r0,12(r31)                             
ffc09ac0:	80 7d 00 0c 	lwz     r3,12(r29)                             
ffc09ac4:	7c 09 03 a6 	mtctr   r0                                     
ffc09ac8:	4e 80 04 21 	bctrl                                          
  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 ) {                                 
ffc09acc:	83 ff 00 00 	lwz     r31,0(r31)                             
void _API_extensions_Run_postswitch( void )                           
{                                                                     
  Chain_Node             *the_node;                                   
  API_extensions_Control *the_extension;                              
                                                                      
  for ( the_node = _API_extensions_List.first ;                       
ffc09ad0:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
ffc09ad4:	40 9e ff e8 	bne+    cr7,ffc09abc <_API_extensions_Run_postswitch+0x38><== NEVER TAKEN
                                                                      
    the_extension = (API_extensions_Control *) the_node;              
                                                                      
    (*the_extension->postswitch_hook)( _Thread_Executing );           
  }                                                                   
}                                                                     
ffc09ad8:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc09adc:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc09ae0:	7c 08 03 a6 	mtlr    r0                                     
ffc09ae4:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc09ae8:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc09aec:	38 21 00 18 	addi    r1,r1,24                               
ffc09af0:	4e 80 00 20 	blr                                            
                                                                      

ffc1c9a8 <_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 ) {
ffc1c9a8:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc1c9ac:	7c 08 02 a6 	mflr    r0                                     
ffc1c9b0:	90 01 00 24 	stw     r0,36(r1)                              
  Thread_Control          *the_thread;                                
  uint32_t                 number_broadcasted;                        
  Thread_Wait_information *waitp;                                     
                                                                      
  if ( size > the_message_queue->maximum_message_size ) {             
ffc1c9b4:	80 03 00 4c 	lwz     r0,76(r3)                              
    Objects_Id                                 id __attribute__((unused)),
    CORE_message_queue_API_mp_support_callout  api_message_queue_mp_support __attribute__((unused)),
  #endif                                                              
  uint32_t                                  *count                    
)                                                                     
{                                                                     
ffc1c9b8:	93 41 00 08 	stw     r26,8(r1)                              
ffc1c9bc:	7d 1a 43 78 	mr      r26,r8                                 
  Thread_Control          *the_thread;                                
  uint32_t                 number_broadcasted;                        
  Thread_Wait_information *waitp;                                     
                                                                      
  if ( size > the_message_queue->maximum_message_size ) {             
ffc1c9c0:	7f 80 28 40 	cmplw   cr7,r0,r5                              
    Objects_Id                                 id __attribute__((unused)),
    CORE_message_queue_API_mp_support_callout  api_message_queue_mp_support __attribute__((unused)),
  #endif                                                              
  uint32_t                                  *count                    
)                                                                     
{                                                                     
ffc1c9c4:	93 a1 00 14 	stw     r29,20(r1)                             
ffc1c9c8:	7c 9d 23 78 	mr      r29,r4                                 
ffc1c9cc:	93 c1 00 18 	stw     r30,24(r1)                             
ffc1c9d0:	7c 7e 1b 78 	mr      r30,r3                                 
  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;                    
ffc1c9d4:	38 60 00 01 	li      r3,1                                   
    Objects_Id                                 id __attribute__((unused)),
    CORE_message_queue_API_mp_support_callout  api_message_queue_mp_support __attribute__((unused)),
  #endif                                                              
  uint32_t                                  *count                    
)                                                                     
{                                                                     
ffc1c9d8:	93 e1 00 1c 	stw     r31,28(r1)                             
ffc1c9dc:	7c bf 2b 78 	mr      r31,r5                                 
ffc1c9e0:	93 61 00 0c 	stw     r27,12(r1)                             
ffc1c9e4:	93 81 00 10 	stw     r28,16(r1)                             
  Thread_Control          *the_thread;                                
  uint32_t                 number_broadcasted;                        
  Thread_Wait_information *waitp;                                     
                                                                      
  if ( size > the_message_queue->maximum_message_size ) {             
ffc1c9e8:	41 9c 00 20 	blt-    cr7,ffc1ca08 <_CORE_message_queue_Broadcast+0x60><== 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 ) {         
ffc1c9ec:	80 1e 00 48 	lwz     r0,72(r30)                             
ffc1c9f0:	3b 60 00 00 	li      r27,0                                  
ffc1c9f4:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc1c9f8:	41 be 00 4c 	beq+    cr7,ffc1ca44 <_CORE_message_queue_Broadcast+0x9c>
    *count = 0;                                                       
ffc1c9fc:	38 00 00 00 	li      r0,0                                   
ffc1ca00:	90 08 00 00 	stw     r0,0(r8)                               
    return CORE_MESSAGE_QUEUE_STATUS_SUCCESSFUL;                      
ffc1ca04:	38 60 00 00 	li      r3,0                                   
    #endif                                                            
                                                                      
  }                                                                   
  *count = number_broadcasted;                                        
  return CORE_MESSAGE_QUEUE_STATUS_SUCCESSFUL;                        
}                                                                     
ffc1ca08:	80 01 00 24 	lwz     r0,36(r1)                              
ffc1ca0c:	83 41 00 08 	lwz     r26,8(r1)                              
ffc1ca10:	7c 08 03 a6 	mtlr    r0                                     
ffc1ca14:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc1ca18:	83 81 00 10 	lwz     r28,16(r1)                             
ffc1ca1c:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc1ca20:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc1ca24:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc1ca28:	38 21 00 20 	addi    r1,r1,32                               
ffc1ca2c:	4e 80 00 20 	blr                                            
  const void *source,                                                 
  void       *destination,                                            
  size_t      size                                                    
)                                                                     
{                                                                     
  memcpy(destination, source, size);                                  
ffc1ca30:	80 7c 00 2c 	lwz     r3,44(r28)                             
   */                                                                 
  number_broadcasted = 0;                                             
  while ((the_thread =                                                
          _Thread_queue_Dequeue(&the_message_queue->Wait_queue))) {   
    waitp = &the_thread->Wait;                                        
    number_broadcasted += 1;                                          
ffc1ca34:	3b 7b 00 01 	addi    r27,r27,1                              
ffc1ca38:	48 00 a2 0d 	bl      ffc26c44 <memcpy>                      
      buffer,                                                         
      waitp->return_argument_second.mutable_object,                   
      size                                                            
    );                                                                
                                                                      
    *(size_t *) the_thread->Wait.return_argument = size;              
ffc1ca3c:	81 3c 00 28 	lwz     r9,40(r28)                             
ffc1ca40:	93 e9 00 00 	stw     r31,0(r9)                              
  /*                                                                  
   *  There must be no pending messages if there is a thread waiting to
   *  receive a message.                                              
   */                                                                 
  number_broadcasted = 0;                                             
  while ((the_thread =                                                
ffc1ca44:	7f c3 f3 78 	mr      r3,r30                                 
ffc1ca48:	48 00 31 c1 	bl      ffc1fc08 <_Thread_queue_Dequeue>       
ffc1ca4c:	7f a4 eb 78 	mr      r4,r29                                 
ffc1ca50:	7c 7c 1b 79 	mr.     r28,r3                                 
ffc1ca54:	7f e5 fb 78 	mr      r5,r31                                 
ffc1ca58:	40 82 ff d8 	bne+    ffc1ca30 <_CORE_message_queue_Broadcast+0x88>
    #endif                                                            
                                                                      
  }                                                                   
  *count = number_broadcasted;                                        
  return CORE_MESSAGE_QUEUE_STATUS_SUCCESSFUL;                        
}                                                                     
ffc1ca5c:	80 01 00 24 	lwz     r0,36(r1)                              
      if ( !_Objects_Is_local_id( the_thread->Object.id ) )           
        (*api_message_queue_mp_support) ( the_thread, id );           
    #endif                                                            
                                                                      
  }                                                                   
  *count = number_broadcasted;                                        
ffc1ca60:	93 7a 00 00 	stw     r27,0(r26)                             
  return CORE_MESSAGE_QUEUE_STATUS_SUCCESSFUL;                        
}                                                                     
ffc1ca64:	7c 08 03 a6 	mtlr    r0                                     
ffc1ca68:	83 41 00 08 	lwz     r26,8(r1)                              
ffc1ca6c:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc1ca70:	83 81 00 10 	lwz     r28,16(r1)                             
ffc1ca74:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc1ca78:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc1ca7c:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc1ca80:	38 21 00 20 	addi    r1,r1,32                               
ffc1ca84:	4e 80 00 20 	blr                                            
                                                                      

ffc1532c <_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 ) {
ffc1532c:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc15330:	7c 08 02 a6 	mflr    r0                                     
  /*                                                                  
   *  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)) {              
ffc15334:	7c c9 33 78 	mr      r9,r6                                  
  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                 
)                                                                     
{                                                                     
ffc15338:	90 01 00 24 	stw     r0,36(r1)                              
  /*                                                                  
   *  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)) {              
ffc1533c:	70 c0 00 03 	andi.   r0,r6,3                                
{                                                                     
  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;                  
ffc15340:	38 00 00 00 	li      r0,0                                   
  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                 
)                                                                     
{                                                                     
ffc15344:	93 a1 00 14 	stw     r29,20(r1)                             
ffc15348:	7c 9d 23 78 	mr      r29,r4                                 
ffc1534c:	93 e1 00 1c 	stw     r31,28(r1)                             
ffc15350:	7c 7f 1b 78 	mr      r31,r3                                 
ffc15354:	93 81 00 10 	stw     r28,16(r1)                             
ffc15358:	93 c1 00 18 	stw     r30,24(r1)                             
  size_t message_buffering_required;                                  
  size_t allocated_message_size;                                      
                                                                      
  the_message_queue->maximum_pending_messages   = maximum_pending_messages;
ffc1535c:	90 a3 00 44 	stw     r5,68(r3)                              
  the_message_queue->number_of_pending_messages = 0;                  
ffc15360:	90 03 00 48 	stw     r0,72(r3)                              
  the_message_queue->maximum_message_size       = maximum_message_size;
ffc15364:	90 c3 00 4c 	stw     r6,76(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)) {              
ffc15368:	41 82 00 3c 	beq-    ffc153a4 <_CORE_message_queue_Initialize+0x78>
    allocated_message_size += sizeof(uint32_t);                       
ffc1536c:	39 26 00 04 	addi    r9,r6,4                                
    allocated_message_size &= ~(sizeof(uint32_t) - 1);                
ffc15370:	55 29 00 3a 	rlwinm  r9,r9,0,0,29                           
  }                                                                   
                                                                      
  if (allocated_message_size < maximum_message_size)                  
ffc15374:	7f 86 48 40 	cmplw   cr7,r6,r9                              
    return false;                                                     
ffc15378:	3b c0 00 00 	li      r30,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)                  
ffc1537c:	40 9d 00 28 	ble-    cr7,ffc153a4 <_CORE_message_queue_Initialize+0x78><== ALWAYS TAKEN
    STATES_WAITING_FOR_MESSAGE,                                       
    CORE_MESSAGE_QUEUE_STATUS_TIMEOUT                                 
  );                                                                  
                                                                      
  return true;                                                        
}                                                                     
ffc15380:	80 01 00 24 	lwz     r0,36(r1)                              
ffc15384:	7f c3 f3 78 	mr      r3,r30                                 
ffc15388:	83 81 00 10 	lwz     r28,16(r1)                             
ffc1538c:	7c 08 03 a6 	mtlr    r0                                     
ffc15390:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc15394:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc15398:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc1539c:	38 21 00 20 	addi    r1,r1,32                               
ffc153a0:	4e 80 00 20 	blr                                            
  /*                                                                  
   *  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));
ffc153a4:	3b 89 00 10 	addi    r28,r9,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 *    
ffc153a8:	7c 7c 29 d6 	mullw   r3,r28,r5                              
       (allocated_message_size + sizeof(CORE_message_queue_Buffer_control));
                                                                      
  if (message_buffering_required < allocated_message_size)            
    return false;                                                     
ffc153ac:	3b c0 00 00 	li      r30,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)            
ffc153b0:	7f 83 48 40 	cmplw   cr7,r3,r9                              
ffc153b4:	41 9c ff cc 	blt+    cr7,ffc15380 <_CORE_message_queue_Initialize+0x54><== NEVER TAKEN
                                                                      
  /*                                                                  
   *  Attempt to allocate the message memory                          
   */                                                                 
  the_message_queue->message_buffers = (CORE_message_queue_Buffer *)  
     _Workspace_Allocate( message_buffering_required );               
ffc153b8:	90 a1 00 08 	stw     r5,8(r1)                               
ffc153bc:	48 00 3b 19 	bl      ffc18ed4 <_Workspace_Allocate>         
                                                                      
  if (the_message_queue->message_buffers == 0)                        
ffc153c0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
                                                                      
  /*                                                                  
   *  Attempt to allocate the message memory                          
   */                                                                 
  the_message_queue->message_buffers = (CORE_message_queue_Buffer *)  
     _Workspace_Allocate( message_buffering_required );               
ffc153c4:	7c 64 1b 78 	mr      r4,r3                                  
    return false;                                                     
                                                                      
  /*                                                                  
   *  Attempt to allocate the message memory                          
   */                                                                 
  the_message_queue->message_buffers = (CORE_message_queue_Buffer *)  
ffc153c8:	90 7f 00 5c 	stw     r3,92(r31)                             
     _Workspace_Allocate( message_buffering_required );               
                                                                      
  if (the_message_queue->message_buffers == 0)                        
ffc153cc:	80 a1 00 08 	lwz     r5,8(r1)                               
ffc153d0:	41 be ff b0 	beq-    cr7,ffc15380 <_CORE_message_queue_Initialize+0x54>
                                                                      
  /*                                                                  
   *  Initialize the pool of inactive messages, pending messages,     
   *  and set of waiting threads.                                     
   */                                                                 
  _Chain_Initialize (                                                 
ffc153d4:	38 7f 00 60 	addi    r3,r31,96                              
ffc153d8:	7f 86 e3 78 	mr      r6,r28                                 
ffc153dc:	48 00 5e b1 	bl      ffc1b28c <_Chain_Initialize>           
    allocated_message_size + sizeof( CORE_message_queue_Buffer_control )
  );                                                                  
                                                                      
  _Chain_Initialize_empty( &the_message_queue->Pending_messages );    
                                                                      
  _Thread_queue_Initialize(                                           
ffc153e0:	80 9d 00 00 	lwz     r4,0(r29)                              
    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 );    
ffc153e4:	38 1f 00 50 	addi    r0,r31,80                              
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
  the_chain->permanent_null = NULL;                                   
ffc153e8:	93 df 00 54 	stw     r30,84(r31)                            
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc153ec:	39 3f 00 54 	addi    r9,r31,84                              
                                                                      
  _Thread_queue_Initialize(                                           
ffc153f0:	68 84 00 01 	xori    r4,r4,1                                
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
  the_chain->permanent_null = NULL;                                   
  the_chain->last           = _Chain_Head(the_chain);                 
ffc153f4:	90 1f 00 58 	stw     r0,88(r31)                             
ffc153f8:	7c 84 00 34 	cntlzw  r4,r4                                  
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
ffc153fc:	91 3f 00 50 	stw     r9,80(r31)                             
ffc15400:	7f e3 fb 78 	mr      r3,r31                                 
ffc15404:	54 84 d9 7e 	rlwinm  r4,r4,27,5,31                          
ffc15408:	38 a0 00 80 	li      r5,128                                 
ffc1540c:	38 c0 00 06 	li      r6,6                                   
ffc15410:	48 00 29 e1 	bl      ffc17df0 <_Thread_queue_Initialize>    
    STATES_WAITING_FOR_MESSAGE,                                       
    CORE_MESSAGE_QUEUE_STATUS_TIMEOUT                                 
  );                                                                  
                                                                      
  return true;                                                        
}                                                                     
ffc15414:	80 01 00 24 	lwz     r0,36(r1)                              
       THREAD_QUEUE_DISCIPLINE_PRIORITY : THREAD_QUEUE_DISCIPLINE_FIFO,
    STATES_WAITING_FOR_MESSAGE,                                       
    CORE_MESSAGE_QUEUE_STATUS_TIMEOUT                                 
  );                                                                  
                                                                      
  return true;                                                        
ffc15418:	3b c0 00 01 	li      r30,1                                  
}                                                                     
ffc1541c:	83 81 00 10 	lwz     r28,16(r1)                             
ffc15420:	7c 08 03 a6 	mtlr    r0                                     
ffc15424:	7f c3 f3 78 	mr      r3,r30                                 
ffc15428:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc1542c:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc15430:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc15434:	38 21 00 20 	addi    r1,r1,32                               
ffc15438:	4e 80 00 20 	blr                                            
                                                                      

ffc09ea4 <_CORE_mutex_Seize>: Objects_Id _id, bool _wait, Watchdog_Interval _timeout, ISR_Level _level ) {
ffc09ea4:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc09ea8:	7c 08 02 a6 	mflr    r0                                     
ffc09eac:	93 c1 00 20 	stw     r30,32(r1)                             
  _CORE_mutex_Seize_body( _the_mutex, _id, _wait, _timeout, _level ); 
ffc09eb0:	3f c0 00 00 	lis     r30,0                                  
  Objects_Id           _id,                                           
  bool                 _wait,                                         
  Watchdog_Interval    _timeout,                                      
  ISR_Level            _level                                         
)                                                                     
{                                                                     
ffc09eb4:	90 01 00 2c 	stw     r0,44(r1)                              
  _CORE_mutex_Seize_body( _the_mutex, _id, _wait, _timeout, _level ); 
ffc09eb8:	80 1e 27 2c 	lwz     r0,10028(r30)                          
  Objects_Id           _id,                                           
  bool                 _wait,                                         
  Watchdog_Interval    _timeout,                                      
  ISR_Level            _level                                         
)                                                                     
{                                                                     
ffc09ebc:	93 61 00 14 	stw     r27,20(r1)                             
ffc09ec0:	7c db 33 78 	mr      r27,r6                                 
  _CORE_mutex_Seize_body( _the_mutex, _id, _wait, _timeout, _level ); 
ffc09ec4:	2f 80 00 00 	cmpwi   cr7,r0,0                               
  Objects_Id           _id,                                           
  bool                 _wait,                                         
  Watchdog_Interval    _timeout,                                      
  ISR_Level            _level                                         
)                                                                     
{                                                                     
ffc09ec8:	93 81 00 18 	stw     r28,24(r1)                             
ffc09ecc:	7c bc 2b 78 	mr      r28,r5                                 
ffc09ed0:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc09ed4:	7c 9d 23 78 	mr      r29,r4                                 
ffc09ed8:	93 e1 00 24 	stw     r31,36(r1)                             
ffc09edc:	7c 7f 1b 78 	mr      r31,r3                                 
ffc09ee0:	90 e1 00 08 	stw     r7,8(r1)                               
  _CORE_mutex_Seize_body( _the_mutex, _id, _wait, _timeout, _level ); 
ffc09ee4:	41 9e 00 0c 	beq-    cr7,ffc09ef0 <_CORE_mutex_Seize+0x4c>  
ffc09ee8:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc09eec:	40 9e 00 5c 	bne-    cr7,ffc09f48 <_CORE_mutex_Seize+0xa4>  <== ALWAYS TAKEN
ffc09ef0:	7f e3 fb 78 	mr      r3,r31                                 
ffc09ef4:	38 81 00 08 	addi    r4,r1,8                                
ffc09ef8:	48 00 59 65 	bl      ffc0f85c <_CORE_mutex_Seize_interrupt_trylock>
ffc09efc:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc09f00:	41 9e 00 24 	beq-    cr7,ffc09f24 <_CORE_mutex_Seize+0x80>  
ffc09f04:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
ffc09f08:	40 9e 00 60 	bne-    cr7,ffc09f68 <_CORE_mutex_Seize+0xc4>  
ffc09f0c:	80 01 00 08 	lwz     r0,8(r1)                               
ffc09f10:	7c 00 01 24 	mtmsr   r0                                     
ffc09f14:	3d 20 00 00 	lis     r9,0                                   
ffc09f18:	81 29 2d 70 	lwz     r9,11632(r9)                           
ffc09f1c:	38 00 00 01 	li      r0,1                                   
ffc09f20:	90 09 00 34 	stw     r0,52(r9)                              
}                                                                     
ffc09f24:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc09f28:	83 61 00 14 	lwz     r27,20(r1)                             
ffc09f2c:	7c 08 03 a6 	mtlr    r0                                     
ffc09f30:	83 81 00 18 	lwz     r28,24(r1)                             
ffc09f34:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc09f38:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc09f3c:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc09f40:	38 21 00 28 	addi    r1,r1,40                               
ffc09f44:	4e 80 00 20 	blr                                            
  bool                 _wait,                                         
  Watchdog_Interval    _timeout,                                      
  ISR_Level            _level                                         
)                                                                     
{                                                                     
  _CORE_mutex_Seize_body( _the_mutex, _id, _wait, _timeout, _level ); 
ffc09f48:	3d 20 00 00 	lis     r9,0                                   
ffc09f4c:	80 09 27 74 	lwz     r0,10100(r9)                           
ffc09f50:	2b 80 00 01 	cmplwi  cr7,r0,1                               
ffc09f54:	40 9d ff 9c 	ble+    cr7,ffc09ef0 <_CORE_mutex_Seize+0x4c>  
ffc09f58:	38 60 00 00 	li      r3,0                                   
ffc09f5c:	38 80 00 00 	li      r4,0                                   
ffc09f60:	38 a0 00 12 	li      r5,18                                  
ffc09f64:	48 00 08 a1 	bl      ffc0a804 <_Internal_error_Occurred>    
ffc09f68:	3d 20 00 00 	lis     r9,0                                   
ffc09f6c:	81 7e 27 2c 	lwz     r11,10028(r30)                         
ffc09f70:	81 29 2d 70 	lwz     r9,11632(r9)                           
                                                                      
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;
ffc09f74:	38 00 00 01 	li      r0,1                                   
ffc09f78:	90 1f 00 30 	stw     r0,48(r31)                             
ffc09f7c:	38 0b 00 01 	addi    r0,r11,1                               
ffc09f80:	93 e9 00 44 	stw     r31,68(r9)                             
ffc09f84:	93 a9 00 20 	stw     r29,32(r9)                             
ffc09f88:	90 1e 27 2c 	stw     r0,10028(r30)                          
ffc09f8c:	80 01 00 08 	lwz     r0,8(r1)                               
ffc09f90:	7c 00 01 24 	mtmsr   r0                                     
ffc09f94:	7f e3 fb 78 	mr      r3,r31                                 
ffc09f98:	7f 64 db 78 	mr      r4,r27                                 
ffc09f9c:	4b ff fe 45 	bl      ffc09de0 <_CORE_mutex_Seize_interrupt_blocking>
}                                                                     
ffc09fa0:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc09fa4:	83 61 00 14 	lwz     r27,20(r1)                             
ffc09fa8:	7c 08 03 a6 	mtlr    r0                                     
ffc09fac:	83 81 00 18 	lwz     r28,24(r1)                             
ffc09fb0:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc09fb4:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc09fb8:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc09fbc:	38 21 00 28 	addi    r1,r1,40                               
ffc09fc0:	4e 80 00 20 	blr                                            
                                                                      

ffc0f85c <_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 ) {
ffc0f85c:	94 21 ff f8 	stwu    r1,-8(r1)                              
ffc0f860:	7c 08 02 a6 	mflr    r0                                     
{                                                                     
  Thread_Control   *executing;                                        
                                                                      
  /* disabled when you get here */                                    
                                                                      
  executing = _Thread_Executing;                                      
ffc0f864:	3d 60 00 00 	lis     r11,0                                  
ffc0f868:	90 01 00 0c 	stw     r0,12(r1)                              
ffc0f86c:	7c 69 1b 78 	mr      r9,r3                                  
  executing->Wait.return_code = CORE_MUTEX_STATUS_SUCCESSFUL;         
  if ( !_CORE_mutex_Is_locked( the_mutex ) ) {                        
ffc0f870:	80 03 00 50 	lwz     r0,80(r3)                              
{                                                                     
  Thread_Control   *executing;                                        
                                                                      
  /* disabled when you get here */                                    
                                                                      
  executing = _Thread_Executing;                                      
ffc0f874:	81 6b 2d 70 	lwz     r11,11632(r11)                         
  executing->Wait.return_code = CORE_MUTEX_STATUS_SUCCESSFUL;         
  if ( !_CORE_mutex_Is_locked( the_mutex ) ) {                        
ffc0f878:	2f 80 00 00 	cmpwi   cr7,r0,0                               
  Thread_Control   *executing;                                        
                                                                      
  /* disabled when you get here */                                    
                                                                      
  executing = _Thread_Executing;                                      
  executing->Wait.return_code = CORE_MUTEX_STATUS_SUCCESSFUL;         
ffc0f87c:	38 00 00 00 	li      r0,0                                   
ffc0f880:	90 0b 00 34 	stw     r0,52(r11)                             
  if ( !_CORE_mutex_Is_locked( the_mutex ) ) {                        
ffc0f884:	41 9e 00 4c 	beq-    cr7,ffc0f8d0 <_CORE_mutex_Seize_interrupt_trylock+0x74>
  return _CORE_mutex_Seize_interrupt_trylock_body( the_mutex, level_p );
}                                                                     
ffc0f888:	81 43 00 48 	lwz     r10,72(r3)                             
    the_mutex->lock       = CORE_MUTEX_LOCKED;                        
    the_mutex->holder     = executing;                                
    the_mutex->holder_id  = executing->Object.id;                     
    the_mutex->nest_count = 1;                                        
ffc0f88c:	39 00 00 01 	li      r8,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;                     
ffc0f890:	80 eb 00 08 	lwz     r7,8(r11)                              
    the_mutex->nest_count = 1;                                        
    if ( _CORE_mutex_Is_inherit_priority( &the_mutex->Attributes ) || 
ffc0f894:	2f 8a 00 02 	cmpwi   cr7,r10,2                              
  /* 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;                        
ffc0f898:	90 03 00 50 	stw     r0,80(r3)                              
    the_mutex->holder     = executing;                                
ffc0f89c:	91 63 00 5c 	stw     r11,92(r3)                             
    the_mutex->holder_id  = executing->Object.id;                     
ffc0f8a0:	90 e3 00 60 	stw     r7,96(r3)                              
    the_mutex->nest_count = 1;                                        
ffc0f8a4:	91 03 00 54 	stw     r8,84(r3)                              
    if ( _CORE_mutex_Is_inherit_priority( &the_mutex->Attributes ) || 
ffc0f8a8:	41 9e 00 60 	beq-    cr7,ffc0f908 <_CORE_mutex_Seize_interrupt_trylock+0xac>
ffc0f8ac:	2f 8a 00 03 	cmpwi   cr7,r10,3                              
ffc0f8b0:	41 9e 00 68 	beq-    cr7,ffc0f918 <_CORE_mutex_Seize_interrupt_trylock+0xbc>
ffc0f8b4:	80 04 00 00 	lwz     r0,0(r4)                               
ffc0f8b8:	7c 00 01 24 	mtmsr   r0                                     
      executing->resource_count++;                                    
    }                                                                 
                                                                      
    if ( !_CORE_mutex_Is_priority_ceiling( &the_mutex->Attributes ) ) {
      _ISR_Enable( *level_p );                                        
      return 0;                                                       
ffc0f8bc:	38 60 00 00 	li      r3,0                                   
ffc0f8c0:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc0f8c4:	38 21 00 08 	addi    r1,r1,8                                
ffc0f8c8:	7c 08 03 a6 	mtlr    r0                                     
ffc0f8cc:	4e 80 00 20 	blr                                            
  /*                                                                  
   *  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 ) ) {                  
ffc0f8d0:	80 03 00 5c 	lwz     r0,92(r3)                              
                                                                      
  /*                                                                  
   *  The mutex is not available and the caller must deal with the possibility
   *  of blocking.                                                    
   */                                                                 
  return 1;                                                           
ffc0f8d4:	38 60 00 01 	li      r3,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 ) ) {                  
ffc0f8d8:	7f 8b 00 00 	cmpw    cr7,r11,r0                             
ffc0f8dc:	40 9e ff e4 	bne+    cr7,ffc0f8c0 <_CORE_mutex_Seize_interrupt_trylock+0x64>
    switch ( the_mutex->Attributes.lock_nesting_behavior ) {          
ffc0f8e0:	80 09 00 40 	lwz     r0,64(r9)                              
ffc0f8e4:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0f8e8:	40 9e 00 84 	bne-    cr7,ffc0f96c <_CORE_mutex_Seize_interrupt_trylock+0x110>
      case CORE_MUTEX_NESTING_ACQUIRES:                               
        the_mutex->nest_count++;                                      
ffc0f8ec:	81 69 00 54 	lwz     r11,84(r9)                             
ffc0f8f0:	38 0b 00 01 	addi    r0,r11,1                               
ffc0f8f4:	90 09 00 54 	stw     r0,84(r9)                              
ffc0f8f8:	80 04 00 00 	lwz     r0,0(r4)                               
ffc0f8fc:	7c 00 01 24 	mtmsr   r0                                     
        _ISR_Enable( *level_p );                                      
        return 0;                                                     
ffc0f900:	38 60 00 00 	li      r3,0                                   
ffc0f904:	4b ff ff bc 	b       ffc0f8c0 <_CORE_mutex_Seize_interrupt_trylock+0x64>
       _Chain_Prepend_unprotected( &executing->lock_mutex,            
                                   &the_mutex->queue.lock_queue );    
       the_mutex->queue.priority_before = executing->current_priority;
#endif                                                                
                                                                      
      executing->resource_count++;                                    
ffc0f908:	81 2b 00 1c 	lwz     r9,28(r11)                             
ffc0f90c:	38 09 00 01 	addi    r0,r9,1                                
ffc0f910:	90 0b 00 1c 	stw     r0,28(r11)                             
ffc0f914:	4b ff ff a0 	b       ffc0f8b4 <_CORE_mutex_Seize_interrupt_trylock+0x58>
       */                                                             
    {                                                                 
      Priority_Control  ceiling;                                      
      Priority_Control  current;                                      
                                                                      
      ceiling = the_mutex->Attributes.priority_ceiling;               
ffc0f918:	80 e3 00 4c 	lwz     r7,76(r3)                              
      current = executing->current_priority;                          
ffc0f91c:	81 4b 00 14 	lwz     r10,20(r11)                            
       _Chain_Prepend_unprotected( &executing->lock_mutex,            
                                   &the_mutex->queue.lock_queue );    
       the_mutex->queue.priority_before = executing->current_priority;
#endif                                                                
                                                                      
      executing->resource_count++;                                    
ffc0f920:	80 cb 00 1c 	lwz     r6,28(r11)                             
      Priority_Control  ceiling;                                      
      Priority_Control  current;                                      
                                                                      
      ceiling = the_mutex->Attributes.priority_ceiling;               
      current = executing->current_priority;                          
      if ( current == ceiling ) {                                     
ffc0f924:	7f 87 50 00 	cmpw    cr7,r7,r10                             
       _Chain_Prepend_unprotected( &executing->lock_mutex,            
                                   &the_mutex->queue.lock_queue );    
       the_mutex->queue.priority_before = executing->current_priority;
#endif                                                                
                                                                      
      executing->resource_count++;                                    
ffc0f928:	38 a6 00 01 	addi    r5,r6,1                                
ffc0f92c:	90 ab 00 1c 	stw     r5,28(r11)                             
      Priority_Control  ceiling;                                      
      Priority_Control  current;                                      
                                                                      
      ceiling = the_mutex->Attributes.priority_ceiling;               
      current = executing->current_priority;                          
      if ( current == ceiling ) {                                     
ffc0f930:	41 9e 00 90 	beq-    cr7,ffc0f9c0 <_CORE_mutex_Seize_interrupt_trylock+0x164>
        _ISR_Enable( *level_p );                                      
        return 0;                                                     
      }                                                               
                                                                      
      if ( current > ceiling ) {                                      
ffc0f934:	7f 87 50 40 	cmplw   cr7,r7,r10                             
ffc0f938:	41 9c 00 54 	blt-    cr7,ffc0f98c <_CORE_mutex_Seize_interrupt_trylock+0x130>
        );                                                            
        _Thread_Enable_dispatch();                                    
        return 0;                                                     
      }                                                               
      /* if ( current < ceiling ) */ {                                
        executing->Wait.return_code = CORE_MUTEX_STATUS_CEILING_VIOLATED;
ffc0f93c:	39 40 00 06 	li      r10,6                                  
ffc0f940:	91 4b 00 34 	stw     r10,52(r11)                            
        the_mutex->lock       = CORE_MUTEX_UNLOCKED;                  
ffc0f944:	91 03 00 50 	stw     r8,80(r3)                              
        the_mutex->nest_count = 0;     /* undo locking above */       
ffc0f948:	90 03 00 54 	stw     r0,84(r3)                              
        executing->resource_count--;   /* undo locking above */       
ffc0f94c:	90 cb 00 1c 	stw     r6,28(r11)                             
ffc0f950:	80 04 00 00 	lwz     r0,0(r4)                               
ffc0f954:	7c 00 01 24 	mtmsr   r0                                     
ffc0f958:	80 01 00 0c 	lwz     r0,12(r1)                              
        _ISR_Enable( *level_p );                                      
        return 0;                                                     
ffc0f95c:	38 60 00 00 	li      r3,0                                   
ffc0f960:	38 21 00 08 	addi    r1,r1,8                                
ffc0f964:	7c 08 03 a6 	mtlr    r0                                     
ffc0f968:	4e 80 00 20 	blr                                            
   *  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 ) ) {                  
    switch ( the_mutex->Attributes.lock_nesting_behavior ) {          
ffc0f96c:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0f970:	40 9e ff 50 	bne+    cr7,ffc0f8c0 <_CORE_mutex_Seize_interrupt_trylock+0x64><== 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;
ffc0f974:	38 00 00 02 	li      r0,2                                   <== NOT EXECUTED
ffc0f978:	90 0b 00 34 	stw     r0,52(r11)                             <== NOT EXECUTED
ffc0f97c:	80 04 00 00 	lwz     r0,0(r4)                               <== NOT EXECUTED
ffc0f980:	7c 00 01 24 	mtmsr   r0                                     <== NOT EXECUTED
        _ISR_Enable( *level_p );                                      
        return 0;                                                     
ffc0f984:	38 60 00 00 	li      r3,0                                   <== NOT EXECUTED
ffc0f988:	4b ff ff 38 	b       ffc0f8c0 <_CORE_mutex_Seize_interrupt_trylock+0x64><== NOT EXECUTED
	rtems_fatal_error_occurred( 99 );                                    
      }                                                               
    }                                                                 
  #endif                                                              
                                                                      
  _Thread_Dispatch_disable_level += 1;                                
ffc0f98c:	3d 60 00 00 	lis     r11,0                                  
ffc0f990:	81 4b 27 2c 	lwz     r10,10028(r11)                         
ffc0f994:	38 0a 00 01 	addi    r0,r10,1                               
ffc0f998:	90 0b 27 2c 	stw     r0,10028(r11)                          
ffc0f99c:	80 04 00 00 	lwz     r0,0(r4)                               
ffc0f9a0:	7c 00 01 24 	mtmsr   r0                                     
      }                                                               
                                                                      
      if ( current > ceiling ) {                                      
        _Thread_Disable_dispatch();                                   
        _ISR_Enable( *level_p );                                      
        _Thread_Change_priority(                                      
ffc0f9a4:	80 63 00 5c 	lwz     r3,92(r3)                              
ffc0f9a8:	38 a0 00 00 	li      r5,0                                   
ffc0f9ac:	80 89 00 4c 	lwz     r4,76(r9)                              
ffc0f9b0:	4b ff b9 49 	bl      ffc0b2f8 <_Thread_Change_priority>     
          the_mutex->holder,                                          
          the_mutex->Attributes.priority_ceiling,                     
         false                                                        
        );                                                            
        _Thread_Enable_dispatch();                                    
ffc0f9b4:	4b ff c0 19 	bl      ffc0b9cc <_Thread_Enable_dispatch>     
        return 0;                                                     
ffc0f9b8:	38 60 00 00 	li      r3,0                                   
ffc0f9bc:	4b ff ff 04 	b       ffc0f8c0 <_CORE_mutex_Seize_interrupt_trylock+0x64>
ffc0f9c0:	80 04 00 00 	lwz     r0,0(r4)                               
ffc0f9c4:	7c 00 01 24 	mtmsr   r0                                     
                                                                      
      ceiling = the_mutex->Attributes.priority_ceiling;               
      current = executing->current_priority;                          
      if ( current == ceiling ) {                                     
        _ISR_Enable( *level_p );                                      
        return 0;                                                     
ffc0f9c8:	38 60 00 00 	li      r3,0                                   
ffc0f9cc:	4b ff fe f4 	b       ffc0f8c0 <_CORE_mutex_Seize_interrupt_trylock+0x64>
                                                                      

ffc0a184 <_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 ) {
ffc0a184:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc0a188:	7c 08 02 a6 	mflr    r0                                     
ffc0a18c:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc0a190:	7c 7f 1b 78 	mr      r31,r3                                 
ffc0a194:	90 01 00 14 	stw     r0,20(r1)                              
  ISR_Level       level;                                              
  CORE_semaphore_Status status;                                       
                                                                      
  status = CORE_SEMAPHORE_STATUS_SUCCESSFUL;                          
                                                                      
  if ( (the_thread = _Thread_queue_Dequeue(&the_semaphore->Wait_queue)) ) {
ffc0a198:	48 00 1c 81 	bl      ffc0be18 <_Thread_queue_Dequeue>       
ffc0a19c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
{                                                                     
  Thread_Control *the_thread;                                         
  ISR_Level       level;                                              
  CORE_semaphore_Status status;                                       
                                                                      
  status = CORE_SEMAPHORE_STATUS_SUCCESSFUL;                          
ffc0a1a0:	38 60 00 00 	li      r3,0                                   
                                                                      
  if ( (the_thread = _Thread_queue_Dequeue(&the_semaphore->Wait_queue)) ) {
ffc0a1a4:	41 9e 00 18 	beq-    cr7,ffc0a1bc <_CORE_semaphore_Surrender+0x38>
        status = CORE_SEMAPHORE_MAXIMUM_COUNT_EXCEEDED;               
    _ISR_Enable( level );                                             
  }                                                                   
                                                                      
  return status;                                                      
}                                                                     
ffc0a1a8:	80 01 00 14 	lwz     r0,20(r1)                              
ffc0a1ac:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0a1b0:	38 21 00 10 	addi    r1,r1,16                               
ffc0a1b4:	7c 08 03 a6 	mtlr    r0                                     
ffc0a1b8:	4e 80 00 20 	blr                                            
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0a1bc:	7c 00 00 a6 	mfmsr   r0                                     
ffc0a1c0:	7d 30 42 a6 	mfsprg  r9,0                                   
ffc0a1c4:	7c 09 48 78 	andc    r9,r0,r9                               
ffc0a1c8:	7d 20 01 24 	mtmsr   r9                                     
      (*api_semaphore_mp_support) ( the_thread, id );                 
#endif                                                                
                                                                      
  } else {                                                            
    _ISR_Disable( level );                                            
      if ( the_semaphore->count < the_semaphore->Attributes.maximum_count )
ffc0a1cc:	81 3f 00 48 	lwz     r9,72(r31)                             
        the_semaphore->count += 1;                                    
      else                                                            
        status = CORE_SEMAPHORE_MAXIMUM_COUNT_EXCEEDED;               
ffc0a1d0:	38 60 00 04 	li      r3,4                                   
      (*api_semaphore_mp_support) ( the_thread, id );                 
#endif                                                                
                                                                      
  } else {                                                            
    _ISR_Disable( level );                                            
      if ( the_semaphore->count < the_semaphore->Attributes.maximum_count )
ffc0a1d4:	81 7f 00 40 	lwz     r11,64(r31)                            
ffc0a1d8:	7f 89 58 40 	cmplw   cr7,r9,r11                             
ffc0a1dc:	40 9c 00 10 	bge-    cr7,ffc0a1ec <_CORE_semaphore_Surrender+0x68><== NEVER TAKEN
        the_semaphore->count += 1;                                    
ffc0a1e0:	39 29 00 01 	addi    r9,r9,1                                
ffc0a1e4:	91 3f 00 48 	stw     r9,72(r31)                             
{                                                                     
  Thread_Control *the_thread;                                         
  ISR_Level       level;                                              
  CORE_semaphore_Status status;                                       
                                                                      
  status = CORE_SEMAPHORE_STATUS_SUCCESSFUL;                          
ffc0a1e8:	38 60 00 00 	li      r3,0                                   
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0a1ec:	7c 00 01 24 	mtmsr   r0                                     
        status = CORE_SEMAPHORE_MAXIMUM_COUNT_EXCEEDED;               
    _ISR_Enable( level );                                             
  }                                                                   
                                                                      
  return status;                                                      
}                                                                     
ffc0a1f0:	80 01 00 14 	lwz     r0,20(r1)                              
ffc0a1f4:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0a1f8:	38 21 00 10 	addi    r1,r1,16                               
ffc0a1fc:	7c 08 03 a6 	mtlr    r0                                     
ffc0a200:	4e 80 00 20 	blr                                            
                                                                      

ffc0a584 <_Chain_Get_with_empty_check>: bool _Chain_Get_with_empty_check( Chain_Control *chain, Chain_Node **node ) {
ffc0a584:	7c 69 1b 78 	mr      r9,r3                                  
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0a588:	7c 00 00 a6 	mfmsr   r0                                     
ffc0a58c:	7d 70 42 a6 	mfsprg  r11,0                                  
ffc0a590:	7c 0b 58 78 	andc    r11,r0,r11                             
ffc0a594:	7d 60 01 24 	mtmsr   r11                                    
  Chain_Control *the_chain,                                           
  Chain_Node **the_node                                               
)                                                                     
{                                                                     
  bool is_empty_now = true;                                           
  Chain_Node *first = the_chain->first;                               
ffc0a598:	81 63 00 00 	lwz     r11,0(r3)                              
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc0a59c:	38 63 00 04 	addi    r3,r3,4                                
)                                                                     
{                                                                     
  bool is_empty_now = true;                                           
  Chain_Node *first = the_chain->first;                               
                                                                      
  if ( first != _Chain_Tail( the_chain ) ) {                          
ffc0a5a0:	7f 8b 18 00 	cmpw    cr7,r11,r3                             
ffc0a5a4:	41 9e 00 28 	beq-    cr7,ffc0a5cc <_Chain_Get_with_empty_check+0x48><== NEVER TAKEN
    Chain_Node *new_first = first->next;                              
ffc0a5a8:	81 4b 00 00 	lwz     r10,0(r11)                             
    the_chain->first = new_first;                                     
    new_first->previous = _Chain_Head( the_chain );                   
                                                                      
    *the_node = first;                                                
                                                                      
    is_empty_now = new_first == _Chain_Tail( the_chain );             
ffc0a5ac:	7c 63 52 78 	xor     r3,r3,r10                              
  Chain_Node *first = the_chain->first;                               
                                                                      
  if ( first != _Chain_Tail( the_chain ) ) {                          
    Chain_Node *new_first = first->next;                              
                                                                      
    the_chain->first = new_first;                                     
ffc0a5b0:	91 49 00 00 	stw     r10,0(r9)                              
    new_first->previous = _Chain_Head( the_chain );                   
                                                                      
    *the_node = first;                                                
                                                                      
    is_empty_now = new_first == _Chain_Tail( the_chain );             
ffc0a5b4:	7c 63 00 34 	cntlzw  r3,r3                                  
                                                                      
  if ( first != _Chain_Tail( the_chain ) ) {                          
    Chain_Node *new_first = first->next;                              
                                                                      
    the_chain->first = new_first;                                     
    new_first->previous = _Chain_Head( the_chain );                   
ffc0a5b8:	91 2a 00 04 	stw     r9,4(r10)                              
                                                                      
    *the_node = first;                                                
                                                                      
    is_empty_now = new_first == _Chain_Tail( the_chain );             
ffc0a5bc:	54 63 d9 7e 	rlwinm  r3,r3,27,5,31                          
    Chain_Node *new_first = first->next;                              
                                                                      
    the_chain->first = new_first;                                     
    new_first->previous = _Chain_Head( the_chain );                   
                                                                      
    *the_node = first;                                                
ffc0a5c0:	91 64 00 00 	stw     r11,0(r4)                              
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0a5c4:	7c 00 01 24 	mtmsr   r0                                     
  _ISR_Disable( level );                                              
  is_empty_now = _Chain_Get_with_empty_check_unprotected( chain, node );
  _ISR_Enable( level );                                               
                                                                      
  return is_empty_now;                                                
}                                                                     
ffc0a5c8:	4e 80 00 20 	blr                                            
                                                                      
    is_empty_now = new_first == _Chain_Tail( the_chain );             
  } else                                                              
    *the_node = NULL;                                                 
ffc0a5cc:	39 20 00 00 	li      r9,0                                   <== NOT EXECUTED
ffc0a5d0:	91 24 00 00 	stw     r9,0(r4)                               <== 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;                                           
ffc0a5d4:	38 60 00 01 	li      r3,1                                   <== NOT EXECUTED
ffc0a5d8:	7c 00 01 24 	mtmsr   r0                                     <== NOT EXECUTED
ffc0a5dc:	4e 80 00 20 	blr                                            <== NOT EXECUTED
                                                                      

ffc0f808 <_Chain_Initialize>: count = number_nodes; current = _Chain_Head( the_chain ); the_chain->permanent_null = NULL; next = starting_address; while ( count-- ) {
ffc0f808:	2c 05 00 00 	cmpwi   r5,0                                   
  Chain_Node *current;                                                
  Chain_Node *next;                                                   
                                                                      
  count                     = number_nodes;                           
  current                   = _Chain_Head( the_chain );               
  the_chain->permanent_null = NULL;                                   
ffc0f80c:	38 00 00 00 	li      r0,0                                   
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Head(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) the_chain;                                   
ffc0f810:	7c 6b 1b 78 	mr      r11,r3                                 
ffc0f814:	90 03 00 04 	stw     r0,4(r3)                               
  next                      = starting_address;                       
  while ( count-- ) {                                                 
ffc0f818:	41 82 00 34 	beq-    ffc0f84c <_Chain_Initialize+0x44>      <== NEVER TAKEN
ffc0f81c:	39 45 ff ff 	addi    r10,r5,-1                              
  Chain_Node *next;                                                   
                                                                      
  count                     = number_nodes;                           
  current                   = _Chain_Head( the_chain );               
  the_chain->permanent_null = NULL;                                   
  next                      = starting_address;                       
ffc0f820:	7c a9 03 a6 	mtctr   r5                                     
ffc0f824:	7c 89 23 78 	mr      r9,r4                                  
ffc0f828:	48 00 00 0c 	b       ffc0f834 <_Chain_Initialize+0x2c>      
  while ( count-- ) {                                                 
ffc0f82c:	7d 2b 4b 78 	mr      r11,r9                                 
    current->next  = next;                                            
    next->previous = current;                                         
    current        = next;                                            
    next           = (Chain_Node *)                                   
ffc0f830:	7c 09 03 78 	mr      r9,r0                                  
  count                     = number_nodes;                           
  current                   = _Chain_Head( the_chain );               
  the_chain->permanent_null = NULL;                                   
  next                      = starting_address;                       
  while ( count-- ) {                                                 
    current->next  = next;                                            
ffc0f834:	91 2b 00 00 	stw     r9,0(r11)                              
 *    node_size        - size of node in bytes                        
 *                                                                    
 *  Output parameters:  NONE                                          
 */                                                                   
                                                                      
void _Chain_Initialize(                                               
ffc0f838:	7c 09 32 14 	add     r0,r9,r6                               
  current                   = _Chain_Head( the_chain );               
  the_chain->permanent_null = NULL;                                   
  next                      = starting_address;                       
  while ( count-- ) {                                                 
    current->next  = next;                                            
    next->previous = current;                                         
ffc0f83c:	91 69 00 04 	stw     r11,4(r9)                              
                                                                      
  count                     = number_nodes;                           
  current                   = _Chain_Head( the_chain );               
  the_chain->permanent_null = NULL;                                   
  next                      = starting_address;                       
  while ( count-- ) {                                                 
ffc0f840:	42 00 ff ec 	bdnz+   ffc0f82c <_Chain_Initialize+0x24>      
 *    node_size        - size of node in bytes                        
 *                                                                    
 *  Output parameters:  NONE                                          
 */                                                                   
                                                                      
void _Chain_Initialize(                                               
ffc0f844:	7d 66 51 d6 	mullw   r11,r6,r10                             
                                                                      
  count                     = number_nodes;                           
  current                   = _Chain_Head( the_chain );               
  the_chain->permanent_null = NULL;                                   
  next                      = starting_address;                       
  while ( count-- ) {                                                 
ffc0f848:	7d 64 5a 14 	add     r11,r4,r11                             
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc0f84c:	38 03 00 04 	addi    r0,r3,4                                
    next->previous = current;                                         
    current        = next;                                            
    next           = (Chain_Node *)                                   
                        _Addresses_Add_offset( (void *) next, node_size );
  }                                                                   
  current->next    = _Chain_Tail( the_chain );                        
ffc0f850:	90 0b 00 00 	stw     r0,0(r11)                              
  the_chain->last  = current;                                         
ffc0f854:	91 63 00 08 	stw     r11,8(r3)                              
}                                                                     
ffc0f858:	4e 80 00 20 	blr                                            
                                                                      

ffc0896c <_Event_Surrender>: */ void _Event_Surrender( Thread_Control *the_thread ) {
ffc0896c:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc08970:	7c 08 02 a6 	mflr    r0                                     
ffc08974:	90 01 00 14 	stw     r0,20(r1)                              
ffc08978:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc0897c:	7c 7f 1b 78 	mr      r31,r3                                 
  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 ];               
ffc08980:	81 63 01 40 	lwz     r11,320(r3)                            
                                                                      
  option_set = (rtems_option) the_thread->Wait.option;                
ffc08984:	80 c3 00 30 	lwz     r6,48(r3)                              
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc08988:	7d 40 00 a6 	mfmsr   r10                                    
ffc0898c:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc08990:	7d 40 00 78 	andc    r0,r10,r0                              
ffc08994:	7c 00 01 24 	mtmsr   r0                                     
                                                                      
  _ISR_Disable( level );                                              
  pending_events  = api->pending_events;                              
ffc08998:	81 2b 00 00 	lwz     r9,0(r11)                              
  event_condition = (rtems_event_set) the_thread->Wait.count;         
ffc0899c:	80 03 00 24 	lwz     r0,36(r3)                              
  seized_events = _Event_sets_Get( pending_events, event_condition ); 
                                                                      
  /*                                                                  
   *  No events were seized in this operation                         
   */                                                                 
  if ( _Event_sets_Is_empty( seized_events ) ) {                      
ffc089a0:	7c 08 48 39 	and.    r8,r0,r9                               
ffc089a4:	41 82 00 b0 	beq-    ffc08a54 <_Event_Surrender+0xe8>       
                                                                      
  /*                                                                  
   *  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() &&                                       
ffc089a8:	3c e0 00 00 	lis     r7,0                                   
ffc089ac:	38 e7 2d 64 	addi    r7,r7,11620                            
ffc089b0:	80 a7 00 08 	lwz     r5,8(r7)                               
ffc089b4:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc089b8:	41 9e 00 10 	beq-    cr7,ffc089c8 <_Event_Surrender+0x5c>   
ffc089bc:	80 e7 00 0c 	lwz     r7,12(r7)                              
ffc089c0:	7f 83 38 00 	cmpw    cr7,r3,r7                              
ffc089c4:	41 9e 00 d0 	beq-    cr7,ffc08a94 <_Event_Surrender+0x128>  
 */                                                                   
RTEMS_INLINE_ROUTINE bool _States_Is_waiting_for_event (              
  States_Control the_states                                           
)                                                                     
{                                                                     
   return (the_states & STATES_WAITING_FOR_EVENT);                    
ffc089c8:	80 ff 00 10 	lwz     r7,16(r31)                             
  }                                                                   
                                                                      
  /*                                                                  
   *  Otherwise, this is a normal send to another thread              
   */                                                                 
  if ( _States_Is_waiting_for_event( the_thread->current_state ) ) {  
ffc089cc:	70 e5 01 00 	andi.   r5,r7,256                              
ffc089d0:	41 82 00 6c 	beq-    ffc08a3c <_Event_Surrender+0xd0>       
    if ( seized_events == event_condition || _Options_Is_any( option_set ) ) {
ffc089d4:	7f 80 40 00 	cmpw    cr7,r0,r8                              
ffc089d8:	41 9e 00 0c 	beq-    cr7,ffc089e4 <_Event_Surrender+0x78>   
ffc089dc:	70 c0 00 02 	andi.   r0,r6,2                                
ffc089e0:	41 82 00 5c 	beq-    ffc08a3c <_Event_Surrender+0xd0>       <== NEVER TAKEN
      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;
ffc089e4:	80 ff 00 28 	lwz     r7,40(r31)                             
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) );                            
ffc089e8:	7d 29 40 78 	andc    r9,r9,r8                               
   *  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 );
      the_thread->Wait.count = 0;                                     
ffc089ec:	38 00 00 00 	li      r0,0                                   
  /*                                                                  
   *  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 );
ffc089f0:	91 2b 00 00 	stw     r9,0(r11)                              
      the_thread->Wait.count = 0;                                     
ffc089f4:	90 1f 00 24 	stw     r0,36(r31)                             
      *(rtems_event_set *)the_thread->Wait.return_argument = seized_events;
ffc089f8:	91 07 00 00 	stw     r8,0(r7)                               
                                                                      
static inline void ppc_interrupt_flash( uint32_t level )              
{                                                                     
  uint32_t current_level;                                             
                                                                      
  asm volatile (                                                      
ffc089fc:	7c 00 00 a6 	mfmsr   r0                                     
ffc08a00:	7d 40 01 24 	mtmsr   r10                                    
ffc08a04:	7c 00 01 24 	mtmsr   r0                                     
                                                                      
      _ISR_Flash( level );                                            
                                                                      
      if ( !_Watchdog_Is_active( &the_thread->Timer ) ) {             
ffc08a08:	80 1f 00 50 	lwz     r0,80(r31)                             
ffc08a0c:	2f 80 00 02 	cmpwi   cr7,r0,2                               
ffc08a10:	41 9e 00 5c 	beq-    cr7,ffc08a6c <_Event_Surrender+0x100>  
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc08a14:	7d 40 01 24 	mtmsr   r10                                    
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Unblock (                           
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
  _Thread_Clear_state( the_thread, STATES_BLOCKED );                  
ffc08a18:	3c 80 10 03 	lis     r4,4099                                
ffc08a1c:	7f e3 fb 78 	mr      r3,r31                                 
ffc08a20:	60 84 ff f8 	ori     r4,r4,65528                            
ffc08a24:	48 00 2a c9 	bl      ffc0b4ec <_Thread_Clear_state>         
      }                                                               
      return;                                                         
    }                                                                 
  }                                                                   
  _ISR_Enable( level );                                               
}                                                                     
ffc08a28:	80 01 00 14 	lwz     r0,20(r1)                              
ffc08a2c:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc08a30:	38 21 00 10 	addi    r1,r1,16                               
ffc08a34:	7c 08 03 a6 	mtlr    r0                                     
ffc08a38:	4e 80 00 20 	blr                                            
ffc08a3c:	7d 40 01 24 	mtmsr   r10                                    
ffc08a40:	80 01 00 14 	lwz     r0,20(r1)                              
ffc08a44:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc08a48:	38 21 00 10 	addi    r1,r1,16                               
ffc08a4c:	7c 08 03 a6 	mtlr    r0                                     
ffc08a50:	4e 80 00 20 	blr                                            
ffc08a54:	7d 40 01 24 	mtmsr   r10                                    
ffc08a58:	80 01 00 14 	lwz     r0,20(r1)                              
ffc08a5c:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc08a60:	38 21 00 10 	addi    r1,r1,16                               
ffc08a64:	7c 08 03 a6 	mtlr    r0                                     
ffc08a68:	4e 80 00 20 	blr                                            
RTEMS_INLINE_ROUTINE void _Watchdog_Deactivate(                       
  Watchdog_Control *the_watchdog                                      
)                                                                     
{                                                                     
                                                                      
  the_watchdog->state = WATCHDOG_REMOVE_IT;                           
ffc08a6c:	38 00 00 03 	li      r0,3                                   
ffc08a70:	90 1f 00 50 	stw     r0,80(r31)                             
ffc08a74:	7d 40 01 24 	mtmsr   r10                                    
        _ISR_Enable( level );                                         
        _Thread_Unblock( the_thread );                                
      } else {                                                        
        _Watchdog_Deactivate( &the_thread->Timer );                   
        _ISR_Enable( level );                                         
        (void) _Watchdog_Remove( &the_thread->Timer );                
ffc08a78:	38 7f 00 48 	addi    r3,r31,72                              
ffc08a7c:	48 00 47 cd 	bl      ffc0d248 <_Watchdog_Remove>            
ffc08a80:	3c 80 10 03 	lis     r4,4099                                
ffc08a84:	7f e3 fb 78 	mr      r3,r31                                 
ffc08a88:	60 84 ff f8 	ori     r4,r4,65528                            
ffc08a8c:	48 00 2a 61 	bl      ffc0b4ec <_Thread_Clear_state>         
ffc08a90:	4b ff ff b0 	b       ffc08a40 <_Event_Surrender+0xd4>       
   *  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) ||   
ffc08a94:	3c e0 00 00 	lis     r7,0                                   
ffc08a98:	80 a7 27 7c 	lwz     r5,10108(r7)                           
  /*                                                                  
   *  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 ) &&                          
ffc08a9c:	2f 85 00 02 	cmpwi   cr7,r5,2                               
ffc08aa0:	41 9e 00 10 	beq-    cr7,ffc08ab0 <_Event_Surrender+0x144>  <== NEVER TAKEN
       ((_Event_Sync_state == THREAD_BLOCKING_OPERATION_TIMEOUT) ||   
        (_Event_Sync_state == THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED)) ) {
ffc08aa4:	80 a7 27 7c 	lwz     r5,10108(r7)                           
   *  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) ||   
ffc08aa8:	2f 85 00 01 	cmpwi   cr7,r5,1                               
ffc08aac:	40 9e ff 1c 	bne+    cr7,ffc089c8 <_Event_Surrender+0x5c>   
        (_Event_Sync_state == THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED)) ) {
    if ( seized_events == event_condition || _Options_Is_any(option_set) ) {
ffc08ab0:	7f 80 40 00 	cmpw    cr7,r0,r8                              
ffc08ab4:	41 9e 00 0c 	beq-    cr7,ffc08ac0 <_Event_Surrender+0x154>  
ffc08ab8:	70 c0 00 02 	andi.   r0,r6,2                                
ffc08abc:	41 82 00 24 	beq-    ffc08ae0 <_Event_Surrender+0x174>      <== NEVER TAKEN
      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;
ffc08ac0:	80 df 00 28 	lwz     r6,40(r31)                             
       _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 );
      the_thread->Wait.count = 0;                                     
ffc08ac4:	38 00 00 00 	li      r0,0                                   
ffc08ac8:	7d 29 40 78 	andc    r9,r9,r8                               
  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 );
ffc08acc:	91 2b 00 00 	stw     r9,0(r11)                              
      the_thread->Wait.count = 0;                                     
ffc08ad0:	90 1f 00 24 	stw     r0,36(r31)                             
      *(rtems_event_set *)the_thread->Wait.return_argument = seized_events;
      _Event_Sync_state = THREAD_BLOCKING_OPERATION_SATISFIED;        
ffc08ad4:	38 00 00 03 	li      r0,3                                   
       ((_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 );
      the_thread->Wait.count = 0;                                     
      *(rtems_event_set *)the_thread->Wait.return_argument = seized_events;
ffc08ad8:	91 06 00 00 	stw     r8,0(r6)                               
      _Event_Sync_state = THREAD_BLOCKING_OPERATION_SATISFIED;        
ffc08adc:	90 07 27 7c 	stw     r0,10108(r7)                           
ffc08ae0:	7d 40 01 24 	mtmsr   r10                                    
ffc08ae4:	4b ff ff 5c 	b       ffc08a40 <_Event_Surrender+0xd4>       
                                                                      

ffc08ae8 <_Event_Timeout>: void _Event_Timeout( Objects_Id id, void *ignored ) {
ffc08ae8:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc08aec:	7c 08 02 a6 	mflr    r0                                     
  Thread_Control    *the_thread;                                      
  Objects_Locations  location;                                        
  ISR_Level          level;                                           
                                                                      
  the_thread = _Thread_Get( id, &location );                          
ffc08af0:	38 81 00 08 	addi    r4,r1,8                                
                                                                      
void _Event_Timeout(                                                  
  Objects_Id  id,                                                     
  void       *ignored                                                 
)                                                                     
{                                                                     
ffc08af4:	90 01 00 1c 	stw     r0,28(r1)                              
  Thread_Control    *the_thread;                                      
  Objects_Locations  location;                                        
  ISR_Level          level;                                           
                                                                      
  the_thread = _Thread_Get( id, &location );                          
ffc08af8:	48 00 2e f5 	bl      ffc0b9ec <_Thread_Get>                 
  switch ( location ) {                                               
ffc08afc:	80 01 00 08 	lwz     r0,8(r1)                               
ffc08b00:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc08b04:	40 9e 00 50 	bne-    cr7,ffc08b54 <_Event_Timeout+0x6c>     <== NEVER TAKEN
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc08b08:	7d 20 00 a6 	mfmsr   r9                                     
ffc08b0c:	7d 70 42 a6 	mfsprg  r11,0                                  
ffc08b10:	7d 2b 58 78 	andc    r11,r9,r11                             
ffc08b14:	7d 60 01 24 	mtmsr   r11                                    
                                                                      
RTEMS_INLINE_ROUTINE bool _Thread_Is_executing (                      
  const Thread_Control *the_thread                                    
)                                                                     
{                                                                     
  return ( the_thread == _Thread_Executing );                         
ffc08b18:	3d 60 00 00 	lis     r11,0                                  
            _ISR_Enable( level );                                     
            return;                                                   
          }                                                           
        #endif                                                        
                                                                      
        the_thread->Wait.count = 0;                                   
ffc08b1c:	90 03 00 24 	stw     r0,36(r3)                              
        if ( _Thread_Is_executing( the_thread ) ) {                   
ffc08b20:	81 6b 2d 70 	lwz     r11,11632(r11)                         
ffc08b24:	7f 83 58 00 	cmpw    cr7,r3,r11                             
ffc08b28:	41 9e 00 3c 	beq-    cr7,ffc08b64 <_Event_Timeout+0x7c>     
          if ( _Event_Sync_state == THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED )
            _Event_Sync_state = THREAD_BLOCKING_OPERATION_TIMEOUT;    
        }                                                             
                                                                      
        the_thread->Wait.return_code = RTEMS_TIMEOUT;                 
ffc08b2c:	38 00 00 06 	li      r0,6                                   
ffc08b30:	90 03 00 34 	stw     r0,52(r3)                              
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc08b34:	7d 20 01 24 	mtmsr   r9                                     
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Unblock (                           
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
  _Thread_Clear_state( the_thread, STATES_BLOCKED );                  
ffc08b38:	3c 80 10 03 	lis     r4,4099                                
ffc08b3c:	60 84 ff f8 	ori     r4,r4,65528                            
ffc08b40:	48 00 29 ad 	bl      ffc0b4ec <_Thread_Clear_state>         
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Unnest_dispatch( void )             
{                                                                     
  RTEMS_COMPILER_MEMORY_BARRIER();                                    
  _Thread_Dispatch_disable_level -= 1;                                
ffc08b44:	3d 20 00 00 	lis     r9,0                                   
ffc08b48:	81 69 27 2c 	lwz     r11,10028(r9)                          
ffc08b4c:	38 0b ff ff 	addi    r0,r11,-1                              
ffc08b50:	90 09 27 2c 	stw     r0,10028(r9)                           
    case OBJECTS_REMOTE:  /* impossible */                            
#endif                                                                
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
}                                                                     
ffc08b54:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc08b58:	38 21 00 18 	addi    r1,r1,24                               
ffc08b5c:	7c 08 03 a6 	mtlr    r0                                     
ffc08b60:	4e 80 00 20 	blr                                            
          }                                                           
        #endif                                                        
                                                                      
        the_thread->Wait.count = 0;                                   
        if ( _Thread_Is_executing( the_thread ) ) {                   
          if ( _Event_Sync_state == THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED )
ffc08b64:	3d 60 00 00 	lis     r11,0                                  
ffc08b68:	80 0b 27 7c 	lwz     r0,10108(r11)                          
ffc08b6c:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc08b70:	40 9e ff bc 	bne+    cr7,ffc08b2c <_Event_Timeout+0x44>     
            _Event_Sync_state = THREAD_BLOCKING_OPERATION_TIMEOUT;    
ffc08b74:	38 00 00 02 	li      r0,2                                   
ffc08b78:	90 0b 27 7c 	stw     r0,10108(r11)                          
ffc08b7c:	4b ff ff b0 	b       ffc08b2c <_Event_Timeout+0x44>         
                                                                      

ffc0fa74 <_Heap_Allocate_aligned_with_boundary>: Heap_Control *heap, uintptr_t alloc_size, uintptr_t alignment, uintptr_t boundary ) {
ffc0fa74:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc0fa78:	7c 08 02 a6 	mflr    r0                                     
ffc0fa7c:	7d 80 00 26 	mfcr    r12                                    
ffc0fa80:	7c 89 23 78 	mr      r9,r4                                  
ffc0fa84:	90 01 00 24 	stw     r0,36(r1)                              
  Heap_Statistics *const stats = &heap->stats;                        
  uintptr_t const block_size_floor = alloc_size + HEAP_BLOCK_HEADER_SIZE
ffc0fa88:	38 04 00 04 	addi    r0,r4,4                                
  Heap_Block *block = NULL;                                           
  uintptr_t alloc_begin = 0;                                          
  uint32_t search_count = 0;                                          
  bool search_again = false;                                          
                                                                      
  if ( block_size_floor < alloc_size ) {                              
ffc0fa8c:	7f 84 00 40 	cmplw   cr7,r4,r0                              
  Heap_Control *heap,                                                 
  uintptr_t alloc_size,                                               
  uintptr_t alignment,                                                
  uintptr_t boundary                                                  
)                                                                     
{                                                                     
ffc0fa90:	93 a1 00 14 	stw     r29,20(r1)                             
ffc0fa94:	7c 7d 1b 78 	mr      r29,r3                                 
ffc0fa98:	91 81 00 08 	stw     r12,8(r1)                              
ffc0fa9c:	93 61 00 0c 	stw     r27,12(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;                        
ffc0faa0:	81 83 00 10 	lwz     r12,16(r3)                             
  uint32_t search_count = 0;                                          
  bool search_again = false;                                          
                                                                      
  if ( block_size_floor < alloc_size ) {                              
    /* Integer overflow occured */                                    
    return NULL;                                                      
ffc0faa4:	38 60 00 00 	li      r3,0                                   
  Heap_Control *heap,                                                 
  uintptr_t alloc_size,                                               
  uintptr_t alignment,                                                
  uintptr_t boundary                                                  
)                                                                     
{                                                                     
ffc0faa8:	93 81 00 10 	stw     r28,16(r1)                             
ffc0faac:	93 c1 00 18 	stw     r30,24(r1)                             
ffc0fab0:	93 e1 00 1c 	stw     r31,28(r1)                             
  Heap_Block *block = NULL;                                           
  uintptr_t alloc_begin = 0;                                          
  uint32_t search_count = 0;                                          
  bool search_again = false;                                          
                                                                      
  if ( block_size_floor < alloc_size ) {                              
ffc0fab4:	41 9d 01 60 	bgt-    cr7,ffc0fc14 <_Heap_Allocate_aligned_with_boundary+0x1a0>
    /* Integer overflow occured */                                    
    return NULL;                                                      
  }                                                                   
                                                                      
  if ( boundary != 0 ) {                                              
ffc0fab8:	2e 06 00 00 	cmpwi   cr4,r6,0                               
ffc0fabc:	40 92 01 8c 	bne-    cr4,ffc0fc48 <_Heap_Allocate_aligned_with_boundary+0x1d4>
  if ( stats->max_search < search_count ) {                           
    stats->max_search = search_count;                                 
  }                                                                   
                                                                      
  return (void *) alloc_begin;                                        
}                                                                     
ffc0fac0:	80 9d 00 08 	lwz     r4,8(r29)                              
                                                                      
  do {                                                                
    Heap_Block *const free_list_tail = _Heap_Free_list_tail( heap );  
                                                                      
    block = _Heap_Free_list_first( heap );                            
    while ( block != free_list_tail ) {                               
ffc0fac4:	38 60 00 00 	li      r3,0                                   
ffc0fac8:	7f 9d 20 00 	cmpw    cr7,r29,r4                             
ffc0facc:	41 9e 01 48 	beq-    cr7,ffc0fc14 <_Heap_Allocate_aligned_with_boundary+0x1a0>
ffc0fad0:	3b c0 00 01 	li      r30,1                                  
       * 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 ) {                
        if ( alignment == 0 ) {                                       
ffc0fad4:	2c 05 00 00 	cmpwi   r5,0                                   
  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    
ffc0fad8:	3b 6c 00 07 	addi    r27,r12,7                              
    + HEAP_BLOCK_HEADER_SIZE + page_size - 1;                         
                                                                      
  uintptr_t alloc_end = block_end + HEAP_ALLOC_BONUS;                 
ffc0fadc:	23 89 00 04 	subfic  r28,r9,4                               
ffc0fae0:	48 00 00 24 	b       ffc0fb04 <_Heap_Allocate_aligned_with_boundary+0x90>
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Alloc_area_of_block(             
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block + HEAP_BLOCK_HEADER_SIZE;                  
ffc0fae4:	3b e4 00 08 	addi    r31,r4,8                               
      }                                                               
                                                                      
      /* Statistics */                                                
      ++search_count;                                                 
                                                                      
      if ( alloc_begin != 0 ) {                                       
ffc0fae8:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc0faec:	40 9e 00 ec 	bne-    cr7,ffc0fbd8 <_Heap_Allocate_aligned_with_boundary+0x164><== ALWAYS TAKEN
        break;                                                        
      }                                                               
                                                                      
      block = block->next;                                            
ffc0faf0:	80 84 00 08 	lwz     r4,8(r4)                               
ffc0faf4:	39 7e 00 01 	addi    r11,r30,1                              
                                                                      
  do {                                                                
    Heap_Block *const free_list_tail = _Heap_Free_list_tail( heap );  
                                                                      
    block = _Heap_Free_list_first( heap );                            
    while ( block != free_list_tail ) {                               
ffc0faf8:	7f 9d 20 00 	cmpw    cr7,r29,r4                             
ffc0fafc:	41 9e 01 44 	beq-    cr7,ffc0fc40 <_Heap_Allocate_aligned_with_boundary+0x1cc>
ffc0fb00:	7d 7e 5b 78 	mr      r30,r11                                
      /*                                                              
       * 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 ) {                
ffc0fb04:	81 64 00 04 	lwz     r11,4(r4)                              
ffc0fb08:	7f 80 58 40 	cmplw   cr7,r0,r11                             
ffc0fb0c:	40 bc ff e4 	bge-    cr7,ffc0faf0 <_Heap_Allocate_aligned_with_boundary+0x7c>
        if ( alignment == 0 ) {                                       
ffc0fb10:	41 a2 ff d4 	beq-    ffc0fae4 <_Heap_Allocate_aligned_with_boundary+0x70>
    - 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;                
ffc0fb14:	55 6b 00 3c 	rlwinm  r11,r11,0,0,30                         
  if ( stats->max_search < search_count ) {                           
    stats->max_search = search_count;                                 
  }                                                                   
                                                                      
  return (void *) alloc_begin;                                        
}                                                                     
ffc0fb18:	80 fd 00 14 	lwz     r7,20(r29)                             
  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;               
ffc0fb1c:	7d 64 5a 14 	add     r11,r4,r11                             
  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;                     
ffc0fb20:	7f fc 5a 14 	add     r31,r28,r11                            
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_down(                      
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return value - (value % alignment);                                 
ffc0fb24:	7f ff 2b 96 	divwu   r31,r31,r5                             
ffc0fb28:	7f ff 29 d6 	mullw   r31,r31,r5                             
  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;                         
ffc0fb2c:	7d 47 d8 50 	subf    r10,r7,r27                             
  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    
ffc0fb30:	7d 6a 5a 14 	add     r11,r10,r11                            
  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 ) {                          
ffc0fb34:	7f 8b f8 40 	cmplw   cr7,r11,r31                            
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Alloc_area_of_block(             
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block + HEAP_BLOCK_HEADER_SIZE;                  
ffc0fb38:	38 64 00 08 	addi    r3,r4,8                                
ffc0fb3c:	40 9c 00 0c 	bge-    cr7,ffc0fb48 <_Heap_Allocate_aligned_with_boundary+0xd4>
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_down(                      
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return value - (value % alignment);                                 
ffc0fb40:	7d 6b 2b 96 	divwu   r11,r11,r5                             
ffc0fb44:	7f eb 29 d6 	mullw   r31,r11,r5                             
  }                                                                   
                                                                      
  alloc_end = alloc_begin + alloc_size;                               
                                                                      
  /* Ensure boundary constaint */                                     
  if ( boundary != 0 ) {                                              
ffc0fb48:	41 92 00 60 	beq-    cr4,ffc0fba8 <_Heap_Allocate_aligned_with_boundary+0x134>
  /* 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;                               
ffc0fb4c:	7d 5f 4a 14 	add     r10,r31,r9                             
ffc0fb50:	7d 6a 33 96 	divwu   r11,r10,r6                             
ffc0fb54:	7d 6b 31 d6 	mullw   r11,r11,r6                             
  /* 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 ) {
ffc0fb58:	7f 9f 58 40 	cmplw   cr7,r31,r11                            
ffc0fb5c:	40 9c 00 4c 	bge-    cr7,ffc0fba8 <_Heap_Allocate_aligned_with_boundary+0x134>
ffc0fb60:	7f 8a 58 40 	cmplw   cr7,r10,r11                            
ffc0fb64:	40 9d 00 44 	ble-    cr7,ffc0fba8 <_Heap_Allocate_aligned_with_boundary+0x134>
                                                                      
  alloc_end = alloc_begin + alloc_size;                               
                                                                      
  /* Ensure boundary constaint */                                     
  if ( boundary != 0 ) {                                              
    uintptr_t const boundary_floor = alloc_begin_floor + alloc_size;  
ffc0fb68:	7d 03 4a 14 	add     r8,r3,r9                               
    uintptr_t boundary_line = _Heap_Align_down( alloc_end, boundary );
                                                                      
    while ( alloc_begin < boundary_line && boundary_line < alloc_end ) {
      if ( boundary_line < boundary_floor ) {                         
ffc0fb6c:	7f 88 58 40 	cmplw   cr7,r8,r11                             
ffc0fb70:	40 bd 00 10 	ble+    cr7,ffc0fb80 <_Heap_Allocate_aligned_with_boundary+0x10c>
ffc0fb74:	4b ff ff 7c 	b       ffc0faf0 <_Heap_Allocate_aligned_with_boundary+0x7c>
  /* 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 ) {
ffc0fb78:	40 99 00 30 	ble-    cr6,ffc0fba8 <_Heap_Allocate_aligned_with_boundary+0x134>
      if ( boundary_line < boundary_floor ) {                         
ffc0fb7c:	41 a5 ff 74 	bgt-    cr1,ffc0faf0 <_Heap_Allocate_aligned_with_boundary+0x7c><== NEVER TAKEN
        return 0;                                                     
      }                                                               
      alloc_begin = boundary_line - alloc_size;                       
ffc0fb80:	7f e9 58 50 	subf    r31,r9,r11                             
ffc0fb84:	7f ff 2b 96 	divwu   r31,r31,r5                             
ffc0fb88:	7f ff 29 d6 	mullw   r31,r31,r5                             
      alloc_begin = _Heap_Align_down( alloc_begin, alignment );       
      alloc_end = alloc_begin + alloc_size;                           
ffc0fb8c:	7d 5f 4a 14 	add     r10,r31,r9                             
ffc0fb90:	7d 6a 33 96 	divwu   r11,r10,r6                             
ffc0fb94:	7d 6b 31 d6 	mullw   r11,r11,r6                             
  /* 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 ) {
ffc0fb98:	7f 9f 58 40 	cmplw   cr7,r31,r11                            
ffc0fb9c:	7f 0a 58 40 	cmplw   cr6,r10,r11                            
      if ( boundary_line < boundary_floor ) {                         
ffc0fba0:	7c 88 58 40 	cmplw   cr1,r8,r11                             
  /* 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 ) {
ffc0fba4:	41 9c ff d4 	blt+    cr7,ffc0fb78 <_Heap_Allocate_aligned_with_boundary+0x104>
      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 ) {                           
ffc0fba8:	7f 83 f8 40 	cmplw   cr7,r3,r31                             
ffc0fbac:	41 bd ff 44 	bgt-    cr7,ffc0faf0 <_Heap_Allocate_aligned_with_boundary+0x7c>
ffc0fbb0:	7d 7f 63 96 	divwu   r11,r31,r12                            
ffc0fbb4:	7d 6b 61 d6 	mullw   r11,r11,r12                            
ffc0fbb8:	21 44 ff f8 	subfic  r10,r4,-8                              
    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;      
ffc0fbbc:	7d 6a 5a 14 	add     r11,r10,r11                            
                                                                      
    if ( free_size >= min_block_size || free_size == 0 ) {            
ffc0fbc0:	7f 87 58 40 	cmplw   cr7,r7,r11                             
ffc0fbc4:	40 bd ff 24 	ble-    cr7,ffc0fae8 <_Heap_Allocate_aligned_with_boundary+0x74>
ffc0fbc8:	2f 8b 00 00 	cmpwi   cr7,r11,0                              
ffc0fbcc:	40 be ff 24 	bne-    cr7,ffc0faf0 <_Heap_Allocate_aligned_with_boundary+0x7c>
      }                                                               
                                                                      
      /* Statistics */                                                
      ++search_count;                                                 
                                                                      
      if ( alloc_begin != 0 ) {                                       
ffc0fbd0:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc0fbd4:	41 9e ff 1c 	beq+    cr7,ffc0faf0 <_Heap_Allocate_aligned_with_boundary+0x7c><== NEVER TAKEN
    search_again = _Heap_Protection_free_delayed_blocks( heap, alloc_begin );
  } while ( search_again );                                           
                                                                      
  if ( alloc_begin != 0 ) {                                           
    /* Statistics */                                                  
    ++stats->allocs;                                                  
ffc0fbd8:	81 7d 00 48 	lwz     r11,72(r29)                            
    stats->searches += search_count;                                  
                                                                      
    block = _Heap_Block_allocate( heap, block, alloc_begin, alloc_size );
ffc0fbdc:	7f a3 eb 78 	mr      r3,r29                                 
  } while ( search_again );                                           
                                                                      
  if ( alloc_begin != 0 ) {                                           
    /* Statistics */                                                  
    ++stats->allocs;                                                  
    stats->searches += search_count;                                  
ffc0fbe0:	80 1d 00 4c 	lwz     r0,76(r29)                             
                                                                      
    block = _Heap_Block_allocate( heap, block, alloc_begin, alloc_size );
ffc0fbe4:	7f e5 fb 78 	mr      r5,r31                                 
    search_again = _Heap_Protection_free_delayed_blocks( heap, alloc_begin );
  } while ( search_again );                                           
                                                                      
  if ( alloc_begin != 0 ) {                                           
    /* Statistics */                                                  
    ++stats->allocs;                                                  
ffc0fbe8:	39 6b 00 01 	addi    r11,r11,1                              
    stats->searches += search_count;                                  
ffc0fbec:	7c 00 f2 14 	add     r0,r0,r30                              
    search_again = _Heap_Protection_free_delayed_blocks( heap, alloc_begin );
  } while ( search_again );                                           
                                                                      
  if ( alloc_begin != 0 ) {                                           
    /* Statistics */                                                  
    ++stats->allocs;                                                  
ffc0fbf0:	91 7d 00 48 	stw     r11,72(r29)                            
    stats->searches += search_count;                                  
                                                                      
    block = _Heap_Block_allocate( heap, block, alloc_begin, alloc_size );
ffc0fbf4:	7d 26 4b 78 	mr      r6,r9                                  
  } while ( search_again );                                           
                                                                      
  if ( alloc_begin != 0 ) {                                           
    /* Statistics */                                                  
    ++stats->allocs;                                                  
    stats->searches += search_count;                                  
ffc0fbf8:	90 1d 00 4c 	stw     r0,76(r29)                             
                                                                      
    block = _Heap_Block_allocate( heap, block, alloc_begin, alloc_size );
ffc0fbfc:	4b ff aa ad 	bl      ffc0a6a8 <_Heap_Block_allocate>        
ffc0fc00:	7f e3 fb 78 	mr      r3,r31                                 
      boundary                                                        
    );                                                                
  }                                                                   
                                                                      
  /* Statistics */                                                    
  if ( stats->max_search < search_count ) {                           
ffc0fc04:	80 1d 00 44 	lwz     r0,68(r29)                             
ffc0fc08:	7f 80 f0 40 	cmplw   cr7,r0,r30                             
ffc0fc0c:	40 9c 00 08 	bge-    cr7,ffc0fc14 <_Heap_Allocate_aligned_with_boundary+0x1a0>
    stats->max_search = search_count;                                 
ffc0fc10:	93 dd 00 44 	stw     r30,68(r29)                            
  }                                                                   
                                                                      
  return (void *) alloc_begin;                                        
}                                                                     
ffc0fc14:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0fc18:	81 81 00 08 	lwz     r12,8(r1)                              
ffc0fc1c:	7c 08 03 a6 	mtlr    r0                                     
ffc0fc20:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc0fc24:	83 81 00 10 	lwz     r28,16(r1)                             
ffc0fc28:	7d 80 81 20 	mtcrf   8,r12                                  
ffc0fc2c:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc0fc30:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0fc34:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0fc38:	38 21 00 20 	addi    r1,r1,32                               
ffc0fc3c:	4e 80 00 20 	blr                                            
                                                                      
  do {                                                                
    Heap_Block *const free_list_tail = _Heap_Free_list_tail( heap );  
                                                                      
    block = _Heap_Free_list_first( heap );                            
    while ( block != free_list_tail ) {                               
ffc0fc40:	38 60 00 00 	li      r3,0                                   
ffc0fc44:	4b ff ff c0 	b       ffc0fc04 <_Heap_Allocate_aligned_with_boundary+0x190>
    /* Integer overflow occured */                                    
    return NULL;                                                      
  }                                                                   
                                                                      
  if ( boundary != 0 ) {                                              
    if ( boundary < alloc_size ) {                                    
ffc0fc48:	7f 84 30 40 	cmplw   cr7,r4,r6                              
ffc0fc4c:	41 bd ff c8 	bgt-    cr7,ffc0fc14 <_Heap_Allocate_aligned_with_boundary+0x1a0>
      return NULL;                                                    
    }                                                                 
                                                                      
    if ( alignment == 0 ) {                                           
ffc0fc50:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc0fc54:	40 be fe 6c 	bne-    cr7,ffc0fac0 <_Heap_Allocate_aligned_with_boundary+0x4c>
      alignment = page_size;                                          
ffc0fc58:	7d 85 63 78 	mr      r5,r12                                 
ffc0fc5c:	4b ff fe 64 	b       ffc0fac0 <_Heap_Allocate_aligned_with_boundary+0x4c>
                                                                      

ffc10150 <_Heap_Extend>: Heap_Control *heap, void *extend_area_begin_ptr, uintptr_t extend_area_size, uintptr_t *extended_size_ptr ) {
ffc10150:	94 21 ff c0 	stwu    r1,-64(r1)                             
ffc10154:	7d 80 00 26 	mfcr    r12                                    
ffc10158:	7c 08 02 a6 	mflr    r0                                     
ffc1015c:	93 a1 00 34 	stw     r29,52(r1)                             
  Heap_Block *extend_first_block = NULL;                              
  Heap_Block *extend_last_block = NULL;                               
  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;
ffc10160:	7f a4 2a 14 	add     r29,r4,r5                              
  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 ) {                        
ffc10164:	7f 84 e8 40 	cmplw   cr7,r4,r29                             
  Heap_Control *heap,                                                 
  void *extend_area_begin_ptr,                                        
  uintptr_t extend_area_size,                                         
  uintptr_t *extended_size_ptr                                        
)                                                                     
{                                                                     
ffc10168:	90 01 00 44 	stw     r0,68(r1)                              
ffc1016c:	93 41 00 28 	stw     r26,40(r1)                             
  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;                              
ffc10170:	3b 40 00 00 	li      r26,0                                  
  Heap_Control *heap,                                                 
  void *extend_area_begin_ptr,                                        
  uintptr_t extend_area_size,                                         
  uintptr_t *extended_size_ptr                                        
)                                                                     
{                                                                     
ffc10174:	93 c1 00 38 	stw     r30,56(r1)                             
ffc10178:	7c 7e 1b 78 	mr      r30,r3                                 
ffc1017c:	93 01 00 20 	stw     r24,32(r1)                             
ffc10180:	93 21 00 24 	stw     r25,36(r1)                             
ffc10184:	7c d9 33 78 	mr      r25,r6                                 
ffc10188:	93 61 00 2c 	stw     r27,44(r1)                             
ffc1018c:	93 81 00 30 	stw     r28,48(r1)                             
ffc10190:	93 e1 00 3c 	stw     r31,60(r1)                             
ffc10194:	7c 9f 23 78 	mr      r31,r4                                 
  Heap_Statistics *const stats = &heap->stats;                        
  Heap_Block *const first_block = heap->first_block;                  
ffc10198:	83 63 00 20 	lwz     r27,32(r3)                             
  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;                                                     
ffc1019c:	38 60 00 00 	li      r3,0                                   
  Heap_Control *heap,                                                 
  void *extend_area_begin_ptr,                                        
  uintptr_t extend_area_size,                                         
  uintptr_t *extended_size_ptr                                        
)                                                                     
{                                                                     
ffc101a0:	92 e1 00 1c 	stw     r23,28(r1)                             
ffc101a4:	91 81 00 18 	stw     r12,24(r1)                             
  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;                              
ffc101a8:	93 41 00 08 	stw     r26,8(r1)                              
  Heap_Block *extend_last_block = NULL;                               
ffc101ac:	93 41 00 0c 	stw     r26,12(r1)                             
  uintptr_t const page_size = heap->page_size;                        
ffc101b0:	83 9e 00 10 	lwz     r28,16(r30)                            
  uintptr_t const min_block_size = heap->min_block_size;              
ffc101b4:	80 de 00 14 	lwz     r6,20(r30)                             
  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;                       
ffc101b8:	83 1e 00 30 	lwz     r24,48(r30)                            
  uintptr_t extend_first_block_size = 0;                              
  uintptr_t extended_size = 0;                                        
  bool extend_area_ok = false;                                        
                                                                      
  if ( extend_area_end < extend_area_begin ) {                        
ffc101bc:	40 9d 00 40 	ble-    cr7,ffc101fc <_Heap_Extend+0xac>       
                                                                      
  if ( extended_size_ptr != NULL )                                    
    *extended_size_ptr = extended_size;                               
                                                                      
  return true;                                                        
}                                                                     
ffc101c0:	80 01 00 44 	lwz     r0,68(r1)                              
ffc101c4:	81 81 00 18 	lwz     r12,24(r1)                             
ffc101c8:	7c 08 03 a6 	mtlr    r0                                     
ffc101cc:	82 e1 00 1c 	lwz     r23,28(r1)                             
ffc101d0:	83 01 00 20 	lwz     r24,32(r1)                             
ffc101d4:	7d 81 81 20 	mtcrf   24,r12                                 
ffc101d8:	83 21 00 24 	lwz     r25,36(r1)                             
ffc101dc:	83 41 00 28 	lwz     r26,40(r1)                             
ffc101e0:	83 61 00 2c 	lwz     r27,44(r1)                             
ffc101e4:	83 81 00 30 	lwz     r28,48(r1)                             
ffc101e8:	83 a1 00 34 	lwz     r29,52(r1)                             
ffc101ec:	83 c1 00 38 	lwz     r30,56(r1)                             
ffc101f0:	83 e1 00 3c 	lwz     r31,60(r1)                             
ffc101f4:	38 21 00 40 	addi    r1,r1,64                               
ffc101f8:	4e 80 00 20 	blr                                            
                                                                      
  if ( extend_area_end < extend_area_begin ) {                        
    return false;                                                     
  }                                                                   
                                                                      
  extend_area_ok = _Heap_Get_first_and_last_block(                    
ffc101fc:	7c 83 23 78 	mr      r3,r4                                  
ffc10200:	38 e1 00 08 	addi    r7,r1,8                                
ffc10204:	7c a4 2b 78 	mr      r4,r5                                  
ffc10208:	39 01 00 0c 	addi    r8,r1,12                               
ffc1020c:	7f 85 e3 78 	mr      r5,r28                                 
ffc10210:	4b ff a6 d1 	bl      ffc0a8e0 <_Heap_Get_first_and_last_block>
    page_size,                                                        
    min_block_size,                                                   
    &extend_first_block,                                              
    &extend_last_block                                                
  );                                                                  
  if (!extend_area_ok ) {                                             
ffc10214:	2f 83 00 00 	cmpwi   cr7,r3,0                               
    /* For simplicity we reject extend areas that are too small */    
    return false;                                                     
ffc10218:	7f 43 d3 78 	mr      r3,r26                                 
    page_size,                                                        
    min_block_size,                                                   
    &extend_first_block,                                              
    &extend_last_block                                                
  );                                                                  
  if (!extend_area_ok ) {                                             
ffc1021c:	41 be ff a4 	beq-    cr7,ffc101c0 <_Heap_Extend+0x70>       
ffc10220:	7f 69 db 78 	mr      r9,r27                                 
ffc10224:	3a e0 00 00 	li      r23,0                                  
ffc10228:	38 00 00 00 	li      r0,0                                   
ffc1022c:	39 00 00 00 	li      r8,0                                   
ffc10230:	48 00 00 44 	b       ffc10274 <_Heap_Extend+0x124>          
      return false;                                                   
    }                                                                 
                                                                      
    if ( extend_area_end == sub_area_begin ) {                        
      merge_below_block = start_block;                                
    } else if ( extend_area_end < sub_area_end ) {                    
ffc10234:	7f 9d 58 40 	cmplw   cr7,r29,r11                            
ffc10238:	40 9c 00 08 	bge-    cr7,ffc10240 <_Heap_Extend+0xf0>       
ffc1023c:	7d 20 4b 78 	mr      r0,r9                                  
ffc10240:	7d 4b e3 96 	divwu   r10,r11,r28                            
      link_below_block = start_block;                                 
    }                                                                 
                                                                      
    if ( sub_area_end == extend_area_begin ) {                        
ffc10244:	7f 8b f8 00 	cmpw    cr7,r11,r31                            
ffc10248:	7d 4a e1 d6 	mullw   r10,r10,r28                            
  uintptr_t alloc_begin,                                              
  uintptr_t page_size                                                 
)                                                                     
{                                                                     
  return (Heap_Block *) (_Heap_Align_down( alloc_begin, page_size )   
    - HEAP_BLOCK_HEADER_SIZE);                                        
ffc1024c:	39 4a ff f8 	addi    r10,r10,-8                             
ffc10250:	41 9e 00 64 	beq-    cr7,ffc102b4 <_Heap_Extend+0x164>      
      start_block->prev_size = extend_area_end;                       
                                                                      
      merge_above_block = end_block;                                  
    } else if ( sub_area_end < extend_area_begin ) {                  
ffc10254:	7f 9f 58 40 	cmplw   cr7,r31,r11                            
ffc10258:	40 9d 00 08 	ble-    cr7,ffc10260 <_Heap_Extend+0x110>      
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 )   
ffc1025c:	7d 57 53 78 	mr      r23,r10                                
    - 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;                
ffc10260:	81 2a 00 04 	lwz     r9,4(r10)                              
ffc10264:	55 29 00 3c 	rlwinm  r9,r9,0,0,30                           
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_at(                      
  const Heap_Block *block,                                            
  uintptr_t offset                                                    
)                                                                     
{                                                                     
  return (Heap_Block *) ((uintptr_t) block + offset);                 
ffc10268:	7d 2a 4a 14 	add     r9,r10,r9                              
      link_above_block = end_block;                                   
    }                                                                 
                                                                      
    start_block = _Heap_Block_at( end_block, _Heap_Block_size( end_block ) );
  } while ( start_block != first_block );                             
ffc1026c:	7f 9b 48 00 	cmpw    cr7,r27,r9                             
ffc10270:	41 9e 00 60 	beq-    cr7,ffc102d0 <_Heap_Extend+0x180>      
    return false;                                                     
  }                                                                   
                                                                      
  do {                                                                
    uintptr_t const sub_area_begin = (start_block != first_block) ?   
      (uintptr_t) start_block : heap->area_begin;                     
ffc10274:	7f 89 d8 00 	cmpw    cr7,r9,r27                             
ffc10278:	7d 2a 4b 78 	mr      r10,r9                                 
ffc1027c:	41 9e 01 b8 	beq-    cr7,ffc10434 <_Heap_Extend+0x2e4>      
    uintptr_t const sub_area_end = start_block->prev_size;            
ffc10280:	81 69 00 00 	lwz     r11,0(r9)                              
    Heap_Block *const end_block =                                     
      _Heap_Block_of_alloc_area( sub_area_end, page_size );           
                                                                      
    if (                                                              
ffc10284:	7f 9f 58 40 	cmplw   cr7,r31,r11                            
ffc10288:	40 9c 00 0c 	bge-    cr7,ffc10294 <_Heap_Extend+0x144>      
      sub_area_end > extend_area_begin && extend_area_end > sub_area_begin
ffc1028c:	7f 8a e8 40 	cmplw   cr7,r10,r29                            
ffc10290:	41 9c 02 28 	blt-    cr7,ffc104b8 <_Heap_Extend+0x368>      
    ) {                                                               
      return false;                                                   
    }                                                                 
                                                                      
    if ( extend_area_end == sub_area_begin ) {                        
ffc10294:	7f 8a e8 00 	cmpw    cr7,r10,r29                            
ffc10298:	40 9e ff 9c 	bne+    cr7,ffc10234 <_Heap_Extend+0xe4>       
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_down(                      
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return value - (value % alignment);                                 
ffc1029c:	7d 4b e3 96 	divwu   r10,r11,r28                            
      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 ) {                        
ffc102a0:	7f 8b f8 00 	cmpw    cr7,r11,r31                            
ffc102a4:	7d 4a e1 d6 	mullw   r10,r10,r28                            
      sub_area_end > extend_area_begin && extend_area_end > sub_area_begin
    ) {                                                               
      return false;                                                   
    }                                                                 
                                                                      
    if ( extend_area_end == sub_area_begin ) {                        
ffc102a8:	7d 28 4b 78 	mr      r8,r9                                  
  uintptr_t alloc_begin,                                              
  uintptr_t page_size                                                 
)                                                                     
{                                                                     
  return (Heap_Block *) (_Heap_Align_down( alloc_begin, page_size )   
    - HEAP_BLOCK_HEADER_SIZE);                                        
ffc102ac:	39 4a ff f8 	addi    r10,r10,-8                             
      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 ) {                        
ffc102b0:	40 9e ff a4 	bne+    cr7,ffc10254 <_Heap_Extend+0x104>      <== ALWAYS TAKEN
      start_block->prev_size = extend_area_end;                       
ffc102b4:	93 a9 00 00 	stw     r29,0(r9)                              
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 )   
ffc102b8:	7d 5a 53 78 	mr      r26,r10                                
    - 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;                
ffc102bc:	81 2a 00 04 	lwz     r9,4(r10)                              
ffc102c0:	55 29 00 3c 	rlwinm  r9,r9,0,0,30                           
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_at(                      
  const Heap_Block *block,                                            
  uintptr_t offset                                                    
)                                                                     
{                                                                     
  return (Heap_Block *) ((uintptr_t) block + offset);                 
ffc102c4:	7d 2a 4a 14 	add     r9,r10,r9                              
    } 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 );                             
ffc102c8:	7f 9b 48 00 	cmpw    cr7,r27,r9                             
ffc102cc:	40 9e ff a8 	bne+    cr7,ffc10274 <_Heap_Extend+0x124>      <== NEVER TAKEN
                                                                      
  if ( extend_area_begin < heap->area_begin ) {                       
ffc102d0:	81 3e 00 18 	lwz     r9,24(r30)                             
ffc102d4:	7f 9f 48 40 	cmplw   cr7,r31,r9                             
ffc102d8:	41 9c 01 64 	blt-    cr7,ffc1043c <_Heap_Extend+0x2ec>      
    heap->area_begin = extend_area_begin;                             
  } else if ( heap->area_end < extend_area_end ) {                    
ffc102dc:	81 3e 00 1c 	lwz     r9,28(r30)                             
ffc102e0:	7f 9d 48 40 	cmplw   cr7,r29,r9                             
ffc102e4:	40 9d 00 08 	ble-    cr7,ffc102ec <_Heap_Extend+0x19c>      
    heap->area_end = extend_area_end;                                 
ffc102e8:	93 be 00 1c 	stw     r29,28(r30)                            
                                                                      
  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 ) {
ffc102ec:	81 5e 00 20 	lwz     r10,32(r30)                            
  } 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;   
ffc102f0:	81 21 00 08 	lwz     r9,8(r1)                               
ffc102f4:	81 61 00 0c 	lwz     r11,12(r1)                             
                                                                      
  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 ) {
ffc102f8:	7f 8a 48 40 	cmplw   cr7,r10,r9                             
  }                                                                   
                                                                      
  extend_first_block_size =                                           
    (uintptr_t) extend_last_block - (uintptr_t) extend_first_block;   
                                                                      
  extend_first_block->prev_size = extend_area_end;                    
ffc102fc:	93 a9 00 00 	stw     r29,0(r9)                              
    heap->area_begin = extend_area_begin;                             
  } else if ( heap->area_end < extend_area_end ) {                    
    heap->area_end = extend_area_end;                                 
  }                                                                   
                                                                      
  extend_first_block_size =                                           
ffc10300:	7d 49 58 50 	subf    r10,r9,r11                             
    (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;                   
ffc10304:	61 47 00 01 	ori     r7,r10,1                               
  _Heap_Protection_block_initialize( heap, extend_first_block );      
                                                                      
  extend_last_block->prev_size = extend_first_block_size;             
ffc10308:	91 4b 00 00 	stw     r10,0(r11)                             
  extend_last_block->size_and_flag = 0;                               
ffc1030c:	39 40 00 00 	li      r10,0                                  
                                                                      
  extend_first_block_size =                                           
    (uintptr_t) extend_last_block - (uintptr_t) extend_first_block;   
                                                                      
  extend_first_block->prev_size = extend_area_end;                    
  extend_first_block->size_and_flag =                                 
ffc10310:	90 e9 00 04 	stw     r7,4(r9)                               
    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;             
  extend_last_block->size_and_flag = 0;                               
ffc10314:	91 4b 00 04 	stw     r10,4(r11)                             
  _Heap_Protection_block_initialize( heap, extend_last_block );       
                                                                      
  if ( (uintptr_t) extend_first_block < (uintptr_t) heap->first_block ) {
ffc10318:	40 9d 01 58 	ble-    cr7,ffc10470 <_Heap_Extend+0x320>      <== ALWAYS TAKEN
    heap->first_block = extend_first_block;                           
ffc1031c:	91 3e 00 20 	stw     r9,32(r30)                             
  } else if ( (uintptr_t) extend_last_block > (uintptr_t) heap->last_block ) {
    heap->last_block = extend_last_block;                             
  }                                                                   
                                                                      
  if ( merge_below_block != NULL ) {                                  
ffc10320:	2e 08 00 00 	cmpwi   cr4,r8,0                               
ffc10324:	41 92 01 b0 	beq-    cr4,ffc104d4 <_Heap_Extend+0x384>      
  Heap_Control *heap,                                                 
  uintptr_t extend_area_begin,                                        
  Heap_Block *first_block                                             
)                                                                     
{                                                                     
  uintptr_t const page_size = heap->page_size;                        
ffc10328:	80 1e 00 10 	lwz     r0,16(r30)                             
  uintptr_t const new_first_block_alloc_begin =                       
    _Heap_Align_up( extend_area_begin + HEAP_BLOCK_HEADER_SIZE, page_size );
ffc1032c:	3b ff 00 08 	addi    r31,r31,8                              
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_up(                        
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  uintptr_t remainder = value % alignment;                            
ffc10330:	7d 3f 03 96 	divwu   r9,r31,r0                              
ffc10334:	7d 29 01 d6 	mullw   r9,r9,r0                               
                                                                      
  if ( remainder != 0 ) {                                             
ffc10338:	7d 29 f8 51 	subf.   r9,r9,r31                              
ffc1033c:	41 82 00 0c 	beq-    ffc10348 <_Heap_Extend+0x1f8>          <== ALWAYS TAKEN
    return value - remainder + alignment;                             
ffc10340:	7f ff 02 14 	add     r31,r31,r0                             <== NOT EXECUTED
ffc10344:	7f e9 f8 50 	subf    r31,r9,r31                             <== NOT EXECUTED
  uintptr_t const new_first_block_begin =                             
ffc10348:	38 9f ff f8 	addi    r4,r31,-8                              
  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;                
ffc1034c:	81 28 00 00 	lwz     r9,0(r8)                               
  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 =                              
ffc10350:	7c 04 40 50 	subf    r0,r4,r8                               
    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;
ffc10354:	60 00 00 01 	ori     r0,r0,1                                
  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;                
ffc10358:	91 3f ff f8 	stw     r9,-8(r31)                             
  new_first_block->size_and_flag = new_first_block_size | HEAP_PREV_BLOCK_USED;
                                                                      
  _Heap_Free_block( heap, new_first_block );                          
ffc1035c:	7f c3 f3 78 	mr      r3,r30                                 
  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;                
  new_first_block->size_and_flag = new_first_block_size | HEAP_PREV_BLOCK_USED;
ffc10360:	90 04 00 04 	stw     r0,4(r4)                               
                                                                      
  _Heap_Free_block( heap, new_first_block );                          
ffc10364:	4b ff fd b1 	bl      ffc10114 <_Heap_Free_block>            
      link_below_block,                                               
      extend_last_block                                               
    );                                                                
  }                                                                   
                                                                      
  if ( merge_above_block != NULL ) {                                  
ffc10368:	2d 9a 00 00 	cmpwi   cr3,r26,0                              
ffc1036c:	41 8e 01 18 	beq-    cr3,ffc10484 <_Heap_Extend+0x334>      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_down(                      
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return value - (value % alignment);                                 
ffc10370:	81 3e 00 10 	lwz     r9,16(r30)                             
)                                                                     
{                                                                     
  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,      
ffc10374:	38 1d ff f8 	addi    r0,r29,-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(             
ffc10378:	7c 1a 00 50 	subf    r0,r26,r0                              
  );                                                                  
  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)                 
ffc1037c:	81 7a 00 04 	lwz     r11,4(r26)                             
ffc10380:	7c 00 4b 96 	divwu   r0,r0,r9                               
ffc10384:	7c 00 49 d6 	mullw   r0,r0,r9                               
      | HEAP_PREV_BLOCK_USED;                                         
                                                                      
  _Heap_Block_set_size( last_block, last_block_new_size );            
                                                                      
  _Heap_Free_block( heap, last_block );                               
ffc10388:	7f c3 f3 78 	mr      r3,r30                                 
  );                                                                  
  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)                 
ffc1038c:	7d 60 58 50 	subf    r11,r0,r11                             
    page_size                                                         
  );                                                                  
  Heap_Block *const new_last_block =                                  
    _Heap_Block_at( last_block, last_block_new_size );                
                                                                      
  new_last_block->size_and_flag =                                     
ffc10390:	7d 20 d2 14 	add     r9,r0,r26                              
    (last_block->size_and_flag - last_block_new_size)                 
      | HEAP_PREV_BLOCK_USED;                                         
ffc10394:	61 6b 00 01 	ori     r11,r11,1                              
    page_size                                                         
  );                                                                  
  Heap_Block *const new_last_block =                                  
    _Heap_Block_at( last_block, last_block_new_size );                
                                                                      
  new_last_block->size_and_flag =                                     
ffc10398:	91 69 00 04 	stw     r11,4(r9)                              
    (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 );                               
ffc1039c:	7f 44 d3 78 	mr      r4,r26                                 
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;       
ffc103a0:	81 3a 00 04 	lwz     r9,4(r26)                              
ffc103a4:	55 29 07 fe 	clrlwi  r9,r9,31                               
                                                                      
  block->size_and_flag = size | flag;                                 
ffc103a8:	7c 00 4b 78 	or      r0,r0,r9                               
ffc103ac:	90 1a 00 04 	stw     r0,4(r26)                              
ffc103b0:	4b ff fd 65 	bl      ffc10114 <_Heap_Free_block>            
      extend_first_block,                                             
      extend_last_block                                               
    );                                                                
  }                                                                   
                                                                      
  if ( merge_below_block == NULL && merge_above_block == NULL ) {     
ffc103b4:	41 92 01 0c 	beq-    cr4,ffc104c0 <_Heap_Extend+0x370>      
                                                                      
  if ( extended_size_ptr != NULL )                                    
    *extended_size_ptr = extended_size;                               
                                                                      
  return true;                                                        
}                                                                     
ffc103b8:	81 3e 00 24 	lwz     r9,36(r30)                             
  extended_size = stats->free_size - free_size;                       
                                                                      
  /* Statistics */                                                    
  stats->size += extended_size;                                       
                                                                      
  if ( extended_size_ptr != NULL )                                    
ffc103bc:	2f 99 00 00 	cmpwi   cr7,r25,0                              
 * 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(                                               
ffc103c0:	81 5e 00 20 	lwz     r10,32(r30)                            
    *extended_size_ptr = extended_size;                               
                                                                      
  return true;                                                        
ffc103c4:	38 60 00 01 	li      r3,1                                   
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;       
ffc103c8:	81 69 00 04 	lwz     r11,4(r9)                              
    _Heap_Free_block( heap, extend_first_block );                     
  }                                                                   
                                                                      
  _Heap_Set_last_block_size( heap );                                  
                                                                      
  extended_size = stats->free_size - free_size;                       
ffc103cc:	81 1e 00 30 	lwz     r8,48(r30)                             
 * 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(                                               
ffc103d0:	7d 49 50 50 	subf    r10,r9,r10                             
                                                                      
  /* Statistics */                                                    
  stats->size += extended_size;                                       
ffc103d4:	80 1e 00 2c 	lwz     r0,44(r30)                             
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;       
ffc103d8:	55 6b 07 fe 	clrlwi  r11,r11,31                             
    _Heap_Free_block( heap, extend_first_block );                     
  }                                                                   
                                                                      
  _Heap_Set_last_block_size( heap );                                  
                                                                      
  extended_size = stats->free_size - free_size;                       
ffc103dc:	7f 18 40 50 	subf    r24,r24,r8                             
                                                                      
  block->size_and_flag = size | flag;                                 
ffc103e0:	7d 4b 5b 78 	or      r11,r10,r11                            
                                                                      
  /* Statistics */                                                    
  stats->size += extended_size;                                       
ffc103e4:	7c 00 c2 14 	add     r0,r0,r24                              
ffc103e8:	91 69 00 04 	stw     r11,4(r9)                              
ffc103ec:	90 1e 00 2c 	stw     r0,44(r30)                             
                                                                      
  if ( extended_size_ptr != NULL )                                    
ffc103f0:	41 be fd d0 	beq-    cr7,ffc101c0 <_Heap_Extend+0x70>       <== NEVER TAKEN
    *extended_size_ptr = extended_size;                               
                                                                      
  return true;                                                        
}                                                                     
ffc103f4:	80 01 00 44 	lwz     r0,68(r1)                              
ffc103f8:	81 81 00 18 	lwz     r12,24(r1)                             
ffc103fc:	7c 08 03 a6 	mtlr    r0                                     
                                                                      
  /* Statistics */                                                    
  stats->size += extended_size;                                       
                                                                      
  if ( extended_size_ptr != NULL )                                    
    *extended_size_ptr = extended_size;                               
ffc10400:	93 19 00 00 	stw     r24,0(r25)                             
                                                                      
  return true;                                                        
}                                                                     
ffc10404:	7d 81 81 20 	mtcrf   24,r12                                 
ffc10408:	82 e1 00 1c 	lwz     r23,28(r1)                             
ffc1040c:	83 01 00 20 	lwz     r24,32(r1)                             
ffc10410:	83 21 00 24 	lwz     r25,36(r1)                             
ffc10414:	83 41 00 28 	lwz     r26,40(r1)                             
ffc10418:	83 61 00 2c 	lwz     r27,44(r1)                             
ffc1041c:	83 81 00 30 	lwz     r28,48(r1)                             
ffc10420:	83 a1 00 34 	lwz     r29,52(r1)                             
ffc10424:	83 c1 00 38 	lwz     r30,56(r1)                             
ffc10428:	83 e1 00 3c 	lwz     r31,60(r1)                             
ffc1042c:	38 21 00 40 	addi    r1,r1,64                               
ffc10430:	4e 80 00 20 	blr                                            
    return false;                                                     
  }                                                                   
                                                                      
  do {                                                                
    uintptr_t const sub_area_begin = (start_block != first_block) ?   
      (uintptr_t) start_block : heap->area_begin;                     
ffc10434:	81 5e 00 18 	lwz     r10,24(r30)                            
ffc10438:	4b ff fe 48 	b       ffc10280 <_Heap_Extend+0x130>          
                                                                      
  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 ) {
ffc1043c:	81 5e 00 20 	lwz     r10,32(r30)                            
  } 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;   
ffc10440:	81 21 00 08 	lwz     r9,8(r1)                               
ffc10444:	81 61 00 0c 	lwz     r11,12(r1)                             
                                                                      
  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 ) {
ffc10448:	7f 8a 48 40 	cmplw   cr7,r10,r9                             
                                                                      
    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;                             
ffc1044c:	93 fe 00 18 	stw     r31,24(r30)                            
  } else if ( heap->area_end < extend_area_end ) {                    
    heap->area_end = extend_area_end;                                 
  }                                                                   
                                                                      
  extend_first_block_size =                                           
ffc10450:	7d 49 58 50 	subf    r10,r9,r11                             
    (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;                   
ffc10454:	61 47 00 01 	ori     r7,r10,1                               
  }                                                                   
                                                                      
  extend_first_block_size =                                           
    (uintptr_t) extend_last_block - (uintptr_t) extend_first_block;   
                                                                      
  extend_first_block->prev_size = extend_area_end;                    
ffc10458:	93 a9 00 00 	stw     r29,0(r9)                              
  extend_first_block->size_and_flag =                                 
    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;             
ffc1045c:	91 4b 00 00 	stw     r10,0(r11)                             
  extend_last_block->size_and_flag = 0;                               
ffc10460:	39 40 00 00 	li      r10,0                                  
                                                                      
  extend_first_block_size =                                           
    (uintptr_t) extend_last_block - (uintptr_t) extend_first_block;   
                                                                      
  extend_first_block->prev_size = extend_area_end;                    
  extend_first_block->size_and_flag =                                 
ffc10464:	90 e9 00 04 	stw     r7,4(r9)                               
    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;             
  extend_last_block->size_and_flag = 0;                               
ffc10468:	91 4b 00 04 	stw     r10,4(r11)                             
  _Heap_Protection_block_initialize( heap, extend_last_block );       
                                                                      
  if ( (uintptr_t) extend_first_block < (uintptr_t) heap->first_block ) {
ffc1046c:	41 bd fe b0 	bgt-    cr7,ffc1031c <_Heap_Extend+0x1cc>      <== ALWAYS TAKEN
    heap->first_block = extend_first_block;                           
  } else if ( (uintptr_t) extend_last_block > (uintptr_t) heap->last_block ) {
ffc10470:	81 3e 00 24 	lwz     r9,36(r30)                             
ffc10474:	7f 89 58 40 	cmplw   cr7,r9,r11                             
ffc10478:	40 bc fe a8 	bge-    cr7,ffc10320 <_Heap_Extend+0x1d0>      
    heap->last_block = extend_last_block;                             
ffc1047c:	91 7e 00 24 	stw     r11,36(r30)                            
ffc10480:	4b ff fe a0 	b       ffc10320 <_Heap_Extend+0x1d0>          
    );                                                                
  }                                                                   
                                                                      
  if ( merge_above_block != NULL ) {                                  
    _Heap_Merge_above( heap, merge_above_block, extend_area_end );    
  } else if ( link_above_block != NULL ) {                            
ffc10484:	2f 97 00 00 	cmpwi   cr7,r23,0                              
ffc10488:	41 be ff 2c 	beq-    cr7,ffc103b4 <_Heap_Extend+0x264>      
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;       
ffc1048c:	81 37 00 04 	lwz     r9,4(r23)                              
)                                                                     
{                                                                     
  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 );       
ffc10490:	80 01 00 08 	lwz     r0,8(r1)                               
ffc10494:	55 29 07 fe 	clrlwi  r9,r9,31                               
ffc10498:	7c 17 00 50 	subf    r0,r23,r0                              
                                                                      
  block->size_and_flag = size | flag;                                 
ffc1049c:	7c 00 4b 78 	or      r0,r0,r9                               
  }                                                                   
                                                                      
  if ( merge_above_block != NULL ) {                                  
    _Heap_Merge_above( heap, merge_above_block, extend_area_end );    
  } else if ( link_above_block != NULL ) {                            
    _Heap_Link_above(                                                 
ffc104a0:	81 21 00 0c 	lwz     r9,12(r1)                              
ffc104a4:	90 17 00 04 	stw     r0,4(r23)                              
  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 );       
                                                                      
  last_block->size_and_flag |= HEAP_PREV_BLOCK_USED;                  
ffc104a8:	80 09 00 04 	lwz     r0,4(r9)                               
ffc104ac:	60 00 00 01 	ori     r0,r0,1                                
ffc104b0:	90 09 00 04 	stw     r0,4(r9)                               
ffc104b4:	4b ff ff 00 	b       ffc103b4 <_Heap_Extend+0x264>          
      _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;                                                   
ffc104b8:	38 60 00 00 	li      r3,0                                   
ffc104bc:	4b ff fd 04 	b       ffc101c0 <_Heap_Extend+0x70>           
      extend_first_block,                                             
      extend_last_block                                               
    );                                                                
  }                                                                   
                                                                      
  if ( merge_below_block == NULL && merge_above_block == NULL ) {     
ffc104c0:	40 8e fe f8 	bne+    cr3,ffc103b8 <_Heap_Extend+0x268>      
    _Heap_Free_block( heap, extend_first_block );                     
ffc104c4:	80 81 00 08 	lwz     r4,8(r1)                               
ffc104c8:	7f c3 f3 78 	mr      r3,r30                                 
ffc104cc:	4b ff fc 49 	bl      ffc10114 <_Heap_Free_block>            
ffc104d0:	4b ff fe e8 	b       ffc103b8 <_Heap_Extend+0x268>          
    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 ) {                            
ffc104d4:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc104d8:	41 be fe 90 	beq-    cr7,ffc10368 <_Heap_Extend+0x218>      
{                                                                     
  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;           
ffc104dc:	7c 0b 00 50 	subf    r0,r11,r0                              
ffc104e0:	60 00 00 01 	ori     r0,r0,1                                
)                                                                     
{                                                                     
  uintptr_t const last_block_begin = (uintptr_t) last_block;          
  uintptr_t const link_begin = (uintptr_t) link;                      
                                                                      
  last_block->size_and_flag =                                         
ffc104e4:	90 0b 00 04 	stw     r0,4(r11)                              
ffc104e8:	4b ff fe 80 	b       ffc10368 <_Heap_Extend+0x218>          
                                                                      

ffc0fc60 <_Heap_Free>:
ffc0fc60:	80 03 00 10 	lwz     r0,16(r3)                              
    return do_free;                                                   
  }                                                                   
#endif                                                                
                                                                      
bool _Heap_Free( Heap_Control *heap, void *alloc_begin_ptr )          
{                                                                     
ffc0fc64:	7c 69 1b 78 	mr      r9,r3                                  
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           
ffc0fc68:	81 63 00 20 	lwz     r11,32(r3)                             
  bool next_is_free = false;                                          
                                                                      
  _Heap_Protection_block_check( heap, block );                        
                                                                      
  if ( !_Heap_Is_block_in_heap( heap, block ) ) {                     
    return false;                                                     
ffc0fc6c:	38 60 00 00 	li      r3,0                                   
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_down(                      
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return value - (value % alignment);                                 
ffc0fc70:	7d 44 03 96 	divwu   r10,r4,r0                              
    return do_free;                                                   
  }                                                                   
#endif                                                                
                                                                      
bool _Heap_Free( Heap_Control *heap, void *alloc_begin_ptr )          
{                                                                     
ffc0fc74:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc0fc78:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc0fc7c:	7d 4a 01 d6 	mullw   r10,r10,r0                             
  uintptr_t alloc_begin,                                              
  uintptr_t page_size                                                 
)                                                                     
{                                                                     
  return (Heap_Block *) (_Heap_Align_down( alloc_begin, page_size )   
    - HEAP_BLOCK_HEADER_SIZE);                                        
ffc0fc80:	39 4a ff f8 	addi    r10,r10,-8                             
  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;             
ffc0fc84:	7f 8a 58 40 	cmplw   cr7,r10,r11                            
ffc0fc88:	41 9c 01 24 	blt-    cr7,ffc0fdac <_Heap_Free+0x14c>        
ffc0fc8c:	80 09 00 24 	lwz     r0,36(r9)                              
ffc0fc90:	7f 8a 00 40 	cmplw   cr7,r10,r0                             
ffc0fc94:	41 9d 01 18 	bgt-    cr7,ffc0fdac <_Heap_Free+0x14c>        
  --stats->used_blocks;                                               
  ++stats->frees;                                                     
  stats->free_size += block_size;                                     
                                                                      
  return( true );                                                     
}                                                                     
ffc0fc98:	80 ea 00 04 	lwz     r7,4(r10)                              
    - 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;                
ffc0fc9c:	54 e6 00 3c 	rlwinm  r6,r7,0,0,30                           
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_at(                      
  const Heap_Block *block,                                            
  uintptr_t offset                                                    
)                                                                     
{                                                                     
  return (Heap_Block *) ((uintptr_t) block + offset);                 
ffc0fca0:	7d 0a 32 14 	add     r8,r10,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;             
ffc0fca4:	7f 8b 40 40 	cmplw   cr7,r11,r8                             
ffc0fca8:	41 9d 01 04 	bgt-    cr7,ffc0fdac <_Heap_Free+0x14c>        <== NEVER TAKEN
ffc0fcac:	7f 80 40 40 	cmplw   cr7,r0,r8                              
ffc0fcb0:	41 9c 00 fc 	blt-    cr7,ffc0fdac <_Heap_Free+0x14c>        <== NEVER TAKEN
ffc0fcb4:	80 a8 00 04 	lwz     r5,4(r8)                               
  if ( !_Heap_Is_block_in_heap( heap, next_block ) ) {                
    _HAssert( false );                                                
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Heap_Is_prev_used( next_block ) ) {                          
ffc0fcb8:	70 a4 00 01 	andi.   r4,r5,1                                
ffc0fcbc:	41 82 00 f0 	beq-    ffc0fdac <_Heap_Free+0x14c>            
    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 ));
ffc0fcc0:	7f 80 40 00 	cmpw    cr7,r0,r8                              
    - 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;                
ffc0fcc4:	54 a4 00 3c 	rlwinm  r4,r5,0,0,30                           
ffc0fcc8:	38 a0 00 00 	li      r5,0                                   
ffc0fccc:	41 9e 00 18 	beq-    cr7,ffc0fce4 <_Heap_Free+0x84>         
  --stats->used_blocks;                                               
  ++stats->frees;                                                     
  stats->free_size += block_size;                                     
                                                                      
  return( true );                                                     
}                                                                     
ffc0fcd0:	7c a8 22 14 	add     r5,r8,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;                 
ffc0fcd4:	80 a5 00 04 	lwz     r5,4(r5)                               
                                                                      
    return do_free;                                                   
  }                                                                   
#endif                                                                
                                                                      
bool _Heap_Free( Heap_Control *heap, void *alloc_begin_ptr )          
ffc0fcd8:	70 a3 00 01 	andi.   r3,r5,1                                
ffc0fcdc:	7c a0 00 26 	mfcr    r5                                     
ffc0fce0:	54 a5 1f fe 	rlwinm  r5,r5,3,31,31                          
                                                                      
  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 ) ) {                               
ffc0fce4:	70 e7 00 01 	andi.   r7,r7,1                                
ffc0fce8:	40 82 00 6c 	bne-    ffc0fd54 <_Heap_Free+0xf4>             
    uintptr_t const prev_size = block->prev_size;                     
ffc0fcec:	83 ea 00 00 	lwz     r31,0(r10)                             
    Heap_Block * const prev_block = _Heap_Block_at( block, -prev_size );
                                                                      
    if ( !_Heap_Is_block_in_heap( heap, prev_block ) ) {              
      _HAssert( false );                                              
      return( false );                                                
ffc0fcf0:	38 60 00 00 	li      r3,0                                   
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_at(                      
  const Heap_Block *block,                                            
  uintptr_t offset                                                    
)                                                                     
{                                                                     
  return (Heap_Block *) ((uintptr_t) block + offset);                 
ffc0fcf4:	7d 9f 50 50 	subf    r12,r31,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;             
ffc0fcf8:	7f 8b 60 40 	cmplw   cr7,r11,r12                            
ffc0fcfc:	41 9d 00 b0 	bgt-    cr7,ffc0fdac <_Heap_Free+0x14c>        <== NEVER TAKEN
ffc0fd00:	7f 80 60 40 	cmplw   cr7,r0,r12                             
ffc0fd04:	7c e3 3b 78 	mr      r3,r7                                  
ffc0fd08:	41 9c 00 a4 	blt-    cr7,ffc0fdac <_Heap_Free+0x14c>        <== 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;                 
ffc0fd0c:	80 0c 00 04 	lwz     r0,4(r12)                              
    }                                                                 
                                                                      
    /* As we always coalesce free blocks, the block that preceedes prev_block
       must have been used. */                                        
    if ( !_Heap_Is_prev_used ( prev_block) ) {                        
ffc0fd10:	70 0b 00 01 	andi.   r11,r0,1                               
ffc0fd14:	41 82 00 98 	beq-    ffc0fdac <_Heap_Free+0x14c>            <== NEVER TAKEN
      _HAssert( false );                                              
      return( false );                                                
    }                                                                 
                                                                      
    if ( next_is_free ) {       /* coalesce both */                   
ffc0fd18:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc0fd1c:	41 9e 00 e8 	beq-    cr7,ffc0fe04 <_Heap_Free+0x1a4>        
      uintptr_t const size = block_size + prev_size + next_block_size;
      _Heap_Free_list_remove( next_block );                           
      stats->free_blocks -= 1;                                        
ffc0fd20:	80 e9 00 38 	lwz     r7,56(r9)                              
      _HAssert( false );                                              
      return( false );                                                
    }                                                                 
                                                                      
    if ( next_is_free ) {       /* coalesce both */                   
      uintptr_t const size = block_size + prev_size + next_block_size;
ffc0fd24:	7c 86 22 14 	add     r4,r6,r4                               
  --stats->used_blocks;                                               
  ++stats->frees;                                                     
  stats->free_size += block_size;                                     
                                                                      
  return( true );                                                     
}                                                                     
ffc0fd28:	81 68 00 08 	lwz     r11,8(r8)                              
      _HAssert( false );                                              
      return( false );                                                
    }                                                                 
                                                                      
    if ( next_is_free ) {       /* coalesce both */                   
      uintptr_t const size = block_size + prev_size + next_block_size;
ffc0fd2c:	7f e4 fa 14 	add     r31,r4,r31                             
  --stats->used_blocks;                                               
  ++stats->frees;                                                     
  stats->free_size += block_size;                                     
                                                                      
  return( true );                                                     
}                                                                     
ffc0fd30:	81 48 00 0c 	lwz     r10,12(r8)                             
                                                                      
    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;        
ffc0fd34:	63 e0 00 01 	ori     r0,r31,1                               
    }                                                                 
                                                                      
    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;                                        
ffc0fd38:	39 07 ff ff 	addi    r8,r7,-1                               
RTEMS_INLINE_ROUTINE void _Heap_Free_list_remove( Heap_Block *block ) 
{                                                                     
  Heap_Block *next = block->next;                                     
  Heap_Block *prev = block->prev;                                     
                                                                      
  prev->next = next;                                                  
ffc0fd3c:	91 6a 00 08 	stw     r11,8(r10)                             
  next->prev = prev;                                                  
ffc0fd40:	91 4b 00 0c 	stw     r10,12(r11)                            
ffc0fd44:	91 09 00 38 	stw     r8,56(r9)                              
      prev_block->size_and_flag = size | HEAP_PREV_BLOCK_USED;        
ffc0fd48:	90 0c 00 04 	stw     r0,4(r12)                              
      next_block = _Heap_Block_at( prev_block, size );                
      _HAssert(!_Heap_Is_prev_used( next_block));                     
      next_block->prev_size = size;                                   
ffc0fd4c:	7f ec f9 2e 	stwx    r31,r12,r31                            
ffc0fd50:	48 00 00 34 	b       ffc0fd84 <_Heap_Free+0x124>            
      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 */                 
ffc0fd54:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc0fd58:	41 9e 00 60 	beq-    cr7,ffc0fdb8 <_Heap_Free+0x158>        
  --stats->used_blocks;                                               
  ++stats->frees;                                                     
  stats->free_size += block_size;                                     
                                                                      
  return( true );                                                     
}                                                                     
ffc0fd5c:	81 68 00 08 	lwz     r11,8(r8)                              
      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;              
ffc0fd60:	7c 84 32 14 	add     r4,r4,r6                               
  --stats->used_blocks;                                               
  ++stats->frees;                                                     
  stats->free_size += block_size;                                     
                                                                      
  return( true );                                                     
}                                                                     
ffc0fd64:	81 08 00 0c 	lwz     r8,12(r8)                              
      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;               
ffc0fd68:	60 80 00 01 	ori     r0,r4,1                                
)                                                                     
{                                                                     
  Heap_Block *next = old_block->next;                                 
  Heap_Block *prev = old_block->prev;                                 
                                                                      
  new_block->next = next;                                             
ffc0fd6c:	91 6a 00 08 	stw     r11,8(r10)                             
  new_block->prev = prev;                                             
ffc0fd70:	91 0a 00 0c 	stw     r8,12(r10)                             
                                                                      
  next->prev = new_block;                                             
  prev->next = new_block;                                             
ffc0fd74:	91 48 00 08 	stw     r10,8(r8)                              
  Heap_Block *prev = old_block->prev;                                 
                                                                      
  new_block->next = next;                                             
  new_block->prev = prev;                                             
                                                                      
  next->prev = new_block;                                             
ffc0fd78:	91 4b 00 0c 	stw     r10,12(r11)                            
ffc0fd7c:	90 0a 00 04 	stw     r0,4(r10)                              
    next_block  = _Heap_Block_at( block, size );                      
    next_block->prev_size = size;                                     
ffc0fd80:	7c 8a 21 2e 	stwx    r4,r10,r4                              
      stats->max_free_blocks = stats->free_blocks;                    
    }                                                                 
  }                                                                   
                                                                      
  /* Statistics */                                                    
  --stats->used_blocks;                                               
ffc0fd84:	81 69 00 40 	lwz     r11,64(r9)                             
  ++stats->frees;                                                     
  stats->free_size += block_size;                                     
                                                                      
  return( true );                                                     
ffc0fd88:	38 60 00 01 	li      r3,1                                   
    }                                                                 
  }                                                                   
                                                                      
  /* Statistics */                                                    
  --stats->used_blocks;                                               
  ++stats->frees;                                                     
ffc0fd8c:	81 09 00 50 	lwz     r8,80(r9)                              
  stats->free_size += block_size;                                     
ffc0fd90:	81 49 00 30 	lwz     r10,48(r9)                             
      stats->max_free_blocks = stats->free_blocks;                    
    }                                                                 
  }                                                                   
                                                                      
  /* Statistics */                                                    
  --stats->used_blocks;                                               
ffc0fd94:	39 6b ff ff 	addi    r11,r11,-1                             
  ++stats->frees;                                                     
ffc0fd98:	38 08 00 01 	addi    r0,r8,1                                
      stats->max_free_blocks = stats->free_blocks;                    
    }                                                                 
  }                                                                   
                                                                      
  /* Statistics */                                                    
  --stats->used_blocks;                                               
ffc0fd9c:	91 69 00 40 	stw     r11,64(r9)                             
  ++stats->frees;                                                     
  stats->free_size += block_size;                                     
ffc0fda0:	7c ca 32 14 	add     r6,r10,r6                              
    }                                                                 
  }                                                                   
                                                                      
  /* Statistics */                                                    
  --stats->used_blocks;                                               
  ++stats->frees;                                                     
ffc0fda4:	90 09 00 50 	stw     r0,80(r9)                              
  stats->free_size += block_size;                                     
ffc0fda8:	90 c9 00 30 	stw     r6,48(r9)                              
                                                                      
  return( true );                                                     
}                                                                     
ffc0fdac:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0fdb0:	38 21 00 10 	addi    r1,r1,16                               
ffc0fdb4:	4e 80 00 20 	blr                                            
    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;                                             
ffc0fdb8:	80 e9 00 38 	lwz     r7,56(r9)                              
    if ( stats->max_free_blocks < stats->free_blocks ) {              
ffc0fdbc:	81 69 00 3c 	lwz     r11,60(r9)                             
    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;                                             
ffc0fdc0:	38 07 00 01 	addi    r0,r7,1                                
)                                                                     
{                                                                     
  Heap_Block *next = block_before->next;                              
                                                                      
  new_block->next = next;                                             
  new_block->prev = block_before;                                     
ffc0fdc4:	91 2a 00 0c 	stw     r9,12(r10)                             
    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;         
ffc0fdc8:	60 c7 00 01 	ori     r7,r6,1                                
ffc0fdcc:	90 ea 00 04 	stw     r7,4(r10)                              
    next_block->size_and_flag &= ~HEAP_PREV_BLOCK_USED;               
    next_block->prev_size = block_size;                               
                                                                      
    /* Statistics */                                                  
    ++stats->free_blocks;                                             
    if ( stats->max_free_blocks < stats->free_blocks ) {              
ffc0fdd0:	7f 80 58 40 	cmplw   cr7,r0,r11                             
  } 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;               
ffc0fdd4:	80 e8 00 04 	lwz     r7,4(r8)                               
RTEMS_INLINE_ROUTINE void _Heap_Free_list_insert_after(               
  Heap_Block *block_before,                                           
  Heap_Block *new_block                                               
)                                                                     
{                                                                     
  Heap_Block *next = block_before->next;                              
ffc0fdd8:	81 69 00 08 	lwz     r11,8(r9)                              
ffc0fddc:	54 e7 00 3c 	rlwinm  r7,r7,0,0,30                           
    next_block->prev_size = block_size;                               
ffc0fde0:	7c ca 31 2e 	stwx    r6,r10,r6                              
                                                                      
  new_block->next = next;                                             
ffc0fde4:	91 6a 00 08 	stw     r11,8(r10)                             
  } 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;               
ffc0fde8:	90 e8 00 04 	stw     r7,4(r8)                               
  new_block->prev = block_before;                                     
  block_before->next = new_block;                                     
  next->prev = new_block;                                             
ffc0fdec:	91 4b 00 0c 	stw     r10,12(r11)                            
{                                                                     
  Heap_Block *next = block_before->next;                              
                                                                      
  new_block->next = next;                                             
  new_block->prev = block_before;                                     
  block_before->next = new_block;                                     
ffc0fdf0:	91 49 00 08 	stw     r10,8(r9)                              
    next_block->prev_size = block_size;                               
                                                                      
    /* Statistics */                                                  
    ++stats->free_blocks;                                             
ffc0fdf4:	90 09 00 38 	stw     r0,56(r9)                              
    if ( stats->max_free_blocks < stats->free_blocks ) {              
ffc0fdf8:	40 bd ff 8c 	ble-    cr7,ffc0fd84 <_Heap_Free+0x124>        
      stats->max_free_blocks = stats->free_blocks;                    
ffc0fdfc:	90 09 00 3c 	stw     r0,60(r9)                              
ffc0fe00:	4b ff ff 84 	b       ffc0fd84 <_Heap_Free+0x124>            
      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;                  
ffc0fe04:	7f e6 fa 14 	add     r31,r6,r31                             
      prev_block->size_and_flag = size | HEAP_PREV_BLOCK_USED;        
ffc0fe08:	63 e0 00 01 	ori     r0,r31,1                               
      next_block->size_and_flag &= ~HEAP_PREV_BLOCK_USED;             
      next_block->prev_size = size;                                   
ffc0fe0c:	7f ea 31 2e 	stwx    r31,r10,r6                             
      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;                  
      prev_block->size_and_flag = size | HEAP_PREV_BLOCK_USED;        
ffc0fe10:	90 0c 00 04 	stw     r0,4(r12)                              
      next_block->size_and_flag &= ~HEAP_PREV_BLOCK_USED;             
ffc0fe14:	80 08 00 04 	lwz     r0,4(r8)                               
ffc0fe18:	54 00 00 3c 	rlwinm  r0,r0,0,0,30                           
ffc0fe1c:	90 08 00 04 	stw     r0,4(r8)                               
ffc0fe20:	4b ff ff 64 	b       ffc0fd84 <_Heap_Free+0x124>            
                                                                      

ffc0b4ec <_Heap_Walk>: 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;
ffc0b4ec:	2f 85 00 00 	cmpwi   cr7,r5,0                               
bool _Heap_Walk(                                                      
  Heap_Control *heap,                                                 
  int source,                                                         
  bool dump                                                           
)                                                                     
{                                                                     
ffc0b4f0:	94 21 ff 98 	stwu    r1,-104(r1)                            
ffc0b4f4:	7c 08 02 a6 	mflr    r0                                     
ffc0b4f8:	92 e1 00 44 	stw     r23,68(r1)                             
ffc0b4fc:	90 01 00 6c 	stw     r0,108(r1)                             
ffc0b500:	93 01 00 48 	stw     r24,72(r1)                             
ffc0b504:	93 21 00 4c 	stw     r25,76(r1)                             
ffc0b508:	7c 99 23 78 	mr      r25,r4                                 
ffc0b50c:	93 41 00 50 	stw     r26,80(r1)                             
ffc0b510:	93 61 00 54 	stw     r27,84(r1)                             
ffc0b514:	93 e1 00 64 	stw     r31,100(r1)                            
ffc0b518:	7c 7f 1b 78 	mr      r31,r3                                 
ffc0b51c:	91 c1 00 20 	stw     r14,32(r1)                             
ffc0b520:	91 e1 00 24 	stw     r15,36(r1)                             
ffc0b524:	92 01 00 28 	stw     r16,40(r1)                             
ffc0b528:	92 21 00 2c 	stw     r17,44(r1)                             
ffc0b52c:	92 41 00 30 	stw     r18,48(r1)                             
ffc0b530:	92 61 00 34 	stw     r19,52(r1)                             
ffc0b534:	92 81 00 38 	stw     r20,56(r1)                             
ffc0b538:	92 a1 00 3c 	stw     r21,60(r1)                             
ffc0b53c:	92 c1 00 40 	stw     r22,64(r1)                             
ffc0b540:	93 81 00 58 	stw     r28,88(r1)                             
ffc0b544:	93 a1 00 5c 	stw     r29,92(r1)                             
ffc0b548:	93 c1 00 60 	stw     r30,96(r1)                             
  uintptr_t const page_size = heap->page_size;                        
ffc0b54c:	83 63 00 10 	lwz     r27,16(r3)                             
  uintptr_t const min_block_size = heap->min_block_size;              
ffc0b550:	83 03 00 14 	lwz     r24,20(r3)                             
  Heap_Block *const first_block = heap->first_block;                  
ffc0b554:	83 43 00 20 	lwz     r26,32(r3)                             
  Heap_Block *const last_block = heap->last_block;                    
ffc0b558:	82 e3 00 24 	lwz     r23,36(r3)                             
  Heap_Block *block = first_block;                                    
  Heap_Walk_printer printer = dump ?                                  
    _Heap_Walk_print : _Heap_Walk_print_nothing;                      
ffc0b55c:	41 9e 00 7c 	beq-    cr7,ffc0b5d8 <_Heap_Walk+0xec>         
ffc0b560:	3d 20 ff c1 	lis     r9,-63                                 
ffc0b564:	39 29 b3 ec 	addi    r9,r9,-19476                           
ffc0b568:	91 21 00 18 	stw     r9,24(r1)                              
                                                                      
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
ffc0b56c:	3d 20 00 00 	lis     r9,0                                   
    return true;                                                      
ffc0b570:	38 60 00 01 	li      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() ) ) {                
ffc0b574:	80 09 27 74 	lwz     r0,10100(r9)                           
ffc0b578:	2f 80 00 03 	cmpwi   cr7,r0,3                               
ffc0b57c:	41 9e 00 7c 	beq-    cr7,ffc0b5f8 <_Heap_Walk+0x10c>        <== ALWAYS TAKEN
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
ffc0b580:	80 01 00 6c 	lwz     r0,108(r1)                             
ffc0b584:	81 c1 00 20 	lwz     r14,32(r1)                             
ffc0b588:	7c 08 03 a6 	mtlr    r0                                     
ffc0b58c:	81 e1 00 24 	lwz     r15,36(r1)                             
ffc0b590:	82 01 00 28 	lwz     r16,40(r1)                             
ffc0b594:	82 21 00 2c 	lwz     r17,44(r1)                             
ffc0b598:	82 41 00 30 	lwz     r18,48(r1)                             
ffc0b59c:	82 61 00 34 	lwz     r19,52(r1)                             
ffc0b5a0:	82 81 00 38 	lwz     r20,56(r1)                             
ffc0b5a4:	82 a1 00 3c 	lwz     r21,60(r1)                             
ffc0b5a8:	82 c1 00 40 	lwz     r22,64(r1)                             
ffc0b5ac:	82 e1 00 44 	lwz     r23,68(r1)                             
ffc0b5b0:	83 01 00 48 	lwz     r24,72(r1)                             
ffc0b5b4:	83 21 00 4c 	lwz     r25,76(r1)                             
ffc0b5b8:	83 41 00 50 	lwz     r26,80(r1)                             
ffc0b5bc:	83 61 00 54 	lwz     r27,84(r1)                             
ffc0b5c0:	83 81 00 58 	lwz     r28,88(r1)                             
ffc0b5c4:	83 a1 00 5c 	lwz     r29,92(r1)                             
ffc0b5c8:	83 c1 00 60 	lwz     r30,96(r1)                             
ffc0b5cc:	83 e1 00 64 	lwz     r31,100(r1)                            
ffc0b5d0:	38 21 00 68 	addi    r1,r1,104                              
ffc0b5d4:	4e 80 00 20 	blr                                            
  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;                      
ffc0b5d8:	3d 20 ff c1 	lis     r9,-63                                 
ffc0b5dc:	39 29 b3 e8 	addi    r9,r9,-19480                           
ffc0b5e0:	91 21 00 18 	stw     r9,24(r1)                              
                                                                      
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
ffc0b5e4:	3d 20 00 00 	lis     r9,0                                   
    return true;                                                      
ffc0b5e8:	38 60 00 01 	li      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() ) ) {                
ffc0b5ec:	80 09 27 74 	lwz     r0,10100(r9)                           
ffc0b5f0:	2f 80 00 03 	cmpwi   cr7,r0,3                               
ffc0b5f4:	40 9e ff 8c 	bne+    cr7,ffc0b580 <_Heap_Walk+0x94>         
  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)(                                                         
ffc0b5f8:	80 1f 00 0c 	lwz     r0,12(r31)                             
ffc0b5fc:	3c a0 ff c2 	lis     r5,-62                                 
ffc0b600:	81 1f 00 18 	lwz     r8,24(r31)                             
ffc0b604:	7f 23 cb 78 	mr      r3,r25                                 
ffc0b608:	81 3f 00 1c 	lwz     r9,28(r31)                             
ffc0b60c:	38 80 00 00 	li      r4,0                                   
ffc0b610:	81 7f 00 08 	lwz     r11,8(r31)                             
ffc0b614:	38 a5 a3 5c 	addi    r5,r5,-23716                           
ffc0b618:	90 01 00 10 	stw     r0,16(r1)                              
ffc0b61c:	7f 66 db 78 	mr      r6,r27                                 
ffc0b620:	7f 07 c3 78 	mr      r7,r24                                 
ffc0b624:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0b628:	7f 4a d3 78 	mr      r10,r26                                
ffc0b62c:	92 e1 00 08 	stw     r23,8(r1)                              
ffc0b630:	7c 09 03 a6 	mtctr   r0                                     
ffc0b634:	91 61 00 0c 	stw     r11,12(r1)                             
ffc0b638:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0b63c:	4e 80 04 21 	bctrl                                          
    heap->area_begin, heap->area_end,                                 
    first_block, last_block,                                          
    first_free_block, last_free_block                                 
  );                                                                  
                                                                      
  if ( page_size == 0 ) {                                             
ffc0b640:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
ffc0b644:	41 9e 00 ac 	beq-    cr7,ffc0b6f0 <_Heap_Walk+0x204>        
    (*printer)( source, true, "page size is zero\n" );                
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Addresses_Is_aligned( (void *) page_size ) ) {               
ffc0b648:	73 67 00 07 	andi.   r7,r27,7                               
ffc0b64c:	40 82 00 cc 	bne-    ffc0b718 <_Heap_Walk+0x22c>            
RTEMS_INLINE_ROUTINE bool _Heap_Is_aligned(                           
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return (value % alignment) == 0;                                    
ffc0b650:	7c 18 db 96 	divwu   r0,r24,r27                             
ffc0b654:	7c 00 d9 d6 	mullw   r0,r0,r27                              
    );                                                                
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Heap_Is_aligned( min_block_size, page_size ) ) {             
ffc0b658:	7f 98 00 00 	cmpw    cr7,r24,r0                             
ffc0b65c:	40 9e 00 e8 	bne-    cr7,ffc0b744 <_Heap_Walk+0x258>        
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Alloc_area_of_block(             
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block + HEAP_BLOCK_HEADER_SIZE;                  
ffc0b660:	38 1a 00 08 	addi    r0,r26,8                               
RTEMS_INLINE_ROUTINE bool _Heap_Is_aligned(                           
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return (value % alignment) == 0;                                    
ffc0b664:	7d 20 db 96 	divwu   r9,r0,r27                              
ffc0b668:	7d 29 d9 d6 	mullw   r9,r9,r27                              
    );                                                                
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if (                                                                
ffc0b66c:	7f 80 48 00 	cmpw    cr7,r0,r9                              
ffc0b670:	40 9e 01 00 	bne-    cr7,ffc0b770 <_Heap_Walk+0x284>        
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
ffc0b674:	82 da 00 04 	lwz     r22,4(r26)                             
    );                                                                
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Heap_Is_prev_used( first_block ) ) {                         
ffc0b678:	72 c7 00 01 	andi.   r7,r22,1                               
ffc0b67c:	41 82 01 64 	beq-    ffc0b7e0 <_Heap_Walk+0x2f4>            
    - 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;                
ffc0b680:	81 37 00 04 	lwz     r9,4(r23)                              
ffc0b684:	55 29 00 3c 	rlwinm  r9,r9,0,0,30                           
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_at(                      
  const Heap_Block *block,                                            
  uintptr_t offset                                                    
)                                                                     
{                                                                     
  return (Heap_Block *) ((uintptr_t) block + offset);                 
ffc0b688:	7d 37 4a 14 	add     r9,r23,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;                 
ffc0b68c:	80 09 00 04 	lwz     r0,4(r9)                               
    );                                                                
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( _Heap_Is_free( last_block ) ) {                                
ffc0b690:	70 07 00 01 	andi.   r7,r0,1                                
ffc0b694:	41 82 00 34 	beq-    ffc0b6c8 <_Heap_Walk+0x1dc>            
    );                                                                
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if (                                                                
ffc0b698:	7f 9a 48 00 	cmpw    cr7,r26,r9                             
ffc0b69c:	41 9e 01 00 	beq-    cr7,ffc0b79c <_Heap_Walk+0x2b0>        <== ALWAYS TAKEN
    _Heap_Block_at( last_block, _Heap_Block_size( last_block ) ) != first_block
  ) {                                                                 
    (*printer)(                                                       
ffc0b6a0:	80 01 00 18 	lwz     r0,24(r1)                              <== NOT EXECUTED
ffc0b6a4:	3c a0 ff c2 	lis     r5,-62                                 <== NOT EXECUTED
ffc0b6a8:	7f 23 cb 78 	mr      r3,r25                                 <== NOT EXECUTED
ffc0b6ac:	38 80 00 01 	li      r4,1                                   <== NOT EXECUTED
ffc0b6b0:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc0b6b4:	38 a5 a4 c4 	addi    r5,r5,-23356                           <== NOT EXECUTED
ffc0b6b8:	4c c6 31 82 	crclr   4*cr1+eq                               <== NOT EXECUTED
ffc0b6bc:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
ffc0b6c0:	38 60 00 00 	li      r3,0                                   <== NOT EXECUTED
ffc0b6c4:	4b ff fe bc 	b       ffc0b580 <_Heap_Walk+0x94>             <== NOT EXECUTED
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( _Heap_Is_free( last_block ) ) {                                
    (*printer)(                                                       
ffc0b6c8:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0b6cc:	3c a0 ff c2 	lis     r5,-62                                 
ffc0b6d0:	7f 23 cb 78 	mr      r3,r25                                 
ffc0b6d4:	38 80 00 01 	li      r4,1                                   
ffc0b6d8:	7c 09 03 a6 	mtctr   r0                                     
ffc0b6dc:	38 a5 a4 ac 	addi    r5,r5,-23380                           
ffc0b6e0:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0b6e4:	4e 80 04 21 	bctrl                                          
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
ffc0b6e8:	38 60 00 00 	li      r3,0                                   
ffc0b6ec:	4b ff fe 94 	b       ffc0b580 <_Heap_Walk+0x94>             
    first_block, last_block,                                          
    first_free_block, last_free_block                                 
  );                                                                  
                                                                      
  if ( page_size == 0 ) {                                             
    (*printer)( source, true, "page size is zero\n" );                
ffc0b6f0:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0b6f4:	3c a0 ff c2 	lis     r5,-62                                 
ffc0b6f8:	7f 23 cb 78 	mr      r3,r25                                 
ffc0b6fc:	38 80 00 01 	li      r4,1                                   
ffc0b700:	7c 09 03 a6 	mtctr   r0                                     
ffc0b704:	38 a5 a3 f0 	addi    r5,r5,-23568                           
ffc0b708:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0b70c:	4e 80 04 21 	bctrl                                          
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
ffc0b710:	38 60 00 00 	li      r3,0                                   
ffc0b714:	4b ff fe 6c 	b       ffc0b580 <_Heap_Walk+0x94>             
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Addresses_Is_aligned( (void *) page_size ) ) {               
    (*printer)(                                                       
ffc0b718:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0b71c:	3c a0 ff c2 	lis     r5,-62                                 
ffc0b720:	7f 23 cb 78 	mr      r3,r25                                 
ffc0b724:	38 80 00 01 	li      r4,1                                   
ffc0b728:	7c 09 03 a6 	mtctr   r0                                     
ffc0b72c:	38 a5 a4 04 	addi    r5,r5,-23548                           
ffc0b730:	7f 66 db 78 	mr      r6,r27                                 
ffc0b734:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0b738:	4e 80 04 21 	bctrl                                          
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
ffc0b73c:	38 60 00 00 	li      r3,0                                   
ffc0b740:	4b ff fe 40 	b       ffc0b580 <_Heap_Walk+0x94>             
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Heap_Is_aligned( min_block_size, page_size ) ) {             
    (*printer)(                                                       
ffc0b744:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0b748:	3c a0 ff c2 	lis     r5,-62                                 
ffc0b74c:	7f 23 cb 78 	mr      r3,r25                                 
ffc0b750:	38 80 00 01 	li      r4,1                                   
ffc0b754:	7c 09 03 a6 	mtctr   r0                                     
ffc0b758:	38 a5 a4 24 	addi    r5,r5,-23516                           
ffc0b75c:	7f 06 c3 78 	mr      r6,r24                                 
ffc0b760:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0b764:	4e 80 04 21 	bctrl                                          
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
ffc0b768:	38 60 00 00 	li      r3,0                                   
ffc0b76c:	4b ff fe 14 	b       ffc0b580 <_Heap_Walk+0x94>             
  }                                                                   
                                                                      
  if (                                                                
    !_Heap_Is_aligned( _Heap_Alloc_area_of_block( first_block ), page_size )
  ) {                                                                 
    (*printer)(                                                       
ffc0b770:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0b774:	3c a0 ff c2 	lis     r5,-62                                 
ffc0b778:	7f 23 cb 78 	mr      r3,r25                                 
ffc0b77c:	38 80 00 01 	li      r4,1                                   
ffc0b780:	7c 09 03 a6 	mtctr   r0                                     
ffc0b784:	38 a5 a4 48 	addi    r5,r5,-23480                           
ffc0b788:	7f 46 d3 78 	mr      r6,r26                                 
ffc0b78c:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0b790:	4e 80 04 21 	bctrl                                          
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
ffc0b794:	38 60 00 00 	li      r3,0                                   
ffc0b798:	4b ff fd e8 	b       ffc0b580 <_Heap_Walk+0x94>             
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
ffc0b79c:	80 df 00 08 	lwz     r6,8(r31)                              
  int source,                                                         
  Heap_Walk_printer printer,                                          
  Heap_Control *heap                                                  
)                                                                     
{                                                                     
  uintptr_t const page_size = heap->page_size;                        
ffc0b7a0:	81 1f 00 10 	lwz     r8,16(r31)                             
  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 ) {                            
ffc0b7a4:	7f 9f 30 00 	cmpw    cr7,r31,r6                             
ffc0b7a8:	41 9e 01 28 	beq-    cr7,ffc0b8d0 <_Heap_Walk+0x3e4>        
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
ffc0b7ac:	80 1f 00 20 	lwz     r0,32(r31)                             
  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;             
ffc0b7b0:	7f 80 30 40 	cmplw   cr7,r0,r6                              
ffc0b7b4:	40 9d 00 54 	ble-    cr7,ffc0b808 <_Heap_Walk+0x31c>        <== ALWAYS TAKEN
  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)(                                                     
ffc0b7b8:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0b7bc:	3c a0 ff c2 	lis     r5,-62                                 
ffc0b7c0:	7f 23 cb 78 	mr      r3,r25                                 
ffc0b7c4:	38 80 00 01 	li      r4,1                                   
ffc0b7c8:	7c 09 03 a6 	mtctr   r0                                     
ffc0b7cc:	38 a5 a4 f4 	addi    r5,r5,-23308                           
ffc0b7d0:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0b7d4:	4e 80 04 21 	bctrl                                          
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
ffc0b7d8:	38 60 00 00 	li      r3,0                                   
ffc0b7dc:	4b ff fd a4 	b       ffc0b580 <_Heap_Walk+0x94>             
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Heap_Is_prev_used( first_block ) ) {                         
    (*printer)(                                                       
ffc0b7e0:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0b7e4:	3c a0 ff c2 	lis     r5,-62                                 
ffc0b7e8:	7f 23 cb 78 	mr      r3,r25                                 
ffc0b7ec:	38 80 00 01 	li      r4,1                                   
ffc0b7f0:	7c 09 03 a6 	mtctr   r0                                     
ffc0b7f4:	38 a5 a4 7c 	addi    r5,r5,-23428                           
ffc0b7f8:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0b7fc:	4e 80 04 21 	bctrl                                          
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
ffc0b800:	38 60 00 00 	li      r3,0                                   
ffc0b804:	4b ff fd 7c 	b       ffc0b580 <_Heap_Walk+0x94>             
ffc0b808:	81 5f 00 24 	lwz     r10,36(r31)                            
ffc0b80c:	7f 8a 30 40 	cmplw   cr7,r10,r6                             
ffc0b810:	41 bc ff a8 	blt-    cr7,ffc0b7b8 <_Heap_Walk+0x2cc>        <== NEVER TAKEN
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Alloc_area_of_block(             
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block + HEAP_BLOCK_HEADER_SIZE;                  
ffc0b814:	39 26 00 08 	addi    r9,r6,8                                
RTEMS_INLINE_ROUTINE bool _Heap_Is_aligned(                           
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return (value % alignment) == 0;                                    
ffc0b818:	7d 69 43 96 	divwu   r11,r9,r8                              
ffc0b81c:	7d 6b 41 d6 	mullw   r11,r11,r8                             
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if (                                                              
ffc0b820:	7f 89 58 00 	cmpw    cr7,r9,r11                             
ffc0b824:	40 9e 03 a8 	bne-    cr7,ffc0bbcc <_Heap_Walk+0x6e0>        <== 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;                
ffc0b828:	81 26 00 04 	lwz     r9,4(r6)                               
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( _Heap_Is_used( free_block ) ) {                              
ffc0b82c:	7f eb fb 78 	mr      r11,r31                                
ffc0b830:	7c c5 33 78 	mr      r5,r6                                  
ffc0b834:	55 29 00 3c 	rlwinm  r9,r9,0,0,30                           
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
ffc0b838:	7d 26 4a 14 	add     r9,r6,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;                 
ffc0b83c:	81 29 00 04 	lwz     r9,4(r9)                               
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( _Heap_Is_used( free_block ) ) {                              
ffc0b840:	71 27 00 01 	andi.   r7,r9,1                                
ffc0b844:	41 a2 00 58 	beq+    ffc0b89c <_Heap_Walk+0x3b0>            <== ALWAYS TAKEN
ffc0b848:	48 00 03 ac 	b       ffc0bbf4 <_Heap_Walk+0x708>            <== NOT EXECUTED
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    prev_block = free_block;                                          
    free_block = free_block->next;                                    
ffc0b84c:	80 c6 00 08 	lwz     r6,8(r6)                               
  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 ) {                            
ffc0b850:	7f 9f 30 00 	cmpw    cr7,r31,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;             
ffc0b854:	7f 00 30 40 	cmplw   cr6,r0,r6                              
ffc0b858:	7c 86 50 40 	cmplw   cr1,r6,r10                             
ffc0b85c:	41 9e 00 78 	beq-    cr7,ffc0b8d4 <_Heap_Walk+0x3e8>        
ffc0b860:	41 b9 ff 58 	bgt-    cr6,ffc0b7b8 <_Heap_Walk+0x2cc>        
                                                                      
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Alloc_area_of_block(             
  const Heap_Block *block                                             
)                                                                     
{                                                                     
  return (uintptr_t) block + HEAP_BLOCK_HEADER_SIZE;                  
ffc0b864:	39 26 00 08 	addi    r9,r6,8                                
  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;             
ffc0b868:	41 a5 ff 50 	bgt-    cr1,ffc0b7b8 <_Heap_Walk+0x2cc>        <== NEVER TAKEN
RTEMS_INLINE_ROUTINE bool _Heap_Is_aligned(                           
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return (value % alignment) == 0;                                    
ffc0b86c:	7c e9 43 96 	divwu   r7,r9,r8                               
ffc0b870:	7c e7 41 d6 	mullw   r7,r7,r8                               
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( _Heap_Is_used( free_block ) ) {                              
ffc0b874:	7c ab 2b 78 	mr      r11,r5                                 
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if (                                                              
ffc0b878:	7f 89 38 00 	cmpw    cr7,r9,r7                              
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( _Heap_Is_used( free_block ) ) {                              
ffc0b87c:	7c c5 33 78 	mr      r5,r6                                  
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if (                                                              
ffc0b880:	40 9e 03 4c 	bne-    cr7,ffc0bbcc <_Heap_Walk+0x6e0>        
    - 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;                
ffc0b884:	81 26 00 04 	lwz     r9,4(r6)                               
ffc0b888:	55 29 00 3c 	rlwinm  r9,r9,0,0,30                           
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
ffc0b88c:	7d 29 32 14 	add     r9,r9,r6                               
  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;                 
ffc0b890:	81 29 00 04 	lwz     r9,4(r9)                               
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( _Heap_Is_used( free_block ) ) {                              
ffc0b894:	71 27 00 01 	andi.   r7,r9,1                                
ffc0b898:	40 82 03 5c 	bne-    ffc0bbf4 <_Heap_Walk+0x708>            
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( free_block->prev != prev_block ) {                           
ffc0b89c:	80 e6 00 0c 	lwz     r7,12(r6)                              
ffc0b8a0:	7f 87 58 00 	cmpw    cr7,r7,r11                             
ffc0b8a4:	41 9e ff a8 	beq+    cr7,ffc0b84c <_Heap_Walk+0x360>        
      (*printer)(                                                     
ffc0b8a8:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0b8ac:	3c a0 ff c2 	lis     r5,-62                                 
ffc0b8b0:	7f 23 cb 78 	mr      r3,r25                                 
ffc0b8b4:	38 80 00 01 	li      r4,1                                   
ffc0b8b8:	7c 09 03 a6 	mtctr   r0                                     
ffc0b8bc:	38 a5 a5 60 	addi    r5,r5,-23200                           
ffc0b8c0:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0b8c4:	4e 80 04 21 	bctrl                                          
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
ffc0b8c8:	38 60 00 00 	li      r3,0                                   
ffc0b8cc:	4b ff fc b4 	b       ffc0b580 <_Heap_Walk+0x94>             
  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 ) {                            
ffc0b8d0:	80 1f 00 20 	lwz     r0,32(r31)                             
        "block 0x%08x: size %u\n",                                    
        block,                                                        
        block_size                                                    
      );                                                              
    } else {                                                          
      (*printer)(                                                     
ffc0b8d4:	3e 60 ff c2 	lis     r19,-62                                
    if ( !_Heap_Is_prev_used( next_block ) ) {                        
      if ( !_Heap_Walk_check_free_block( source, printer, heap, block ) ) {
        return false;                                                 
      }                                                               
    } else if (prev_used) {                                           
      (*printer)(                                                     
ffc0b8d8:	3e 80 ff c2 	lis     r20,-62                                
  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)(                                                         
ffc0b8dc:	3e 40 ff c2 	lis     r18,-62                                
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( _Heap_Is_used( free_block ) ) {                              
ffc0b8e0:	7f 5d d3 78 	mr      r29,r26                                
        "block 0x%08x: size %u\n",                                    
        block,                                                        
        block_size                                                    
      );                                                              
    } else {                                                          
      (*printer)(                                                     
ffc0b8e4:	3a 73 a7 10 	addi    r19,r19,-22768                         
    if ( !_Heap_Is_prev_used( next_block ) ) {                        
      if ( !_Heap_Walk_check_free_block( source, printer, heap, block ) ) {
        return false;                                                 
      }                                                               
    } else if (prev_used) {                                           
      (*printer)(                                                     
ffc0b8e8:	3a 94 a6 f8 	addi    r20,r20,-22792                         
  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)(                                                         
ffc0b8ec:	3a 52 a6 54 	addi    r18,r18,-22956                         
ffc0b8f0:	3e 20 ff c2 	lis     r17,-62                                
      " (= first free)"                                               
        : (block->prev == free_list_head ? " (= head)" : ""),         
    block->next,                                                      
    block->next == last_free_block ?                                  
      " (= last free)"                                                
        : (block->next == free_list_tail ? " (= tail)" : "")          
ffc0b8f4:	3e a0 ff c2 	lis     r21,-62                                
ffc0b8f8:	3d e0 ff c2 	lis     r15,-62                                
  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)(                                                         
ffc0b8fc:	3e 00 ff c2 	lis     r16,-62                                
    block,                                                            
    block_size,                                                       
    block->prev,                                                      
    block->prev == first_free_block ?                                 
      " (= first free)"                                               
        : (block->prev == free_list_head ? " (= head)" : ""),         
ffc0b900:	3d c0 ff c2 	lis     r14,-62                                
    - 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;                
ffc0b904:	56 dc 00 3c 	rlwinm  r28,r22,0,0,30                         
RTEMS_INLINE_ROUTINE Heap_Block *_Heap_Block_at(                      
  const Heap_Block *block,                                            
  uintptr_t offset                                                    
)                                                                     
{                                                                     
  return (Heap_Block *) ((uintptr_t) block + offset);                 
ffc0b908:	7f dc ea 14 	add     r30,r28,r29                            
  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;             
ffc0b90c:	7f 80 f0 40 	cmplw   cr7,r0,r30                             
ffc0b910:	40 9d 00 34 	ble-    cr7,ffc0b944 <_Heap_Walk+0x458>        <== ALWAYS TAKEN
    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)(                                                     
ffc0b914:	3c a0 ff c2 	lis     r5,-62                                 
ffc0b918:	7f 23 cb 78 	mr      r3,r25                                 
ffc0b91c:	38 80 00 01 	li      r4,1                                   
ffc0b920:	38 a5 a5 94 	addi    r5,r5,-23148                           
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( next_block_begin <= block_begin && is_not_last_block ) {     
      (*printer)(                                                     
ffc0b924:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0b928:	7f a6 eb 78 	mr      r6,r29                                 
ffc0b92c:	7f c7 f3 78 	mr      r7,r30                                 
ffc0b930:	7c 09 03 a6 	mtctr   r0                                     
ffc0b934:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0b938:	4e 80 04 21 	bctrl                                          
        "block 0x%08x: next block 0x%08x is not a successor\n",       
        block,                                                        
        next_block                                                    
      );                                                              
                                                                      
      return false;                                                   
ffc0b93c:	38 60 00 00 	li      r3,0                                   
ffc0b940:	4b ff fc 40 	b       ffc0b580 <_Heap_Walk+0x94>             
ffc0b944:	80 1f 00 24 	lwz     r0,36(r31)                             
ffc0b948:	7f 80 f0 40 	cmplw   cr7,r0,r30                             
ffc0b94c:	41 bc ff c8 	blt-    cr7,ffc0b914 <_Heap_Walk+0x428>        
RTEMS_INLINE_ROUTINE bool _Heap_Is_aligned(                           
  uintptr_t value,                                                    
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return (value % alignment) == 0;                                    
ffc0b950:	7d 3c db 96 	divwu   r9,r28,r27                             
ffc0b954:	7d 29 d9 d6 	mullw   r9,r9,r27                              
    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;               
ffc0b958:	7f a0 ba 78 	xor     r0,r29,r23                             
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( !_Heap_Is_aligned( block_size, page_size ) && is_not_last_block ) {
ffc0b95c:	7f 9c 48 00 	cmpw    cr7,r28,r9                             
    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;               
ffc0b960:	7c 00 00 34 	cntlzw  r0,r0                                  
ffc0b964:	54 00 d9 7e 	rlwinm  r0,r0,27,5,31                          
ffc0b968:	68 00 00 01 	xori    r0,r0,1                                
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( !_Heap_Is_aligned( block_size, page_size ) && is_not_last_block ) {
ffc0b96c:	41 9e 00 0c 	beq-    cr7,ffc0b978 <_Heap_Walk+0x48c>        
ffc0b970:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0b974:	40 9e 01 e0 	bne-    cr7,ffc0bb54 <_Heap_Walk+0x668>        
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( block_size < min_block_size && is_not_last_block ) {         
ffc0b978:	7f 98 e0 40 	cmplw   cr7,r24,r28                            
ffc0b97c:	40 9d 00 0c 	ble-    cr7,ffc0b988 <_Heap_Walk+0x49c>        
ffc0b980:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0b984:	40 9e 02 00 	bne-    cr7,ffc0bb84 <_Heap_Walk+0x698>        <== ALWAYS TAKEN
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( next_block_begin <= block_begin && is_not_last_block ) {     
ffc0b988:	7f 9d f0 40 	cmplw   cr7,r29,r30                            
ffc0b98c:	41 9c 00 0c 	blt-    cr7,ffc0b998 <_Heap_Walk+0x4ac>        
ffc0b990:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0b994:	40 9e 02 24 	bne-    cr7,ffc0bbb8 <_Heap_Walk+0x6cc>        
  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;                 
ffc0b998:	80 1e 00 04 	lwz     r0,4(r30)                              
ffc0b99c:	56 d6 07 fe 	clrlwi  r22,r22,31                             
      );                                                              
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( !_Heap_Is_prev_used( next_block ) ) {                        
ffc0b9a0:	70 07 00 01 	andi.   r7,r0,1                                
ffc0b9a4:	41 82 00 74 	beq-    ffc0ba18 <_Heap_Walk+0x52c>            
      if ( !_Heap_Walk_check_free_block( source, printer, heap, block ) ) {
        return false;                                                 
      }                                                               
    } else if (prev_used) {                                           
ffc0b9a8:	2f 96 00 00 	cmpwi   cr7,r22,0                              
ffc0b9ac:	41 9e 00 40 	beq-    cr7,ffc0b9ec <_Heap_Walk+0x500>        
      (*printer)(                                                     
ffc0b9b0:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0b9b4:	7f 23 cb 78 	mr      r3,r25                                 
ffc0b9b8:	38 80 00 00 	li      r4,0                                   
ffc0b9bc:	7e 85 a3 78 	mr      r5,r20                                 
ffc0b9c0:	7c 09 03 a6 	mtctr   r0                                     
ffc0b9c4:	7f a6 eb 78 	mr      r6,r29                                 
ffc0b9c8:	7f 87 e3 78 	mr      r7,r28                                 
ffc0b9cc:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0b9d0:	4e 80 04 21 	bctrl                                          
        block->prev_size                                              
      );                                                              
    }                                                                 
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
ffc0b9d4:	7f 9a f0 00 	cmpw    cr7,r26,r30                            
ffc0b9d8:	41 9e 01 0c 	beq-    cr7,ffc0bae4 <_Heap_Walk+0x5f8>        
ffc0b9dc:	82 de 00 04 	lwz     r22,4(r30)                             
ffc0b9e0:	7f dd f3 78 	mr      r29,r30                                
ffc0b9e4:	80 1f 00 20 	lwz     r0,32(r31)                             
ffc0b9e8:	4b ff ff 1c 	b       ffc0b904 <_Heap_Walk+0x418>            
        "block 0x%08x: size %u\n",                                    
        block,                                                        
        block_size                                                    
      );                                                              
    } else {                                                          
      (*printer)(                                                     
ffc0b9ec:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0b9f0:	7f a6 eb 78 	mr      r6,r29                                 
ffc0b9f4:	7f 23 cb 78 	mr      r3,r25                                 
ffc0b9f8:	81 1d 00 00 	lwz     r8,0(r29)                              
ffc0b9fc:	38 80 00 00 	li      r4,0                                   
ffc0ba00:	7c 09 03 a6 	mtctr   r0                                     
ffc0ba04:	7e 65 9b 78 	mr      r5,r19                                 
ffc0ba08:	7f 87 e3 78 	mr      r7,r28                                 
ffc0ba0c:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0ba10:	4e 80 04 21 	bctrl                                          
ffc0ba14:	4b ff ff c0 	b       ffc0b9d4 <_Heap_Walk+0x4e8>            
    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 ?                                 
ffc0ba18:	81 1d 00 0c 	lwz     r8,12(r29)                             
  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)(                                                         
ffc0ba1c:	81 3f 00 08 	lwz     r9,8(r31)                              
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
ffc0ba20:	80 1f 00 0c 	lwz     r0,12(r31)                             
  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)(                                                         
ffc0ba24:	7f 89 40 00 	cmpw    cr7,r9,r8                              
ffc0ba28:	41 9e 01 00 	beq-    cr7,ffc0bb28 <_Heap_Walk+0x63c>        
    block,                                                            
    block_size,                                                       
    block->prev,                                                      
    block->prev == first_free_block ?                                 
      " (= first free)"                                               
        : (block->prev == free_list_head ? " (= head)" : ""),         
ffc0ba2c:	7f 9f 40 00 	cmpw    cr7,r31,r8                             
ffc0ba30:	41 9e 01 08 	beq-    cr7,ffc0bb38 <_Heap_Walk+0x64c>        
ffc0ba34:	39 35 a6 c4 	addi    r9,r21,-22844                          
    block->next,                                                      
    block->next == last_free_block ?                                  
ffc0ba38:	81 5d 00 08 	lwz     r10,8(r29)                             
  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)(                                                         
ffc0ba3c:	7f 80 50 00 	cmpw    cr7,r0,r10                             
ffc0ba40:	41 9e 00 e0 	beq-    cr7,ffc0bb20 <_Heap_Walk+0x634>        
      " (= first free)"                                               
        : (block->prev == free_list_head ? " (= head)" : ""),         
    block->next,                                                      
    block->next == last_free_block ?                                  
      " (= last free)"                                                
        : (block->next == free_list_tail ? " (= tail)" : "")          
ffc0ba44:	7f 9f 50 00 	cmpw    cr7,r31,r10                            
ffc0ba48:	41 9e 00 e8 	beq-    cr7,ffc0bb30 <_Heap_Walk+0x644>        
ffc0ba4c:	38 15 a6 c4 	addi    r0,r21,-22844                          
  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)(                                                         
ffc0ba50:	90 01 00 08 	stw     r0,8(r1)                               
ffc0ba54:	7f 23 cb 78 	mr      r3,r25                                 
ffc0ba58:	38 80 00 00 	li      r4,0                                   
ffc0ba5c:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0ba60:	7e 45 93 78 	mr      r5,r18                                 
ffc0ba64:	7f a6 eb 78 	mr      r6,r29                                 
ffc0ba68:	7f 87 e3 78 	mr      r7,r28                                 
ffc0ba6c:	7c 09 03 a6 	mtctr   r0                                     
ffc0ba70:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0ba74:	4e 80 04 21 	bctrl                                          
    block->next == last_free_block ?                                  
      " (= last free)"                                                
        : (block->next == free_list_tail ? " (= tail)" : "")          
  );                                                                  
                                                                      
  if ( block_size != next_block->prev_size ) {                        
ffc0ba78:	81 1e 00 00 	lwz     r8,0(r30)                              
ffc0ba7c:	7f 9c 40 00 	cmpw    cr7,r28,r8                             
ffc0ba80:	40 9e 00 6c 	bne-    cr7,ffc0baec <_Heap_Walk+0x600>        
    );                                                                
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !prev_used ) {                                                 
ffc0ba84:	2f 96 00 00 	cmpwi   cr7,r22,0                              
ffc0ba88:	41 9e 00 b8 	beq-    cr7,ffc0bb40 <_Heap_Walk+0x654>        
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
}                                                                     
ffc0ba8c:	81 3f 00 08 	lwz     r9,8(r31)                              
)                                                                     
{                                                                     
  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 ) {                            
ffc0ba90:	7f 9f 48 00 	cmpw    cr7,r31,r9                             
ffc0ba94:	41 9e 00 24 	beq-    cr7,ffc0bab8 <_Heap_Walk+0x5cc>        <== NEVER TAKEN
    if ( free_block == block ) {                                      
ffc0ba98:	7f 9d 48 00 	cmpw    cr7,r29,r9                             
ffc0ba9c:	40 be 00 0c 	bne+    cr7,ffc0baa8 <_Heap_Walk+0x5bc>        
ffc0baa0:	4b ff ff 34 	b       ffc0b9d4 <_Heap_Walk+0x4e8>            
ffc0baa4:	41 ba ff 30 	beq-    cr6,ffc0b9d4 <_Heap_Walk+0x4e8>        
      return true;                                                    
    }                                                                 
    free_block = free_block->next;                                    
ffc0baa8:	81 29 00 08 	lwz     r9,8(r9)                               
)                                                                     
{                                                                     
  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 ) {                            
ffc0baac:	7f 9f 48 00 	cmpw    cr7,r31,r9                             
    if ( free_block == block ) {                                      
ffc0bab0:	7f 1d 48 00 	cmpw    cr6,r29,r9                             
)                                                                     
{                                                                     
  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 ) {                            
ffc0bab4:	40 9e ff f0 	bne+    cr7,ffc0baa4 <_Heap_Walk+0x5b8>        
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !_Heap_Walk_is_in_free_list( heap, block ) ) {                 
    (*printer)(                                                       
ffc0bab8:	3c a0 ff c2 	lis     r5,-62                                 
ffc0babc:	7f 23 cb 78 	mr      r3,r25                                 
ffc0bac0:	38 80 00 01 	li      r4,1                                   
ffc0bac4:	38 a5 a7 38 	addi    r5,r5,-22728                           
ffc0bac8:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0bacc:	7f a6 eb 78 	mr      r6,r29                                 
ffc0bad0:	7c 09 03 a6 	mtctr   r0                                     
ffc0bad4:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0bad8:	4e 80 04 21 	bctrl                                          
      return false;                                                   
    }                                                                 
                                                                      
    if ( !_Heap_Is_prev_used( next_block ) ) {                        
      if ( !_Heap_Walk_check_free_block( source, printer, heap, block ) ) {
        return false;                                                 
ffc0badc:	38 60 00 00 	li      r3,0                                   
ffc0bae0:	4b ff fa a0 	b       ffc0b580 <_Heap_Walk+0x94>             
    }                                                                 
                                                                      
    block = next_block;                                               
  } while ( block != first_block );                                   
                                                                      
  return true;                                                        
ffc0bae4:	38 60 00 01 	li      r3,1                                   
ffc0bae8:	4b ff fa 98 	b       ffc0b580 <_Heap_Walk+0x94>             
      " (= last free)"                                                
        : (block->next == free_list_tail ? " (= tail)" : "")          
  );                                                                  
                                                                      
  if ( block_size != next_block->prev_size ) {                        
    (*printer)(                                                       
ffc0baec:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0baf0:	3c a0 ff c2 	lis     r5,-62                                 
ffc0baf4:	7f 23 cb 78 	mr      r3,r25                                 
ffc0baf8:	38 80 00 01 	li      r4,1                                   
ffc0bafc:	7c 09 03 a6 	mtctr   r0                                     
ffc0bb00:	38 a5 a6 8c 	addi    r5,r5,-22900                           
ffc0bb04:	7f a6 eb 78 	mr      r6,r29                                 
ffc0bb08:	7f 87 e3 78 	mr      r7,r28                                 
ffc0bb0c:	7f c9 f3 78 	mr      r9,r30                                 
ffc0bb10:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0bb14:	4e 80 04 21 	bctrl                                          
      return false;                                                   
    }                                                                 
                                                                      
    if ( !_Heap_Is_prev_used( next_block ) ) {                        
      if ( !_Heap_Walk_check_free_block( source, printer, heap, block ) ) {
        return false;                                                 
ffc0bb18:	38 60 00 00 	li      r3,0                                   
ffc0bb1c:	4b ff fa 64 	b       ffc0b580 <_Heap_Walk+0x94>             
  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)(                                                         
ffc0bb20:	38 11 a3 40 	addi    r0,r17,-23744                          
ffc0bb24:	4b ff ff 2c 	b       ffc0ba50 <_Heap_Walk+0x564>            
ffc0bb28:	39 30 a3 24 	addi    r9,r16,-23772                          
ffc0bb2c:	4b ff ff 0c 	b       ffc0ba38 <_Heap_Walk+0x54c>            
      " (= first free)"                                               
        : (block->prev == free_list_head ? " (= head)" : ""),         
    block->next,                                                      
    block->next == last_free_block ?                                  
      " (= last free)"                                                
        : (block->next == free_list_tail ? " (= tail)" : "")          
ffc0bb30:	38 0f a3 50 	addi    r0,r15,-23728                          
ffc0bb34:	4b ff ff 1c 	b       ffc0ba50 <_Heap_Walk+0x564>            
    block,                                                            
    block_size,                                                       
    block->prev,                                                      
    block->prev == first_free_block ?                                 
      " (= first free)"                                               
        : (block->prev == free_list_head ? " (= head)" : ""),         
ffc0bb38:	39 2e a3 34 	addi    r9,r14,-23756                          
ffc0bb3c:	4b ff fe fc 	b       ffc0ba38 <_Heap_Walk+0x54c>            
                                                                      
    return false;                                                     
  }                                                                   
                                                                      
  if ( !prev_used ) {                                                 
    (*printer)(                                                       
ffc0bb40:	3c a0 ff c2 	lis     r5,-62                                 
ffc0bb44:	7f 23 cb 78 	mr      r3,r25                                 
ffc0bb48:	38 80 00 01 	li      r4,1                                   
ffc0bb4c:	38 a5 a6 c8 	addi    r5,r5,-22840                           
ffc0bb50:	4b ff ff 78 	b       ffc0bac8 <_Heap_Walk+0x5dc>            
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( !_Heap_Is_aligned( block_size, page_size ) && is_not_last_block ) {
      (*printer)(                                                     
ffc0bb54:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0bb58:	3c a0 ff c2 	lis     r5,-62                                 
ffc0bb5c:	7f 23 cb 78 	mr      r3,r25                                 
ffc0bb60:	38 80 00 01 	li      r4,1                                   
ffc0bb64:	7c 09 03 a6 	mtctr   r0                                     
ffc0bb68:	38 a5 a5 c4 	addi    r5,r5,-23100                           
ffc0bb6c:	7f a6 eb 78 	mr      r6,r29                                 
ffc0bb70:	7f 87 e3 78 	mr      r7,r28                                 
ffc0bb74:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0bb78:	4e 80 04 21 	bctrl                                          
        "block 0x%08x: block size %u not page aligned\n",             
        block,                                                        
        block_size                                                    
      );                                                              
                                                                      
      return false;                                                   
ffc0bb7c:	38 60 00 00 	li      r3,0                                   
ffc0bb80:	4b ff fa 00 	b       ffc0b580 <_Heap_Walk+0x94>             
    }                                                                 
                                                                      
    if ( block_size < min_block_size && is_not_last_block ) {         
      (*printer)(                                                     
ffc0bb84:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0bb88:	3c a0 ff c2 	lis     r5,-62                                 
ffc0bb8c:	7f 23 cb 78 	mr      r3,r25                                 
ffc0bb90:	38 80 00 01 	li      r4,1                                   
ffc0bb94:	7c 09 03 a6 	mtctr   r0                                     
ffc0bb98:	38 a5 a5 f4 	addi    r5,r5,-23052                           
ffc0bb9c:	7f a6 eb 78 	mr      r6,r29                                 
ffc0bba0:	7f 87 e3 78 	mr      r7,r28                                 
ffc0bba4:	7f 08 c3 78 	mr      r8,r24                                 
ffc0bba8:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0bbac:	4e 80 04 21 	bctrl                                          
        block,                                                        
        block_size,                                                   
        min_block_size                                                
      );                                                              
                                                                      
      return false;                                                   
ffc0bbb0:	38 60 00 00 	li      r3,0                                   
ffc0bbb4:	4b ff f9 cc 	b       ffc0b580 <_Heap_Walk+0x94>             
    }                                                                 
                                                                      
    if ( next_block_begin <= block_begin && is_not_last_block ) {     
      (*printer)(                                                     
ffc0bbb8:	3c a0 ff c2 	lis     r5,-62                                 
ffc0bbbc:	7f 23 cb 78 	mr      r3,r25                                 
ffc0bbc0:	38 80 00 01 	li      r4,1                                   
ffc0bbc4:	38 a5 a6 20 	addi    r5,r5,-23008                           
ffc0bbc8:	4b ff fd 5c 	b       ffc0b924 <_Heap_Walk+0x438>            
    }                                                                 
                                                                      
    if (                                                              
      !_Heap_Is_aligned( _Heap_Alloc_area_of_block( free_block ), page_size )
    ) {                                                               
      (*printer)(                                                     
ffc0bbcc:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0bbd0:	3c a0 ff c2 	lis     r5,-62                                 
ffc0bbd4:	7f 23 cb 78 	mr      r3,r25                                 
ffc0bbd8:	38 80 00 01 	li      r4,1                                   
ffc0bbdc:	7c 09 03 a6 	mtctr   r0                                     
ffc0bbe0:	38 a5 a5 14 	addi    r5,r5,-23276                           
ffc0bbe4:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0bbe8:	4e 80 04 21 	bctrl                                          
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
ffc0bbec:	38 60 00 00 	li      r3,0                                   
ffc0bbf0:	4b ff f9 90 	b       ffc0b580 <_Heap_Walk+0x94>             
                                                                      
      return false;                                                   
    }                                                                 
                                                                      
    if ( _Heap_Is_used( free_block ) ) {                              
      (*printer)(                                                     
ffc0bbf4:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0bbf8:	3c a0 ff c2 	lis     r5,-62                                 
ffc0bbfc:	7f 23 cb 78 	mr      r3,r25                                 
ffc0bc00:	38 80 00 01 	li      r4,1                                   
ffc0bc04:	7c 09 03 a6 	mtctr   r0                                     
ffc0bc08:	38 a5 a5 44 	addi    r5,r5,-23228                           
ffc0bc0c:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0bc10:	4e 80 04 21 	bctrl                                          
  if ( !_System_state_Is_up( _System_state_Get() ) ) {                
    return true;                                                      
  }                                                                   
                                                                      
  if ( !_Heap_Walk_check_control( source, printer, heap ) ) {         
    return false;                                                     
ffc0bc14:	38 60 00 00 	li      r3,0                                   
ffc0bc18:	4b ff f9 68 	b       ffc0b580 <_Heap_Walk+0x94>             
                                                                      

ffc0b3ec <_Heap_Walk_print>: static void _Heap_Walk_print( int source, bool error, const char *fmt, ... ) {
ffc0b3ec:	94 21 ff 88 	stwu    r1,-120(r1)                            
ffc0b3f0:	7c 08 02 a6 	mflr    r0                                     
ffc0b3f4:	93 e1 00 74 	stw     r31,116(r1)                            
ffc0b3f8:	90 01 00 7c 	stw     r0,124(r1)                             
ffc0b3fc:	7c 60 1b 78 	mr      r0,r3                                  
ffc0b400:	90 c1 00 1c 	stw     r6,28(r1)                              
ffc0b404:	90 e1 00 20 	stw     r7,32(r1)                              
ffc0b408:	91 01 00 24 	stw     r8,36(r1)                              
ffc0b40c:	91 21 00 28 	stw     r9,40(r1)                              
ffc0b410:	91 41 00 2c 	stw     r10,44(r1)                             
ffc0b414:	40 86 00 24 	bne-    cr1,ffc0b438 <_Heap_Walk_print+0x4c>   <== ALWAYS TAKEN
ffc0b418:	d8 21 00 30 	stfd    f1,48(r1)                              <== NOT EXECUTED
ffc0b41c:	d8 41 00 38 	stfd    f2,56(r1)                              <== NOT EXECUTED
ffc0b420:	d8 61 00 40 	stfd    f3,64(r1)                              <== NOT EXECUTED
ffc0b424:	d8 81 00 48 	stfd    f4,72(r1)                              <== NOT EXECUTED
ffc0b428:	d8 a1 00 50 	stfd    f5,80(r1)                              <== NOT EXECUTED
ffc0b42c:	d8 c1 00 58 	stfd    f6,88(r1)                              <== NOT EXECUTED
ffc0b430:	d8 e1 00 60 	stfd    f7,96(r1)                              <== NOT EXECUTED
ffc0b434:	d9 01 00 68 	stfd    f8,104(r1)                             <== NOT EXECUTED
  va_list ap;                                                         
                                                                      
  if ( error ) {                                                      
ffc0b438:	2f 84 00 00 	cmpwi   cr7,r4,0                               
{                                                                     
  /* Do nothing */                                                    
}                                                                     
                                                                      
static void _Heap_Walk_print( int source, bool error, const char *fmt, ... )
{                                                                     
ffc0b43c:	7c bf 2b 78 	mr      r31,r5                                 
  va_list ap;                                                         
                                                                      
  if ( error ) {                                                      
ffc0b440:	40 9e 00 58 	bne-    cr7,ffc0b498 <_Heap_Walk_print+0xac>   
    printk( "FAIL[%d]: ", source );                                   
  } else {                                                            
    printk( "PASS[%d]: ", source );                                   
ffc0b444:	3c 60 ff c2 	lis     r3,-62                                 
ffc0b448:	7c 04 03 78 	mr      r4,r0                                  
ffc0b44c:	38 63 a3 18 	addi    r3,r3,-23784                           
ffc0b450:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0b454:	4b ff b1 9d 	bl      ffc065f0 <printk>                      
  }                                                                   
                                                                      
  va_start( ap, fmt );                                                
ffc0b458:	38 00 00 03 	li      r0,3                                   
ffc0b45c:	98 01 00 08 	stb     r0,8(r1)                               
ffc0b460:	38 00 00 00 	li      r0,0                                   
  vprintk( fmt, ap );                                                 
ffc0b464:	7f e3 fb 78 	mr      r3,r31                                 
    printk( "FAIL[%d]: ", source );                                   
  } else {                                                            
    printk( "PASS[%d]: ", source );                                   
  }                                                                   
                                                                      
  va_start( ap, fmt );                                                
ffc0b468:	98 01 00 09 	stb     r0,9(r1)                               
ffc0b46c:	38 01 00 80 	addi    r0,r1,128                              
  vprintk( fmt, ap );                                                 
ffc0b470:	38 81 00 08 	addi    r4,r1,8                                
    printk( "FAIL[%d]: ", source );                                   
  } else {                                                            
    printk( "PASS[%d]: ", source );                                   
  }                                                                   
                                                                      
  va_start( ap, fmt );                                                
ffc0b474:	90 01 00 0c 	stw     r0,12(r1)                              
ffc0b478:	38 01 00 10 	addi    r0,r1,16                               
ffc0b47c:	90 01 00 10 	stw     r0,16(r1)                              
  vprintk( fmt, ap );                                                 
ffc0b480:	4b ff d5 6d 	bl      ffc089ec <vprintk>                     
  va_end( ap );                                                       
}                                                                     
ffc0b484:	80 01 00 7c 	lwz     r0,124(r1)                             
ffc0b488:	83 e1 00 74 	lwz     r31,116(r1)                            
ffc0b48c:	38 21 00 78 	addi    r1,r1,120                              
ffc0b490:	7c 08 03 a6 	mtlr    r0                                     
ffc0b494:	4e 80 00 20 	blr                                            
static void _Heap_Walk_print( int source, bool error, const char *fmt, ... )
{                                                                     
  va_list ap;                                                         
                                                                      
  if ( error ) {                                                      
    printk( "FAIL[%d]: ", source );                                   
ffc0b498:	3c 60 ff c2 	lis     r3,-62                                 
ffc0b49c:	7c 04 03 78 	mr      r4,r0                                  
ffc0b4a0:	38 63 a3 0c 	addi    r3,r3,-23796                           
ffc0b4a4:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0b4a8:	4b ff b1 49 	bl      ffc065f0 <printk>                      
  } else {                                                            
    printk( "PASS[%d]: ", source );                                   
  }                                                                   
                                                                      
  va_start( ap, fmt );                                                
ffc0b4ac:	38 00 00 03 	li      r0,3                                   
ffc0b4b0:	98 01 00 08 	stb     r0,8(r1)                               
ffc0b4b4:	38 00 00 00 	li      r0,0                                   
  vprintk( fmt, ap );                                                 
ffc0b4b8:	7f e3 fb 78 	mr      r3,r31                                 
    printk( "FAIL[%d]: ", source );                                   
  } else {                                                            
    printk( "PASS[%d]: ", source );                                   
  }                                                                   
                                                                      
  va_start( ap, fmt );                                                
ffc0b4bc:	98 01 00 09 	stb     r0,9(r1)                               
ffc0b4c0:	38 01 00 80 	addi    r0,r1,128                              
  vprintk( fmt, ap );                                                 
ffc0b4c4:	38 81 00 08 	addi    r4,r1,8                                
    printk( "FAIL[%d]: ", source );                                   
  } else {                                                            
    printk( "PASS[%d]: ", source );                                   
  }                                                                   
                                                                      
  va_start( ap, fmt );                                                
ffc0b4c8:	90 01 00 0c 	stw     r0,12(r1)                              
ffc0b4cc:	38 01 00 10 	addi    r0,r1,16                               
ffc0b4d0:	90 01 00 10 	stw     r0,16(r1)                              
  vprintk( fmt, ap );                                                 
ffc0b4d4:	4b ff d5 19 	bl      ffc089ec <vprintk>                     
  va_end( ap );                                                       
}                                                                     
ffc0b4d8:	80 01 00 7c 	lwz     r0,124(r1)                             
ffc0b4dc:	83 e1 00 74 	lwz     r31,116(r1)                            
ffc0b4e0:	38 21 00 78 	addi    r1,r1,120                              
ffc0b4e4:	7c 08 03 a6 	mtlr    r0                                     
ffc0b4e8:	4e 80 00 20 	blr                                            
                                                                      

ffc09920 <_IO_Initialize_all_drivers>: * * Output Parameters: NONE */ void _IO_Initialize_all_drivers( void ) {
ffc09920:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc09924:	7c 08 02 a6 	mflr    r0                                     
ffc09928:	93 c1 00 08 	stw     r30,8(r1)                              
   rtems_device_major_number major;                                   
                                                                      
   for ( major=0 ; major < _IO_Number_of_drivers ; major ++ )         
ffc0992c:	3f c0 00 00 	lis     r30,0                                  
 *                                                                    
 *  Output Parameters: NONE                                           
 */                                                                   
                                                                      
void _IO_Initialize_all_drivers( void )                               
{                                                                     
ffc09930:	90 01 00 14 	stw     r0,20(r1)                              
   rtems_device_major_number major;                                   
                                                                      
   for ( major=0 ; major < _IO_Number_of_drivers ; major ++ )         
ffc09934:	80 1e 27 80 	lwz     r0,10112(r30)                          
 *                                                                    
 *  Output Parameters: NONE                                           
 */                                                                   
                                                                      
void _IO_Initialize_all_drivers( void )                               
{                                                                     
ffc09938:	93 e1 00 0c 	stw     r31,12(r1)                             
   rtems_device_major_number major;                                   
                                                                      
   for ( major=0 ; major < _IO_Number_of_drivers ; major ++ )         
ffc0993c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc09940:	41 9e 00 2c 	beq-    cr7,ffc0996c <_IO_Initialize_all_drivers+0x4c><== NEVER TAKEN
ffc09944:	3b e0 00 00 	li      r31,0                                  
ffc09948:	3b de 27 80 	addi    r30,r30,10112                          
     (void) rtems_io_initialize( major, 0, NULL );                    
ffc0994c:	7f e3 fb 78 	mr      r3,r31                                 
ffc09950:	38 80 00 00 	li      r4,0                                   
ffc09954:	38 a0 00 00 	li      r5,0                                   
ffc09958:	48 00 5e 55 	bl      ffc0f7ac <rtems_io_initialize>         
                                                                      
void _IO_Initialize_all_drivers( void )                               
{                                                                     
   rtems_device_major_number major;                                   
                                                                      
   for ( major=0 ; major < _IO_Number_of_drivers ; major ++ )         
ffc0995c:	80 1e 00 00 	lwz     r0,0(r30)                              
ffc09960:	3b ff 00 01 	addi    r31,r31,1                              
ffc09964:	7f 80 f8 40 	cmplw   cr7,r0,r31                             
ffc09968:	41 9d ff e4 	bgt+    cr7,ffc0994c <_IO_Initialize_all_drivers+0x2c>
     (void) rtems_io_initialize( major, 0, NULL );                    
}                                                                     
ffc0996c:	80 01 00 14 	lwz     r0,20(r1)                              
ffc09970:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc09974:	7c 08 03 a6 	mtlr    r0                                     
ffc09978:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0997c:	38 21 00 10 	addi    r1,r1,16                               
ffc09980:	4e 80 00 20 	blr                                            
                                                                      

ffc09810 <_IO_Manager_initialization>: * workspace. * */ void _IO_Manager_initialization(void) {
ffc09810:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc09814:	7c 08 02 a6 	mflr    r0                                     
  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;              
ffc09818:	3d 20 00 00 	lis     r9,0                                   
 *  workspace.                                                        
 *                                                                    
 */                                                                   
                                                                      
void _IO_Manager_initialization(void)                                 
{                                                                     
ffc0981c:	90 01 00 24 	stw     r0,36(r1)                              
  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;              
ffc09820:	39 29 20 a0 	addi    r9,r9,8352                             
 *  workspace.                                                        
 *                                                                    
 */                                                                   
                                                                      
void _IO_Manager_initialization(void)                                 
{                                                                     
ffc09824:	93 a1 00 14 	stw     r29,20(r1)                             
ffc09828:	93 c1 00 18 	stw     r30,24(r1)                             
  uint32_t                    drivers_in_table;                       
  uint32_t                    number_of_drivers;                      
                                                                      
  driver_table      = Configuration.Device_driver_table;              
  drivers_in_table  = Configuration.number_of_device_drivers;         
  number_of_drivers = Configuration.maximum_drivers;                  
ffc0982c:	83 a9 00 2c 	lwz     r29,44(r9)                             
  rtems_driver_address_table *driver_table;                           
  uint32_t                    drivers_in_table;                       
  uint32_t                    number_of_drivers;                      
                                                                      
  driver_table      = Configuration.Device_driver_table;              
  drivers_in_table  = Configuration.number_of_device_drivers;         
ffc09830:	83 c9 00 30 	lwz     r30,48(r9)                             
 *  workspace.                                                        
 *                                                                    
 */                                                                   
                                                                      
void _IO_Manager_initialization(void)                                 
{                                                                     
ffc09834:	93 e1 00 1c 	stw     r31,28(r1)                             
                                                                      
  /*                                                                  
   *  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 )                        
ffc09838:	7f 9e e8 40 	cmplw   cr7,r30,r29                            
 *  workspace.                                                        
 *                                                                    
 */                                                                   
                                                                      
void _IO_Manager_initialization(void)                                 
{                                                                     
ffc0983c:	93 61 00 0c 	stw     r27,12(r1)                             
ffc09840:	93 81 00 10 	stw     r28,16(r1)                             
  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;              
ffc09844:	83 e9 00 34 	lwz     r31,52(r9)                             
                                                                      
  /*                                                                  
   *  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 )                        
ffc09848:	40 9c 00 a4 	bge-    cr7,ffc098ec <_IO_Manager_initialization+0xdc>
   *  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 )  
ffc0984c:	1f 7d 00 18 	mulli   r27,r29,24                             
   *  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(                             
ffc09850:	7f 63 db 78 	mr      r3,r27                                 
ffc09854:	48 00 3c 85 	bl      ffc0d4d8 <_Workspace_Allocate_or_fatal_error>
  /*                                                                  
   *  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 *)           
ffc09858:	3f 80 00 00 	lis     r28,0                                  
      _Workspace_Allocate_or_fatal_error(                             
        sizeof( rtems_driver_address_table ) * ( number_of_drivers )  
      );                                                              
  _IO_Number_of_drivers = number_of_drivers;                          
ffc0985c:	3d 20 00 00 	lis     r9,0                                   
  /*                                                                  
   *  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 *)           
ffc09860:	90 7c 27 84 	stw     r3,10116(r28)                          
      _Workspace_Allocate_or_fatal_error(                             
        sizeof( rtems_driver_address_table ) * ( number_of_drivers )  
      );                                                              
  _IO_Number_of_drivers = number_of_drivers;                          
                                                                      
  memset(                                                             
ffc09864:	38 80 00 00 	li      r4,0                                   
ffc09868:	7f 65 db 78 	mr      r5,r27                                 
                                                                      
  _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;                          
ffc0986c:	93 a9 27 80 	stw     r29,10112(r9)                          
                                                                      
  memset(                                                             
ffc09870:	48 00 96 19 	bl      ffc12e88 <memset>                      
    _IO_Driver_address_table, 0,                                      
    sizeof( rtems_driver_address_table ) * ( number_of_drivers )      
  );                                                                  
                                                                      
  for ( index = 0 ; index < drivers_in_table ; index++ )              
ffc09874:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc09878:	41 9e 00 50 	beq-    cr7,ffc098c8 <_IO_Manager_initialization+0xb8><== NEVER TAKEN
ffc0987c:	7f c9 03 a6 	mtctr   r30                                    
ffc09880:	81 1c 27 84 	lwz     r8,10116(r28)                          
ffc09884:	39 40 00 00 	li      r10,0                                  
    _IO_Driver_address_table[index] = driver_table[index];            
ffc09888:	7f e9 fb 78 	mr      r9,r31                                 
ffc0988c:	7c a9 50 6e 	lwzux   r5,r9,r10                              
ffc09890:	7d 68 52 14 	add     r11,r8,r10                             
ffc09894:	80 e9 00 08 	lwz     r7,8(r9)                               
ffc09898:	80 09 00 0c 	lwz     r0,12(r9)                              
ffc0989c:	80 c9 00 04 	lwz     r6,4(r9)                               
ffc098a0:	7c a8 51 2e 	stwx    r5,r8,r10                              
  memset(                                                             
    _IO_Driver_address_table, 0,                                      
    sizeof( rtems_driver_address_table ) * ( number_of_drivers )      
  );                                                                  
                                                                      
  for ( index = 0 ; index < drivers_in_table ; index++ )              
ffc098a4:	39 4a 00 18 	addi    r10,r10,24                             
    _IO_Driver_address_table[index] = driver_table[index];            
ffc098a8:	90 cb 00 04 	stw     r6,4(r11)                              
ffc098ac:	90 eb 00 08 	stw     r7,8(r11)                              
ffc098b0:	90 0b 00 0c 	stw     r0,12(r11)                             
ffc098b4:	80 e9 00 10 	lwz     r7,16(r9)                              
ffc098b8:	80 09 00 14 	lwz     r0,20(r9)                              
ffc098bc:	90 eb 00 10 	stw     r7,16(r11)                             
ffc098c0:	90 0b 00 14 	stw     r0,20(r11)                             
  memset(                                                             
    _IO_Driver_address_table, 0,                                      
    sizeof( rtems_driver_address_table ) * ( number_of_drivers )      
  );                                                                  
                                                                      
  for ( index = 0 ; index < drivers_in_table ; index++ )              
ffc098c4:	42 00 ff c4 	bdnz+   ffc09888 <_IO_Manager_initialization+0x78>
    _IO_Driver_address_table[index] = driver_table[index];            
  number_of_drivers = drivers_in_table;                               
}                                                                     
ffc098c8:	80 01 00 24 	lwz     r0,36(r1)                              
ffc098cc:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc098d0:	7c 08 03 a6 	mtlr    r0                                     
ffc098d4:	83 81 00 10 	lwz     r28,16(r1)                             
ffc098d8:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc098dc:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc098e0:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc098e4:	38 21 00 20 	addi    r1,r1,32                               
ffc098e8:	4e 80 00 20 	blr                                            
ffc098ec:	80 01 00 24 	lwz     r0,36(r1)                              
   *  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;                          
ffc098f0:	3d 20 00 00 	lis     r9,0                                   
ffc098f4:	93 e9 27 84 	stw     r31,10116(r9)                          
    _IO_Number_of_drivers = number_of_drivers;                        
ffc098f8:	3d 20 00 00 	lis     r9,0                                   
  );                                                                  
                                                                      
  for ( index = 0 ; index < drivers_in_table ; index++ )              
    _IO_Driver_address_table[index] = driver_table[index];            
  number_of_drivers = drivers_in_table;                               
}                                                                     
ffc098fc:	7c 08 03 a6 	mtlr    r0                                     
   *  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;                          
    _IO_Number_of_drivers = number_of_drivers;                        
ffc09900:	93 c9 27 80 	stw     r30,10112(r9)                          
  );                                                                  
                                                                      
  for ( index = 0 ; index < drivers_in_table ; index++ )              
    _IO_Driver_address_table[index] = driver_table[index];            
  number_of_drivers = drivers_in_table;                               
}                                                                     
ffc09904:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc09908:	83 81 00 10 	lwz     r28,16(r1)                             
ffc0990c:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc09910:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc09914:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc09918:	38 21 00 20 	addi    r1,r1,32                               
ffc0991c:	4e 80 00 20 	blr                                            
                                                                      

ffc0a804 <_Internal_error_Occurred>: void _Internal_error_Occurred( Internal_errors_Source the_source, bool is_internal, Internal_errors_t the_error ) {
ffc0a804:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc0a808:	7c 08 02 a6 	mflr    r0                                     
                                                                      
  _Internal_errors_What_happened.the_source  = the_source;            
ffc0a80c:	3d 60 00 00 	lis     r11,0                                  
ffc0a810:	39 2b 2c 30 	addi    r9,r11,11312                           
void _Internal_error_Occurred(                                        
  Internal_errors_Source  the_source,                                 
  bool                    is_internal,                                
  Internal_errors_t       the_error                                   
)                                                                     
{                                                                     
ffc0a814:	90 01 00 14 	stw     r0,20(r1)                              
ffc0a818:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc0a81c:	7c bf 2b 78 	mr      r31,r5                                 
                                                                      
  _Internal_errors_What_happened.the_source  = the_source;            
  _Internal_errors_What_happened.is_internal = is_internal;           
ffc0a820:	98 89 00 04 	stb     r4,4(r9)                               
  _Internal_errors_What_happened.the_error   = the_error;             
ffc0a824:	90 a9 00 08 	stw     r5,8(r9)                               
  bool                    is_internal,                                
  Internal_errors_t       the_error                                   
)                                                                     
{                                                                     
                                                                      
  _Internal_errors_What_happened.the_source  = the_source;            
ffc0a828:	90 6b 2c 30 	stw     r3,11312(r11)                          
  _Internal_errors_What_happened.is_internal = is_internal;           
  _Internal_errors_What_happened.the_error   = the_error;             
                                                                      
  _User_extensions_Fatal( the_source, is_internal, the_error );       
ffc0a82c:	48 00 25 81 	bl      ffc0cdac <_User_extensions_Fatal>      
                                                                      
RTEMS_INLINE_ROUTINE void _System_state_Set (                         
  System_state_Codes state                                            
)                                                                     
{                                                                     
  _System_state_Current = state;                                      
ffc0a830:	38 00 00 05 	li      r0,5                                   
ffc0a834:	3d 20 00 00 	lis     r9,0                                   
                                                                      
  _System_state_Set( SYSTEM_STATE_FAILED );                           
                                                                      
  _CPU_Fatal_halt( the_error );                                       
ffc0a838:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a83c:	90 09 27 74 	stw     r0,10100(r9)                           
ffc0a840:	4b ff 93 09 	bl      ffc03b48 <_BSP_Fatal_error>            
ffc0a844:	48 00 00 00 	b       ffc0a844 <_Internal_error_Occurred+0x40><== NOT EXECUTED
                                                                      

ffc0a85c <_Objects_Allocate>: */ Objects_Control *_Objects_Allocate( Objects_Information *information ) {
ffc0a85c:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc0a860:	7c 08 02 a6 	mflr    r0                                     
ffc0a864:	90 01 00 14 	stw     r0,20(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 )                                       
ffc0a868:	80 03 00 18 	lwz     r0,24(r3)                              
 */                                                                   
                                                                      
Objects_Control *_Objects_Allocate(                                   
  Objects_Information *information                                    
)                                                                     
{                                                                     
ffc0a86c:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc0a870:	7c 7f 1b 78 	mr      r31,r3                                 
   *  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 )                                       
ffc0a874:	2f 80 00 00 	cmpwi   cr7,r0,0                               
 */                                                                   
                                                                      
Objects_Control *_Objects_Allocate(                                   
  Objects_Information *information                                    
)                                                                     
{                                                                     
ffc0a878:	93 c1 00 08 	stw     r30,8(r1)                              
   *  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 )                                       
    return NULL;                                                      
ffc0a87c:	38 60 00 00 	li      r3,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 )                                       
ffc0a880:	40 9e 00 1c 	bne-    cr7,ffc0a89c <_Objects_Allocate+0x40>  <== ALWAYS TAKEN
    );                                                                
  }                                                                   
#endif                                                                
                                                                      
  return the_object;                                                  
}                                                                     
ffc0a884:	80 01 00 14 	lwz     r0,20(r1)                              
ffc0a888:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc0a88c:	7c 08 03 a6 	mtlr    r0                                     
ffc0a890:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0a894:	38 21 00 10 	addi    r1,r1,16                               
ffc0a898:	4e 80 00 20 	blr                                            
                                                                      
  /*                                                                  
   *  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 );
ffc0a89c:	3b df 00 20 	addi    r30,r31,32                             
ffc0a8a0:	7f c3 f3 78 	mr      r3,r30                                 
ffc0a8a4:	4b ff f4 09 	bl      ffc09cac <_Chain_Get>                  
                                                                      
  if ( information->auto_extend ) {                                   
ffc0a8a8:	88 1f 00 12 	lbz     r0,18(r31)                             
ffc0a8ac:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0a8b0:	41 be ff d4 	beq-    cr7,ffc0a884 <_Objects_Allocate+0x28>  
    /*                                                                
     *  If the list is empty then we are out of objects and need to   
     *  extend information base.                                      
     */                                                               
                                                                      
    if ( !the_object ) {                                              
ffc0a8b4:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0a8b8:	41 9e 00 50 	beq-    cr7,ffc0a908 <_Objects_Allocate+0xac>  
    }                                                                 
                                                                      
    if ( the_object ) {                                               
      uint32_t   block;                                               
                                                                      
      block = (uint32_t) _Objects_Get_index( the_object->id ) -       
ffc0a8bc:	a1 63 00 0a 	lhz     r11,10(r3)                             
ffc0a8c0:	a0 1f 00 0a 	lhz     r0,10(r31)                             
              _Objects_Get_index( information->minimum_id );          
      block /= information->allocation_size;                          
ffc0a8c4:	a1 3f 00 14 	lhz     r9,20(r31)                             
    }                                                                 
                                                                      
    if ( the_object ) {                                               
      uint32_t   block;                                               
                                                                      
      block = (uint32_t) _Objects_Get_index( the_object->id ) -       
ffc0a8c8:	7c 00 58 50 	subf    r0,r0,r11                              
              _Objects_Get_index( information->minimum_id );          
      block /= information->allocation_size;                          
                                                                      
      information->inactive_per_block[ block ]--;                     
      information->inactive--;                                        
ffc0a8cc:	a1 7f 00 2c 	lhz     r11,44(r31)                            
    if ( the_object ) {                                               
      uint32_t   block;                                               
                                                                      
      block = (uint32_t) _Objects_Get_index( the_object->id ) -       
              _Objects_Get_index( information->minimum_id );          
      block /= information->allocation_size;                          
ffc0a8d0:	7c 00 4b 96 	divwu   r0,r0,r9                               
                                                                      
      information->inactive_per_block[ block ]--;                     
ffc0a8d4:	81 3f 00 30 	lwz     r9,48(r31)                             
    );                                                                
  }                                                                   
#endif                                                                
                                                                      
  return the_object;                                                  
}                                                                     
ffc0a8d8:	83 c1 00 08 	lwz     r30,8(r1)                              
                                                                      
      block = (uint32_t) _Objects_Get_index( the_object->id ) -       
              _Objects_Get_index( information->minimum_id );          
      block /= information->allocation_size;                          
                                                                      
      information->inactive_per_block[ block ]--;                     
ffc0a8dc:	54 00 10 3a 	rlwinm  r0,r0,2,0,29                           
ffc0a8e0:	7d 49 00 2e 	lwzx    r10,r9,r0                              
      information->inactive--;                                        
ffc0a8e4:	39 6b ff ff 	addi    r11,r11,-1                             
                                                                      
      block = (uint32_t) _Objects_Get_index( the_object->id ) -       
              _Objects_Get_index( information->minimum_id );          
      block /= information->allocation_size;                          
                                                                      
      information->inactive_per_block[ block ]--;                     
ffc0a8e8:	39 4a ff ff 	addi    r10,r10,-1                             
ffc0a8ec:	7d 49 01 2e 	stwx    r10,r9,r0                              
    );                                                                
  }                                                                   
#endif                                                                
                                                                      
  return the_object;                                                  
}                                                                     
ffc0a8f0:	80 01 00 14 	lwz     r0,20(r1)                              
      block = (uint32_t) _Objects_Get_index( the_object->id ) -       
              _Objects_Get_index( information->minimum_id );          
      block /= information->allocation_size;                          
                                                                      
      information->inactive_per_block[ block ]--;                     
      information->inactive--;                                        
ffc0a8f4:	b1 7f 00 2c 	sth     r11,44(r31)                            
    );                                                                
  }                                                                   
#endif                                                                
                                                                      
  return the_object;                                                  
}                                                                     
ffc0a8f8:	7c 08 03 a6 	mtlr    r0                                     
ffc0a8fc:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0a900:	38 21 00 10 	addi    r1,r1,16                               
ffc0a904:	4e 80 00 20 	blr                                            
     *  If the list is empty then we are out of objects and need to   
     *  extend information base.                                      
     */                                                               
                                                                      
    if ( !the_object ) {                                              
      _Objects_Extend_information( information );                     
ffc0a908:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a90c:	48 00 00 4d 	bl      ffc0a958 <_Objects_Extend_information> 
      the_object =  (Objects_Control *) _Chain_Get( &information->Inactive );
ffc0a910:	7f c3 f3 78 	mr      r3,r30                                 
ffc0a914:	4b ff f3 99 	bl      ffc09cac <_Chain_Get>                  
    }                                                                 
                                                                      
    if ( the_object ) {                                               
ffc0a918:	2c 03 00 00 	cmpwi   r3,0                                   
ffc0a91c:	41 82 ff 68 	beq+    ffc0a884 <_Objects_Allocate+0x28>      
ffc0a920:	4b ff ff 9c 	b       ffc0a8bc <_Objects_Allocate+0x60>      
                                                                      

ffc0a958 <_Objects_Extend_information>: */ void _Objects_Extend_information( Objects_Information *information ) {
ffc0a958:	94 21 ff c0 	stwu    r1,-64(r1)                             
ffc0a95c:	7c 08 02 a6 	mflr    r0                                     
ffc0a960:	90 01 00 44 	stw     r0,68(r1)                              
  minimum_index = _Objects_Get_index( information->minimum_id );      
  index_base    = minimum_index;                                      
  block         = 0;                                                  
                                                                      
  /* if ( information->maximum < minimum_index ) */                   
  if ( information->object_blocks == NULL )                           
ffc0a964:	81 23 00 34 	lwz     r9,52(r3)                              
 */                                                                   
                                                                      
void _Objects_Extend_information(                                     
  Objects_Information *information                                    
)                                                                     
{                                                                     
ffc0a968:	93 a1 00 34 	stw     r29,52(r1)                             
  minimum_index = _Objects_Get_index( information->minimum_id );      
  index_base    = minimum_index;                                      
  block         = 0;                                                  
                                                                      
  /* if ( information->maximum < minimum_index ) */                   
  if ( information->object_blocks == NULL )                           
ffc0a96c:	2f 89 00 00 	cmpwi   cr7,r9,0                               
 */                                                                   
                                                                      
void _Objects_Extend_information(                                     
  Objects_Information *information                                    
)                                                                     
{                                                                     
ffc0a970:	93 e1 00 3c 	stw     r31,60(r1)                             
ffc0a974:	7c 7f 1b 78 	mr      r31,r3                                 
ffc0a978:	92 c1 00 18 	stw     r22,24(r1)                             
ffc0a97c:	92 e1 00 1c 	stw     r23,28(r1)                             
ffc0a980:	93 01 00 20 	stw     r24,32(r1)                             
ffc0a984:	93 21 00 24 	stw     r25,36(r1)                             
ffc0a988:	93 41 00 28 	stw     r26,40(r1)                             
ffc0a98c:	93 61 00 2c 	stw     r27,44(r1)                             
ffc0a990:	93 81 00 30 	stw     r28,48(r1)                             
ffc0a994:	93 c1 00 38 	stw     r30,56(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 );      
ffc0a998:	a3 a3 00 0a 	lhz     r29,10(r3)                             
  index_base    = minimum_index;                                      
  block         = 0;                                                  
                                                                      
  /* if ( information->maximum < minimum_index ) */                   
  if ( information->object_blocks == NULL )                           
ffc0a99c:	41 9e 02 8c 	beq-    cr7,ffc0ac28 <_Objects_Extend_information+0x2d0>
    block_count = 0;                                                  
  else {                                                              
    block_count = information->maximum / information->allocation_size;
ffc0a9a0:	a3 43 00 10 	lhz     r26,16(r3)                             
ffc0a9a4:	a1 63 00 14 	lhz     r11,20(r3)                             
ffc0a9a8:	7e da 5b 96 	divwu   r22,r26,r11                            
                                                                      
    for ( ; block < block_count; block++ ) {                          
ffc0a9ac:	2f 96 00 00 	cmpwi   cr7,r22,0                              
ffc0a9b0:	41 9e 02 94 	beq-    cr7,ffc0ac44 <_Objects_Extend_information+0x2ec><== NEVER TAKEN
      if ( information->object_blocks[ block ] == NULL ) {            
ffc0a9b4:	80 09 00 00 	lwz     r0,0(r9)                               
ffc0a9b8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0a9bc:	41 9e 02 9c 	beq-    cr7,ffc0ac58 <_Objects_Extend_information+0x300><== NEVER TAKEN
ffc0a9c0:	7d 6a 5b 78 	mr      r10,r11                                
   *  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;                                                  
ffc0a9c4:	7e c9 03 a6 	mtctr   r22                                    
  /*                                                                  
   *  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 );      
ffc0a9c8:	7f be eb 78 	mr      r30,r29                                
  index_base    = minimum_index;                                      
  block         = 0;                                                  
ffc0a9cc:	3b 60 00 00 	li      r27,0                                  
ffc0a9d0:	48 00 00 10 	b       ffc0a9e0 <_Objects_Extend_information+0x88>
    block_count = 0;                                                  
  else {                                                              
    block_count = information->maximum / information->allocation_size;
                                                                      
    for ( ; block < block_count; block++ ) {                          
      if ( information->object_blocks[ block ] == NULL ) {            
ffc0a9d4:	84 09 00 04 	lwzu    r0,4(r9)                               
ffc0a9d8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0a9dc:	41 9e 01 fc 	beq-    cr7,ffc0abd8 <_Objects_Extend_information+0x280>
        do_extend = false;                                            
        break;                                                        
      } else                                                          
        index_base += information->allocation_size;                   
ffc0a9e0:	7f de 5a 14 	add     r30,r30,r11                            
  if ( information->object_blocks == NULL )                           
    block_count = 0;                                                  
  else {                                                              
    block_count = information->maximum / information->allocation_size;
                                                                      
    for ( ; block < block_count; block++ ) {                          
ffc0a9e4:	3b 7b 00 01 	addi    r27,r27,1                              
ffc0a9e8:	42 00 ff ec 	bdnz+   ffc0a9d4 <_Objects_Extend_information+0x7c>
                                                                      
  /*                                                                  
   *  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;                                               
ffc0a9ec:	3b 20 00 01 	li      r25,1                                  
      } else                                                          
        index_base += information->allocation_size;                   
    }                                                                 
  }                                                                   
                                                                      
  maximum = (uint32_t) information->maximum + information->allocation_size;
ffc0a9f0:	7f 5a 52 14 	add     r26,r26,r10                            
  /*                                                                  
   *  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 ) {                           
ffc0a9f4:	2b 9a ff ff 	cmplwi  cr7,r26,65535                          
ffc0a9f8:	41 9d 01 a8 	bgt-    cr7,ffc0aba0 <_Objects_Extend_information+0x248>
  /*                                                                  
   * 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;      
  if ( information->auto_extend ) {                                   
ffc0a9fc:	88 1f 00 12 	lbz     r0,18(r31)                             
                                                                      
  /*                                                                  
   * 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;      
ffc0aa00:	80 7f 00 18 	lwz     r3,24(r31)                             
  if ( information->auto_extend ) {                                   
ffc0aa04:	2f 80 00 00 	cmpwi   cr7,r0,0                               
                                                                      
  /*                                                                  
   * 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;      
ffc0aa08:	7c 6a 19 d6 	mullw   r3,r10,r3                              
  if ( information->auto_extend ) {                                   
ffc0aa0c:	41 9e 01 d4 	beq-    cr7,ffc0abe0 <_Objects_Extend_information+0x288>
    new_object_block = _Workspace_Allocate( block_size );             
ffc0aa10:	48 00 2a 69 	bl      ffc0d478 <_Workspace_Allocate>         
    if ( !new_object_block )                                          
ffc0aa14:	7c 7c 1b 79 	mr.     r28,r3                                 
ffc0aa18:	41 82 01 88 	beq-    ffc0aba0 <_Objects_Extend_information+0x248>
  }                                                                   
                                                                      
  /*                                                                  
   *  Do we need to grow the tables?                                  
   */                                                                 
  if ( do_extend ) {                                                  
ffc0aa1c:	2f 99 00 00 	cmpwi   cr7,r25,0                              
ffc0aa20:	41 9e 00 fc 	beq-    cr7,ffc0ab1c <_Objects_Extend_information+0x1c4>
     */                                                               
                                                                      
    /*                                                                
     *  Up the block count and maximum                                
     */                                                               
    block_count++;                                                    
ffc0aa24:	3a f6 00 01 	addi    r23,r22,1                              
                                                                      
    /*                                                                
     *  Allocate the tables and break it up.                          
     */                                                               
    block_size = block_count *                                        
           (sizeof(void *) + sizeof(uint32_t) + sizeof(Objects_Name *)) +
ffc0aa28:	1c 77 00 03 	mulli   r3,r23,3                               
          ((maximum + minimum_index) * sizeof(Objects_Control *));    
ffc0aa2c:	7c 7a 1a 14 	add     r3,r26,r3                              
                                                                      
    /*                                                                
     *  Allocate the tables and break it up.                          
     */                                                               
    block_size = block_count *                                        
           (sizeof(void *) + sizeof(uint32_t) + sizeof(Objects_Name *)) +
ffc0aa30:	7c 63 ea 14 	add     r3,r3,r29                              
          ((maximum + minimum_index) * sizeof(Objects_Control *));    
    object_blocks = (void**) _Workspace_Allocate( block_size );       
ffc0aa34:	54 63 10 3a 	rlwinm  r3,r3,2,0,29                           
ffc0aa38:	48 00 2a 41 	bl      ffc0d478 <_Workspace_Allocate>         
                                                                      
    if ( !object_blocks ) {                                           
ffc0aa3c:	7c 78 1b 79 	mr.     r24,r3                                 
ffc0aa40:	41 82 02 2c 	beq-    ffc0ac6c <_Objects_Extend_information+0x314>
     *  Take the block count down. Saves all the (block_count - 1)    
     *  in the copies.                                                
     */                                                               
    block_count--;                                                    
                                                                      
    if ( information->maximum > minimum_index ) {                     
ffc0aa44:	a0 1f 00 10 	lhz     r0,16(r31)                             
    }                                                                 
                                                                      
    /*                                                                
     *  Break the block into the various sections.                    
     */                                                               
    inactive_per_block = (uint32_t *) _Addresses_Add_offset(          
ffc0aa48:	56 f7 10 3a 	rlwinm  r23,r23,2,0,29                         
RTEMS_INLINE_ROUTINE void *_Addresses_Add_offset (                    
  const void *base,                                                   
  uintptr_t   offset                                                  
)                                                                     
{                                                                     
  return (void *)((uintptr_t)base + offset);                          
ffc0aa4c:	7f 38 ba 14 	add     r25,r24,r23                            
     *  Take the block count down. Saves all the (block_count - 1)    
     *  in the copies.                                                
     */                                                               
    block_count--;                                                    
                                                                      
    if ( information->maximum > minimum_index ) {                     
ffc0aa50:	7f 9d 00 40 	cmplw   cr7,r29,r0                             
ffc0aa54:	7e f9 ba 14 	add     r23,r25,r23                            
ffc0aa58:	41 9c 01 94 	blt-    cr7,ffc0abec <_Objects_Extend_information+0x294>
    } else {                                                          
                                                                      
      /*                                                              
       *  Deal with the special case of the 0 to minimum_index        
       */                                                             
      for ( index = 0; index < minimum_index; index++ ) {             
ffc0aa5c:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
        local_table[ index ] = NULL;                                  
ffc0aa60:	7f a9 03 a6 	mtctr   r29                                    
              information->object_blocks,                             
              block_count * sizeof(void*) );                          
      memcpy( inactive_per_block,                                     
              information->inactive_per_block,                        
              block_count * sizeof(uint32_t) );                       
      memcpy( local_table,                                            
ffc0aa64:	39 37 ff fc 	addi    r9,r23,-4                              
                                                                      
      /*                                                              
       *  Deal with the special case of the 0 to minimum_index        
       */                                                             
      for ( index = 0; index < minimum_index; index++ ) {             
        local_table[ index ] = NULL;                                  
ffc0aa68:	38 00 00 00 	li      r0,0                                   
    } else {                                                          
                                                                      
      /*                                                              
       *  Deal with the special case of the 0 to minimum_index        
       */                                                             
      for ( index = 0; index < minimum_index; index++ ) {             
ffc0aa6c:	41 9e 00 0c 	beq-    cr7,ffc0aa78 <_Objects_Extend_information+0x120><== NEVER TAKEN
        local_table[ index ] = NULL;                                  
ffc0aa70:	94 09 00 04 	stwu    r0,4(r9)                               
    } else {                                                          
                                                                      
      /*                                                              
       *  Deal with the special case of the 0 to minimum_index        
       */                                                             
      for ( index = 0; index < minimum_index; index++ ) {             
ffc0aa74:	42 00 ff fc 	bdnz+   ffc0aa70 <_Objects_Extend_information+0x118>
ffc0aa78:	56 d6 10 3a 	rlwinm  r22,r22,2,0,29                         
     */                                                               
    object_blocks[block_count] = NULL;                                
    inactive_per_block[block_count] = 0;                              
                                                                      
    for ( index=index_base ;                                          
          index < ( information->allocation_size + index_base );      
ffc0aa7c:	a1 7f 00 14 	lhz     r11,20(r31)                            
    }                                                                 
                                                                      
    /*                                                                
     *  Initialise the new entries in the table.                      
     */                                                               
    object_blocks[block_count] = NULL;                                
ffc0aa80:	38 00 00 00 	li      r0,0                                   
ffc0aa84:	7c 18 b1 2e 	stwx    r0,r24,r22                             
    inactive_per_block[block_count] = 0;                              
                                                                      
    for ( index=index_base ;                                          
          index < ( information->allocation_size + index_base );      
ffc0aa88:	7d 7e 5a 14 	add     r11,r30,r11                            
     *  Initialise the new entries in the table.                      
     */                                                               
    object_blocks[block_count] = NULL;                                
    inactive_per_block[block_count] = 0;                              
                                                                      
    for ( index=index_base ;                                          
ffc0aa8c:	7f 9e 58 40 	cmplw   cr7,r30,r11                            
                                                                      
    /*                                                                
     *  Initialise the new entries in the table.                      
     */                                                               
    object_blocks[block_count] = NULL;                                
    inactive_per_block[block_count] = 0;                              
ffc0aa90:	7c 19 b1 2e 	stwx    r0,r25,r22                             
                                                                      
    for ( index=index_base ;                                          
ffc0aa94:	40 9c 00 30 	bge-    cr7,ffc0aac4 <_Objects_Extend_information+0x16c><== NEVER TAKEN
ffc0aa98:	38 1e 00 01 	addi    r0,r30,1                               
ffc0aa9c:	7f 80 58 40 	cmplw   cr7,r0,r11                             
 *    information     - object information table                      
 *                                                                    
 *  Output parameters:  NONE                                          
 */                                                                   
                                                                      
void _Objects_Extend_information(                                     
ffc0aaa0:	57 c9 10 3a 	rlwinm  r9,r30,2,0,29                          
ffc0aaa4:	39 29 ff fc 	addi    r9,r9,-4                               
    inactive_per_block[block_count] = 0;                              
                                                                      
    for ( index=index_base ;                                          
          index < ( information->allocation_size + index_base );      
          index++ ) {                                                 
      local_table[ index ] = NULL;                                    
ffc0aaa8:	7d 7e 58 50 	subf    r11,r30,r11                            
     *  Initialise the new entries in the table.                      
     */                                                               
    object_blocks[block_count] = NULL;                                
    inactive_per_block[block_count] = 0;                              
                                                                      
    for ( index=index_base ;                                          
ffc0aaac:	7d 29 ba 14 	add     r9,r9,r23                              
          index < ( information->allocation_size + index_base );      
          index++ ) {                                                 
      local_table[ index ] = NULL;                                    
ffc0aab0:	7d 69 03 a6 	mtctr   r11                                    
ffc0aab4:	38 00 00 00 	li      r0,0                                   
ffc0aab8:	41 9d 01 c0 	bgt-    cr7,ffc0ac78 <_Objects_Extend_information+0x320><== NEVER TAKEN
ffc0aabc:	94 09 00 04 	stwu    r0,4(r9)                               
     *  Initialise the new entries in the table.                      
     */                                                               
    object_blocks[block_count] = NULL;                                
    inactive_per_block[block_count] = 0;                              
                                                                      
    for ( index=index_base ;                                          
ffc0aac0:	42 00 ff fc 	bdnz+   ffc0aabc <_Objects_Extend_information+0x164>
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0aac4:	7c 00 00 a6 	mfmsr   r0                                     
ffc0aac8:	7d 30 42 a6 	mfsprg  r9,0                                   
ffc0aacc:	7c 09 48 78 	andc    r9,r0,r9                               
ffc0aad0:	7d 20 01 24 	mtmsr   r9                                     
  uint32_t         the_class,                                         
  uint32_t         node,                                              
  uint32_t         index                                              
)                                                                     
{                                                                     
  return (( (Objects_Id) the_api )   << OBJECTS_API_START_BIT)   |    
ffc0aad4:	81 7f 00 00 	lwz     r11,0(r31)                             
    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;                 
ffc0aad8:	57 5a 04 3e 	clrlwi  r26,r26,16                             
    information->maximum_id = _Objects_Build_id(                      
ffc0aadc:	a1 3f 00 04 	lhz     r9,4(r31)                              
ffc0aae0:	55 6b c0 0e 	rlwinm  r11,r11,24,0,7                         
      local_table[ index ] = NULL;                                    
    }                                                                 
                                                                      
    _ISR_Disable( level );                                            
                                                                      
    old_tables = information->object_blocks;                          
ffc0aae4:	80 7f 00 34 	lwz     r3,52(r31)                             
ffc0aae8:	65 6b 00 01 	oris    r11,r11,1                              
                                                                      
    information->object_blocks = object_blocks;                       
    information->inactive_per_block = inactive_per_block;             
ffc0aaec:	93 3f 00 30 	stw     r25,48(r31)                            
         (( (Objects_Id) the_class ) << OBJECTS_CLASS_START_BIT) |    
ffc0aaf0:	55 29 d8 08 	rlwinm  r9,r9,27,0,4                           
ffc0aaf4:	7d 69 4b 78 	or      r9,r11,r9                              
                                                                      
    _ISR_Disable( level );                                            
                                                                      
    old_tables = information->object_blocks;                          
                                                                      
    information->object_blocks = object_blocks;                       
ffc0aaf8:	93 1f 00 34 	stw     r24,52(r31)                            
  uint32_t         the_class,                                         
  uint32_t         node,                                              
  uint32_t         index                                              
)                                                                     
{                                                                     
  return (( (Objects_Id) the_api )   << OBJECTS_API_START_BIT)   |    
ffc0aafc:	7d 29 d3 78 	or      r9,r9,r26                              
    information->inactive_per_block = inactive_per_block;             
    information->local_table = local_table;                           
ffc0ab00:	92 ff 00 1c 	stw     r23,28(r31)                            
    information->maximum = (Objects_Maximum) maximum;                 
ffc0ab04:	b3 5f 00 10 	sth     r26,16(r31)                            
    information->maximum_id = _Objects_Build_id(                      
ffc0ab08:	91 3f 00 0c 	stw     r9,12(r31)                             
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0ab0c:	7c 00 01 24 	mtmsr   r0                                     
        information->maximum                                          
      );                                                              
                                                                      
    _ISR_Enable( level );                                             
                                                                      
    if ( old_tables )                                                 
ffc0ab10:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0ab14:	41 9e 00 08 	beq-    cr7,ffc0ab1c <_Objects_Extend_information+0x1c4>
      _Workspace_Free( old_tables );                                  
ffc0ab18:	48 00 29 95 	bl      ffc0d4ac <_Workspace_Free>             
  }                                                                   
                                                                      
  /*                                                                  
   *  Assign the new object block to the object block table.          
   */                                                                 
  information->object_blocks[ block ] = new_object_block;             
ffc0ab1c:	81 3f 00 34 	lwz     r9,52(r31)                             
ffc0ab20:	57 7b 10 3a 	rlwinm  r27,r27,2,0,29                         
                                                                      
  /*                                                                  
   *  Initialize objects .. add to a local chain first.               
   */                                                                 
  _Chain_Initialize(                                                  
ffc0ab24:	3b a1 00 08 	addi    r29,r1,8                               
ffc0ab28:	a0 bf 00 14 	lhz     r5,20(r31)                             
  }                                                                   
                                                                      
  /*                                                                  
   *  Assign the new object block to the object block table.          
   */                                                                 
  information->object_blocks[ block ] = new_object_block;             
ffc0ab2c:	7f 89 d9 2e 	stwx    r28,r9,r27                             
                                                                      
  /*                                                                  
   *  Initialize objects .. add to a local chain first.               
   */                                                                 
  _Chain_Initialize(                                                  
ffc0ab30:	7f 84 e3 78 	mr      r4,r28                                 
ffc0ab34:	7f a3 eb 78 	mr      r3,r29                                 
ffc0ab38:	80 df 00 18 	lwz     r6,24(r31)                             
        information->the_class,                                       
        _Objects_Local_node,                                          
        index                                                         
      );                                                              
                                                                      
    _Chain_Append( &information->Inactive, &the_object->Node );       
ffc0ab3c:	3b 9f 00 20 	addi    r28,r31,32                             
  information->object_blocks[ block ] = new_object_block;             
                                                                      
  /*                                                                  
   *  Initialize objects .. add to a local chain first.               
   */                                                                 
  _Chain_Initialize(                                                  
ffc0ab40:	48 00 4c c9 	bl      ffc0f808 <_Chain_Initialize>           
  /*                                                                  
   *  Move from the local chain, initialise, then append to the inactive chain
   */                                                                 
  index = index_base;                                                 
                                                                      
  while ((the_object = (Objects_Control *) _Chain_Get( &Inactive )) != NULL ) {
ffc0ab44:	48 00 00 2c 	b       ffc0ab70 <_Objects_Extend_information+0x218>
ffc0ab48:	81 7f 00 00 	lwz     r11,0(r31)                             
                                                                      
    the_object->id = _Objects_Build_id(                               
ffc0ab4c:	a0 1f 00 04 	lhz     r0,4(r31)                              
ffc0ab50:	55 6b c0 0e 	rlwinm  r11,r11,24,0,7                         
ffc0ab54:	65 6b 00 01 	oris    r11,r11,1                              
         (( (Objects_Id) the_class ) << OBJECTS_CLASS_START_BIT) |    
ffc0ab58:	54 00 d8 08 	rlwinm  r0,r0,27,0,4                           
ffc0ab5c:	7d 60 03 78 	or      r0,r11,r0                              
  uint32_t         the_class,                                         
  uint32_t         node,                                              
  uint32_t         index                                              
)                                                                     
{                                                                     
  return (( (Objects_Id) the_api )   << OBJECTS_API_START_BIT)   |    
ffc0ab60:	7c 00 f3 78 	or      r0,r0,r30                              
ffc0ab64:	90 09 00 08 	stw     r0,8(r9)                               
        index                                                         
      );                                                              
                                                                      
    _Chain_Append( &information->Inactive, &the_object->Node );       
                                                                      
    index++;                                                          
ffc0ab68:	3b de 00 01 	addi    r30,r30,1                              
        information->the_class,                                       
        _Objects_Local_node,                                          
        index                                                         
      );                                                              
                                                                      
    _Chain_Append( &information->Inactive, &the_object->Node );       
ffc0ab6c:	4b ff f0 e9 	bl      ffc09c54 <_Chain_Append>               
  /*                                                                  
   *  Move from the local chain, initialise, then append to the inactive chain
   */                                                                 
  index = index_base;                                                 
                                                                      
  while ((the_object = (Objects_Control *) _Chain_Get( &Inactive )) != NULL ) {
ffc0ab70:	7f a3 eb 78 	mr      r3,r29                                 
ffc0ab74:	4b ff f1 39 	bl      ffc09cac <_Chain_Get>                  
ffc0ab78:	7c 69 1b 79 	mr.     r9,r3                                  
        information->the_class,                                       
        _Objects_Local_node,                                          
        index                                                         
      );                                                              
                                                                      
    _Chain_Append( &information->Inactive, &the_object->Node );       
ffc0ab7c:	7f 83 e3 78 	mr      r3,r28                                 
ffc0ab80:	7d 24 4b 78 	mr      r4,r9                                  
  /*                                                                  
   *  Move from the local chain, initialise, then append to the inactive chain
   */                                                                 
  index = index_base;                                                 
                                                                      
  while ((the_object = (Objects_Control *) _Chain_Get( &Inactive )) != NULL ) {
ffc0ab84:	40 82 ff c4 	bne+    ffc0ab48 <_Objects_Extend_information+0x1f0>
    index++;                                                          
  }                                                                   
                                                                      
  information->inactive_per_block[ block ] = information->allocation_size;
  information->inactive =                                             
    (Objects_Maximum)(information->inactive + information->allocation_size);
ffc0ab88:	a1 3f 00 2c 	lhz     r9,44(r31)                             
    _Chain_Append( &information->Inactive, &the_object->Node );       
                                                                      
    index++;                                                          
  }                                                                   
                                                                      
  information->inactive_per_block[ block ] = information->allocation_size;
ffc0ab8c:	a0 1f 00 14 	lhz     r0,20(r31)                             
ffc0ab90:	81 7f 00 30 	lwz     r11,48(r31)                            
  information->inactive =                                             
    (Objects_Maximum)(information->inactive + information->allocation_size);
ffc0ab94:	7d 20 4a 14 	add     r9,r0,r9                               
    _Chain_Append( &information->Inactive, &the_object->Node );       
                                                                      
    index++;                                                          
  }                                                                   
                                                                      
  information->inactive_per_block[ block ] = information->allocation_size;
ffc0ab98:	7c 0b d9 2e 	stwx    r0,r11,r27                             
  information->inactive =                                             
ffc0ab9c:	b1 3f 00 2c 	sth     r9,44(r31)                             
    (Objects_Maximum)(information->inactive + information->allocation_size);
}                                                                     
ffc0aba0:	80 01 00 44 	lwz     r0,68(r1)                              
ffc0aba4:	82 c1 00 18 	lwz     r22,24(r1)                             
ffc0aba8:	7c 08 03 a6 	mtlr    r0                                     
ffc0abac:	82 e1 00 1c 	lwz     r23,28(r1)                             
ffc0abb0:	83 01 00 20 	lwz     r24,32(r1)                             
ffc0abb4:	83 21 00 24 	lwz     r25,36(r1)                             
ffc0abb8:	83 41 00 28 	lwz     r26,40(r1)                             
ffc0abbc:	83 61 00 2c 	lwz     r27,44(r1)                             
ffc0abc0:	83 81 00 30 	lwz     r28,48(r1)                             
ffc0abc4:	83 a1 00 34 	lwz     r29,52(r1)                             
ffc0abc8:	83 c1 00 38 	lwz     r30,56(r1)                             
ffc0abcc:	83 e1 00 3c 	lwz     r31,60(r1)                             
ffc0abd0:	38 21 00 40 	addi    r1,r1,64                               
ffc0abd4:	4e 80 00 20 	blr                                            
  else {                                                              
    block_count = information->maximum / information->allocation_size;
                                                                      
    for ( ; block < block_count; block++ ) {                          
      if ( information->object_blocks[ block ] == NULL ) {            
        do_extend = false;                                            
ffc0abd8:	3b 20 00 00 	li      r25,0                                  
ffc0abdc:	4b ff fe 14 	b       ffc0a9f0 <_Objects_Extend_information+0x98>
  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 );
ffc0abe0:	48 00 28 f9 	bl      ffc0d4d8 <_Workspace_Allocate_or_fatal_error>
ffc0abe4:	7c 7c 1b 78 	mr      r28,r3                                 
ffc0abe8:	4b ff fe 34 	b       ffc0aa1c <_Objects_Extend_information+0xc4>
       *  separate parts as size of each block has changed.           
       */                                                             
                                                                      
      memcpy( object_blocks,                                          
              information->object_blocks,                             
              block_count * sizeof(void*) );                          
ffc0abec:	56 d6 10 3a 	rlwinm  r22,r22,2,0,29                         
      /*                                                              
       *  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,                                          
ffc0abf0:	80 9f 00 34 	lwz     r4,52(r31)                             
ffc0abf4:	7e c5 b3 78 	mr      r5,r22                                 
ffc0abf8:	48 00 81 b1 	bl      ffc12da8 <memcpy>                      
              information->object_blocks,                             
              block_count * sizeof(void*) );                          
      memcpy( inactive_per_block,                                     
ffc0abfc:	80 9f 00 30 	lwz     r4,48(r31)                             
ffc0ac00:	7e c5 b3 78 	mr      r5,r22                                 
ffc0ac04:	7f 23 cb 78 	mr      r3,r25                                 
ffc0ac08:	48 00 81 a1 	bl      ffc12da8 <memcpy>                      
              information->inactive_per_block,                        
              block_count * sizeof(uint32_t) );                       
      memcpy( local_table,                                            
              information->local_table,                               
              (information->maximum + minimum_index) * sizeof(Objects_Control *) );
ffc0ac0c:	a0 bf 00 10 	lhz     r5,16(r31)                             
              information->object_blocks,                             
              block_count * sizeof(void*) );                          
      memcpy( inactive_per_block,                                     
              information->inactive_per_block,                        
              block_count * sizeof(uint32_t) );                       
      memcpy( local_table,                                            
ffc0ac10:	80 9f 00 1c 	lwz     r4,28(r31)                             
ffc0ac14:	7e e3 bb 78 	mr      r3,r23                                 
              information->local_table,                               
              (information->maximum + minimum_index) * sizeof(Objects_Control *) );
ffc0ac18:	7c bd 2a 14 	add     r5,r29,r5                              
              information->object_blocks,                             
              block_count * sizeof(void*) );                          
      memcpy( inactive_per_block,                                     
              information->inactive_per_block,                        
              block_count * sizeof(uint32_t) );                       
      memcpy( local_table,                                            
ffc0ac1c:	54 a5 10 3a 	rlwinm  r5,r5,2,0,29                           
ffc0ac20:	48 00 81 89 	bl      ffc12da8 <memcpy>                      
ffc0ac24:	4b ff fe 58 	b       ffc0aa7c <_Objects_Extend_information+0x124>
  minimum_index = _Objects_Get_index( information->minimum_id );      
  index_base    = minimum_index;                                      
  block         = 0;                                                  
                                                                      
  /* if ( information->maximum < minimum_index ) */                   
  if ( information->object_blocks == NULL )                           
ffc0ac28:	a3 43 00 10 	lhz     r26,16(r3)                             
  /*                                                                  
   *  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 );      
ffc0ac2c:	7f be eb 78 	mr      r30,r29                                
  index_base    = minimum_index;                                      
  block         = 0;                                                  
                                                                      
  /* if ( information->maximum < minimum_index ) */                   
  if ( information->object_blocks == NULL )                           
ffc0ac30:	a1 43 00 14 	lhz     r10,20(r3)                             
                                                                      
  /*                                                                  
   *  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;                                               
ffc0ac34:	3b 20 00 01 	li      r25,1                                  
  minimum_index = _Objects_Get_index( information->minimum_id );      
  index_base    = minimum_index;                                      
  block         = 0;                                                  
ffc0ac38:	3b 60 00 00 	li      r27,0                                  
                                                                      
  /* if ( information->maximum < minimum_index ) */                   
  if ( information->object_blocks == NULL )                           
    block_count = 0;                                                  
ffc0ac3c:	3a c0 00 00 	li      r22,0                                  
ffc0ac40:	4b ff fd b0 	b       ffc0a9f0 <_Objects_Extend_information+0x98>
  else {                                                              
    block_count = information->maximum / information->allocation_size;
                                                                      
    for ( ; block < block_count; block++ ) {                          
ffc0ac44:	7d 6a 5b 78 	mr      r10,r11                                <== 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 );      
ffc0ac48:	7f be eb 78 	mr      r30,r29                                <== 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;                                               
ffc0ac4c:	3b 20 00 01 	li      r25,1                                  <== NOT EXECUTED
  minimum_index = _Objects_Get_index( information->minimum_id );      
  index_base    = minimum_index;                                      
  block         = 0;                                                  
ffc0ac50:	3b 60 00 00 	li      r27,0                                  <== NOT EXECUTED
ffc0ac54:	4b ff fd 9c 	b       ffc0a9f0 <_Objects_Extend_information+0x98><== NOT EXECUTED
    block_count = 0;                                                  
  else {                                                              
    block_count = information->maximum / information->allocation_size;
                                                                      
    for ( ; block < block_count; block++ ) {                          
      if ( information->object_blocks[ block ] == NULL ) {            
ffc0ac58:	7d 6a 5b 78 	mr      r10,r11                                <== 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 );      
ffc0ac5c:	7f be eb 78 	mr      r30,r29                                <== NOT EXECUTED
  else {                                                              
    block_count = information->maximum / information->allocation_size;
                                                                      
    for ( ; block < block_count; block++ ) {                          
      if ( information->object_blocks[ block ] == NULL ) {            
        do_extend = false;                                            
ffc0ac60:	3b 20 00 00 	li      r25,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;                                                  
ffc0ac64:	3b 60 00 00 	li      r27,0                                  <== NOT EXECUTED
ffc0ac68:	4b ff fd 88 	b       ffc0a9f0 <_Objects_Extend_information+0x98><== 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 );                            
ffc0ac6c:	7f 83 e3 78 	mr      r3,r28                                 
ffc0ac70:	48 00 28 3d 	bl      ffc0d4ac <_Workspace_Free>             
      return;                                                         
ffc0ac74:	4b ff ff 2c 	b       ffc0aba0 <_Objects_Extend_information+0x248>
ffc0ac78:	39 60 00 01 	li      r11,1                                  <== NOT EXECUTED
ffc0ac7c:	7d 69 03 a6 	mtctr   r11                                    <== NOT EXECUTED
ffc0ac80:	4b ff fe 3c 	b       ffc0aabc <_Objects_Extend_information+0x164><== NOT EXECUTED
                                                                      

ffc0ad70 <_Objects_Get_information>: Objects_Information *_Objects_Get_information( Objects_APIs the_api, uint16_t the_class ) {
ffc0ad70:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0ad74:	7c 08 02 a6 	mflr    r0                                     
ffc0ad78:	93 c1 00 10 	stw     r30,16(r1)                             
  Objects_Information *info;                                          
  int the_class_api_maximum;                                          
                                                                      
  if ( !the_class )                                                   
ffc0ad7c:	7c 9e 23 79 	mr.     r30,r4                                 
                                                                      
Objects_Information *_Objects_Get_information(                        
  Objects_APIs   the_api,                                             
  uint16_t       the_class                                            
)                                                                     
{                                                                     
ffc0ad80:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0ad84:	7c 7d 1b 78 	mr      r29,r3                                 
ffc0ad88:	93 e1 00 14 	stw     r31,20(r1)                             
  Objects_Information *info;                                          
  int the_class_api_maximum;                                          
                                                                      
  if ( !the_class )                                                   
    return NULL;                                                      
ffc0ad8c:	3b e0 00 00 	li      r31,0                                  
                                                                      
Objects_Information *_Objects_Get_information(                        
  Objects_APIs   the_api,                                             
  uint16_t       the_class                                            
)                                                                     
{                                                                     
ffc0ad90:	90 01 00 1c 	stw     r0,28(r1)                              
  Objects_Information *info;                                          
  int the_class_api_maximum;                                          
                                                                      
  if ( !the_class )                                                   
ffc0ad94:	40 82 00 24 	bne-    ffc0adb8 <_Objects_Get_information+0x48>
    if ( info->maximum == 0 )                                         
      return NULL;                                                    
  #endif                                                              
                                                                      
  return info;                                                        
}                                                                     
ffc0ad98:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0ad9c:	7f e3 fb 78 	mr      r3,r31                                 
ffc0ada0:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0ada4:	7c 08 03 a6 	mtlr    r0                                     
ffc0ada8:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0adac:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0adb0:	38 21 00 18 	addi    r1,r1,24                               
ffc0adb4:	4e 80 00 20 	blr                                            
                                                                      
  /*                                                                  
   *  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 );      
ffc0adb8:	48 00 50 6d 	bl      ffc0fe24 <_Objects_API_maximum_class>  
  if ( the_class_api_maximum == 0 )                                   
ffc0adbc:	2c 03 00 00 	cmpwi   r3,0                                   
ffc0adc0:	41 82 ff d8 	beq+    ffc0ad98 <_Objects_Get_information+0x28>
    return NULL;                                                      
                                                                      
  if ( the_class > (uint32_t) the_class_api_maximum )                 
ffc0adc4:	7f 83 f0 40 	cmplw   cr7,r3,r30                             
ffc0adc8:	41 9c ff d0 	blt+    cr7,ffc0ad98 <_Objects_Get_information+0x28>
    return NULL;                                                      
                                                                      
  if ( !_Objects_Information_table[ the_api ] )                       
ffc0adcc:	3d 20 00 00 	lis     r9,0                                   
ffc0add0:	57 bd 10 3a 	rlwinm  r29,r29,2,0,29                         
ffc0add4:	39 29 2b 40 	addi    r9,r9,11072                            
ffc0add8:	7d 29 e8 2e 	lwzx    r9,r9,r29                              
ffc0addc:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0ade0:	41 9e ff b8 	beq+    cr7,ffc0ad98 <_Objects_Get_information+0x28><== NEVER TAKEN
    return NULL;                                                      
                                                                      
  info = _Objects_Information_table[ the_api ][ the_class ];          
ffc0ade4:	57 de 10 3a 	rlwinm  r30,r30,2,0,29                         
ffc0ade8:	7f e9 f0 2e 	lwzx    r31,r9,r30                             
  if ( !info )                                                        
ffc0adec:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc0adf0:	41 9e ff a8 	beq+    cr7,ffc0ad98 <_Objects_Get_information+0x28><== 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 )                                         
ffc0adf4:	a0 1f 00 10 	lhz     r0,16(r31)                             
ffc0adf8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0adfc:	40 9e ff 9c 	bne+    cr7,ffc0ad98 <_Objects_Get_information+0x28>
      return NULL;                                                    
ffc0ae00:	3b e0 00 00 	li      r31,0                                  
ffc0ae04:	4b ff ff 94 	b       ffc0ad98 <_Objects_Get_information+0x28>
                                                                      

ffc0d040 <_Objects_Get_name_as_string>: char *_Objects_Get_name_as_string( Objects_Id id, size_t length, char *name ) {
ffc0d040:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc0d044:	7c 08 02 a6 	mflr    r0                                     
ffc0d048:	93 c1 00 20 	stw     r30,32(r1)                             
  char                   lname[5];                                    
  Objects_Control       *the_object;                                  
  Objects_Locations      location;                                    
  Objects_Id             tmpId;                                       
                                                                      
  if ( length == 0 )                                                  
ffc0d04c:	7c 9e 23 79 	mr.     r30,r4                                 
char *_Objects_Get_name_as_string(                                    
  Objects_Id        id,                                               
  size_t            length,                                           
  char             *name                                              
)                                                                     
{                                                                     
ffc0d050:	93 e1 00 24 	stw     r31,36(r1)                             
ffc0d054:	7c bf 2b 78 	mr      r31,r5                                 
ffc0d058:	90 01 00 2c 	stw     r0,44(r1)                              
ffc0d05c:	93 a1 00 1c 	stw     r29,28(r1)                             
  char                   lname[5];                                    
  Objects_Control       *the_object;                                  
  Objects_Locations      location;                                    
  Objects_Id             tmpId;                                       
                                                                      
  if ( length == 0 )                                                  
ffc0d060:	40 82 00 28 	bne-    ffc0d088 <_Objects_Get_name_as_string+0x48>
#if defined(RTEMS_MULTIPROCESSING)                                    
    case OBJECTS_REMOTE:                                              
      /* not supported */                                             
#endif                                                                
    case OBJECTS_ERROR:                                               
      return NULL;                                                    
ffc0d064:	3b e0 00 00 	li      r31,0                                  
                                                                      
      _Thread_Enable_dispatch();                                      
      return name;                                                    
  }                                                                   
  return NULL;                  /* unreachable path */                
}                                                                     
ffc0d068:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc0d06c:	7f e3 fb 78 	mr      r3,r31                                 
ffc0d070:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc0d074:	7c 08 03 a6 	mtlr    r0                                     
ffc0d078:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc0d07c:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc0d080:	38 21 00 28 	addi    r1,r1,40                               
ffc0d084:	4e 80 00 20 	blr                                            
  Objects_Id             tmpId;                                       
                                                                      
  if ( length == 0 )                                                  
    return NULL;                                                      
                                                                      
  if ( name == NULL )                                                 
ffc0d088:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc0d08c:	41 9e ff dc 	beq+    cr7,ffc0d068 <_Objects_Get_name_as_string+0x28>
    return NULL;                                                      
                                                                      
  tmpId = (id == OBJECTS_ID_OF_SELF) ? _Thread_Executing->Object.id : id;
ffc0d090:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0d094:	7c 7d 1b 78 	mr      r29,r3                                 
ffc0d098:	40 9e 00 10 	bne-    cr7,ffc0d0a8 <_Objects_Get_name_as_string+0x68>
ffc0d09c:	3d 20 00 01 	lis     r9,1                                   
ffc0d0a0:	81 29 ab f0 	lwz     r9,-21520(r9)                          
ffc0d0a4:	83 a9 00 08 	lwz     r29,8(r9)                              
                                                                      
  information = _Objects_Get_information_id( tmpId );                 
ffc0d0a8:	7f a3 eb 78 	mr      r3,r29                                 
ffc0d0ac:	4b ff fe 61 	bl      ffc0cf0c <_Objects_Get_information_id> 
  if ( !information )                                                 
ffc0d0b0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0d0b4:	41 9e ff b0 	beq+    cr7,ffc0d064 <_Objects_Get_name_as_string+0x24>
    return NULL;                                                      
                                                                      
  the_object = _Objects_Get( information, tmpId, &location );         
ffc0d0b8:	7f a4 eb 78 	mr      r4,r29                                 
ffc0d0bc:	38 a1 00 08 	addi    r5,r1,8                                
ffc0d0c0:	48 00 00 a5 	bl      ffc0d164 <_Objects_Get>                
  switch ( location ) {                                               
ffc0d0c4:	80 01 00 08 	lwz     r0,8(r1)                               
ffc0d0c8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0d0cc:	40 be ff 98 	bne-    cr7,ffc0d064 <_Objects_Get_name_as_string+0x24>
        s = lname;                                                    
      }                                                               
                                                                      
      d = name;                                                       
      if ( s ) {                                                      
        for ( i=0 ; i<(length-1) && *s ; i++, s++, d++ ) {            
ffc0d0d0:	37 de ff ff 	addic.  r30,r30,-1                             
        if ( information->is_string ) {                               
          s = the_object->name.name_p;                                
        } else                                                        
      #endif                                                          
      {                                                               
        uint32_t  u32_name = (uint32_t) the_object->name.name_u32;    
ffc0d0d4:	81 63 00 0c 	lwz     r11,12(r3)                             
                                                                      
        lname[ 0 ] = (u32_name >> 24) & 0xff;                         
        lname[ 1 ] = (u32_name >> 16) & 0xff;                         
        lname[ 2 ] = (u32_name >>  8) & 0xff;                         
        lname[ 3 ] = (u32_name >>  0) & 0xff;                         
        lname[ 4 ] = '\0';                                            
ffc0d0d8:	98 01 00 10 	stb     r0,16(r1)                              
        s = lname;                                                    
      }                                                               
                                                                      
      d = name;                                                       
      if ( s ) {                                                      
        for ( i=0 ; i<(length-1) && *s ; i++, s++, d++ ) {            
ffc0d0dc:	7f e9 fb 78 	mr      r9,r31                                 
        } else                                                        
      #endif                                                          
      {                                                               
        uint32_t  u32_name = (uint32_t) the_object->name.name_u32;    
                                                                      
        lname[ 0 ] = (u32_name >> 24) & 0xff;                         
ffc0d0e0:	55 60 46 3e 	rlwinm  r0,r11,8,24,31                         
        lname[ 1 ] = (u32_name >> 16) & 0xff;                         
ffc0d0e4:	55 68 84 3e 	rlwinm  r8,r11,16,16,31                        
        } else                                                        
      #endif                                                          
      {                                                               
        uint32_t  u32_name = (uint32_t) the_object->name.name_u32;    
                                                                      
        lname[ 0 ] = (u32_name >> 24) & 0xff;                         
ffc0d0e8:	98 01 00 0c 	stb     r0,12(r1)                              
        lname[ 1 ] = (u32_name >> 16) & 0xff;                         
        lname[ 2 ] = (u32_name >>  8) & 0xff;                         
ffc0d0ec:	55 6a c2 3e 	rlwinm  r10,r11,24,8,31                        
      #endif                                                          
      {                                                               
        uint32_t  u32_name = (uint32_t) the_object->name.name_u32;    
                                                                      
        lname[ 0 ] = (u32_name >> 24) & 0xff;                         
        lname[ 1 ] = (u32_name >> 16) & 0xff;                         
ffc0d0f0:	99 01 00 0d 	stb     r8,13(r1)                              
        lname[ 2 ] = (u32_name >>  8) & 0xff;                         
ffc0d0f4:	99 41 00 0e 	stb     r10,14(r1)                             
        lname[ 3 ] = (u32_name >>  0) & 0xff;                         
ffc0d0f8:	99 61 00 0f 	stb     r11,15(r1)                             
        s = lname;                                                    
      }                                                               
                                                                      
      d = name;                                                       
      if ( s ) {                                                      
        for ( i=0 ; i<(length-1) && *s ; i++, s++, d++ ) {            
ffc0d0fc:	41 82 00 58 	beq-    ffc0d154 <_Objects_Get_name_as_string+0x114><== NEVER TAKEN
ffc0d100:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0d104:	41 9e 00 50 	beq-    cr7,ffc0d154 <_Objects_Get_name_as_string+0x114>
ffc0d108:	3d 00 00 00 	lis     r8,0                                   
          *d = (isprint((unsigned char)*s)) ? *s : '*';               
ffc0d10c:	7f c9 03 a6 	mtctr   r30                                    
        s = lname;                                                    
      }                                                               
                                                                      
      d = name;                                                       
      if ( s ) {                                                      
        for ( i=0 ; i<(length-1) && *s ; i++, s++, d++ ) {            
ffc0d110:	39 60 00 00 	li      r11,0                                  
ffc0d114:	39 08 27 48 	addi    r8,r8,10056                            
ffc0d118:	48 00 00 14 	b       ffc0d12c <_Objects_Get_name_as_string+0xec>
ffc0d11c:	39 41 00 0c 	addi    r10,r1,12                              
ffc0d120:	7c 0a 58 ae 	lbzx    r0,r10,r11                             
ffc0d124:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0d128:	41 9e 00 2c 	beq-    cr7,ffc0d154 <_Objects_Get_name_as_string+0x114>
          *d = (isprint((unsigned char)*s)) ? *s : '*';               
ffc0d12c:	81 48 00 00 	lwz     r10,0(r8)                              
        s = lname;                                                    
      }                                                               
                                                                      
      d = name;                                                       
      if ( s ) {                                                      
        for ( i=0 ; i<(length-1) && *s ; i++, s++, d++ ) {            
ffc0d130:	39 6b 00 01 	addi    r11,r11,1                              
          *d = (isprint((unsigned char)*s)) ? *s : '*';               
ffc0d134:	7d 4a 02 14 	add     r10,r10,r0                             
ffc0d138:	89 4a 00 01 	lbz     r10,1(r10)                             
ffc0d13c:	71 47 00 97 	andi.   r7,r10,151                             
ffc0d140:	40 82 00 08 	bne-    ffc0d148 <_Objects_Get_name_as_string+0x108>
ffc0d144:	38 00 00 2a 	li      r0,42                                  
ffc0d148:	98 09 00 00 	stb     r0,0(r9)                               
        s = lname;                                                    
      }                                                               
                                                                      
      d = name;                                                       
      if ( s ) {                                                      
        for ( i=0 ; i<(length-1) && *s ; i++, s++, d++ ) {            
ffc0d14c:	39 29 00 01 	addi    r9,r9,1                                
ffc0d150:	42 00 ff cc 	bdnz+   ffc0d11c <_Objects_Get_name_as_string+0xdc>
          *d = (isprint((unsigned char)*s)) ? *s : '*';               
        }                                                             
      }                                                               
      *d = '\0';                                                      
ffc0d154:	38 00 00 00 	li      r0,0                                   
ffc0d158:	98 09 00 00 	stb     r0,0(r9)                               
                                                                      
      _Thread_Enable_dispatch();                                      
ffc0d15c:	48 00 0b 5d 	bl      ffc0dcb8 <_Thread_Enable_dispatch>     
      return name;                                                    
ffc0d160:	4b ff ff 08 	b       ffc0d068 <_Objects_Get_name_as_string+0x28>
                                                                      

ffc1ec20 <_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;
ffc1ec20:	81 23 00 08 	lwz     r9,8(r3)                               
                                                                      
  if ( information->maximum >= index ) {                              
ffc1ec24:	a0 03 00 10 	lhz     r0,16(r3)                              
                                                                      
  /*                                                                  
   * 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;                           
ffc1ec28:	21 29 00 01 	subfic  r9,r9,1                                
ffc1ec2c:	7d 29 22 14 	add     r9,r9,r4                               
                                                                      
  if ( information->maximum >= index ) {                              
ffc1ec30:	7f 89 00 40 	cmplw   cr7,r9,r0                              
ffc1ec34:	41 9d 00 24 	bgt-    cr7,ffc1ec58 <_Objects_Get_no_protection+0x38>
    if ( (the_object = information->local_table[ index ]) != NULL ) { 
ffc1ec38:	81 63 00 1c 	lwz     r11,28(r3)                             
ffc1ec3c:	55 29 10 3a 	rlwinm  r9,r9,2,0,29                           
ffc1ec40:	7c 6b 48 2e 	lwzx    r3,r11,r9                              
ffc1ec44:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc1ec48:	41 9e 00 10 	beq-    cr7,ffc1ec58 <_Objects_Get_no_protection+0x38><== NEVER TAKEN
      *location = OBJECTS_LOCAL;                                      
ffc1ec4c:	38 00 00 00 	li      r0,0                                   
ffc1ec50:	90 05 00 00 	stw     r0,0(r5)                               
      return the_object;                                              
ffc1ec54:	4e 80 00 20 	blr                                            
                                                                      
  /*                                                                  
   *  This isn't supported or required yet for Global objects so      
   *  if it isn't local, we don't find it.                            
   */                                                                 
  *location = OBJECTS_ERROR;                                          
ffc1ec58:	38 00 00 01 	li      r0,1                                   
ffc1ec5c:	90 05 00 00 	stw     r0,0(r5)                               
  return NULL;                                                        
ffc1ec60:	38 60 00 00 	li      r3,0                                   
}                                                                     
ffc1ec64:	4e 80 00 20 	blr                                            
                                                                      

ffc0ca28 <_Objects_Id_to_name>: */ Objects_Name_or_id_lookup_errors _Objects_Id_to_name ( Objects_Id id, Objects_Name *name ) {
ffc0ca28:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc0ca2c:	7c 08 02 a6 	mflr    r0                                     
ffc0ca30:	90 01 00 24 	stw     r0,36(r1)                              
                                                                      
  /*                                                                  
   *  Caller is trusted for name != NULL.                             
   */                                                                 
                                                                      
  tmpId = (id == OBJECTS_ID_OF_SELF) ? _Thread_Executing->Object.id : id;
ffc0ca34:	7c 60 1b 79 	mr.     r0,r3                                  
 */                                                                   
Objects_Name_or_id_lookup_errors _Objects_Id_to_name (                
  Objects_Id      id,                                                 
  Objects_Name   *name                                                
)                                                                     
{                                                                     
ffc0ca38:	93 c1 00 18 	stw     r30,24(r1)                             
ffc0ca3c:	7c 9e 23 78 	mr      r30,r4                                 
ffc0ca40:	93 e1 00 1c 	stw     r31,28(r1)                             
                                                                      
  /*                                                                  
   *  Caller is trusted for name != NULL.                             
   */                                                                 
                                                                      
  tmpId = (id == OBJECTS_ID_OF_SELF) ? _Thread_Executing->Object.id : id;
ffc0ca44:	40 82 00 10 	bne-    ffc0ca54 <_Objects_Id_to_name+0x2c>    
ffc0ca48:	3d 20 00 00 	lis     r9,0                                   
ffc0ca4c:	81 29 2d f0 	lwz     r9,11760(r9)                           
ffc0ca50:	80 09 00 08 	lwz     r0,8(r9)                               
 */                                                                   
RTEMS_INLINE_ROUTINE Objects_APIs _Objects_Get_API(                   
  Objects_Id id                                                       
)                                                                     
{                                                                     
  return (Objects_APIs) ((id >> OBJECTS_API_START_BIT) & OBJECTS_API_VALID_BITS);
ffc0ca54:	54 09 47 7e 	rlwinm  r9,r0,8,29,31                          
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Objects_Is_api_valid(                      
  uint32_t   the_api                                                  
)                                                                     
{                                                                     
  if ( !the_api || the_api > OBJECTS_APIS_LAST )                      
ffc0ca58:	39 69 ff ff 	addi    r11,r9,-1                              
ffc0ca5c:	2b 8b 00 02 	cmplwi  cr7,r11,2                              
                                                                      
  the_api = _Objects_Get_API( tmpId );                                
  if ( !_Objects_Is_api_valid( the_api ) )                            
    return OBJECTS_INVALID_ID;                                        
ffc0ca60:	3b e0 00 03 	li      r31,3                                  
ffc0ca64:	41 9d 00 50 	bgt-    cr7,ffc0cab4 <_Objects_Id_to_name+0x8c>
                                                                      
  if ( !_Objects_Information_table[ the_api ] )                       
ffc0ca68:	3d 60 00 00 	lis     r11,0                                  
ffc0ca6c:	55 29 10 3a 	rlwinm  r9,r9,2,0,29                           
ffc0ca70:	39 6b 2b c0 	addi    r11,r11,11200                          
ffc0ca74:	7d 2b 48 2e 	lwzx    r9,r11,r9                              
ffc0ca78:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0ca7c:	41 9e 00 38 	beq-    cr7,ffc0cab4 <_Objects_Id_to_name+0x8c>
    return OBJECTS_INVALID_ID;                                        
                                                                      
  the_class = _Objects_Get_class( tmpId );                            
                                                                      
  information = _Objects_Information_table[ the_api ][ the_class ];   
ffc0ca80:	54 0b 3e 7a 	rlwinm  r11,r0,7,25,29                         
ffc0ca84:	7c 69 58 2e 	lwzx    r3,r9,r11                              
  if ( !information )                                                 
ffc0ca88:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0ca8c:	41 9e 00 28 	beq-    cr7,ffc0cab4 <_Objects_Id_to_name+0x8c><== 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 ); 
ffc0ca90:	7c 04 03 78 	mr      r4,r0                                  
ffc0ca94:	38 a1 00 08 	addi    r5,r1,8                                
ffc0ca98:	4b ff fe f5 	bl      ffc0c98c <_Objects_Get>                
  if ( !the_object )                                                  
ffc0ca9c:	2c 03 00 00 	cmpwi   r3,0                                   
ffc0caa0:	41 82 00 14 	beq-    ffc0cab4 <_Objects_Id_to_name+0x8c>    
    return OBJECTS_INVALID_ID;                                        
                                                                      
  *name = the_object->name;                                           
ffc0caa4:	80 03 00 0c 	lwz     r0,12(r3)                              
  _Thread_Enable_dispatch();                                          
  return OBJECTS_NAME_OR_ID_LOOKUP_SUCCESSFUL;                        
ffc0caa8:	3b e0 00 00 	li      r31,0                                  
                                                                      
  the_object = _Objects_Get( information, tmpId, &ignored_location ); 
  if ( !the_object )                                                  
    return OBJECTS_INVALID_ID;                                        
                                                                      
  *name = the_object->name;                                           
ffc0caac:	90 1e 00 00 	stw     r0,0(r30)                              
  _Thread_Enable_dispatch();                                          
ffc0cab0:	48 00 0a d9 	bl      ffc0d588 <_Thread_Enable_dispatch>     
  return OBJECTS_NAME_OR_ID_LOOKUP_SUCCESSFUL;                        
}                                                                     
ffc0cab4:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0cab8:	7f e3 fb 78 	mr      r3,r31                                 
ffc0cabc:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0cac0:	7c 08 03 a6 	mtlr    r0                                     
ffc0cac4:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0cac8:	38 21 00 20 	addi    r1,r1,32                               
ffc0cacc:	4e 80 00 20 	blr                                            
                                                                      

ffc0af14 <_Objects_Initialize_information>: , bool supports_global, Objects_Thread_queue_Extract_callout extract #endif ) {
ffc0af14:	94 21 ff f8 	stwu    r1,-8(r1)                              
ffc0af18:	7c 08 02 a6 	mflr    r0                                     
  information->maximum = 0;                                           
                                                                      
  /*                                                                  
   *  Register this Object Class in the Object Information Table.     
   */                                                                 
  _Objects_Information_table[ the_api ][ the_class ] = information;   
ffc0af1c:	3d 40 00 00 	lis     r10,0                                  
  ,                                                                   
  bool                 supports_global,                               
  Objects_Thread_queue_Extract_callout extract                        
#endif                                                                
)                                                                     
{                                                                     
ffc0af20:	90 01 00 0c 	stw     r0,12(r1)                              
                                                                      
  /*                                                                  
   *  Are we operating in limited or unlimited (e.g. auto-extend) mode.
   */                                                                 
  information->auto_extend =                                          
        (maximum & OBJECTS_UNLIMITED_OBJECTS) ? true : false;         
ffc0af24:	54 c0 0f fe 	rlwinm  r0,r6,1,31,31                          
  maximum_per_allocation = maximum & ~OBJECTS_UNLIMITED_OBJECTS;      
                                                                      
  /*                                                                  
   *  Unlimited and maximum of zero is illogical.                     
   */                                                                 
  if ( information->auto_extend && maximum_per_allocation == 0) {     
ffc0af28:	2f 80 00 00 	cmpwi   cr7,r0,0                               
  information->maximum = 0;                                           
                                                                      
  /*                                                                  
   *  Register this Object Class in the Object Information Table.     
   */                                                                 
  _Objects_Information_table[ the_api ][ the_class ] = information;   
ffc0af2c:	39 4a 2b 40 	addi    r10,r10,11072                          
ffc0af30:	54 8b 10 3a 	rlwinm  r11,r4,2,0,29                          
ffc0af34:	7d 6a 58 2e 	lwzx    r11,r10,r11                            
ffc0af38:	54 a8 10 3a 	rlwinm  r8,r5,2,0,29                           
  #endif                                                              
                                                                      
  information->the_api            = the_api;                          
  information->the_class          = the_class;                        
  information->size               = size;                             
  information->local_table        = 0;                                
ffc0af3c:	39 40 00 00 	li      r10,0                                  
  uint32_t                maximum_per_allocation;                     
  #if defined(RTEMS_MULTIPROCESSING)                                  
    uint32_t              index;                                      
  #endif                                                              
                                                                      
  information->the_api            = the_api;                          
ffc0af40:	90 83 00 00 	stw     r4,0(r3)                               
ffc0af44:	54 c6 00 7f 	clrlwi. r6,r6,1                                
  information->the_class          = the_class;                        
ffc0af48:	b0 a3 00 04 	sth     r5,4(r3)                               
  information->size               = size;                             
ffc0af4c:	90 e3 00 18 	stw     r7,24(r3)                              
  information->local_table        = 0;                                
ffc0af50:	91 43 00 1c 	stw     r10,28(r3)                             
  information->inactive_per_block = 0;                                
ffc0af54:	91 43 00 30 	stw     r10,48(r3)                             
  information->object_blocks      = 0;                                
ffc0af58:	91 43 00 34 	stw     r10,52(r3)                             
  information->inactive           = 0;                                
ffc0af5c:	b1 43 00 2c 	sth     r10,44(r3)                             
                                                                      
  /*                                                                  
   *  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;                                           
ffc0af60:	b1 43 00 10 	sth     r10,16(r3)                             
                                                                      
  /*                                                                  
   *  Register this Object Class in the Object Information Table.     
   */                                                                 
  _Objects_Information_table[ the_api ][ the_class ] = information;   
ffc0af64:	7c 6b 41 2e 	stwx    r3,r11,r8                              
                                                                      
  /*                                                                  
   *  Are we operating in limited or unlimited (e.g. auto-extend) mode.
   */                                                                 
  information->auto_extend =                                          
ffc0af68:	98 03 00 12 	stb     r0,18(r3)                              
  maximum_per_allocation = maximum & ~OBJECTS_UNLIMITED_OBJECTS;      
                                                                      
  /*                                                                  
   *  Unlimited and maximum of zero is illogical.                     
   */                                                                 
  if ( information->auto_extend && maximum_per_allocation == 0) {     
ffc0af6c:	41 9e 00 08 	beq-    cr7,ffc0af74 <_Objects_Initialize_information+0x60>
ffc0af70:	41 82 00 84 	beq-    ffc0aff4 <_Objects_Initialize_information+0xe0>
  /*                                                                  
   *  Calculate the maximum name length                               
   */                                                                 
  name_length = maximum_name_length;                                  
                                                                      
  if ( name_length & (OBJECTS_NAME_ALIGNMENT-1) )                     
ffc0af74:	55 20 07 be 	clrlwi  r0,r9,30                               
  }                                                                   
                                                                      
  /*                                                                  
   *  The allocation unit is the maximum value                        
   */                                                                 
  information->allocation_size = maximum_per_allocation;              
ffc0af78:	b0 c3 00 14 	sth     r6,20(r3)                              
  /*                                                                  
   *  Calculate the maximum name length                               
   */                                                                 
  name_length = maximum_name_length;                                  
                                                                      
  if ( name_length & (OBJECTS_NAME_ALIGNMENT-1) )                     
ffc0af7c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
  information->local_table = &null_local_table;                       
                                                                      
  /*                                                                  
   *  Calculate minimum and maximum Id's                              
   */                                                                 
  minimum_index = (maximum_per_allocation == 0) ? 0 : 1;              
ffc0af80:	7c 00 00 26 	mfcr    r0                                     
ffc0af84:	54 00 1f fe 	rlwinm  r0,r0,3,31,31                          
ffc0af88:	54 84 c0 0e 	rlwinm  r4,r4,24,0,7                           
ffc0af8c:	64 84 00 01 	oris    r4,r4,1                                
         (( (Objects_Id) the_class ) << OBJECTS_CLASS_START_BIT) |    
ffc0af90:	54 a5 d8 08 	rlwinm  r5,r5,27,0,4                           
ffc0af94:	68 00 00 01 	xori    r0,r0,1                                
ffc0af98:	7c 85 2b 78 	or      r5,r4,r5                               
  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;                       
ffc0af9c:	3d 60 00 00 	lis     r11,0                                  
  uint32_t         the_class,                                         
  uint32_t         node,                                              
  uint32_t         index                                              
)                                                                     
{                                                                     
  return (( (Objects_Id) the_api )   << OBJECTS_API_START_BIT)   |    
ffc0afa0:	7c a5 03 78 	or      r5,r5,r0                               
ffc0afa4:	38 0b 28 d8 	addi    r0,r11,10456                           
                                                                      
  /*                                                                  
   *  Calculate minimum and maximum Id's                              
   */                                                                 
  minimum_index = (maximum_per_allocation == 0) ? 0 : 1;              
  information->minimum_id =                                           
ffc0afa8:	90 a3 00 08 	stw     r5,8(r3)                               
  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;                       
ffc0afac:	90 03 00 1c 	stw     r0,28(r3)                              
  /*                                                                  
   *  Calculate the maximum name length                               
   */                                                                 
  name_length = maximum_name_length;                                  
                                                                      
  if ( name_length & (OBJECTS_NAME_ALIGNMENT-1) )                     
ffc0afb0:	40 9e 00 38 	bne-    cr7,ffc0afe8 <_Objects_Initialize_information+0xd4><== NEVER TAKEN
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc0afb4:	39 63 00 24 	addi    r11,r3,36                              
    name_length = (name_length + OBJECTS_NAME_ALIGNMENT) &            
                  ~(OBJECTS_NAME_ALIGNMENT-1);                        
                                                                      
  information->name_length = name_length;                             
ffc0afb8:	b1 23 00 38 	sth     r9,56(r3)                              
                                                                      
  _Chain_Initialize_empty( &information->Inactive );                  
ffc0afbc:	38 03 00 20 	addi    r0,r3,32                               
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
  the_chain->permanent_null = NULL;                                   
ffc0afc0:	39 20 00 00 	li      r9,0                                   
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
ffc0afc4:	91 63 00 20 	stw     r11,32(r3)                             
  the_chain->permanent_null = NULL;                                   
ffc0afc8:	91 23 00 24 	stw     r9,36(r3)                              
  the_chain->last           = _Chain_Head(the_chain);                 
ffc0afcc:	90 03 00 28 	stw     r0,40(r3)                              
                                                                      
  /*                                                                  
   *  Initialize objects .. if there are any                          
   */                                                                 
  if ( maximum_per_allocation ) {                                     
ffc0afd0:	41 a2 00 08 	beq+    ffc0afd8 <_Objects_Initialize_information+0xc4>
    /*                                                                
     *  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 );                       
ffc0afd4:	4b ff f9 85 	bl      ffc0a958 <_Objects_Extend_information> 
	_Chain_Initialize_empty( &information->global_table[ index ] );      
     }                                                                
     else                                                             
       information->global_table = NULL;                              
  #endif                                                              
}                                                                     
ffc0afd8:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc0afdc:	38 21 00 08 	addi    r1,r1,8                                
ffc0afe0:	7c 08 03 a6 	mtlr    r0                                     
ffc0afe4:	4e 80 00 20 	blr                                            
   *  Calculate the maximum name length                               
   */                                                                 
  name_length = maximum_name_length;                                  
                                                                      
  if ( name_length & (OBJECTS_NAME_ALIGNMENT-1) )                     
    name_length = (name_length + OBJECTS_NAME_ALIGNMENT) &            
ffc0afe8:	39 29 00 04 	addi    r9,r9,4                                <== NOT EXECUTED
ffc0afec:	55 29 00 3a 	rlwinm  r9,r9,0,0,29                           <== NOT EXECUTED
ffc0aff0:	4b ff ff c4 	b       ffc0afb4 <_Objects_Initialize_information+0xa0><== NOT EXECUTED
                                                                      
  /*                                                                  
   *  Unlimited and maximum of zero is illogical.                     
   */                                                                 
  if ( information->auto_extend && maximum_per_allocation == 0) {     
    _Internal_error_Occurred(                                         
ffc0aff4:	38 60 00 00 	li      r3,0                                   
ffc0aff8:	38 80 00 01 	li      r4,1                                   
ffc0affc:	38 a0 00 13 	li      r5,19                                  
ffc0b000:	4b ff f8 05 	bl      ffc0a804 <_Internal_error_Occurred>    
                                                                      

ffc0b09c <_Objects_Shrink_information>: */ void _Objects_Shrink_information( Objects_Information *information ) {
ffc0b09c:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0b0a0:	7c 08 02 a6 	mflr    r0                                     
ffc0b0a4:	90 01 00 1c 	stw     r0,28(r1)                              
ffc0b0a8:	93 e1 00 14 	stw     r31,20(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) /                 
ffc0b0ac:	a1 43 00 10 	lhz     r10,16(r3)                             
                                                                      
  /*                                                                  
   * Search the list to find block or chunk with all objects inactive.
   */                                                                 
                                                                      
  index_base = _Objects_Get_index( information->minimum_id );         
ffc0b0b0:	a3 e3 00 0a 	lhz     r31,10(r3)                             
  block_count = (information->maximum - index_base) /                 
ffc0b0b4:	a0 03 00 14 	lhz     r0,20(r3)                              
ffc0b0b8:	7d 5f 50 50 	subf    r10,r31,r10                            
 */                                                                   
                                                                      
void _Objects_Shrink_information(                                     
  Objects_Information *information                                    
)                                                                     
{                                                                     
ffc0b0bc:	93 81 00 08 	stw     r28,8(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) /                 
ffc0b0c0:	7d 4a 03 96 	divwu   r10,r10,r0                             
 */                                                                   
                                                                      
void _Objects_Shrink_information(                                     
  Objects_Information *information                                    
)                                                                     
{                                                                     
ffc0b0c4:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0b0c8:	93 c1 00 10 	stw     r30,16(r1)                             
                                                                      
  index_base = _Objects_Get_index( information->minimum_id );         
  block_count = (information->maximum - index_base) /                 
                 information->allocation_size;                        
                                                                      
  for ( block = 0; block < block_count; block++ ) {                   
ffc0b0cc:	2f 8a 00 00 	cmpwi   cr7,r10,0                              
 */                                                                   
                                                                      
void _Objects_Shrink_information(                                     
  Objects_Information *information                                    
)                                                                     
{                                                                     
ffc0b0d0:	7c 7c 1b 78 	mr      r28,r3                                 
                                                                      
  index_base = _Objects_Get_index( information->minimum_id );         
  block_count = (information->maximum - index_base) /                 
                 information->allocation_size;                        
                                                                      
  for ( block = 0; block < block_count; block++ ) {                   
ffc0b0d4:	41 9e 00 3c 	beq-    cr7,ffc0b110 <_Objects_Shrink_information+0x74><== NEVER TAKEN
    if ( information->inactive_per_block[ block ] ==                  
ffc0b0d8:	81 63 00 30 	lwz     r11,48(r3)                             
ffc0b0dc:	81 2b 00 00 	lwz     r9,0(r11)                              
ffc0b0e0:	7f 80 48 00 	cmpw    cr7,r0,r9                              
ffc0b0e4:	41 9e 00 4c 	beq-    cr7,ffc0b130 <_Objects_Shrink_information+0x94><== 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++ ) {                   
ffc0b0e8:	39 20 00 00 	li      r9,0                                   
ffc0b0ec:	7d 49 03 a6 	mtctr   r10                                    
ffc0b0f0:	48 00 00 18 	b       ffc0b108 <_Objects_Shrink_information+0x6c>
    if ( information->inactive_per_block[ block ] ==                  
ffc0b0f4:	85 4b 00 04 	lwzu    r10,4(r11)                             
      information->inactive -= information->allocation_size;          
                                                                      
      return;                                                         
    }                                                                 
                                                                      
    index_base += information->allocation_size;                       
ffc0b0f8:	7f ff 02 14 	add     r31,r31,r0                             
ffc0b0fc:	55 3d 10 3a 	rlwinm  r29,r9,2,0,29                          
  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 ] ==                  
ffc0b100:	7f 80 50 00 	cmpw    cr7,r0,r10                             
ffc0b104:	41 9e 00 30 	beq-    cr7,ffc0b134 <_Objects_Shrink_information+0x98>
                                                                      
  index_base = _Objects_Get_index( information->minimum_id );         
  block_count = (information->maximum - index_base) /                 
                 information->allocation_size;                        
                                                                      
  for ( block = 0; block < block_count; block++ ) {                   
ffc0b108:	39 29 00 01 	addi    r9,r9,1                                
ffc0b10c:	42 00 ff e8 	bdnz+   ffc0b0f4 <_Objects_Shrink_information+0x58>
      return;                                                         
    }                                                                 
                                                                      
    index_base += information->allocation_size;                       
  }                                                                   
}                                                                     
ffc0b110:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0b114:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0b118:	7c 08 03 a6 	mtlr    r0                                     
ffc0b11c:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0b120:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0b124:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0b128:	38 21 00 18 	addi    r1,r1,24                               
ffc0b12c:	4e 80 00 20 	blr                                            
  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 ] ==                  
ffc0b130:	3b a0 00 00 	li      r29,0                                  <== NOT EXECUTED
         information->allocation_size ) {                             
                                                                      
      /*                                                              
       *  Assume the Inactive chain is never empty at this point      
       */                                                             
      the_object = (Objects_Control *) information->Inactive.first;   
ffc0b134:	80 7c 00 20 	lwz     r3,32(r28)                             
ffc0b138:	48 00 00 10 	b       ffc0b148 <_Objects_Shrink_information+0xac>
         if ((index >= index_base) &&                                 
             (index < (index_base + information->allocation_size))) { 
           _Chain_Extract( &extract_me->Node );                       
         }                                                            
       }                                                              
       while ( the_object );                                          
ffc0b13c:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
         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;      
ffc0b140:	7f c3 f3 78 	mr      r3,r30                                 
         if ((index >= index_base) &&                                 
             (index < (index_base + information->allocation_size))) { 
           _Chain_Extract( &extract_me->Node );                       
         }                                                            
       }                                                              
       while ( the_object );                                          
ffc0b144:	41 9e 00 34 	beq-    cr7,ffc0b178 <_Objects_Shrink_information+0xdc>
       *  Assume the Inactive chain is never empty at this point      
       */                                                             
      the_object = (Objects_Control *) information->Inactive.first;   
                                                                      
      do {                                                            
         index = _Objects_Get_index( the_object->id );                
ffc0b148:	a0 03 00 0a 	lhz     r0,10(r3)                              
         /*                                                           
          *  Get the next node before the node is extracted           
          */                                                          
         extract_me = the_object;                                     
         the_object = (Objects_Control *) the_object->Node.next;      
ffc0b14c:	83 c3 00 00 	lwz     r30,0(r3)                              
         if ((index >= index_base) &&                                 
ffc0b150:	7f 80 f8 40 	cmplw   cr7,r0,r31                             
ffc0b154:	41 bc ff e8 	blt-    cr7,ffc0b13c <_Objects_Shrink_information+0xa0>
             (index < (index_base + information->allocation_size))) { 
ffc0b158:	a1 3c 00 14 	lhz     r9,20(r28)                             
ffc0b15c:	7d 3f 4a 14 	add     r9,r31,r9                              
         /*                                                           
          *  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) &&                                 
ffc0b160:	7f 80 48 40 	cmplw   cr7,r0,r9                              
ffc0b164:	40 9c ff d8 	bge+    cr7,ffc0b13c <_Objects_Shrink_information+0xa0>
             (index < (index_base + information->allocation_size))) { 
           _Chain_Extract( &extract_me->Node );                       
ffc0b168:	4b ff eb 1d 	bl      ffc09c84 <_Chain_Extract>              
         }                                                            
       }                                                              
       while ( the_object );                                          
ffc0b16c:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
         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;      
ffc0b170:	7f c3 f3 78 	mr      r3,r30                                 
         if ((index >= index_base) &&                                 
             (index < (index_base + information->allocation_size))) { 
           _Chain_Extract( &extract_me->Node );                       
         }                                                            
       }                                                              
       while ( the_object );                                          
ffc0b174:	40 9e ff d4 	bne+    cr7,ffc0b148 <_Objects_Shrink_information+0xac><== ALWAYS TAKEN
      /*                                                              
       *  Free the memory and reset the structures in the object' information
       */                                                             
                                                                      
      _Workspace_Free( information->object_blocks[ block ] );         
ffc0b178:	81 3c 00 34 	lwz     r9,52(r28)                             
ffc0b17c:	7c 69 e8 2e 	lwzx    r3,r9,r29                              
ffc0b180:	48 00 23 2d 	bl      ffc0d4ac <_Workspace_Free>             
      information->object_blocks[ block ] = NULL;                     
      information->inactive_per_block[ block ] = 0;                   
                                                                      
      information->inactive -= information->allocation_size;          
ffc0b184:	a1 5c 00 2c 	lhz     r10,44(r28)                            
ffc0b188:	a0 1c 00 14 	lhz     r0,20(r28)                             
      /*                                                              
       *  Free the memory and reset the structures in the object' information
       */                                                             
                                                                      
      _Workspace_Free( information->object_blocks[ block ] );         
      information->object_blocks[ block ] = NULL;                     
ffc0b18c:	81 7c 00 34 	lwz     r11,52(r28)                            
      information->inactive_per_block[ block ] = 0;                   
ffc0b190:	81 3c 00 30 	lwz     r9,48(r28)                             
                                                                      
      information->inactive -= information->allocation_size;          
ffc0b194:	7c 00 50 50 	subf    r0,r0,r10                              
      /*                                                              
       *  Free the memory and reset the structures in the object' information
       */                                                             
                                                                      
      _Workspace_Free( information->object_blocks[ block ] );         
      information->object_blocks[ block ] = NULL;                     
ffc0b198:	7f cb e9 2e 	stwx    r30,r11,r29                            
      information->inactive_per_block[ block ] = 0;                   
ffc0b19c:	7f c9 e9 2e 	stwx    r30,r9,r29                             
                                                                      
      information->inactive -= information->allocation_size;          
ffc0b1a0:	b0 1c 00 2c 	sth     r0,44(r28)                             
      return;                                                         
    }                                                                 
                                                                      
    index_base += information->allocation_size;                       
  }                                                                   
}                                                                     
ffc0b1a4:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0b1a8:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0b1ac:	7c 08 03 a6 	mtlr    r0                                     
ffc0b1b0:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0b1b4:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0b1b8:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0b1bc:	38 21 00 18 	addi    r1,r1,24                               
ffc0b1c0:	4e 80 00 20 	blr                                            
                                                                      

ffc093e8 <_RTEMS_tasks_Initialize_user_tasks_body>: * * Output parameters: NONE */ void _RTEMS_tasks_Initialize_user_tasks_body( void ) {
ffc093e8:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc093ec:	7c 08 02 a6 	mflr    r0                                     
  rtems_initialization_tasks_table *user_tasks;                       
                                                                      
  /*                                                                  
   *  Move information into local variables                           
   */                                                                 
  user_tasks = Configuration_RTEMS_API.User_initialization_tasks_table;
ffc093f0:	3d 20 00 00 	lis     r9,0                                   
 *                                                                    
 *  Output parameters:  NONE                                          
 */                                                                   
                                                                      
void _RTEMS_tasks_Initialize_user_tasks_body( void )                  
{                                                                     
ffc093f4:	90 01 00 2c 	stw     r0,44(r1)                              
  rtems_initialization_tasks_table *user_tasks;                       
                                                                      
  /*                                                                  
   *  Move information into local variables                           
   */                                                                 
  user_tasks = Configuration_RTEMS_API.User_initialization_tasks_table;
ffc093f8:	39 29 20 70 	addi    r9,r9,8304                             
 *                                                                    
 *  Output parameters:  NONE                                          
 */                                                                   
                                                                      
void _RTEMS_tasks_Initialize_user_tasks_body( void )                  
{                                                                     
ffc093fc:	93 e1 00 24 	stw     r31,36(r1)                             
  rtems_initialization_tasks_table *user_tasks;                       
                                                                      
  /*                                                                  
   *  Move information into local variables                           
   */                                                                 
  user_tasks = Configuration_RTEMS_API.User_initialization_tasks_table;
ffc09400:	83 e9 00 2c 	lwz     r31,44(r9)                             
 *                                                                    
 *  Output parameters:  NONE                                          
 */                                                                   
                                                                      
void _RTEMS_tasks_Initialize_user_tasks_body( void )                  
{                                                                     
ffc09404:	93 a1 00 1c 	stw     r29,28(r1)                             
  maximum    = Configuration_RTEMS_API.number_of_initialization_tasks;
                                                                      
  /*                                                                  
   *  Verify that we have a set of user tasks to iterate              
   */                                                                 
  if ( !user_tasks )                                                  
ffc09408:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
 *                                                                    
 *  Output parameters:  NONE                                          
 */                                                                   
                                                                      
void _RTEMS_tasks_Initialize_user_tasks_body( void )                  
{                                                                     
ffc0940c:	93 81 00 18 	stw     r28,24(r1)                             
ffc09410:	93 c1 00 20 	stw     r30,32(r1)                             
                                                                      
  /*                                                                  
   *  Move information into local variables                           
   */                                                                 
  user_tasks = Configuration_RTEMS_API.User_initialization_tasks_table;
  maximum    = Configuration_RTEMS_API.number_of_initialization_tasks;
ffc09414:	83 a9 00 28 	lwz     r29,40(r9)                             
                                                                      
  /*                                                                  
   *  Verify that we have a set of user tasks to iterate              
   */                                                                 
  if ( !user_tasks )                                                  
ffc09418:	41 9e 00 60 	beq-    cr7,ffc09478 <_RTEMS_tasks_Initialize_user_tasks_body+0x90>
    return;                                                           
                                                                      
  /*                                                                  
   *  Now iterate over the initialization tasks and create/start them.
   */                                                                 
  for ( index=0 ; index < maximum ; index++ ) {                       
ffc0941c:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
ffc09420:	41 9e 00 58 	beq-    cr7,ffc09478 <_RTEMS_tasks_Initialize_user_tasks_body+0x90><== NEVER TAKEN
ffc09424:	3b c0 00 00 	li      r30,0                                  
ffc09428:	3b 81 00 08 	addi    r28,r1,8                               
    return_value = rtems_task_create(                                 
ffc0942c:	80 bf 00 04 	lwz     r5,4(r31)                              
ffc09430:	7f 88 e3 78 	mr      r8,r28                                 
ffc09434:	80 7f 00 00 	lwz     r3,0(r31)                              
ffc09438:	80 9f 00 08 	lwz     r4,8(r31)                              
ffc0943c:	80 df 00 14 	lwz     r6,20(r31)                             
ffc09440:	80 ff 00 0c 	lwz     r7,12(r31)                             
ffc09444:	4b ff fc b1 	bl      ffc090f4 <rtems_task_create>           
      user_tasks[ index ].stack_size,                                 
      user_tasks[ index ].mode_set,                                   
      user_tasks[ index ].attribute_set,                              
      &id                                                             
    );                                                                
    if ( !rtems_is_status_successful( return_value ) )                
ffc09448:	7c 65 1b 79 	mr.     r5,r3                                  
ffc0944c:	40 82 00 4c 	bne-    ffc09498 <_RTEMS_tasks_Initialize_user_tasks_body+0xb0>
      _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, true, return_value );
                                                                      
    return_value = rtems_task_start(                                  
ffc09450:	80 bf 00 18 	lwz     r5,24(r31)                             
ffc09454:	80 61 00 08 	lwz     r3,8(r1)                               
ffc09458:	80 9f 00 10 	lwz     r4,16(r31)                             
ffc0945c:	48 00 00 49 	bl      ffc094a4 <rtems_task_start>            
      id,                                                             
      user_tasks[ index ].entry_point,                                
      user_tasks[ index ].argument                                    
    );                                                                
    if ( !rtems_is_status_successful( return_value ) )                
ffc09460:	7c 65 1b 79 	mr.     r5,r3                                  
ffc09464:	40 82 00 34 	bne-    ffc09498 <_RTEMS_tasks_Initialize_user_tasks_body+0xb0>
    return;                                                           
                                                                      
  /*                                                                  
   *  Now iterate over the initialization tasks and create/start them.
   */                                                                 
  for ( index=0 ; index < maximum ; index++ ) {                       
ffc09468:	3b de 00 01 	addi    r30,r30,1                              
ffc0946c:	7f 9d f0 40 	cmplw   cr7,r29,r30                            
ffc09470:	3b ff 00 1c 	addi    r31,r31,28                             
ffc09474:	41 9d ff b8 	bgt+    cr7,ffc0942c <_RTEMS_tasks_Initialize_user_tasks_body+0x44><== NEVER TAKEN
      user_tasks[ index ].argument                                    
    );                                                                
    if ( !rtems_is_status_successful( return_value ) )                
      _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, true, return_value );
  }                                                                   
}                                                                     
ffc09478:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc0947c:	83 81 00 18 	lwz     r28,24(r1)                             
ffc09480:	7c 08 03 a6 	mtlr    r0                                     
ffc09484:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc09488:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc0948c:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc09490:	38 21 00 28 	addi    r1,r1,40                               
ffc09494:	4e 80 00 20 	blr                                            
      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 );
ffc09498:	38 60 00 01 	li      r3,1                                   
ffc0949c:	38 80 00 01 	li      r4,1                                   
ffc094a0:	48 00 13 65 	bl      ffc0a804 <_Internal_error_Occurred>    
                                                                      

ffc0f4b0 <_RTEMS_tasks_Post_switch_extension>: */ void _RTEMS_tasks_Post_switch_extension( Thread_Control *executing ) {
ffc0f4b0:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc0f4b4:	7c 08 02 a6 	mflr    r0                                     
ffc0f4b8:	90 01 00 2c 	stw     r0,44(r1)                              
ffc0f4bc:	93 e1 00 24 	stw     r31,36(r1)                             
  RTEMS_API_Control *api;                                             
  ASR_Information   *asr;                                             
  rtems_signal_set   signal_set;                                      
  Modes_Control      prev_mode;                                       
                                                                      
  api = executing->API_Extensions[ THREAD_API_RTEMS ];                
ffc0f4c0:	83 e3 01 40 	lwz     r31,320(r3)                            
 */                                                                   
                                                                      
void _RTEMS_tasks_Post_switch_extension(                              
  Thread_Control *executing                                           
)                                                                     
{                                                                     
ffc0f4c4:	93 a1 00 1c 	stw     r29,28(r1)                             
  ASR_Information   *asr;                                             
  rtems_signal_set   signal_set;                                      
  Modes_Control      prev_mode;                                       
                                                                      
  api = executing->API_Extensions[ THREAD_API_RTEMS ];                
  if ( !api )                                                         
ffc0f4c8:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
 */                                                                   
                                                                      
void _RTEMS_tasks_Post_switch_extension(                              
  Thread_Control *executing                                           
)                                                                     
{                                                                     
ffc0f4cc:	93 c1 00 20 	stw     r30,32(r1)                             
  ASR_Information   *asr;                                             
  rtems_signal_set   signal_set;                                      
  Modes_Control      prev_mode;                                       
                                                                      
  api = executing->API_Extensions[ THREAD_API_RTEMS ];                
  if ( !api )                                                         
ffc0f4d0:	41 9e 00 80 	beq-    cr7,ffc0f550 <_RTEMS_tasks_Post_switch_extension+0xa0><== NEVER TAKEN
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0f4d4:	7c 00 00 a6 	mfmsr   r0                                     
ffc0f4d8:	7d 30 42 a6 	mfsprg  r9,0                                   
ffc0f4dc:	7c 09 48 78 	andc    r9,r0,r9                               
ffc0f4e0:	7d 20 01 24 	mtmsr   r9                                     
                                                                      
  asr = &api->Signal;                                                 
                                                                      
  _ISR_Disable( level );                                              
    signal_set = asr->signals_posted;                                 
    asr->signals_posted = 0;                                          
ffc0f4e4:	39 20 00 00 	li      r9,0                                   
   */                                                                 
                                                                      
  asr = &api->Signal;                                                 
                                                                      
  _ISR_Disable( level );                                              
    signal_set = asr->signals_posted;                                 
ffc0f4e8:	83 df 00 14 	lwz     r30,20(r31)                            
    asr->signals_posted = 0;                                          
ffc0f4ec:	91 3f 00 14 	stw     r9,20(r31)                             
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0f4f0:	7c 00 01 24 	mtmsr   r0                                     
  _ISR_Enable( level );                                               
                                                                      
                                                                      
  if ( !signal_set ) /* similar to _ASR_Are_signals_pending( asr ) */ 
ffc0f4f4:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc0f4f8:	41 be 00 58 	beq+    cr7,ffc0f550 <_RTEMS_tasks_Post_switch_extension+0xa0>
    return;                                                           
                                                                      
  asr->nest_level += 1;                                               
ffc0f4fc:	81 3f 00 1c 	lwz     r9,28(r31)                             
  rtems_task_mode( asr->mode_set, RTEMS_ALL_MODE_MASKS, &prev_mode ); 
ffc0f500:	3b a1 00 08 	addi    r29,r1,8                               
ffc0f504:	38 80 00 00 	li      r4,0                                   
ffc0f508:	80 7f 00 10 	lwz     r3,16(r31)                             
                                                                      
                                                                      
  if ( !signal_set ) /* similar to _ASR_Are_signals_pending( asr ) */ 
    return;                                                           
                                                                      
  asr->nest_level += 1;                                               
ffc0f50c:	38 09 00 01 	addi    r0,r9,1                                
ffc0f510:	90 1f 00 1c 	stw     r0,28(r31)                             
  rtems_task_mode( asr->mode_set, RTEMS_ALL_MODE_MASKS, &prev_mode ); 
ffc0f514:	60 84 ff ff 	ori     r4,r4,65535                            
ffc0f518:	7f a5 eb 78 	mr      r5,r29                                 
ffc0f51c:	48 00 26 5d 	bl      ffc11b78 <rtems_task_mode>             
                                                                      
  (*asr->handler)( signal_set );                                      
ffc0f520:	80 1f 00 0c 	lwz     r0,12(r31)                             
ffc0f524:	7f c3 f3 78 	mr      r3,r30                                 
ffc0f528:	7c 09 03 a6 	mtctr   r0                                     
ffc0f52c:	4e 80 04 21 	bctrl                                          
                                                                      
  asr->nest_level -= 1;                                               
ffc0f530:	81 3f 00 1c 	lwz     r9,28(r31)                             
  rtems_task_mode( prev_mode, RTEMS_ALL_MODE_MASKS, &prev_mode );     
ffc0f534:	38 80 00 00 	li      r4,0                                   
ffc0f538:	80 61 00 08 	lwz     r3,8(r1)                               
  asr->nest_level += 1;                                               
  rtems_task_mode( asr->mode_set, RTEMS_ALL_MODE_MASKS, &prev_mode ); 
                                                                      
  (*asr->handler)( signal_set );                                      
                                                                      
  asr->nest_level -= 1;                                               
ffc0f53c:	38 09 ff ff 	addi    r0,r9,-1                               
ffc0f540:	90 1f 00 1c 	stw     r0,28(r31)                             
  rtems_task_mode( prev_mode, RTEMS_ALL_MODE_MASKS, &prev_mode );     
ffc0f544:	60 84 ff ff 	ori     r4,r4,65535                            
ffc0f548:	7f a5 eb 78 	mr      r5,r29                                 
ffc0f54c:	48 00 26 2d 	bl      ffc11b78 <rtems_task_mode>             
                                                                      
}                                                                     
ffc0f550:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc0f554:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc0f558:	7c 08 03 a6 	mtlr    r0                                     
ffc0f55c:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc0f560:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc0f564:	38 21 00 28 	addi    r1,r1,40                               
ffc0f568:	4e 80 00 20 	blr                                            
                                                                      

ffc0f420 <_RTEMS_tasks_Switch_extension>: /* * Per Task Variables */ tvp = executing->task_variables;
ffc0f420:	81 23 01 4c 	lwz     r9,332(r3)                             
  while (tvp) {                                                       
ffc0f424:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0f428:	41 9e 00 24 	beq-    cr7,ffc0f44c <_RTEMS_tasks_Switch_extension+0x2c>
    tvp->tval = *tvp->ptr;                                            
ffc0f42c:	81 69 00 04 	lwz     r11,4(r9)                              
    *tvp->ptr = tvp->gval;                                            
ffc0f430:	80 09 00 08 	lwz     r0,8(r9)                               
   *  Per Task Variables                                              
   */                                                                 
                                                                      
  tvp = executing->task_variables;                                    
  while (tvp) {                                                       
    tvp->tval = *tvp->ptr;                                            
ffc0f434:	81 4b 00 00 	lwz     r10,0(r11)                             
ffc0f438:	91 49 00 0c 	stw     r10,12(r9)                             
    *tvp->ptr = tvp->gval;                                            
    tvp = (rtems_task_variable_t *)tvp->next;                         
ffc0f43c:	81 29 00 00 	lwz     r9,0(r9)                               
   */                                                                 
                                                                      
  tvp = executing->task_variables;                                    
  while (tvp) {                                                       
    tvp->tval = *tvp->ptr;                                            
    *tvp->ptr = tvp->gval;                                            
ffc0f440:	90 0b 00 00 	stw     r0,0(r11)                              
  /*                                                                  
   *  Per Task Variables                                              
   */                                                                 
                                                                      
  tvp = executing->task_variables;                                    
  while (tvp) {                                                       
ffc0f444:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0f448:	40 9e ff e4 	bne+    cr7,ffc0f42c <_RTEMS_tasks_Switch_extension+0xc><== NEVER TAKEN
    tvp->tval = *tvp->ptr;                                            
    *tvp->ptr = tvp->gval;                                            
    tvp = (rtems_task_variable_t *)tvp->next;                         
  }                                                                   
                                                                      
  tvp = heir->task_variables;                                         
ffc0f44c:	81 24 01 4c 	lwz     r9,332(r4)                             
  while (tvp) {                                                       
ffc0f450:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0f454:	4d 9e 00 20 	beqlr   cr7                                    
    tvp->gval = *tvp->ptr;                                            
ffc0f458:	81 69 00 04 	lwz     r11,4(r9)                              
    *tvp->ptr = tvp->tval;                                            
ffc0f45c:	80 09 00 0c 	lwz     r0,12(r9)                              
    tvp = (rtems_task_variable_t *)tvp->next;                         
  }                                                                   
                                                                      
  tvp = heir->task_variables;                                         
  while (tvp) {                                                       
    tvp->gval = *tvp->ptr;                                            
ffc0f460:	81 4b 00 00 	lwz     r10,0(r11)                             
ffc0f464:	91 49 00 08 	stw     r10,8(r9)                              
    *tvp->ptr = tvp->tval;                                            
    tvp = (rtems_task_variable_t *)tvp->next;                         
ffc0f468:	81 29 00 00 	lwz     r9,0(r9)                               
  }                                                                   
                                                                      
  tvp = heir->task_variables;                                         
  while (tvp) {                                                       
    tvp->gval = *tvp->ptr;                                            
    *tvp->ptr = tvp->tval;                                            
ffc0f46c:	90 0b 00 00 	stw     r0,0(r11)                              
    *tvp->ptr = tvp->gval;                                            
    tvp = (rtems_task_variable_t *)tvp->next;                         
  }                                                                   
                                                                      
  tvp = heir->task_variables;                                         
  while (tvp) {                                                       
ffc0f470:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0f474:	40 9e ff e4 	bne+    cr7,ffc0f458 <_RTEMS_tasks_Switch_extension+0x38><== NEVER TAKEN
ffc0f478:	4e 80 00 20 	blr                                            
                                                                      

ffc0a9b8 <_Rate_monotonic_Timeout>: void _Rate_monotonic_Timeout( Objects_Id id, void *ignored ) {
ffc0a9b8:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc0a9bc:	7c 08 02 a6 	mflr    r0                                     
ffc0a9c0:	7c 64 1b 78 	mr      r4,r3                                  
ffc0a9c4:	3c 60 00 00 	lis     r3,0                                   
ffc0a9c8:	90 01 00 24 	stw     r0,36(r1)                              
ffc0a9cc:	38 63 2b a0 	addi    r3,r3,11168                            
ffc0a9d0:	38 a1 00 08 	addi    r5,r1,8                                
ffc0a9d4:	93 e1 00 1c 	stw     r31,28(r1)                             
ffc0a9d8:	48 00 27 d9 	bl      ffc0d1b0 <_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 ) {                                               
ffc0a9dc:	80 01 00 08 	lwz     r0,8(r1)                               
ffc0a9e0:	7c 7f 1b 78 	mr      r31,r3                                 
ffc0a9e4:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0a9e8:	40 9e 00 48 	bne-    cr7,ffc0aa30 <_Rate_monotonic_Timeout+0x78><== NEVER TAKEN
                                                                      
    case OBJECTS_LOCAL:                                               
      the_thread = the_period->owner;                                 
ffc0a9ec:	80 63 00 40 	lwz     r3,64(r3)                              
 */                                                                   
RTEMS_INLINE_ROUTINE bool _States_Is_waiting_for_period (             
  States_Control the_states                                           
)                                                                     
{                                                                     
   return (the_states & STATES_WAITING_FOR_PERIOD);                   
ffc0a9f0:	80 03 00 10 	lwz     r0,16(r3)                              
      if ( _States_Is_waiting_for_period( the_thread->current_state ) &&
ffc0a9f4:	70 09 40 00 	andi.   r9,r0,16384                            
ffc0a9f8:	41 82 00 14 	beq-    ffc0aa0c <_Rate_monotonic_Timeout+0x54>
ffc0a9fc:	81 23 00 20 	lwz     r9,32(r3)                              
ffc0aa00:	80 1f 00 08 	lwz     r0,8(r31)                              
ffc0aa04:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc0aa08:	41 9e 00 68 	beq-    cr7,ffc0aa70 <_Rate_monotonic_Timeout+0xb8>
        _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 ) {
ffc0aa0c:	80 1f 00 38 	lwz     r0,56(r31)                             
ffc0aa10:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0aa14:	41 9e 00 30 	beq-    cr7,ffc0aa44 <_Rate_monotonic_Timeout+0x8c>
                                                                      
        _Rate_monotonic_Initiate_statistics( the_period );            
                                                                      
        _Watchdog_Insert_ticks( &the_period->Timer, the_period->next_length );
      } else                                                          
        the_period->state = RATE_MONOTONIC_EXPIRED;                   
ffc0aa18:	38 00 00 04 	li      r0,4                                   
ffc0aa1c:	90 1f 00 38 	stw     r0,56(r31)                             
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Unnest_dispatch( void )             
{                                                                     
  RTEMS_COMPILER_MEMORY_BARRIER();                                    
  _Thread_Dispatch_disable_level -= 1;                                
ffc0aa20:	3d 20 00 00 	lis     r9,0                                   
ffc0aa24:	81 69 27 b0 	lwz     r11,10160(r9)                          
ffc0aa28:	38 0b ff ff 	addi    r0,r11,-1                              
ffc0aa2c:	90 09 27 b0 	stw     r0,10160(r9)                           
    case OBJECTS_REMOTE:  /* impossible */                            
#endif                                                                
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
}                                                                     
ffc0aa30:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0aa34:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0aa38:	38 21 00 20 	addi    r1,r1,32                               
ffc0aa3c:	7c 08 03 a6 	mtlr    r0                                     
ffc0aa40:	4e 80 00 20 	blr                                            
                                                                      
        _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;    
ffc0aa44:	38 00 00 03 	li      r0,3                                   
ffc0aa48:	90 1f 00 38 	stw     r0,56(r31)                             
                                                                      
        _Rate_monotonic_Initiate_statistics( the_period );            
ffc0aa4c:	7f e3 fb 78 	mr      r3,r31                                 
ffc0aa50:	4b ff f7 55 	bl      ffc0a1a4 <_Rate_monotonic_Initiate_statistics>
  Watchdog_Control      *the_watchdog,                                
  Watchdog_Interval      units                                        
)                                                                     
{                                                                     
                                                                      
  the_watchdog->initial = units;                                      
ffc0aa54:	80 1f 00 3c 	lwz     r0,60(r31)                             
                                                                      
  _Watchdog_Insert( &_Watchdog_Ticks_chain, the_watchdog );           
ffc0aa58:	3c 60 00 00 	lis     r3,0                                   
  Watchdog_Control      *the_watchdog,                                
  Watchdog_Interval      units                                        
)                                                                     
{                                                                     
                                                                      
  the_watchdog->initial = units;                                      
ffc0aa5c:	90 1f 00 1c 	stw     r0,28(r31)                             
                                                                      
  _Watchdog_Insert( &_Watchdog_Ticks_chain, the_watchdog );           
ffc0aa60:	38 63 2d 68 	addi    r3,r3,11624                            
ffc0aa64:	38 9f 00 10 	addi    r4,r31,16                              
ffc0aa68:	48 00 4a 75 	bl      ffc0f4dc <_Watchdog_Insert>            
ffc0aa6c:	4b ff ff b4 	b       ffc0aa20 <_Rate_monotonic_Timeout+0x68>
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Unblock (                           
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
  _Thread_Clear_state( the_thread, STATES_BLOCKED );                  
ffc0aa70:	3c 80 10 03 	lis     r4,4099                                
ffc0aa74:	60 84 ff f8 	ori     r4,r4,65528                            
ffc0aa78:	48 00 2d ad 	bl      ffc0d824 <_Thread_Clear_state>         
ffc0aa7c:	4b ff ff d0 	b       ffc0aa4c <_Rate_monotonic_Timeout+0x94>
                                                                      

ffc0a2e0 <_TOD_Tickle_ticks>: { Timestamp_Control tick; uint32_t seconds; /* Convert the tick quantum to a timestamp */ _Timestamp_Set( &tick, 0, rtems_configuration_get_nanoseconds_per_tick() );
ffc0a2e0:	3d 20 00 00 	lis     r9,0                                   
 *                                                                    
 *  Output parameters: NONE                                           
 */                                                                   
                                                                      
void _TOD_Tickle_ticks( void )                                        
{                                                                     
ffc0a2e4:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc0a2e8:	7c 08 02 a6 	mflr    r0                                     
                                                                      
  /* Update the counter of ticks since boot */                        
  _Watchdog_Ticks_since_boot += 1;                                    
                                                                      
  /* Update the timespec format uptime */                             
  _Timestamp_Add_to( &_TOD_Uptime, &tick );                           
ffc0a2ec:	3c 60 00 00 	lis     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() );
ffc0a2f0:	81 69 20 ac 	lwz     r11,8364(r9)                           
                                                                      
  /* Update the counter of ticks since boot */                        
  _Watchdog_Ticks_since_boot += 1;                                    
ffc0a2f4:	3d 20 00 00 	lis     r9,0                                   
ffc0a2f8:	81 49 27 6c 	lwz     r10,10092(r9)                          
                                                                      
  /* Update the timespec format uptime */                             
  _Timestamp_Add_to( &_TOD_Uptime, &tick );                           
ffc0a2fc:	38 63 27 34 	addi    r3,r3,10036                            
{                                                                     
  Timestamp_Control tick;                                             
  uint32_t          seconds;                                          
                                                                      
  /* Convert the tick quantum to a timestamp */                       
  _Timestamp_Set( &tick, 0, rtems_configuration_get_nanoseconds_per_tick() );
ffc0a300:	1d 6b 03 e8 	mulli   r11,r11,1000                           
 *                                                                    
 *  Output parameters: NONE                                           
 */                                                                   
                                                                      
void _TOD_Tickle_ticks( void )                                        
{                                                                     
ffc0a304:	93 e1 00 24 	stw     r31,36(r1)                             
                                                                      
  /* Update the counter of ticks since boot */                        
  _Watchdog_Ticks_since_boot += 1;                                    
                                                                      
  /* Update the timespec format uptime */                             
  _Timestamp_Add_to( &_TOD_Uptime, &tick );                           
ffc0a308:	3b e1 00 08 	addi    r31,r1,8                               
 *                                                                    
 *  Output parameters: NONE                                           
 */                                                                   
                                                                      
void _TOD_Tickle_ticks( void )                                        
{                                                                     
ffc0a30c:	90 01 00 2c 	stw     r0,44(r1)                              
                                                                      
  /* Update the counter of ticks since boot */                        
  _Watchdog_Ticks_since_boot += 1;                                    
                                                                      
  /* Update the timespec format uptime */                             
  _Timestamp_Add_to( &_TOD_Uptime, &tick );                           
ffc0a310:	7f e4 fb 78 	mr      r4,r31                                 
                                                                      
  /* 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;                                    
ffc0a314:	38 0a 00 01 	addi    r0,r10,1                               
{                                                                     
  Timestamp_Control tick;                                             
  uint32_t          seconds;                                          
                                                                      
  /* Convert the tick quantum to a timestamp */                       
  _Timestamp_Set( &tick, 0, rtems_configuration_get_nanoseconds_per_tick() );
ffc0a318:	91 61 00 0c 	stw     r11,12(r1)                             
ffc0a31c:	39 40 00 00 	li      r10,0                                  
                                                                      
  /* Update the counter of ticks since boot */                        
  _Watchdog_Ticks_since_boot += 1;                                    
ffc0a320:	90 09 27 6c 	stw     r0,10092(r9)                           
{                                                                     
  Timestamp_Control tick;                                             
  uint32_t          seconds;                                          
                                                                      
  /* Convert the tick quantum to a timestamp */                       
  _Timestamp_Set( &tick, 0, rtems_configuration_get_nanoseconds_per_tick() );
ffc0a324:	91 41 00 08 	stw     r10,8(r1)                              
                                                                      
  /* Update the counter of ticks since boot */                        
  _Watchdog_Ticks_since_boot += 1;                                    
                                                                      
  /* Update the timespec format uptime */                             
  _Timestamp_Add_to( &_TOD_Uptime, &tick );                           
ffc0a328:	48 00 27 e1 	bl      ffc0cb08 <_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 );            
ffc0a32c:	3c 60 00 00 	lis     r3,0                                   
ffc0a330:	38 63 27 44 	addi    r3,r3,10052                            
ffc0a334:	7f e4 fb 78 	mr      r4,r31                                 
ffc0a338:	48 00 27 d1 	bl      ffc0cb08 <_Timespec_Add_to>            
  while ( seconds ) {                                                 
ffc0a33c:	7c 60 1b 79 	mr.     r0,r3                                  
ffc0a340:	90 01 00 18 	stw     r0,24(r1)                              
ffc0a344:	41 82 00 24 	beq-    ffc0a368 <_TOD_Tickle_ticks+0x88>      
ffc0a348:	3f e0 00 00 	lis     r31,0                                  
ffc0a34c:	3b ff 2c 3c 	addi    r31,r31,11324                          
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Watchdog_Tickle_seconds( void )            
{                                                                     
                                                                      
  _Watchdog_Tickle( &_Watchdog_Seconds_chain );                       
ffc0a350:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a354:	48 00 2f c5 	bl      ffc0d318 <_Watchdog_Tickle>            
ffc0a358:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0a35c:	35 20 ff ff 	addic.  r9,r0,-1                               
ffc0a360:	91 21 00 18 	stw     r9,24(r1)                              
ffc0a364:	40 82 ff ec 	bne+    ffc0a350 <_TOD_Tickle_ticks+0x70>      <== NEVER TAKEN
    _Watchdog_Tickle_seconds();                                       
    seconds--;                                                        
  }                                                                   
}                                                                     
ffc0a368:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc0a36c:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc0a370:	38 21 00 28 	addi    r1,r1,40                               
ffc0a374:	7c 08 03 a6 	mtlr    r0                                     
ffc0a378:	4e 80 00 20 	blr                                            
                                                                      

ffc0b2f8 <_Thread_Change_priority>: void _Thread_Change_priority( Thread_Control *the_thread, Priority_Control new_priority, bool prepend_it ) {
ffc0b2f8:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0b2fc:	7c 08 02 a6 	mflr    r0                                     
ffc0b300:	90 01 00 1c 	stw     r0,28(r1)                              
ffc0b304:	93 e1 00 14 	stw     r31,20(r1)                             
ffc0b308:	7c 7f 1b 78 	mr      r31,r3                                 
ffc0b30c:	93 81 00 08 	stw     r28,8(r1)                              
ffc0b310:	7c bc 2b 78 	mr      r28,r5                                 
ffc0b314:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0b318:	93 c1 00 10 	stw     r30,16(r1)                             
ffc0b31c:	7c 9e 23 78 	mr      r30,r4                                 
*/                                                                    
                                                                      
  /*                                                                  
   * Save original state                                              
   */                                                                 
  original_state = the_thread->current_state;                         
ffc0b320:	83 a3 00 10 	lwz     r29,16(r3)                             
  /*                                                                  
   * 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 );                                
ffc0b324:	48 00 13 51 	bl      ffc0c674 <_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 )                  
ffc0b328:	80 1f 00 14 	lwz     r0,20(r31)                             
ffc0b32c:	7f 80 f0 00 	cmpw    cr7,r0,r30                             
ffc0b330:	41 9e 00 10 	beq-    cr7,ffc0b340 <_Thread_Change_priority+0x48>
    _Thread_Set_priority( the_thread, new_priority );                 
ffc0b334:	7f e3 fb 78 	mr      r3,r31                                 
ffc0b338:	7f c4 f3 78 	mr      r4,r30                                 
ffc0b33c:	48 00 11 bd 	bl      ffc0c4f8 <_Thread_Set_priority>        
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0b340:	7d 20 00 a6 	mfmsr   r9                                     
ffc0b344:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc0b348:	7d 20 00 78 	andc    r0,r9,r0                               
ffc0b34c:	7c 00 01 24 	mtmsr   r0                                     
                                                                      
  /*                                                                  
   *  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;                                  
ffc0b350:	80 1f 00 10 	lwz     r0,16(r31)                             
  if ( state != STATES_TRANSIENT ) {                                  
ffc0b354:	2f 80 00 04 	cmpwi   cr7,r0,4                               
ffc0b358:	41 9e 00 88 	beq-    cr7,ffc0b3e0 <_Thread_Change_priority+0xe8>
    /* Only clear the transient state if it wasn't set already */     
    if ( ! _States_Is_transient( original_state ) )                   
ffc0b35c:	73 ab 00 04 	andi.   r11,r29,4                              
ffc0b360:	41 82 00 38 	beq-    ffc0b398 <_Thread_Change_priority+0xa0><== ALWAYS TAKEN
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0b364:	7d 20 01 24 	mtmsr   r9                                     <== NOT EXECUTED
 */                                                                   
RTEMS_INLINE_ROUTINE bool _States_Is_waiting_on_thread_queue (        
  States_Control the_states                                           
)                                                                     
{                                                                     
   return (the_states & STATES_WAITING_ON_THREAD_QUEUE);              
ffc0b368:	3d 20 00 03 	lis     r9,3                                   <== NOT EXECUTED
ffc0b36c:	61 29 be e0 	ori     r9,r9,48864                            <== NOT EXECUTED
      the_thread->current_state = _States_Clear( STATES_TRANSIENT, state );
    _ISR_Enable( level );                                             
    if ( _States_Is_waiting_on_thread_queue( state ) ) {              
ffc0b370:	7c 0b 48 39 	and.    r11,r0,r9                              <== NOT EXECUTED
ffc0b374:	40 82 00 40 	bne-    ffc0b3b4 <_Thread_Change_priority+0xbc><== NOT EXECUTED
                                                                      
  if ( !_Thread_Is_executing_also_the_heir() &&                       
       _Thread_Executing->is_preemptible )                            
    _Thread_Dispatch_necessary = true;                                
  _ISR_Enable( level );                                               
}                                                                     
ffc0b378:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0b37c:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0b380:	7c 08 03 a6 	mtlr    r0                                     
ffc0b384:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0b388:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0b38c:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0b390:	38 21 00 18 	addi    r1,r1,24                               
ffc0b394:	4e 80 00 20 	blr                                            
RTEMS_INLINE_ROUTINE States_Control _States_Clear (                   
  States_Control states_to_clear,                                     
  States_Control current_state                                        
)                                                                     
{                                                                     
   return (current_state & ~states_to_clear);                         
ffc0b398:	54 0b 07 b8 	rlwinm  r11,r0,0,30,28                         
   */                                                                 
  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 );
ffc0b39c:	91 7f 00 10 	stw     r11,16(r31)                            
ffc0b3a0:	7d 20 01 24 	mtmsr   r9                                     
 */                                                                   
RTEMS_INLINE_ROUTINE bool _States_Is_waiting_on_thread_queue (        
  States_Control the_states                                           
)                                                                     
{                                                                     
   return (the_states & STATES_WAITING_ON_THREAD_QUEUE);              
ffc0b3a4:	3d 20 00 03 	lis     r9,3                                   
ffc0b3a8:	61 29 be e0 	ori     r9,r9,48864                            
    _ISR_Enable( level );                                             
    if ( _States_Is_waiting_on_thread_queue( state ) ) {              
ffc0b3ac:	7c 0b 48 39 	and.    r11,r0,r9                              
ffc0b3b0:	41 82 ff c8 	beq+    ffc0b378 <_Thread_Change_priority+0x80>
      _Thread_queue_Requeue( the_thread->Wait.queue, the_thread );    
ffc0b3b4:	80 7f 00 44 	lwz     r3,68(r31)                             
ffc0b3b8:	7f e4 fb 78 	mr      r4,r31                                 
ffc0b3bc:	48 00 10 45 	bl      ffc0c400 <_Thread_queue_Requeue>       
                                                                      
  if ( !_Thread_Is_executing_also_the_heir() &&                       
       _Thread_Executing->is_preemptible )                            
    _Thread_Dispatch_necessary = true;                                
  _ISR_Enable( level );                                               
}                                                                     
ffc0b3c0:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0b3c4:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0b3c8:	7c 08 03 a6 	mtlr    r0                                     
ffc0b3cc:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0b3d0:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0b3d4:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0b3d8:	38 21 00 18 	addi    r1,r1,24                               
ffc0b3dc:	4e 80 00 20 	blr                                            
    }                                                                 
    return;                                                           
  }                                                                   
                                                                      
  /* Only clear the transient state if it wasn't set already */       
  if ( ! _States_Is_transient( original_state ) ) {                   
ffc0b3e0:	73 bd 00 04 	andi.   r29,r29,4                              
ffc0b3e4:	3d 40 00 00 	lis     r10,0                                  
ffc0b3e8:	40 82 00 4c 	bne-    ffc0b434 <_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;          
ffc0b3ec:	81 7f 00 90 	lwz     r11,144(r31)                           
     *  Ready Queue with interrupts off.                              
     */                                                               
    the_thread->current_state = _States_Clear( STATES_TRANSIENT, state );
                                                                      
    _Priority_bit_map_Add( &the_thread->Priority_map );               
    if ( prepend_it )                                                 
ffc0b3f0:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
     *  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 );
ffc0b3f4:	93 bf 00 10 	stw     r29,16(r31)                            
ffc0b3f8:	80 1f 00 98 	lwz     r0,152(r31)                            
ffc0b3fc:	81 0b 00 00 	lwz     r8,0(r11)                              
ffc0b400:	7d 00 03 78 	or      r0,r8,r0                               
ffc0b404:	90 0b 00 00 	stw     r0,0(r11)                              
  _Priority_Major_bit_map  |= the_priority_map->ready_major;          
ffc0b408:	81 6a 27 50 	lwz     r11,10064(r10)                         
ffc0b40c:	80 1f 00 94 	lwz     r0,148(r31)                            
ffc0b410:	7d 60 03 78 	or      r0,r11,r0                              
ffc0b414:	90 0a 27 50 	stw     r0,10064(r10)                          
                                                                      
    _Priority_bit_map_Add( &the_thread->Priority_map );               
    if ( prepend_it )                                                 
ffc0b418:	41 9e 00 b4 	beq-    cr7,ffc0b4cc <_Thread_Change_priority+0x1d4>
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Head(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) the_chain;                                   
ffc0b41c:	81 7f 00 8c 	lwz     r11,140(r31)                           
)                                                                     
{                                                                     
  Chain_Node *before_node;                                            
                                                                      
  the_node->previous    = after_node;                                 
  before_node           = after_node->next;                           
ffc0b420:	81 0b 00 00 	lwz     r8,0(r11)                              
  Chain_Node *the_node                                                
)                                                                     
{                                                                     
  Chain_Node *before_node;                                            
                                                                      
  the_node->previous    = after_node;                                 
ffc0b424:	91 7f 00 04 	stw     r11,4(r31)                             
  before_node           = after_node->next;                           
  after_node->next      = the_node;                                   
ffc0b428:	93 eb 00 00 	stw     r31,0(r11)                             
  the_node->next        = before_node;                                
  before_node->previous = the_node;                                   
ffc0b42c:	93 e8 00 04 	stw     r31,4(r8)                              
  Chain_Node *before_node;                                            
                                                                      
  the_node->previous    = after_node;                                 
  before_node           = after_node->next;                           
  after_node->next      = the_node;                                   
  the_node->next        = before_node;                                
ffc0b430:	91 1f 00 00 	stw     r8,0(r31)                              
                                                                      
static inline void ppc_interrupt_flash( uint32_t level )              
{                                                                     
  uint32_t current_level;                                             
                                                                      
  asm volatile (                                                      
ffc0b434:	7c 00 00 a6 	mfmsr   r0                                     
ffc0b438:	7d 20 01 24 	mtmsr   r9                                     
ffc0b43c:	7c 00 01 24 	mtmsr   r0                                     
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Calculate_heir( void )              
{                                                                     
  _Thread_Heir = (Thread_Control *)                                   
    _Thread_Ready_chain[ _Priority_bit_map_Get_highest() ].first;     
ffc0b440:	3d 00 00 00 	lis     r8,0                                   
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 );         
ffc0b444:	81 6a 27 50 	lwz     r11,10064(r10)                         
ffc0b448:	80 a8 27 24 	lwz     r5,10020(r8)                           
ffc0b44c:	7d 66 00 34 	cntlzw  r6,r11                                 
  _Bitfield_Find_first_bit( _Priority_Bit_map[major], minor );        
ffc0b450:	3c e0 00 00 	lis     r7,0                                   
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 );         
ffc0b454:	91 6a 27 50 	stw     r11,10064(r10)                         
  _Bitfield_Find_first_bit( _Priority_Bit_map[major], minor );        
ffc0b458:	38 e7 2c a0 	addi    r7,r7,11424                            
ffc0b45c:	54 c8 10 3a 	rlwinm  r8,r6,2,0,29                           
ffc0b460:	7c 07 40 2e 	lwzx    r0,r7,r8                               
ffc0b464:	7c 0b 00 34 	cntlzw  r11,r0                                 
                                                                      
  return (_Priority_Bits_index( major ) << 4) +                       
ffc0b468:	54 c6 20 36 	rlwinm  r6,r6,4,0,27                           
{                                                                     
  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 );        
ffc0b46c:	7c 07 41 2e 	stwx    r0,r7,r8                               
ffc0b470:	7c c6 5a 14 	add     r6,r6,r11                              
ffc0b474:	1c c6 00 0c 	mulli   r6,r6,12                               
 *  ready thread.                                                     
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Calculate_heir( void )              
{                                                                     
  _Thread_Heir = (Thread_Control *)                                   
ffc0b478:	3d 60 00 00 	lis     r11,0                                  
ffc0b47c:	7c 05 30 2e 	lwzx    r0,r5,r6                               
ffc0b480:	39 6b 2d 64 	addi    r11,r11,11620                          
 *  is also the heir thread, and false otherwise.                     
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE bool _Thread_Is_executing_also_the_heir( void )  
{                                                                     
  return ( _Thread_Executing == _Thread_Heir );                       
ffc0b484:	81 4b 00 0c 	lwz     r10,12(r11)                            
 *  ready thread.                                                     
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Calculate_heir( void )              
{                                                                     
  _Thread_Heir = (Thread_Control *)                                   
ffc0b488:	90 0b 00 10 	stw     r0,16(r11)                             
   *  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() &&                       
ffc0b48c:	7f 80 50 00 	cmpw    cr7,r0,r10                             
ffc0b490:	41 9e 00 18 	beq-    cr7,ffc0b4a8 <_Thread_Change_priority+0x1b0>
ffc0b494:	88 0a 00 74 	lbz     r0,116(r10)                            
ffc0b498:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0b49c:	41 9e 00 0c 	beq-    cr7,ffc0b4a8 <_Thread_Change_priority+0x1b0>
       _Thread_Executing->is_preemptible )                            
    _Thread_Dispatch_necessary = true;                                
ffc0b4a0:	38 00 00 01 	li      r0,1                                   
ffc0b4a4:	98 0b 00 18 	stb     r0,24(r11)                             
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0b4a8:	7d 20 01 24 	mtmsr   r9                                     
  _ISR_Enable( level );                                               
}                                                                     
ffc0b4ac:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0b4b0:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0b4b4:	7c 08 03 a6 	mtlr    r0                                     
ffc0b4b8:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0b4bc:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0b4c0:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0b4c4:	38 21 00 18 	addi    r1,r1,24                               
ffc0b4c8:	4e 80 00 20 	blr                                            
                                                                      
    _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 );
ffc0b4cc:	81 7f 00 8c 	lwz     r11,140(r31)                           
)                                                                     
{                                                                     
  Chain_Node *old_last_node;                                          
                                                                      
  the_node->next      = _Chain_Tail(the_chain);                       
  old_last_node       = the_chain->last;                              
ffc0b4d0:	81 0b 00 08 	lwz     r8,8(r11)                              
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc0b4d4:	38 0b 00 04 	addi    r0,r11,4                               
  Chain_Node    *the_node                                             
)                                                                     
{                                                                     
  Chain_Node *old_last_node;                                          
                                                                      
  the_node->next      = _Chain_Tail(the_chain);                       
ffc0b4d8:	90 1f 00 00 	stw     r0,0(r31)                              
  old_last_node       = the_chain->last;                              
  the_chain->last     = the_node;                                     
ffc0b4dc:	93 eb 00 08 	stw     r31,8(r11)                             
  old_last_node->next = the_node;                                     
ffc0b4e0:	93 e8 00 00 	stw     r31,0(r8)                              
  the_node->previous  = old_last_node;                                
ffc0b4e4:	91 1f 00 04 	stw     r8,4(r31)                              
ffc0b4e8:	4b ff ff 4c 	b       ffc0b434 <_Thread_Change_priority+0x13c>
                                                                      

ffc0b4ec <_Thread_Clear_state>: static inline uint32_t ppc_interrupt_disable( void ) { uint32_t level; uint32_t mask; asm volatile (
ffc0b4ec:	7d 20 00 a6 	mfmsr   r9                                     
ffc0b4f0:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc0b4f4:	7d 20 00 78 	andc    r0,r9,r0                               
ffc0b4f8:	7c 00 01 24 	mtmsr   r0                                     
{                                                                     
  ISR_Level       level;                                              
  States_Control  current_state;                                      
                                                                      
  _ISR_Disable( level );                                              
    current_state = the_thread->current_state;                        
ffc0b4fc:	80 03 00 10 	lwz     r0,16(r3)                              
                                                                      
    if ( current_state & state ) {                                    
ffc0b500:	7c 8b 00 39 	and.    r11,r4,r0                              
ffc0b504:	41 82 00 9c 	beq-    ffc0b5a0 <_Thread_Clear_state+0xb4>    
RTEMS_INLINE_ROUTINE States_Control _States_Clear (                   
  States_Control states_to_clear,                                     
  States_Control current_state                                        
)                                                                     
{                                                                     
   return (current_state & ~states_to_clear);                         
ffc0b508:	7c 00 20 78 	andc    r0,r0,r4                               
      current_state =                                                 
      the_thread->current_state = _States_Clear( state, current_state );
                                                                      
      if ( _States_Is_ready( current_state ) ) {                      
ffc0b50c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
  _ISR_Disable( level );                                              
    current_state = the_thread->current_state;                        
                                                                      
    if ( current_state & state ) {                                    
      current_state =                                                 
      the_thread->current_state = _States_Clear( state, current_state );
ffc0b510:	90 03 00 10 	stw     r0,16(r3)                              
                                                                      
      if ( _States_Is_ready( current_state ) ) {                      
ffc0b514:	40 9e 00 8c 	bne-    cr7,ffc0b5a0 <_Thread_Clear_state+0xb4>
                                                                      
RTEMS_INLINE_ROUTINE void _Priority_bit_map_Add (                     
  Priority_bit_map_Information *the_priority_map                      
)                                                                     
{                                                                     
  *the_priority_map->minor |= the_priority_map->ready_minor;          
ffc0b518:	81 43 00 90 	lwz     r10,144(r3)                            
ffc0b51c:	80 03 00 98 	lwz     r0,152(r3)                             
ffc0b520:	81 0a 00 00 	lwz     r8,0(r10)                              
                                                                      
        _Priority_bit_map_Add( &the_thread->Priority_map );           
                                                                      
        _Chain_Append_unprotected(the_thread->ready, &the_thread->Object.Node);
ffc0b524:	81 63 00 8c 	lwz     r11,140(r3)                            
ffc0b528:	7d 00 03 78 	or      r0,r8,r0                               
ffc0b52c:	90 0a 00 00 	stw     r0,0(r10)                              
  _Priority_Major_bit_map  |= the_priority_map->ready_major;          
ffc0b530:	3d 00 00 00 	lis     r8,0                                   
ffc0b534:	80 e8 27 50 	lwz     r7,10064(r8)                           
ffc0b538:	80 03 00 94 	lwz     r0,148(r3)                             
)                                                                     
{                                                                     
  Chain_Node *old_last_node;                                          
                                                                      
  the_node->next      = _Chain_Tail(the_chain);                       
  old_last_node       = the_chain->last;                              
ffc0b53c:	81 4b 00 08 	lwz     r10,8(r11)                             
ffc0b540:	7c e7 03 78 	or      r7,r7,r0                               
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc0b544:	38 0b 00 04 	addi    r0,r11,4                               
ffc0b548:	90 e8 27 50 	stw     r7,10064(r8)                           
  Chain_Node    *the_node                                             
)                                                                     
{                                                                     
  Chain_Node *old_last_node;                                          
                                                                      
  the_node->next      = _Chain_Tail(the_chain);                       
ffc0b54c:	90 03 00 00 	stw     r0,0(r3)                               
  old_last_node       = the_chain->last;                              
  the_chain->last     = the_node;                                     
ffc0b550:	90 6b 00 08 	stw     r3,8(r11)                              
  old_last_node->next = the_node;                                     
ffc0b554:	90 6a 00 00 	stw     r3,0(r10)                              
  the_node->previous  = old_last_node;                                
ffc0b558:	91 43 00 04 	stw     r10,4(r3)                              
                                                                      
static inline void ppc_interrupt_flash( uint32_t level )              
{                                                                     
  uint32_t current_level;                                             
                                                                      
  asm volatile (                                                      
ffc0b55c:	7c 00 00 a6 	mfmsr   r0                                     
ffc0b560:	7d 20 01 24 	mtmsr   r9                                     
ffc0b564:	7c 00 01 24 	mtmsr   r0                                     
         *    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 ) {
ffc0b568:	3d 60 00 00 	lis     r11,0                                  
ffc0b56c:	80 03 00 14 	lwz     r0,20(r3)                              
ffc0b570:	39 6b 2d 64 	addi    r11,r11,11620                          
ffc0b574:	81 4b 00 10 	lwz     r10,16(r11)                            
ffc0b578:	81 4a 00 14 	lwz     r10,20(r10)                            
ffc0b57c:	7f 80 50 40 	cmplw   cr7,r0,r10                             
ffc0b580:	40 9c 00 20 	bge-    cr7,ffc0b5a0 <_Thread_Clear_state+0xb4>
          _Thread_Heir = the_thread;                                  
          if ( _Thread_Executing->is_preemptible ||                   
ffc0b584:	81 4b 00 0c 	lwz     r10,12(r11)                            
         *  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;                                  
ffc0b588:	90 6b 00 10 	stw     r3,16(r11)                             
          if ( _Thread_Executing->is_preemptible ||                   
ffc0b58c:	89 4a 00 74 	lbz     r10,116(r10)                           
ffc0b590:	2f 8a 00 00 	cmpwi   cr7,r10,0                              
ffc0b594:	41 9e 00 14 	beq-    cr7,ffc0b5a8 <_Thread_Clear_state+0xbc>
               the_thread->current_priority == 0 )                    
            _Thread_Dispatch_necessary = true;                        
ffc0b598:	38 00 00 01 	li      r0,1                                   
ffc0b59c:	98 0b 00 18 	stb     r0,24(r11)                             
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0b5a0:	7d 20 01 24 	mtmsr   r9                                     
        }                                                             
      }                                                               
  }                                                                   
  _ISR_Enable( level );                                               
}                                                                     
ffc0b5a4:	4e 80 00 20 	blr                                            
         *    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 ||                   
ffc0b5a8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0b5ac:	41 9e ff ec 	beq+    cr7,ffc0b598 <_Thread_Clear_state+0xac><== NEVER TAKEN
ffc0b5b0:	4b ff ff f0 	b       ffc0b5a0 <_Thread_Clear_state+0xb4>    
                                                                      

ffc0b5b4 <_Thread_Close>: void _Thread_Close( Objects_Information *information, Thread_Control *the_thread ) {
ffc0b5b4:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0b5b8:	7c 08 02 a6 	mflr    r0                                     
  #if defined(RTEMS_DEBUG)                                            
    if ( index > information->maximum )                               
      return;                                                         
  #endif                                                              
                                                                      
  information->local_table[ index ] = the_object;                     
ffc0b5bc:	39 60 00 00 	li      r11,0                                  
ffc0b5c0:	90 01 00 1c 	stw     r0,28(r1)                              
RTEMS_INLINE_ROUTINE void _Objects_Invalidate_Id(                     
  Objects_Information  *information,                                  
  Objects_Control      *the_object                                    
)                                                                     
{                                                                     
  _Objects_Set_local_object(                                          
ffc0b5c4:	a0 04 00 0a 	lhz     r0,10(r4)                              
  #if defined(RTEMS_DEBUG)                                            
    if ( index > information->maximum )                               
      return;                                                         
  #endif                                                              
                                                                      
  information->local_table[ index ] = the_object;                     
ffc0b5c8:	81 23 00 1c 	lwz     r9,28(r3)                              
ffc0b5cc:	54 00 10 3a 	rlwinm  r0,r0,2,0,29                           
ffc0b5d0:	93 c1 00 10 	stw     r30,16(r1)                             
ffc0b5d4:	7c 7e 1b 78 	mr      r30,r3                                 
ffc0b5d8:	93 e1 00 14 	stw     r31,20(r1)                             
ffc0b5dc:	7c 9f 23 78 	mr      r31,r4                                 
ffc0b5e0:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0b5e4:	7d 69 01 2e 	stwx    r11,r9,r0                              
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Unnest_dispatch( void )             
{                                                                     
  RTEMS_COMPILER_MEMORY_BARRIER();                                    
  _Thread_Dispatch_disable_level -= 1;                                
ffc0b5e8:	3f a0 00 00 	lis     r29,0                                  
ffc0b5ec:	81 3d 27 2c 	lwz     r9,10028(r29)                          
   *  disappear and set a transient state on it.  So we temporarily   
   *  unnest dispatching.                                             
   */                                                                 
  _Thread_Unnest_dispatch();                                          
                                                                      
  _User_extensions_Thread_delete( the_thread );                       
ffc0b5f0:	7c 83 23 78 	mr      r3,r4                                  
ffc0b5f4:	38 09 ff ff 	addi    r0,r9,-1                               
ffc0b5f8:	90 1d 27 2c 	stw     r0,10028(r29)                          
ffc0b5fc:	48 00 18 fd 	bl      ffc0cef8 <_User_extensions_Thread_delete>
	rtems_fatal_error_occurred( 99 );                                    
      }                                                               
    }                                                                 
  #endif                                                              
                                                                      
  _Thread_Dispatch_disable_level += 1;                                
ffc0b600:	81 3d 27 2c 	lwz     r9,10028(r29)                          
ffc0b604:	38 09 00 01 	addi    r0,r9,1                                
ffc0b608:	90 1d 27 2c 	stw     r0,10028(r29)                          
  /*                                                                  
   *  Now we are in a dispatching critical section again and we       
   *  can take the thread OUT of the published set.  It is invalid    
   *  to use this thread's Id OR name after this call.                
   */                                                                 
  _Objects_Close( information, &the_thread->Object );                 
ffc0b60c:	7f e4 fb 78 	mr      r4,r31                                 
ffc0b610:	7f c3 f3 78 	mr      r3,r30                                 
ffc0b614:	4b ff f3 11 	bl      ffc0a924 <_Objects_Close>              
                                                                      
  /*                                                                  
   *  By setting the dormant state, the thread will not be considered 
   *  for scheduling when we remove any blocking states.              
   */                                                                 
  _Thread_Set_state( the_thread, STATES_DORMANT );                    
ffc0b618:	7f e3 fb 78 	mr      r3,r31                                 
ffc0b61c:	38 80 00 01 	li      r4,1                                   
ffc0b620:	48 00 0f 35 	bl      ffc0c554 <_Thread_Set_state>           
                                                                      
  if ( !_Thread_queue_Extract_with_proxy( the_thread ) ) {            
ffc0b624:	7f e3 fb 78 	mr      r3,r31                                 
ffc0b628:	48 00 0c dd 	bl      ffc0c304 <_Thread_queue_Extract_with_proxy>
ffc0b62c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0b630:	40 9e 00 10 	bne-    cr7,ffc0b640 <_Thread_Close+0x8c>      
    if ( _Watchdog_Is_active( &the_thread->Timer ) )                  
ffc0b634:	80 1f 00 50 	lwz     r0,80(r31)                             
ffc0b638:	2f 80 00 02 	cmpwi   cr7,r0,2                               
ffc0b63c:	41 9e 00 60 	beq-    cr7,ffc0b69c <_Thread_Close+0xe8>      
  if ( _Thread_Is_allocated_fp( the_thread ) )                        
    _Thread_Deallocate_fp();                                          
#endif                                                                
  the_thread->fp_context = NULL;                                      
                                                                      
  if ( the_thread->Start.fp_context )                                 
ffc0b640:	80 7f 00 d0 	lwz     r3,208(r31)                            
#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )        
#if ( CPU_USE_DEFERRED_FP_SWITCH == TRUE )                            
  if ( _Thread_Is_allocated_fp( the_thread ) )                        
    _Thread_Deallocate_fp();                                          
#endif                                                                
  the_thread->fp_context = NULL;                                      
ffc0b644:	38 00 00 00 	li      r0,0                                   
ffc0b648:	90 1f 01 38 	stw     r0,312(r31)                            
                                                                      
  if ( the_thread->Start.fp_context )                                 
ffc0b64c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0b650:	41 9e 00 08 	beq-    cr7,ffc0b658 <_Thread_Close+0xa4>      <== NEVER TAKEN
    (void) _Workspace_Free( the_thread->Start.fp_context );           
ffc0b654:	48 00 1e 59 	bl      ffc0d4ac <_Workspace_Free>             
                                                                      
  /*                                                                  
   *  Free the rest of the memory associated with this task           
   *  and set the associated pointers to NULL for safety.             
   */                                                                 
  _Thread_Stack_Free( the_thread );                                   
ffc0b658:	7f e3 fb 78 	mr      r3,r31                                 
ffc0b65c:	48 00 11 55 	bl      ffc0c7b0 <_Thread_Stack_Free>          
  the_thread->Start.stack = NULL;                                     
                                                                      
  if ( the_thread->extensions )                                       
ffc0b660:	80 7f 01 48 	lwz     r3,328(r31)                            
  /*                                                                  
   *  Free the rest of the memory associated with this task           
   *  and set the associated pointers to NULL for safety.             
   */                                                                 
  _Thread_Stack_Free( the_thread );                                   
  the_thread->Start.stack = NULL;                                     
ffc0b664:	38 00 00 00 	li      r0,0                                   
                                                                      
  if ( the_thread->extensions )                                       
ffc0b668:	2f 83 00 00 	cmpwi   cr7,r3,0                               
  /*                                                                  
   *  Free the rest of the memory associated with this task           
   *  and set the associated pointers to NULL for safety.             
   */                                                                 
  _Thread_Stack_Free( the_thread );                                   
  the_thread->Start.stack = NULL;                                     
ffc0b66c:	90 1f 00 d4 	stw     r0,212(r31)                            
                                                                      
  if ( the_thread->extensions )                                       
ffc0b670:	41 9e 00 08 	beq-    cr7,ffc0b678 <_Thread_Close+0xc4>      
    (void) _Workspace_Free( the_thread->extensions );                 
ffc0b674:	48 00 1e 39 	bl      ffc0d4ac <_Workspace_Free>             
  the_thread->extensions = NULL;                                      
ffc0b678:	38 00 00 00 	li      r0,0                                   
}                                                                     
ffc0b67c:	83 a1 00 0c 	lwz     r29,12(r1)                             
  _Thread_Stack_Free( the_thread );                                   
  the_thread->Start.stack = NULL;                                     
                                                                      
  if ( the_thread->extensions )                                       
    (void) _Workspace_Free( the_thread->extensions );                 
  the_thread->extensions = NULL;                                      
ffc0b680:	90 1f 01 48 	stw     r0,328(r31)                            
}                                                                     
ffc0b684:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0b688:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0b68c:	7c 08 03 a6 	mtlr    r0                                     
ffc0b690:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0b694:	38 21 00 18 	addi    r1,r1,24                               
ffc0b698:	4e 80 00 20 	blr                                            
   */                                                                 
  _Thread_Set_state( the_thread, STATES_DORMANT );                    
                                                                      
  if ( !_Thread_queue_Extract_with_proxy( the_thread ) ) {            
    if ( _Watchdog_Is_active( &the_thread->Timer ) )                  
      (void) _Watchdog_Remove( &the_thread->Timer );                  
ffc0b69c:	38 7f 00 48 	addi    r3,r31,72                              
ffc0b6a0:	48 00 1b a9 	bl      ffc0d248 <_Watchdog_Remove>            
ffc0b6a4:	4b ff ff 9c 	b       ffc0b640 <_Thread_Close+0x8c>          
                                                                      

ffc0b7a4 <_Thread_Delay_ended>: void _Thread_Delay_ended( Objects_Id id, void *ignored __attribute__((unused)) ) {
ffc0b7a4:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0b7a8:	7c 08 02 a6 	mflr    r0                                     
  Thread_Control    *the_thread;                                      
  Objects_Locations  location;                                        
                                                                      
  the_thread = _Thread_Get( id, &location );                          
ffc0b7ac:	38 81 00 08 	addi    r4,r1,8                                
                                                                      
void _Thread_Delay_ended(                                             
  Objects_Id  id,                                                     
  void       *ignored __attribute__((unused))                         
)                                                                     
{                                                                     
ffc0b7b0:	90 01 00 1c 	stw     r0,28(r1)                              
  Thread_Control    *the_thread;                                      
  Objects_Locations  location;                                        
                                                                      
  the_thread = _Thread_Get( id, &location );                          
ffc0b7b4:	48 00 02 39 	bl      ffc0b9ec <_Thread_Get>                 
  switch ( location ) {                                               
ffc0b7b8:	80 01 00 08 	lwz     r0,8(r1)                               
ffc0b7bc:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0b7c0:	40 9e 00 20 	bne-    cr7,ffc0b7e0 <_Thread_Delay_ended+0x3c><== NEVER TAKEN
#if defined(RTEMS_MULTIPROCESSING)                                    
    case OBJECTS_REMOTE:  /* impossible */                            
#endif                                                                
      break;                                                          
    case OBJECTS_LOCAL:                                               
      _Thread_Clear_state(                                            
ffc0b7c4:	3c 80 10 00 	lis     r4,4096                                
ffc0b7c8:	60 84 00 18 	ori     r4,r4,24                               
ffc0b7cc:	4b ff fd 21 	bl      ffc0b4ec <_Thread_Clear_state>         
ffc0b7d0:	3d 20 00 00 	lis     r9,0                                   
ffc0b7d4:	81 69 27 2c 	lwz     r11,10028(r9)                          
ffc0b7d8:	38 0b ff ff 	addi    r0,r11,-1                              
ffc0b7dc:	90 09 27 2c 	stw     r0,10028(r9)                           
          | STATES_INTERRUPTIBLE_BY_SIGNAL                            
      );                                                              
      _Thread_Unnest_dispatch();                                      
      break;                                                          
  }                                                                   
}                                                                     
ffc0b7e0:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0b7e4:	38 21 00 18 	addi    r1,r1,24                               
ffc0b7e8:	7c 08 03 a6 	mtlr    r0                                     
ffc0b7ec:	4e 80 00 20 	blr                                            
                                                                      

ffc0b7f0 <_Thread_Dispatch>: * dispatch thread * no dispatch thread */ void _Thread_Dispatch( void ) {
ffc0b7f0:	94 21 ff b8 	stwu    r1,-72(r1)                             
ffc0b7f4:	7c 08 02 a6 	mflr    r0                                     
ffc0b7f8:	93 a1 00 3c 	stw     r29,60(r1)                             
  Thread_Control   *executing;                                        
  Thread_Control   *heir;                                             
  ISR_Level         level;                                            
                                                                      
  executing   = _Thread_Executing;                                    
ffc0b7fc:	3f a0 00 00 	lis     r29,0                                  
ffc0b800:	3b bd 2d 64 	addi    r29,r29,11620                          
 *    dispatch thread                                                 
 *    no dispatch thread                                              
 */                                                                   
                                                                      
void _Thread_Dispatch( void )                                         
{                                                                     
ffc0b804:	93 e1 00 44 	stw     r31,68(r1)                             
ffc0b808:	90 01 00 4c 	stw     r0,76(r1)                              
ffc0b80c:	92 a1 00 1c 	stw     r21,28(r1)                             
ffc0b810:	92 c1 00 20 	stw     r22,32(r1)                             
ffc0b814:	92 e1 00 24 	stw     r23,36(r1)                             
ffc0b818:	93 01 00 28 	stw     r24,40(r1)                             
ffc0b81c:	93 21 00 2c 	stw     r25,44(r1)                             
ffc0b820:	93 41 00 30 	stw     r26,48(r1)                             
ffc0b824:	93 61 00 34 	stw     r27,52(r1)                             
ffc0b828:	93 81 00 38 	stw     r28,56(r1)                             
ffc0b82c:	93 c1 00 40 	stw     r30,64(r1)                             
  Thread_Control   *executing;                                        
  Thread_Control   *heir;                                             
  ISR_Level         level;                                            
                                                                      
  executing   = _Thread_Executing;                                    
ffc0b830:	83 fd 00 0c 	lwz     r31,12(r29)                            
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0b834:	7c 00 00 a6 	mfmsr   r0                                     
ffc0b838:	7d 30 42 a6 	mfsprg  r9,0                                   
ffc0b83c:	7c 09 48 78 	andc    r9,r0,r9                               
ffc0b840:	7d 20 01 24 	mtmsr   r9                                     
  _ISR_Disable( level );                                              
  while ( _Thread_Dispatch_necessary == true ) {                      
ffc0b844:	89 3d 00 18 	lbz     r9,24(r29)                             
ffc0b848:	3f 20 00 00 	lis     r25,0                                  
ffc0b84c:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0b850:	41 9e 01 30 	beq-    cr7,ffc0b980 <_Thread_Dispatch+0x190>  
    heir = _Thread_Heir;                                              
ffc0b854:	83 dd 00 10 	lwz     r30,16(r29)                            
    _Thread_Dispatch_disable_level = 1;                               
ffc0b858:	39 20 00 01 	li      r9,1                                   
ffc0b85c:	91 39 27 2c 	stw     r9,10028(r25)                          
    _Thread_Dispatch_necessary = false;                               
ffc0b860:	39 20 00 00 	li      r9,0                                   
    /*                                                                
     *  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 )                                          
ffc0b864:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
  _ISR_Disable( level );                                              
  while ( _Thread_Dispatch_necessary == true ) {                      
    heir = _Thread_Heir;                                              
    _Thread_Dispatch_disable_level = 1;                               
    _Thread_Dispatch_necessary = false;                               
    _Thread_Executing = heir;                                         
ffc0b868:	93 dd 00 0c 	stw     r30,12(r29)                            
  executing   = _Thread_Executing;                                    
  _ISR_Disable( level );                                              
  while ( _Thread_Dispatch_necessary == true ) {                      
    heir = _Thread_Heir;                                              
    _Thread_Dispatch_disable_level = 1;                               
    _Thread_Dispatch_necessary = false;                               
ffc0b86c:	99 3d 00 18 	stb     r9,24(r29)                             
    /*                                                                
     *  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 )                                          
ffc0b870:	41 9e 01 10 	beq-    cr7,ffc0b980 <_Thread_Dispatch+0x190>  
ffc0b874:	3f 60 00 00 	lis     r27,0                                  
ffc0b878:	3f 00 00 00 	lis     r24,0                                  
ffc0b87c:	3b 41 00 08 	addi    r26,r1,8                               
ffc0b880:	3b 7b 27 60 	addi    r27,r27,10080                          
ffc0b884:	3b 81 00 10 	addi    r28,r1,16                              
ffc0b888:	3b 18 27 40 	addi    r24,r24,10048                          
#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;            
ffc0b88c:	3e a0 00 00 	lis     r21,0                                  
                                                                      
  executing   = _Thread_Executing;                                    
  _ISR_Disable( level );                                              
  while ( _Thread_Dispatch_necessary == true ) {                      
    heir = _Thread_Heir;                                              
    _Thread_Dispatch_disable_level = 1;                               
ffc0b890:	3a c0 00 01 	li      r22,1                                  
    _Thread_Dispatch_necessary = false;                               
ffc0b894:	3a e0 00 00 	li      r23,0                                  
ffc0b898:	48 00 00 d0 	b       ffc0b968 <_Thread_Dispatch+0x178>      
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0b89c:	7c 00 01 24 	mtmsr   r0                                     
    _ISR_Enable( level );                                             
                                                                      
    #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                        
      {                                                               
        Timestamp_Control uptime, ran;                                
        _TOD_Get_uptime( &uptime );                                   
ffc0b8a0:	7f 43 d3 78 	mr      r3,r26                                 
ffc0b8a4:	48 00 41 2d 	bl      ffc0f9d0 <_TOD_Get_uptime>             
        _Timestamp_Subtract(                                          
ffc0b8a8:	7f 63 db 78 	mr      r3,r27                                 
ffc0b8ac:	7f 44 d3 78 	mr      r4,r26                                 
ffc0b8b0:	7f 85 e3 78 	mr      r5,r28                                 
ffc0b8b4:	48 00 12 b1 	bl      ffc0cb64 <_Timespec_Subtract>          
          &_Thread_Time_of_last_context_switch,                       
          &uptime,                                                    
          &ran                                                        
        );                                                            
        _Timestamp_Add_to( &executing->cpu_time_used, &ran );         
ffc0b8b8:	7f 84 e3 78 	mr      r4,r28                                 
ffc0b8bc:	38 7f 00 84 	addi    r3,r31,132                             
ffc0b8c0:	48 00 12 49 	bl      ffc0cb08 <_Timespec_Add_to>            
    #endif                                                            
                                                                      
    /*                                                                
     * Switch libc's task specific data.                              
     */                                                               
    if ( _Thread_libc_reent ) {                                       
ffc0b8c4:	81 78 00 00 	lwz     r11,0(r24)                             
          &_Thread_Time_of_last_context_switch,                       
          &uptime,                                                    
          &ran                                                        
        );                                                            
        _Timestamp_Add_to( &executing->cpu_time_used, &ran );         
        _Thread_Time_of_last_context_switch = uptime;                 
ffc0b8c8:	81 21 00 08 	lwz     r9,8(r1)                               
    if ( _Thread_libc_reent ) {                                       
      executing->libc_reent = *_Thread_libc_reent;                    
      *_Thread_libc_reent = heir->libc_reent;                         
    }                                                                 
                                                                      
    _User_extensions_Thread_switch( executing, heir );                
ffc0b8cc:	7f e3 fb 78 	mr      r3,r31                                 
    #endif                                                            
                                                                      
    /*                                                                
     * Switch libc's task specific data.                              
     */                                                               
    if ( _Thread_libc_reent ) {                                       
ffc0b8d0:	2f 8b 00 00 	cmpwi   cr7,r11,0                              
          &_Thread_Time_of_last_context_switch,                       
          &uptime,                                                    
          &ran                                                        
        );                                                            
        _Timestamp_Add_to( &executing->cpu_time_used, &ran );         
        _Thread_Time_of_last_context_switch = uptime;                 
ffc0b8d4:	81 41 00 0c 	lwz     r10,12(r1)                             
    if ( _Thread_libc_reent ) {                                       
      executing->libc_reent = *_Thread_libc_reent;                    
      *_Thread_libc_reent = heir->libc_reent;                         
    }                                                                 
                                                                      
    _User_extensions_Thread_switch( executing, heir );                
ffc0b8d8:	7f c4 f3 78 	mr      r4,r30                                 
          &_Thread_Time_of_last_context_switch,                       
          &uptime,                                                    
          &ran                                                        
        );                                                            
        _Timestamp_Add_to( &executing->cpu_time_used, &ran );         
        _Thread_Time_of_last_context_switch = uptime;                 
ffc0b8dc:	91 3b 00 00 	stw     r9,0(r27)                              
ffc0b8e0:	91 5b 00 04 	stw     r10,4(r27)                             
    #endif                                                            
                                                                      
    /*                                                                
     * Switch libc's task specific data.                              
     */                                                               
    if ( _Thread_libc_reent ) {                                       
ffc0b8e4:	41 9e 00 14 	beq-    cr7,ffc0b8f8 <_Thread_Dispatch+0x108>  <== NEVER TAKEN
      executing->libc_reent = *_Thread_libc_reent;                    
ffc0b8e8:	80 0b 00 00 	lwz     r0,0(r11)                              
ffc0b8ec:	90 1f 01 3c 	stw     r0,316(r31)                            
      *_Thread_libc_reent = heir->libc_reent;                         
ffc0b8f0:	80 1e 01 3c 	lwz     r0,316(r30)                            
ffc0b8f4:	90 0b 00 00 	stw     r0,0(r11)                              
    }                                                                 
                                                                      
    _User_extensions_Thread_switch( executing, heir );                
ffc0b8f8:	48 00 17 0d 	bl      ffc0d004 <_User_extensions_Thread_switch>
     *  operations.                                                   
     */                                                               
                                                                      
#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )        
#if ( CPU_USE_DEFERRED_FP_SWITCH != TRUE )                            
    if ( executing->fp_context != NULL )                              
ffc0b8fc:	80 1f 01 38 	lwz     r0,312(r31)                            
      _Context_Save_fp( &executing->fp_context );                     
ffc0b900:	38 7f 01 38 	addi    r3,r31,312                             
     *  operations.                                                   
     */                                                               
                                                                      
#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )        
#if ( CPU_USE_DEFERRED_FP_SWITCH != TRUE )                            
    if ( executing->fp_context != NULL )                              
ffc0b904:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0b908:	41 9e 00 08 	beq-    cr7,ffc0b910 <_Thread_Dispatch+0x120>  
      _Context_Save_fp( &executing->fp_context );                     
ffc0b90c:	48 00 b7 35 	bl      ffc17040 <_CPU_Context_save_fp>        
#endif                                                                
#endif                                                                
                                                                      
    _Context_Switch( &executing->Registers, &heir->Registers );       
ffc0b910:	38 7f 00 d8 	addi    r3,r31,216                             
ffc0b914:	38 9e 00 d8 	addi    r4,r30,216                             
ffc0b918:	48 00 b8 a9 	bl      ffc171c0 <_CPU_Context_switch>         
        _Context_Save_fp( &_Thread_Allocated_fp->fp_context );        
      _Context_Restore_fp( &executing->fp_context );                  
      _Thread_Allocated_fp = executing;                               
    }                                                                 
#else                                                                 
    if ( executing->fp_context != NULL )                              
ffc0b91c:	80 1f 01 38 	lwz     r0,312(r31)                            
      _Context_Restore_fp( &executing->fp_context );                  
ffc0b920:	38 7f 01 38 	addi    r3,r31,312                             
        _Context_Save_fp( &_Thread_Allocated_fp->fp_context );        
      _Context_Restore_fp( &executing->fp_context );                  
      _Thread_Allocated_fp = executing;                               
    }                                                                 
#else                                                                 
    if ( executing->fp_context != NULL )                              
ffc0b924:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0b928:	41 9e 00 08 	beq-    cr7,ffc0b930 <_Thread_Dispatch+0x140>  
      _Context_Restore_fp( &executing->fp_context );                  
ffc0b92c:	48 00 b7 d5 	bl      ffc17100 <_CPU_Context_restore_fp>     
#endif                                                                
#endif                                                                
                                                                      
    executing = _Thread_Executing;                                    
ffc0b930:	83 fd 00 0c 	lwz     r31,12(r29)                            
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0b934:	7c 00 00 a6 	mfmsr   r0                                     
ffc0b938:	7d 30 42 a6 	mfsprg  r9,0                                   
ffc0b93c:	7c 09 48 78 	andc    r9,r0,r9                               
ffc0b940:	7d 20 01 24 	mtmsr   r9                                     
  Thread_Control   *heir;                                             
  ISR_Level         level;                                            
                                                                      
  executing   = _Thread_Executing;                                    
  _ISR_Disable( level );                                              
  while ( _Thread_Dispatch_necessary == true ) {                      
ffc0b944:	89 3d 00 18 	lbz     r9,24(r29)                             
ffc0b948:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0b94c:	41 9e 00 34 	beq-    cr7,ffc0b980 <_Thread_Dispatch+0x190>  
    heir = _Thread_Heir;                                              
ffc0b950:	83 dd 00 10 	lwz     r30,16(r29)                            
    _Thread_Dispatch_disable_level = 1;                               
ffc0b954:	92 d9 27 2c 	stw     r22,10028(r25)                         
    /*                                                                
     *  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 )                                          
ffc0b958:	7f 9e f8 00 	cmpw    cr7,r30,r31                            
  executing   = _Thread_Executing;                                    
  _ISR_Disable( level );                                              
  while ( _Thread_Dispatch_necessary == true ) {                      
    heir = _Thread_Heir;                                              
    _Thread_Dispatch_disable_level = 1;                               
    _Thread_Dispatch_necessary = false;                               
ffc0b95c:	9a fd 00 18 	stb     r23,24(r29)                            
    _Thread_Executing = heir;                                         
ffc0b960:	93 dd 00 0c 	stw     r30,12(r29)                            
    /*                                                                
     *  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 )                                          
ffc0b964:	41 9e 00 1c 	beq-    cr7,ffc0b980 <_Thread_Dispatch+0x190>  <== NEVER TAKEN
     */                                                               
#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 )
ffc0b968:	81 3e 00 7c 	lwz     r9,124(r30)                            
ffc0b96c:	2f 89 00 01 	cmpwi   cr7,r9,1                               
ffc0b970:	40 9e ff 2c 	bne+    cr7,ffc0b89c <_Thread_Dispatch+0xac>   
      heir->cpu_time_budget = _Thread_Ticks_per_timeslice;            
ffc0b974:	81 35 27 28 	lwz     r9,10024(r21)                          
ffc0b978:	91 3e 00 78 	stw     r9,120(r30)                            
ffc0b97c:	4b ff ff 20 	b       ffc0b89c <_Thread_Dispatch+0xac>       
                                                                      
    _ISR_Disable( level );                                            
  }                                                                   
                                                                      
post_switch:                                                          
  _Thread_Dispatch_disable_level = 0;                                 
ffc0b980:	39 20 00 00 	li      r9,0                                   
ffc0b984:	91 39 27 2c 	stw     r9,10028(r25)                          
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0b988:	7c 00 01 24 	mtmsr   r0                                     
                                                                      
  _ISR_Enable( level );                                               
                                                                      
  _API_extensions_Run_postswitch();                                   
ffc0b98c:	4b ff e0 f9 	bl      ffc09a84 <_API_extensions_Run_postswitch>
}                                                                     
ffc0b990:	80 01 00 4c 	lwz     r0,76(r1)                              
ffc0b994:	82 a1 00 1c 	lwz     r21,28(r1)                             
ffc0b998:	7c 08 03 a6 	mtlr    r0                                     
ffc0b99c:	82 c1 00 20 	lwz     r22,32(r1)                             
ffc0b9a0:	82 e1 00 24 	lwz     r23,36(r1)                             
ffc0b9a4:	83 01 00 28 	lwz     r24,40(r1)                             
ffc0b9a8:	83 21 00 2c 	lwz     r25,44(r1)                             
ffc0b9ac:	83 41 00 30 	lwz     r26,48(r1)                             
ffc0b9b0:	83 61 00 34 	lwz     r27,52(r1)                             
ffc0b9b4:	83 81 00 38 	lwz     r28,56(r1)                             
ffc0b9b8:	83 a1 00 3c 	lwz     r29,60(r1)                             
ffc0b9bc:	83 c1 00 40 	lwz     r30,64(r1)                             
ffc0b9c0:	83 e1 00 44 	lwz     r31,68(r1)                             
ffc0b9c4:	38 21 00 48 	addi    r1,r1,72                               
ffc0b9c8:	4e 80 00 20 	blr                                            
                                                                      

ffc0b9ec <_Thread_Get>: */ Thread_Control *_Thread_Get ( Objects_Id id, Objects_Locations *location ) {
ffc0b9ec:	7c 08 02 a6 	mflr    r0                                     
ffc0b9f0:	94 21 ff f8 	stwu    r1,-8(r1)                              
ffc0b9f4:	7c 85 23 78 	mr      r5,r4                                  
ffc0b9f8:	90 01 00 0c 	stw     r0,12(r1)                              
  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 ) ) {           
ffc0b9fc:	7c 60 1b 79 	mr.     r0,r3                                  
ffc0ba00:	41 82 00 78 	beq-    ffc0ba78 <_Thread_Get+0x8c>            
 */                                                                   
RTEMS_INLINE_ROUTINE Objects_APIs _Objects_Get_API(                   
  Objects_Id id                                                       
)                                                                     
{                                                                     
  return (Objects_APIs) ((id >> OBJECTS_API_START_BIT) & OBJECTS_API_VALID_BITS);
ffc0ba04:	54 09 47 7e 	rlwinm  r9,r0,8,29,31                          
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Objects_Is_api_valid(                      
  uint32_t   the_api                                                  
)                                                                     
{                                                                     
  if ( !the_api || the_api > OBJECTS_APIS_LAST )                      
ffc0ba08:	39 69 ff ff 	addi    r11,r9,-1                              
ffc0ba0c:	2b 8b 00 02 	cmplwi  cr7,r11,2                              
ffc0ba10:	41 9d 00 4c 	bgt-    cr7,ffc0ba5c <_Thread_Get+0x70>        
 */                                                                   
RTEMS_INLINE_ROUTINE uint32_t _Objects_Get_class(                     
  Objects_Id id                                                       
)                                                                     
{                                                                     
  return (uint32_t)                                                   
ffc0ba14:	54 0a 2e fe 	rlwinm  r10,r0,5,27,31                         
    *location = OBJECTS_ERROR;                                        
    goto done;                                                        
  }                                                                   
                                                                      
  the_class = _Objects_Get_class( id );                               
  if ( the_class != 1 ) {       /* threads are always first class :) */
ffc0ba18:	2f 8a 00 01 	cmpwi   cr7,r10,1                              
ffc0ba1c:	40 9e 00 40 	bne-    cr7,ffc0ba5c <_Thread_Get+0x70>        
    *location = OBJECTS_ERROR;                                        
    goto done;                                                        
  }                                                                   
                                                                      
  api_information = _Objects_Information_table[ the_api ];            
ffc0ba20:	3d 60 00 00 	lis     r11,0                                  
ffc0ba24:	55 29 10 3a 	rlwinm  r9,r9,2,0,29                           
ffc0ba28:	39 6b 2b 40 	addi    r11,r11,11072                          
ffc0ba2c:	7d 2b 48 2e 	lwzx    r9,r11,r9                              
  /*                                                                  
   *  There is no way for this to happen if POSIX is enabled.         
   */                                                                 
  #if !defined(RTEMS_POSIX_API)                                       
    if ( !api_information ) {                                         
ffc0ba30:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0ba34:	41 9e 00 78 	beq-    cr7,ffc0baac <_Thread_Get+0xc0>        <== NEVER TAKEN
      *location = OBJECTS_ERROR;                                      
      goto done;                                                      
    }                                                                 
  #endif                                                              
                                                                      
  information = api_information[ the_class ];                         
ffc0ba38:	80 69 00 04 	lwz     r3,4(r9)                               
  if ( !information ) {                                               
ffc0ba3c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0ba40:	41 9e 00 64 	beq-    cr7,ffc0baa4 <_Thread_Get+0xb8>        
    *location = OBJECTS_ERROR;                                        
    goto done;                                                        
  }                                                                   
                                                                      
  tp = (Thread_Control *) _Objects_Get( information, id, location );  
ffc0ba44:	7c 04 03 78 	mr      r4,r0                                  
ffc0ba48:	4b ff f4 31 	bl      ffc0ae78 <_Objects_Get>                
                                                                      
done:                                                                 
  return tp;                                                          
}                                                                     
ffc0ba4c:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc0ba50:	38 21 00 08 	addi    r1,r1,8                                
ffc0ba54:	7c 08 03 a6 	mtlr    r0                                     
ffc0ba58:	4e 80 00 20 	blr                                            
    goto done;                                                        
  }                                                                   
                                                                      
  the_class = _Objects_Get_class( id );                               
  if ( the_class != 1 ) {       /* threads are always first class :) */
    *location = OBJECTS_ERROR;                                        
ffc0ba5c:	38 00 00 01 	li      r0,1                                   
ffc0ba60:	90 05 00 00 	stw     r0,0(r5)                               
{                                                                     
  uint32_t             the_api;                                       
  uint32_t             the_class;                                     
  Objects_Information **api_information;                              
  Objects_Information *information;                                   
  Thread_Control      *tp = (Thread_Control *) 0;                     
ffc0ba64:	38 60 00 00 	li      r3,0                                   
                                                                      
  tp = (Thread_Control *) _Objects_Get( information, id, location );  
                                                                      
done:                                                                 
  return tp;                                                          
}                                                                     
ffc0ba68:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc0ba6c:	38 21 00 08 	addi    r1,r1,8                                
ffc0ba70:	7c 08 03 a6 	mtlr    r0                                     
ffc0ba74:	4e 80 00 20 	blr                                            
	rtems_fatal_error_occurred( 99 );                                    
      }                                                               
    }                                                                 
  #endif                                                              
                                                                      
  _Thread_Dispatch_disable_level += 1;                                
ffc0ba78:	3d 20 00 00 	lis     r9,0                                   
ffc0ba7c:	81 69 27 2c 	lwz     r11,10028(r9)                          
ffc0ba80:	39 6b 00 01 	addi    r11,r11,1                              
ffc0ba84:	91 69 27 2c 	stw     r11,10028(r9)                          
  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;                                        
ffc0ba88:	90 04 00 00 	stw     r0,0(r4)                               
    tp = _Thread_Executing;                                           
ffc0ba8c:	3d 20 00 00 	lis     r9,0                                   
                                                                      
  tp = (Thread_Control *) _Objects_Get( information, id, location );  
                                                                      
done:                                                                 
  return tp;                                                          
}                                                                     
ffc0ba90:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc0ba94:	38 21 00 08 	addi    r1,r1,8                                
  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;                                           
ffc0ba98:	80 69 2d 70 	lwz     r3,11632(r9)                           
                                                                      
  tp = (Thread_Control *) _Objects_Get( information, id, location );  
                                                                      
done:                                                                 
  return tp;                                                          
}                                                                     
ffc0ba9c:	7c 08 03 a6 	mtlr    r0                                     
ffc0baa0:	4e 80 00 20 	blr                                            
    }                                                                 
  #endif                                                              
                                                                      
  information = api_information[ the_class ];                         
  if ( !information ) {                                               
    *location = OBJECTS_ERROR;                                        
ffc0baa4:	91 45 00 00 	stw     r10,0(r5)                              
    goto done;                                                        
ffc0baa8:	4b ff ff c0 	b       ffc0ba68 <_Thread_Get+0x7c>            
  /*                                                                  
   *  There is no way for this to happen if POSIX is enabled.         
   */                                                                 
  #if !defined(RTEMS_POSIX_API)                                       
    if ( !api_information ) {                                         
      *location = OBJECTS_ERROR;                                      
ffc0baac:	91 45 00 00 	stw     r10,0(r5)                              <== NOT EXECUTED
{                                                                     
  uint32_t             the_api;                                       
  uint32_t             the_class;                                     
  Objects_Information **api_information;                              
  Objects_Information *information;                                   
  Thread_Control      *tp = (Thread_Control *) 0;                     
ffc0bab0:	38 60 00 00 	li      r3,0                                   <== NOT EXECUTED
   *  There is no way for this to happen if POSIX is enabled.         
   */                                                                 
  #if !defined(RTEMS_POSIX_API)                                       
    if ( !api_information ) {                                         
      *location = OBJECTS_ERROR;                                      
      goto done;                                                      
ffc0bab4:	4b ff ff b4 	b       ffc0ba68 <_Thread_Get+0x7c>            <== NOT EXECUTED
                                                                      

ffc11f64 <_Thread_Handler>: * * Output parameters: NONE */ void _Thread_Handler( void ) {
ffc11f64:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc11f68:	7c 08 02 a6 	mflr    r0                                     
  #if defined(EXECUTE_GLOBAL_CONSTRUCTORS)                            
    static char doneConstructors;                                     
    char doneCons;                                                    
  #endif                                                              
                                                                      
  executing = _Thread_Executing;                                      
ffc11f6c:	3d 20 00 00 	lis     r9,0                                   
 *                                                                    
 *  Output parameters:  NONE                                          
 */                                                                   
                                                                      
void _Thread_Handler( void )                                          
{                                                                     
ffc11f70:	90 01 00 14 	stw     r0,20(r1)                              
ffc11f74:	93 e1 00 0c 	stw     r31,12(r1)                             
  #if defined(EXECUTE_GLOBAL_CONSTRUCTORS)                            
    static char doneConstructors;                                     
    char doneCons;                                                    
  #endif                                                              
                                                                      
  executing = _Thread_Executing;                                      
ffc11f78:	83 e9 2d 70 	lwz     r31,11632(r9)                          
 *                                                                    
 *  Output parameters:  NONE                                          
 */                                                                   
                                                                      
void _Thread_Handler( void )                                          
{                                                                     
ffc11f7c:	93 c1 00 08 	stw     r30,8(r1)                              
  /*                                                                  
   * have to put level into a register for those cpu's that use       
   * inline asm here                                                  
   */                                                                 
                                                                      
  level = executing->Start.isr_level;                                 
ffc11f80:	81 3f 00 c0 	lwz     r9,192(r31)                            
}                                                                     
                                                                      
static inline void _CPU_ISR_Set_level( uint32_t   level )             
{                                                                     
  register unsigned int msr;                                          
  _CPU_MSR_GET(msr);                                                  
ffc11f84:	38 00 00 00 	li      r0,0                                   
ffc11f88:	7c 00 00 a6 	mfmsr   r0                                     
  if (!(level & CPU_MODES_INTERRUPT_MASK)) {                          
ffc11f8c:	71 2b 00 01 	andi.   r11,r9,1                               
ffc11f90:	40 82 00 58 	bne-    ffc11fe8 <_Thread_Handler+0x84>        
                                                                      
static inline uint32_t ppc_interrupt_get_disable_mask( void )         
{                                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc11f94:	7d 30 42 a6 	mfsprg  r9,0                                   
    msr |= ppc_interrupt_get_disable_mask();                          
ffc11f98:	7d 20 03 78 	or      r0,r9,r0                               
  }                                                                   
  else {                                                              
    msr &= ~ppc_interrupt_get_disable_mask();                         
  }                                                                   
  _CPU_MSR_SET(msr);                                                  
ffc11f9c:	7c 00 01 24 	mtmsr   r0                                     
  _ISR_Set_level(level);                                              
                                                                      
  #if defined(EXECUTE_GLOBAL_CONSTRUCTORS)                            
    doneCons = doneConstructors;                                      
ffc11fa0:	3d 20 00 00 	lis     r9,0                                   
ffc11fa4:	8b c9 28 dc 	lbz     r30,10460(r9)                          
    doneConstructors = 1;                                             
ffc11fa8:	38 00 00 01 	li      r0,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 );                         
ffc11fac:	7f e3 fb 78 	mr      r3,r31                                 
  level = executing->Start.isr_level;                                 
  _ISR_Set_level(level);                                              
                                                                      
  #if defined(EXECUTE_GLOBAL_CONSTRUCTORS)                            
    doneCons = doneConstructors;                                      
    doneConstructors = 1;                                             
ffc11fb0:	98 09 28 dc 	stb     r0,10460(r9)                           
  /*                                                                  
   * 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 );                         
ffc11fb4:	4b ff ad 15 	bl      ffc0ccc8 <_User_extensions_Thread_begin>
                                                                      
  /*                                                                  
   *  At this point, the dispatch disable level BETTER be 1.          
   */                                                                 
  _Thread_Enable_dispatch();                                          
ffc11fb8:	4b ff 9a 15 	bl      ffc0b9cc <_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) */ {                 
ffc11fbc:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc11fc0:	41 9e 00 58 	beq-    cr7,ffc12018 <_Thread_Handler+0xb4>    
      INIT_NAME ();                                                   
    }                                                                 
  #endif                                                              
                                                                      
  if ( executing->Start.prototype == THREAD_START_NUMERIC ) {         
ffc11fc4:	80 1f 00 a8 	lwz     r0,168(r31)                            
ffc11fc8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc11fcc:	41 9e 00 5c 	beq-    cr7,ffc12028 <_Thread_Handler+0xc4>    <== 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 );                       
ffc11fd0:	7f e3 fb 78 	mr      r3,r31                                 
ffc11fd4:	4b ff ad 69 	bl      ffc0cd3c <_User_extensions_Thread_exitted>
                                                                      
  _Internal_error_Occurred(                                           
ffc11fd8:	38 60 00 00 	li      r3,0                                   
ffc11fdc:	38 80 00 01 	li      r4,1                                   
ffc11fe0:	38 a0 00 05 	li      r5,5                                   
ffc11fe4:	4b ff 88 21 	bl      ffc0a804 <_Internal_error_Occurred>    
ffc11fe8:	7d 30 42 a6 	mfsprg  r9,0                                   
  _CPU_MSR_GET(msr);                                                  
  if (!(level & CPU_MODES_INTERRUPT_MASK)) {                          
    msr |= ppc_interrupt_get_disable_mask();                          
  }                                                                   
  else {                                                              
    msr &= ~ppc_interrupt_get_disable_mask();                         
ffc11fec:	7c 00 48 78 	andc    r0,r0,r9                               
  }                                                                   
  _CPU_MSR_SET(msr);                                                  
ffc11ff0:	7c 00 01 24 	mtmsr   r0                                     
                                                                      
  level = executing->Start.isr_level;                                 
  _ISR_Set_level(level);                                              
                                                                      
  #if defined(EXECUTE_GLOBAL_CONSTRUCTORS)                            
    doneCons = doneConstructors;                                      
ffc11ff4:	3d 20 00 00 	lis     r9,0                                   
ffc11ff8:	8b c9 28 dc 	lbz     r30,10460(r9)                          
    doneConstructors = 1;                                             
ffc11ffc:	38 00 00 01 	li      r0,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 );                         
ffc12000:	7f e3 fb 78 	mr      r3,r31                                 
  level = executing->Start.isr_level;                                 
  _ISR_Set_level(level);                                              
                                                                      
  #if defined(EXECUTE_GLOBAL_CONSTRUCTORS)                            
    doneCons = doneConstructors;                                      
    doneConstructors = 1;                                             
ffc12004:	98 09 28 dc 	stb     r0,10460(r9)                           
  /*                                                                  
   * 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 );                         
ffc12008:	4b ff ac c1 	bl      ffc0ccc8 <_User_extensions_Thread_begin>
                                                                      
  /*                                                                  
   *  At this point, the dispatch disable level BETTER be 1.          
   */                                                                 
  _Thread_Enable_dispatch();                                          
ffc1200c:	4b ff 99 c1 	bl      ffc0b9cc <_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) */ {                 
ffc12010:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc12014:	40 9e ff b0 	bne+    cr7,ffc11fc4 <_Thread_Handler+0x60>    <== ALWAYS TAKEN
      INIT_NAME ();                                                   
ffc12018:	48 00 60 e5 	bl      ffc180fc <_init>                       
    }                                                                 
  #endif                                                              
                                                                      
  if ( executing->Start.prototype == THREAD_START_NUMERIC ) {         
ffc1201c:	80 1f 00 a8 	lwz     r0,168(r31)                            
ffc12020:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc12024:	40 9e ff ac 	bne+    cr7,ffc11fd0 <_Thread_Handler+0x6c>    <== NEVER TAKEN
    executing->Wait.return_argument =                                 
      (*(Thread_Entry_numeric) executing->Start.entry_point)(         
ffc12028:	80 1f 00 a4 	lwz     r0,164(r31)                            
ffc1202c:	80 7f 00 b0 	lwz     r3,176(r31)                            
ffc12030:	7c 09 03 a6 	mtctr   r0                                     
ffc12034:	4e 80 04 21 	bctrl                                          
      INIT_NAME ();                                                   
    }                                                                 
  #endif                                                              
                                                                      
  if ( executing->Start.prototype == THREAD_START_NUMERIC ) {         
    executing->Wait.return_argument =                                 
ffc12038:	90 7f 00 28 	stw     r3,40(r31)                             
ffc1203c:	4b ff ff 94 	b       ffc11fd0 <_Thread_Handler+0x6c>        
                                                                      

ffc0bab8 <_Thread_Initialize>: Thread_CPU_budget_algorithms budget_algorithm, Thread_CPU_budget_algorithm_callout budget_callout, uint32_t isr_level, Objects_Name name ) {
ffc0bab8:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc0babc:	7c 08 02 a6 	mflr    r0                                     
ffc0bac0:	7d 80 00 26 	mfcr    r12                                    
ffc0bac4:	93 c1 00 28 	stw     r30,40(r1)                             
                                                                      
  /*                                                                  
   *  Zero out all the allocated memory fields                        
   */                                                                 
  for ( i=0 ; i <= THREAD_API_LAST ; i++ )                            
    the_thread->API_Extensions[i] = NULL;                             
ffc0bac8:	3b c0 00 00 	li      r30,0                                  
  Thread_CPU_budget_algorithms          budget_algorithm,             
  Thread_CPU_budget_algorithm_callout   budget_callout,               
  uint32_t                              isr_level,                    
  Objects_Name                          name                          
)                                                                     
{                                                                     
ffc0bacc:	90 01 00 34 	stw     r0,52(r1)                              
ffc0bad0:	92 e1 00 0c 	stw     r23,12(r1)                             
ffc0bad4:	93 01 00 10 	stw     r24,16(r1)                             
ffc0bad8:	7d 58 53 78 	mr      r24,r10                                
ffc0badc:	93 21 00 14 	stw     r25,20(r1)                             
ffc0bae0:	7d 39 4b 78 	mr      r25,r9                                 
ffc0bae4:	93 41 00 18 	stw     r26,24(r1)                             
ffc0bae8:	7d 1a 43 78 	mr      r26,r8                                 
ffc0baec:	93 61 00 1c 	stw     r27,28(r1)                             
ffc0baf0:	7c fb 3b 78 	mr      r27,r7                                 
ffc0baf4:	93 81 00 20 	stw     r28,32(r1)                             
ffc0baf8:	7c 7c 1b 78 	mr      r28,r3                                 
                                                                      
  /*                                                                  
   *  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 );
ffc0bafc:	7c 83 23 78 	mr      r3,r4                                  
  Thread_CPU_budget_algorithms          budget_algorithm,             
  Thread_CPU_budget_algorithm_callout   budget_callout,               
  uint32_t                              isr_level,                    
  Objects_Name                          name                          
)                                                                     
{                                                                     
ffc0bb00:	93 a1 00 24 	stw     r29,36(r1)                             
ffc0bb04:	7c dd 33 78 	mr      r29,r6                                 
ffc0bb08:	93 e1 00 2c 	stw     r31,44(r1)                             
ffc0bb0c:	7c 9f 23 78 	mr      r31,r4                                 
ffc0bb10:	81 61 00 40 	lwz     r11,64(r1)                             
ffc0bb14:	91 81 00 08 	stw     r12,8(r1)                              
                                                                      
  /*                                                                  
   *  Zero out all the allocated memory fields                        
   */                                                                 
  for ( i=0 ; i <= THREAD_API_LAST ; i++ )                            
    the_thread->API_Extensions[i] = NULL;                             
ffc0bb18:	93 c4 01 40 	stw     r30,320(r4)                            
ffc0bb1c:	93 c4 01 44 	stw     r30,324(r4)                            
                                                                      
  extensions_area = NULL;                                             
  the_thread->libc_reent = NULL;                                      
ffc0bb20:	93 c4 01 3c 	stw     r30,316(r4)                            
                                                                      
  /*                                                                  
   *  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 );
ffc0bb24:	7c c4 33 78 	mr      r4,r6                                  
  Thread_CPU_budget_algorithms          budget_algorithm,             
  Thread_CPU_budget_algorithm_callout   budget_callout,               
  uint32_t                              isr_level,                    
  Objects_Name                          name                          
)                                                                     
{                                                                     
ffc0bb28:	82 eb 00 00 	lwz     r23,0(r11)                             
                                                                      
  /*                                                                  
   *  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 );
ffc0bb2c:	48 00 0b dd 	bl      ffc0c708 <_Thread_Stack_Allocate>      
    if ( !actual_stack_size || actual_stack_size < stack_size )       
ffc0bb30:	7c 60 1b 79 	mr.     r0,r3                                  
      return false;                     /* stack allocation failed */ 
ffc0bb34:	38 60 00 00 	li      r3,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 )       
ffc0bb38:	41 82 01 28 	beq-    ffc0bc60 <_Thread_Initialize+0x1a8>    
ffc0bb3c:	7f 9d 00 40 	cmplw   cr7,r29,r0                             
ffc0bb40:	41 9d 01 20 	bgt-    cr7,ffc0bc60 <_Thread_Initialize+0x1a8><== NEVER TAKEN
                                                                      
  /*                                                                  
   *  Allocate the floating point area for this thread                
   */                                                                 
  #if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )      
    if ( is_fp ) {                                                    
ffc0bb44:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
  Stack_Control *the_stack,                                           
  void          *starting_address,                                    
  size_t         size                                                 
)                                                                     
{                                                                     
  the_stack->area = starting_address;                                 
ffc0bb48:	81 7f 00 d4 	lwz     r11,212(r31)                           
  the_stack->size = size;                                             
ffc0bb4c:	90 1f 00 c8 	stw     r0,200(r31)                            
ffc0bb50:	39 20 00 00 	li      r9,0                                   
                                                                      
  extensions_area = NULL;                                             
  the_thread->libc_reent = NULL;                                      
                                                                      
  #if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )      
    fp_area = NULL;                                                   
ffc0bb54:	3b 60 00 00 	li      r27,0                                  
  Stack_Control *the_stack,                                           
  void          *starting_address,                                    
  size_t         size                                                 
)                                                                     
{                                                                     
  the_stack->area = starting_address;                                 
ffc0bb58:	91 7f 00 cc 	stw     r11,204(r31)                           
                                                                      
  /*                                                                  
   *  Allocate the floating point area for this thread                
   */                                                                 
  #if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )      
    if ( is_fp ) {                                                    
ffc0bb5c:	40 9e 01 40 	bne-    cr7,ffc0bc9c <_Thread_Initialize+0x1e4>
  #endif                                                              
                                                                      
  /*                                                                  
   *  Allocate the extensions area for this thread                    
   */                                                                 
  if ( _Thread_Maximum_extensions ) {                                 
ffc0bb60:	3f a0 00 00 	lis     r29,0                                  
      fp_area = _Workspace_Allocate( CONTEXT_FP_SIZE );               
      if ( !fp_area )                                                 
        goto failed;                                                  
      fp_area = _Context_Fp_start( fp_area, 0 );                      
    }                                                                 
    the_thread->fp_context       = fp_area;                           
ffc0bb64:	91 3f 01 38 	stw     r9,312(r31)                            
  Watchdog_Service_routine_entry  routine,                            
  Objects_Id                      id,                                 
  void                           *user_data                           
)                                                                     
{                                                                     
  the_watchdog->state     = WATCHDOG_INACTIVE;                        
ffc0bb68:	38 00 00 00 	li      r0,0                                   
  #endif                                                              
                                                                      
  /*                                                                  
   *  Allocate the extensions area for this thread                    
   */                                                                 
  if ( _Thread_Maximum_extensions ) {                                 
ffc0bb6c:	81 7d 27 4c 	lwz     r11,10060(r29)                         
      if ( !fp_area )                                                 
        goto failed;                                                  
      fp_area = _Context_Fp_start( fp_area, 0 );                      
    }                                                                 
    the_thread->fp_context       = fp_area;                           
    the_thread->Start.fp_context = fp_area;                           
ffc0bb70:	91 3f 00 d0 	stw     r9,208(r31)                            
  #endif                                                              
                                                                      
  /*                                                                  
   *  Allocate the extensions area for this thread                    
   */                                                                 
  if ( _Thread_Maximum_extensions ) {                                 
ffc0bb74:	2f 8b 00 00 	cmpwi   cr7,r11,0                              
ffc0bb78:	90 1f 00 50 	stw     r0,80(r31)                             
  the_watchdog->routine   = routine;                                  
ffc0bb7c:	90 1f 00 64 	stw     r0,100(r31)                            
  the_watchdog->id        = id;                                       
ffc0bb80:	90 1f 00 68 	stw     r0,104(r31)                            
  the_watchdog->user_data = user_data;                                
ffc0bb84:	90 1f 00 6c 	stw     r0,108(r31)                            
ffc0bb88:	40 9e 01 30 	bne-    cr7,ffc0bcb8 <_Thread_Initialize+0x200>
      (_Thread_Maximum_extensions + 1) * sizeof( void * )             
    );                                                                
    if ( !extensions_area )                                           
      goto failed;                                                    
  }                                                                   
  the_thread->extensions = (void **) extensions_area;                 
ffc0bb8c:	91 7f 01 48 	stw     r11,328(r31)                           
   *  Zero out all the allocated memory fields                        
   */                                                                 
  for ( i=0 ; i <= THREAD_API_LAST ; i++ )                            
    the_thread->API_Extensions[i] = NULL;                             
                                                                      
  extensions_area = NULL;                                             
ffc0bb90:	3b c0 00 00 	li      r30,0                                  
   *  General initialization                                          
   */                                                                 
                                                                      
  the_thread->Start.is_preemptible   = is_preemptible;                
  the_thread->Start.budget_algorithm = budget_algorithm;              
  the_thread->Start.budget_callout   = budget_callout;                
ffc0bb94:	80 01 00 38 	lwz     r0,56(r1)                              
  }                                                                   
                                                                      
  the_thread->Start.isr_level         = isr_level;                    
                                                                      
  the_thread->current_state           = STATES_DORMANT;               
  the_thread->Wait.queue              = NULL;                         
ffc0bb98:	3b a0 00 00 	li      r29,0                                  
                                                                      
  /*                                                                  
   *  General initialization                                          
   */                                                                 
                                                                      
  the_thread->Start.is_preemptible   = is_preemptible;                
ffc0bb9c:	9b 3f 00 b4 	stb     r25,180(r31)                           
  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 );                       
ffc0bba0:	7f e3 fb 78 	mr      r3,r31                                 
ffc0bba4:	7f 44 d3 78 	mr      r4,r26                                 
   *  General initialization                                          
   */                                                                 
                                                                      
  the_thread->Start.is_preemptible   = is_preemptible;                
  the_thread->Start.budget_algorithm = budget_algorithm;              
  the_thread->Start.budget_callout   = budget_callout;                
ffc0bba8:	90 1f 00 bc 	stw     r0,188(r31)                            
      case THREAD_CPU_BUDGET_ALGORITHM_CALLOUT:                       
	break;                                                               
    #endif                                                            
  }                                                                   
                                                                      
  the_thread->Start.isr_level         = isr_level;                    
ffc0bbac:	80 01 00 3c 	lwz     r0,60(r1)                              
  /*                                                                  
   *  General initialization                                          
   */                                                                 
                                                                      
  the_thread->Start.is_preemptible   = is_preemptible;                
  the_thread->Start.budget_algorithm = budget_algorithm;              
ffc0bbb0:	93 1f 00 b8 	stw     r24,184(r31)                           
      case THREAD_CPU_BUDGET_ALGORITHM_CALLOUT:                       
	break;                                                               
    #endif                                                            
  }                                                                   
                                                                      
  the_thread->Start.isr_level         = isr_level;                    
ffc0bbb4:	90 1f 00 c0 	stw     r0,192(r31)                            
                                                                      
  the_thread->current_state           = STATES_DORMANT;               
ffc0bbb8:	38 00 00 01 	li      r0,1                                   
ffc0bbbc:	90 1f 00 10 	stw     r0,16(r31)                             
  the_thread->Wait.queue              = NULL;                         
ffc0bbc0:	93 bf 00 44 	stw     r29,68(r31)                            
  the_thread->resource_count          = 0;                            
ffc0bbc4:	93 bf 00 1c 	stw     r29,28(r31)                            
  the_thread->real_priority           = priority;                     
ffc0bbc8:	93 5f 00 18 	stw     r26,24(r31)                            
  the_thread->Start.initial_priority  = priority;                     
ffc0bbcc:	93 5f 00 c4 	stw     r26,196(r31)                           
  _Thread_Set_priority( the_thread, priority );                       
ffc0bbd0:	48 00 09 29 	bl      ffc0c4f8 <_Thread_Set_priority>        
  Objects_Information *information,                                   
  Objects_Control     *the_object,                                    
  Objects_Name         name                                           
)                                                                     
{                                                                     
  _Objects_Set_local_object(                                          
ffc0bbd4:	a0 1f 00 0a 	lhz     r0,10(r31)                             
                                                                      
   _Thread_Stack_Free( the_thread );                                  
  return false;                                                       
                                                                      
                                                                      
}                                                                     
ffc0bbd8:	81 3c 00 1c 	lwz     r9,28(r28)                             
   *  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 );    
ffc0bbdc:	7f e3 fb 78 	mr      r3,r31                                 
  #if defined(RTEMS_DEBUG)                                            
    if ( index > information->maximum )                               
      return;                                                         
  #endif                                                              
                                                                      
  information->local_table[ index ] = the_object;                     
ffc0bbe0:	54 00 10 3a 	rlwinm  r0,r0,2,0,29                           
                                                                      
  /*                                                                  
   *  Initialize the CPU usage statistics                             
   */                                                                 
  #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                          
    _Timestamp_Set_to_zero( &the_thread->cpu_time_used );             
ffc0bbe4:	93 bf 00 84 	stw     r29,132(r31)                           
ffc0bbe8:	93 bf 00 88 	stw     r29,136(r31)                           
ffc0bbec:	7f e9 01 2e 	stwx    r31,r9,r0                              
    information,                                                      
    _Objects_Get_index( the_object->id ),                             
    the_object                                                        
  );                                                                  
                                                                      
  the_object->name = name;                                            
ffc0bbf0:	92 ff 00 0c 	stw     r23,12(r31)                            
   *  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 );    
ffc0bbf4:	48 00 12 49 	bl      ffc0ce3c <_User_extensions_Thread_create>
  if ( extension_status )                                             
ffc0bbf8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
    return true;                                                      
ffc0bbfc:	38 60 00 01 	li      r3,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 )                                             
ffc0bc00:	40 9e 00 60 	bne-    cr7,ffc0bc60 <_Thread_Initialize+0x1a8>
ffc0bc04:	2e 1b 00 00 	cmpwi   cr4,r27,0                              
ffc0bc08:	2d 9e 00 00 	cmpwi   cr3,r30,0                              
    return true;                                                      
                                                                      
failed:                                                               
  if ( the_thread->libc_reent )                                       
ffc0bc0c:	80 7f 01 3c 	lwz     r3,316(r31)                            
ffc0bc10:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0bc14:	41 9e 00 08 	beq-    cr7,ffc0bc1c <_Thread_Initialize+0x164>
    _Workspace_Free( the_thread->libc_reent );                        
ffc0bc18:	48 00 18 95 	bl      ffc0d4ac <_Workspace_Free>             
                                                                      
  for ( i=0 ; i <= THREAD_API_LAST ; i++ )                            
    if ( the_thread->API_Extensions[i] )                              
ffc0bc1c:	80 7f 01 40 	lwz     r3,320(r31)                            
ffc0bc20:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0bc24:	41 9e 00 08 	beq-    cr7,ffc0bc2c <_Thread_Initialize+0x174>
      _Workspace_Free( the_thread->API_Extensions[i] );               
ffc0bc28:	48 00 18 85 	bl      ffc0d4ac <_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] )                              
ffc0bc2c:	80 7f 01 44 	lwz     r3,324(r31)                            
ffc0bc30:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0bc34:	41 9e 00 08 	beq-    cr7,ffc0bc3c <_Thread_Initialize+0x184><== ALWAYS TAKEN
      _Workspace_Free( the_thread->API_Extensions[i] );               
ffc0bc38:	48 00 18 75 	bl      ffc0d4ac <_Workspace_Free>             <== NOT EXECUTED
                                                                      
  if ( extensions_area )                                              
ffc0bc3c:	41 8e 00 0c 	beq-    cr3,ffc0bc48 <_Thread_Initialize+0x190>
    (void) _Workspace_Free( extensions_area );                        
ffc0bc40:	7f c3 f3 78 	mr      r3,r30                                 
ffc0bc44:	48 00 18 69 	bl      ffc0d4ac <_Workspace_Free>             
                                                                      
  #if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )      
    if ( fp_area )                                                    
ffc0bc48:	41 92 00 0c 	beq-    cr4,ffc0bc54 <_Thread_Initialize+0x19c>
      (void) _Workspace_Free( fp_area );                              
ffc0bc4c:	7f 63 db 78 	mr      r3,r27                                 
ffc0bc50:	48 00 18 5d 	bl      ffc0d4ac <_Workspace_Free>             
  #endif                                                              
                                                                      
   _Thread_Stack_Free( the_thread );                                  
ffc0bc54:	7f e3 fb 78 	mr      r3,r31                                 
ffc0bc58:	48 00 0b 59 	bl      ffc0c7b0 <_Thread_Stack_Free>          
  return false;                                                       
ffc0bc5c:	38 60 00 00 	li      r3,0                                   
                                                                      
                                                                      
}                                                                     
ffc0bc60:	80 01 00 34 	lwz     r0,52(r1)                              
ffc0bc64:	81 81 00 08 	lwz     r12,8(r1)                              
ffc0bc68:	7c 08 03 a6 	mtlr    r0                                     
ffc0bc6c:	82 e1 00 0c 	lwz     r23,12(r1)                             
ffc0bc70:	83 01 00 10 	lwz     r24,16(r1)                             
ffc0bc74:	7d 81 81 20 	mtcrf   24,r12                                 
ffc0bc78:	83 21 00 14 	lwz     r25,20(r1)                             
ffc0bc7c:	83 41 00 18 	lwz     r26,24(r1)                             
ffc0bc80:	83 61 00 1c 	lwz     r27,28(r1)                             
ffc0bc84:	83 81 00 20 	lwz     r28,32(r1)                             
ffc0bc88:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc0bc8c:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc0bc90:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc0bc94:	38 21 00 30 	addi    r1,r1,48                               
ffc0bc98:	4e 80 00 20 	blr                                            
  /*                                                                  
   *  Allocate the floating point area for this thread                
   */                                                                 
  #if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )      
    if ( is_fp ) {                                                    
      fp_area = _Workspace_Allocate( CONTEXT_FP_SIZE );               
ffc0bc9c:	38 60 01 08 	li      r3,264                                 
ffc0bca0:	48 00 17 d9 	bl      ffc0d478 <_Workspace_Allocate>         
      if ( !fp_area )                                                 
ffc0bca4:	2e 03 00 00 	cmpwi   cr4,r3,0                               
ffc0bca8:	7c 7b 1b 78 	mr      r27,r3                                 
ffc0bcac:	41 92 00 54 	beq-    cr4,ffc0bd00 <_Thread_Initialize+0x248>
ffc0bcb0:	7c 69 1b 78 	mr      r9,r3                                  
ffc0bcb4:	4b ff fe ac 	b       ffc0bb60 <_Thread_Initialize+0xa8>     
                                                                      
  /*                                                                  
   *  Allocate the extensions area for this thread                    
   */                                                                 
  if ( _Thread_Maximum_extensions ) {                                 
    extensions_area = _Workspace_Allocate(                            
ffc0bcb8:	39 6b 00 01 	addi    r11,r11,1                              
ffc0bcbc:	55 63 10 3a 	rlwinm  r3,r11,2,0,29                          
ffc0bcc0:	48 00 17 b9 	bl      ffc0d478 <_Workspace_Allocate>         
      (_Thread_Maximum_extensions + 1) * sizeof( void * )             
    );                                                                
    if ( !extensions_area )                                           
ffc0bcc4:	2d 83 00 00 	cmpwi   cr3,r3,0                               
ffc0bcc8:	7c 7e 1b 78 	mr      r30,r3                                 
ffc0bccc:	41 8e 00 40 	beq-    cr3,ffc0bd0c <_Thread_Initialize+0x254>
      goto failed;                                                    
  }                                                                   
  the_thread->extensions = (void **) extensions_area;                 
ffc0bcd0:	90 7f 01 48 	stw     r3,328(r31)                            
   * 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++ )              
ffc0bcd4:	38 00 00 00 	li      r0,0                                   
      (_Thread_Maximum_extensions + 1) * sizeof( void * )             
    );                                                                
    if ( !extensions_area )                                           
      goto failed;                                                    
  }                                                                   
  the_thread->extensions = (void **) extensions_area;                 
ffc0bcd8:	39 20 00 00 	li      r9,0                                   
ffc0bcdc:	81 5d 27 4c 	lwz     r10,10060(r29)                         
   * 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;                               
ffc0bce0:	39 60 00 00 	li      r11,0                                  
   * 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++ )              
ffc0bce4:	39 29 00 01 	addi    r9,r9,1                                
ffc0bce8:	7f 8a 48 40 	cmplw   cr7,r10,r9                             
      the_thread->extensions[i] = NULL;                               
ffc0bcec:	54 00 10 3a 	rlwinm  r0,r0,2,0,29                           
ffc0bcf0:	7d 7e 01 2e 	stwx    r11,r30,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++ )              
ffc0bcf4:	7d 20 4b 78 	mr      r0,r9                                  
ffc0bcf8:	40 9c ff ec 	bge+    cr7,ffc0bce4 <_Thread_Initialize+0x22c>
ffc0bcfc:	4b ff fe 98 	b       ffc0bb94 <_Thread_Initialize+0xdc>     
ffc0bd00:	4d 90 00 00 	mcrf    cr3,cr4                                
   *  Zero out all the allocated memory fields                        
   */                                                                 
  for ( i=0 ; i <= THREAD_API_LAST ; i++ )                            
    the_thread->API_Extensions[i] = NULL;                             
                                                                      
  extensions_area = NULL;                                             
ffc0bd04:	3b c0 00 00 	li      r30,0                                  
ffc0bd08:	4b ff ff 04 	b       ffc0bc0c <_Thread_Initialize+0x154>    
ffc0bd0c:	2e 1b 00 00 	cmpwi   cr4,r27,0                              
ffc0bd10:	4b ff fe fc 	b       ffc0bc0c <_Thread_Initialize+0x154>    
                                                                      

ffc0d5ac <_Thread_Restart>: bool _Thread_Restart( Thread_Control *the_thread, void *pointer_argument, Thread_Entry_numeric_type numeric_argument ) {
ffc0d5ac:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0d5b0:	7c 08 02 a6 	mflr    r0                                     
ffc0d5b4:	90 01 00 1c 	stw     r0,28(r1)                              
 */                                                                   
RTEMS_INLINE_ROUTINE bool _States_Is_dormant (                        
  States_Control the_states                                           
)                                                                     
{                                                                     
   return (the_states & STATES_DORMANT);                              
ffc0d5b8:	80 03 00 10 	lwz     r0,16(r3)                              
ffc0d5bc:	93 e1 00 14 	stw     r31,20(r1)                             
ffc0d5c0:	7c 7f 1b 78 	mr      r31,r3                                 
  if ( !_States_Is_dormant( the_thread->current_state ) ) {           
ffc0d5c4:	70 09 00 01 	andi.   r9,r0,1                                
bool _Thread_Restart(                                                 
  Thread_Control            *the_thread,                              
  void                      *pointer_argument,                        
  Thread_Entry_numeric_type  numeric_argument                         
)                                                                     
{                                                                     
ffc0d5c8:	93 c1 00 10 	stw     r30,16(r1)                             
      _Thread_Restart_self();                                         
                                                                      
    return true;                                                      
  }                                                                   
                                                                      
  return false;                                                       
ffc0d5cc:	38 00 00 00 	li      r0,0                                   
  Thread_Control            *the_thread,                              
  void                      *pointer_argument,                        
  Thread_Entry_numeric_type  numeric_argument                         
)                                                                     
{                                                                     
  if ( !_States_Is_dormant( the_thread->current_state ) ) {           
ffc0d5d0:	41 82 00 20 	beq-    ffc0d5f0 <_Thread_Restart+0x44>        
                                                                      
    return true;                                                      
  }                                                                   
                                                                      
  return false;                                                       
}                                                                     
ffc0d5d4:	7c 03 03 78 	mr      r3,r0                                  
ffc0d5d8:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0d5dc:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0d5e0:	7c 08 03 a6 	mtlr    r0                                     
ffc0d5e4:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0d5e8:	38 21 00 18 	addi    r1,r1,24                               
ffc0d5ec:	4e 80 00 20 	blr                                            
  Thread_Entry_numeric_type  numeric_argument                         
)                                                                     
{                                                                     
  if ( !_States_Is_dormant( the_thread->current_state ) ) {           
                                                                      
    _Thread_Set_transient( the_thread );                              
ffc0d5f0:	90 81 00 08 	stw     r4,8(r1)                               
                                                                      
RTEMS_INLINE_ROUTINE bool _Thread_Is_executing (                      
  const Thread_Control *the_thread                                    
)                                                                     
{                                                                     
  return ( the_thread == _Thread_Executing );                         
ffc0d5f4:	3f c0 00 00 	lis     r30,0                                  
ffc0d5f8:	3b de 2d e4 	addi    r30,r30,11748                          
ffc0d5fc:	90 a1 00 0c 	stw     r5,12(r1)                              
ffc0d600:	48 00 01 e1 	bl      ffc0d7e0 <_Thread_Set_transient>       
                                                                      
    _Thread_Reset( the_thread, pointer_argument, numeric_argument );  
ffc0d604:	7f e3 fb 78 	mr      r3,r31                                 
ffc0d608:	80 81 00 08 	lwz     r4,8(r1)                               
ffc0d60c:	80 a1 00 0c 	lwz     r5,12(r1)                              
ffc0d610:	48 00 3f 91 	bl      ffc115a0 <_Thread_Reset>               
                                                                      
    _Thread_Load_environment( the_thread );                           
ffc0d614:	7f e3 fb 78 	mr      r3,r31                                 
ffc0d618:	48 00 3b 51 	bl      ffc11168 <_Thread_Load_environment>    
                                                                      
    _Thread_Ready( the_thread );                                      
ffc0d61c:	7f e3 fb 78 	mr      r3,r31                                 
ffc0d620:	48 00 3e a9 	bl      ffc114c8 <_Thread_Ready>               
                                                                      
    _User_extensions_Thread_restart( the_thread );                    
ffc0d624:	7f e3 fb 78 	mr      r3,r31                                 
ffc0d628:	48 00 0a c1 	bl      ffc0e0e8 <_User_extensions_Thread_restart>
                                                                      
    if ( _Thread_Is_executing ( the_thread ) )                        
ffc0d62c:	81 3e 00 0c 	lwz     r9,12(r30)                             
      _Thread_Restart_self();                                         
                                                                      
    return true;                                                      
ffc0d630:	38 00 00 01 	li      r0,1                                   
                                                                      
    _Thread_Ready( the_thread );                                      
                                                                      
    _User_extensions_Thread_restart( the_thread );                    
                                                                      
    if ( _Thread_Is_executing ( the_thread ) )                        
ffc0d634:	7f 9f 48 00 	cmpw    cr7,r31,r9                             
ffc0d638:	40 9e ff 9c 	bne+    cr7,ffc0d5d4 <_Thread_Restart+0x28>    
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Restart_self( void )                
{                                                                     
#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )        
  if ( _Thread_Executing->fp_context != NULL )                        
ffc0d63c:	80 1f 01 38 	lwz     r0,312(r31)                            
ffc0d640:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0d644:	41 9e 00 10 	beq-    cr7,ffc0d654 <_Thread_Restart+0xa8>    <== NEVER TAKEN
    _Context_Restore_fp( &_Thread_Executing->fp_context );            
ffc0d648:	38 7f 01 38 	addi    r3,r31,312                             
ffc0d64c:	48 01 03 35 	bl      ffc1d980 <_CPU_Context_restore_fp>     
ffc0d650:	83 fe 00 0c 	lwz     r31,12(r30)                            
#endif                                                                
                                                                      
  _CPU_Context_Restart_self( &_Thread_Executing->Registers );         
ffc0d654:	38 7f 00 d8 	addi    r3,r31,216                             
ffc0d658:	48 01 04 e9 	bl      ffc1db40 <_CPU_Context_restore>        
      _Thread_Restart_self();                                         
                                                                      
    return true;                                                      
ffc0d65c:	38 00 00 01 	li      r0,1                                   <== NOT EXECUTED
ffc0d660:	4b ff ff 74 	b       ffc0d5d4 <_Thread_Restart+0x28>        <== NOT EXECUTED
                                                                      

ffc106a8 <_Thread_Resume>: static inline uint32_t ppc_interrupt_disable( void ) { uint32_t level; uint32_t mask; asm volatile (
ffc106a8:	7d 20 00 a6 	mfmsr   r9                                     
ffc106ac:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc106b0:	7d 20 00 78 	andc    r0,r9,r0                               
ffc106b4:	7c 00 01 24 	mtmsr   r0                                     
  ISR_Level       level;                                              
  States_Control  current_state;                                      
                                                                      
  _ISR_Disable( level );                                              
                                                                      
  current_state = the_thread->current_state;                          
ffc106b8:	80 03 00 10 	lwz     r0,16(r3)                              
  if ( current_state & STATES_SUSPENDED ) {                           
ffc106bc:	70 0b 00 02 	andi.   r11,r0,2                               
ffc106c0:	41 82 00 9c 	beq-    ffc1075c <_Thread_Resume+0xb4>         <== NEVER TAKEN
RTEMS_INLINE_ROUTINE States_Control _States_Clear (                   
  States_Control states_to_clear,                                     
  States_Control current_state                                        
)                                                                     
{                                                                     
   return (current_state & ~states_to_clear);                         
ffc106c4:	54 00 07 fa 	rlwinm  r0,r0,0,31,29                          
    current_state =                                                   
    the_thread->current_state = _States_Clear(STATES_SUSPENDED, current_state);
                                                                      
    if ( _States_Is_ready( current_state ) ) {                        
ffc106c8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
  _ISR_Disable( level );                                              
                                                                      
  current_state = the_thread->current_state;                          
  if ( current_state & STATES_SUSPENDED ) {                           
    current_state =                                                   
    the_thread->current_state = _States_Clear(STATES_SUSPENDED, current_state);
ffc106cc:	90 03 00 10 	stw     r0,16(r3)                              
                                                                      
    if ( _States_Is_ready( current_state ) ) {                        
ffc106d0:	40 9e 00 8c 	bne-    cr7,ffc1075c <_Thread_Resume+0xb4>     
                                                                      
RTEMS_INLINE_ROUTINE void _Priority_bit_map_Add (                     
  Priority_bit_map_Information *the_priority_map                      
)                                                                     
{                                                                     
  *the_priority_map->minor |= the_priority_map->ready_minor;          
ffc106d4:	81 43 00 90 	lwz     r10,144(r3)                            
ffc106d8:	80 03 00 98 	lwz     r0,152(r3)                             
ffc106dc:	81 0a 00 00 	lwz     r8,0(r10)                              
                                                                      
      _Priority_bit_map_Add( &the_thread->Priority_map );             
                                                                      
      _Chain_Append_unprotected(the_thread->ready, &the_thread->Object.Node);
ffc106e0:	81 63 00 8c 	lwz     r11,140(r3)                            
ffc106e4:	7d 00 03 78 	or      r0,r8,r0                               
ffc106e8:	90 0a 00 00 	stw     r0,0(r10)                              
  _Priority_Major_bit_map  |= the_priority_map->ready_major;          
ffc106ec:	3d 00 00 00 	lis     r8,0                                   
ffc106f0:	80 e8 27 6c 	lwz     r7,10092(r8)                           
ffc106f4:	80 03 00 94 	lwz     r0,148(r3)                             
)                                                                     
{                                                                     
  Chain_Node *old_last_node;                                          
                                                                      
  the_node->next      = _Chain_Tail(the_chain);                       
  old_last_node       = the_chain->last;                              
ffc106f8:	81 4b 00 08 	lwz     r10,8(r11)                             
ffc106fc:	7c e7 03 78 	or      r7,r7,r0                               
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc10700:	38 0b 00 04 	addi    r0,r11,4                               
ffc10704:	90 e8 27 6c 	stw     r7,10092(r8)                           
  Chain_Node    *the_node                                             
)                                                                     
{                                                                     
  Chain_Node *old_last_node;                                          
                                                                      
  the_node->next      = _Chain_Tail(the_chain);                       
ffc10708:	90 03 00 00 	stw     r0,0(r3)                               
  old_last_node       = the_chain->last;                              
  the_chain->last     = the_node;                                     
ffc1070c:	90 6b 00 08 	stw     r3,8(r11)                              
  old_last_node->next = the_node;                                     
ffc10710:	90 6a 00 00 	stw     r3,0(r10)                              
  the_node->previous  = old_last_node;                                
ffc10714:	91 43 00 04 	stw     r10,4(r3)                              
                                                                      
static inline void ppc_interrupt_flash( uint32_t level )              
{                                                                     
  uint32_t current_level;                                             
                                                                      
  asm volatile (                                                      
ffc10718:	7c 00 00 a6 	mfmsr   r0                                     
ffc1071c:	7d 20 01 24 	mtmsr   r9                                     
ffc10720:	7c 00 01 24 	mtmsr   r0                                     
                                                                      
      _ISR_Flash( level );                                            
                                                                      
      if ( the_thread->current_priority < _Thread_Heir->current_priority ) {
ffc10724:	3d 60 00 00 	lis     r11,0                                  
ffc10728:	80 03 00 14 	lwz     r0,20(r3)                              
ffc1072c:	39 6b 2e 44 	addi    r11,r11,11844                          
ffc10730:	81 4b 00 10 	lwz     r10,16(r11)                            
ffc10734:	81 4a 00 14 	lwz     r10,20(r10)                            
ffc10738:	7f 80 50 40 	cmplw   cr7,r0,r10                             
ffc1073c:	40 9c 00 20 	bge-    cr7,ffc1075c <_Thread_Resume+0xb4>     
        _Thread_Heir = the_thread;                                    
        if ( _Thread_Executing->is_preemptible ||                     
ffc10740:	81 4b 00 0c 	lwz     r10,12(r11)                            
      _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;                                    
ffc10744:	90 6b 00 10 	stw     r3,16(r11)                             
        if ( _Thread_Executing->is_preemptible ||                     
ffc10748:	89 4a 00 74 	lbz     r10,116(r10)                           
ffc1074c:	2f 8a 00 00 	cmpwi   cr7,r10,0                              
ffc10750:	41 9e 00 14 	beq-    cr7,ffc10764 <_Thread_Resume+0xbc>     
             the_thread->current_priority == 0 )                      
          _Thread_Dispatch_necessary = true;                          
ffc10754:	38 00 00 01 	li      r0,1                                   
ffc10758:	98 0b 00 18 	stb     r0,24(r11)                             
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc1075c:	7d 20 01 24 	mtmsr   r9                                     
      }                                                               
    }                                                                 
  }                                                                   
                                                                      
  _ISR_Enable( level );                                               
}                                                                     
ffc10760:	4e 80 00 20 	blr                                            
                                                                      
      _ISR_Flash( level );                                            
                                                                      
      if ( the_thread->current_priority < _Thread_Heir->current_priority ) {
        _Thread_Heir = the_thread;                                    
        if ( _Thread_Executing->is_preemptible ||                     
ffc10764:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc10768:	41 9e ff ec 	beq+    cr7,ffc10754 <_Thread_Resume+0xac>     <== NEVER TAKEN
ffc1076c:	4b ff ff f0 	b       ffc1075c <_Thread_Resume+0xb4>         
                                                                      

ffc0ca70 <_Thread_Yield_processor>: { ISR_Level level; Thread_Control *executing; Chain_Control *ready; executing = _Thread_Executing;
ffc0ca70:	3d 40 00 00 	lis     r10,0                                  
ffc0ca74:	39 4a 2d 64 	addi    r10,r10,11620                          
ffc0ca78:	81 2a 00 0c 	lwz     r9,12(r10)                             
  ready     = executing->ready;                                       
ffc0ca7c:	81 69 00 8c 	lwz     r11,140(r9)                            
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0ca80:	7c 00 00 a6 	mfmsr   r0                                     
ffc0ca84:	7d 10 42 a6 	mfsprg  r8,0                                   
ffc0ca88:	7c 08 40 78 	andc    r8,r0,r8                               
ffc0ca8c:	7d 00 01 24 	mtmsr   r8                                     
    }                                                                 
    else if ( !_Thread_Is_heir( executing ) )                         
      _Thread_Dispatch_necessary = true;                              
                                                                      
  _ISR_Enable( level );                                               
}                                                                     
ffc0ca90:	81 0b 00 08 	lwz     r8,8(r11)                              
  Chain_Control  *ready;                                              
                                                                      
  executing = _Thread_Executing;                                      
  ready     = executing->ready;                                       
  _ISR_Disable( level );                                              
    if ( !_Chain_Has_only_one_node( ready ) ) {                       
ffc0ca94:	80 eb 00 00 	lwz     r7,0(r11)                              
ffc0ca98:	7f 87 40 00 	cmpw    cr7,r7,r8                              
ffc0ca9c:	41 9e 00 5c 	beq-    cr7,ffc0caf8 <_Thread_Yield_processor+0x88>
)                                                                     
{                                                                     
  Chain_Node *next;                                                   
  Chain_Node *previous;                                               
                                                                      
  next           = the_node->next;                                    
ffc0caa0:	80 e9 00 00 	lwz     r7,0(r9)                               
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc0caa4:	38 ab 00 04 	addi    r5,r11,4                               
{                                                                     
  Chain_Node *next;                                                   
  Chain_Node *previous;                                               
                                                                      
  next           = the_node->next;                                    
  previous       = the_node->previous;                                
ffc0caa8:	80 c9 00 04 	lwz     r6,4(r9)                               
  next->previous = previous;                                          
  previous->next = next;                                              
ffc0caac:	90 e6 00 00 	stw     r7,0(r6)                               
  Chain_Node *next;                                                   
  Chain_Node *previous;                                               
                                                                      
  next           = the_node->next;                                    
  previous       = the_node->previous;                                
  next->previous = previous;                                          
ffc0cab0:	90 c7 00 04 	stw     r6,4(r7)                               
  Chain_Node    *the_node                                             
)                                                                     
{                                                                     
  Chain_Node *old_last_node;                                          
                                                                      
  the_node->next      = _Chain_Tail(the_chain);                       
ffc0cab4:	90 a9 00 00 	stw     r5,0(r9)                               
  old_last_node       = the_chain->last;                              
  the_chain->last     = the_node;                                     
ffc0cab8:	91 2b 00 08 	stw     r9,8(r11)                              
  old_last_node->next = the_node;                                     
ffc0cabc:	91 28 00 00 	stw     r9,0(r8)                               
  the_node->previous  = old_last_node;                                
ffc0cac0:	91 09 00 04 	stw     r8,4(r9)                               
                                                                      
static inline void ppc_interrupt_flash( uint32_t level )              
{                                                                     
  uint32_t current_level;                                             
                                                                      
  asm volatile (                                                      
ffc0cac4:	7d 00 00 a6 	mfmsr   r8                                     
ffc0cac8:	7c 00 01 24 	mtmsr   r0                                     
ffc0cacc:	7d 00 01 24 	mtmsr   r8                                     
      _Chain_Extract_unprotected( &executing->Object.Node );          
      _Chain_Append_unprotected( ready, &executing->Object.Node );    
                                                                      
      _ISR_Flash( level );                                            
                                                                      
      if ( _Thread_Is_heir( executing ) )                             
ffc0cad0:	81 0a 00 10 	lwz     r8,16(r10)                             
ffc0cad4:	7f 89 40 00 	cmpw    cr7,r9,r8                              
ffc0cad8:	41 9e 00 14 	beq-    cr7,ffc0caec <_Thread_Yield_processor+0x7c><== ALWAYS TAKEN
        _Thread_Heir = (Thread_Control *) ready->first;               
      _Thread_Dispatch_necessary = true;                              
    }                                                                 
    else if ( !_Thread_Is_heir( executing ) )                         
      _Thread_Dispatch_necessary = true;                              
ffc0cadc:	39 20 00 01 	li      r9,1                                   
ffc0cae0:	99 2a 00 18 	stb     r9,24(r10)                             
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0cae4:	7c 00 01 24 	mtmsr   r0                                     
                                                                      
  _ISR_Enable( level );                                               
}                                                                     
ffc0cae8:	4e 80 00 20 	blr                                            
      _Chain_Append_unprotected( ready, &executing->Object.Node );    
                                                                      
      _ISR_Flash( level );                                            
                                                                      
      if ( _Thread_Is_heir( executing ) )                             
        _Thread_Heir = (Thread_Control *) ready->first;               
ffc0caec:	81 2b 00 00 	lwz     r9,0(r11)                              
ffc0caf0:	91 2a 00 10 	stw     r9,16(r10)                             
ffc0caf4:	4b ff ff e8 	b       ffc0cadc <_Thread_Yield_processor+0x6c>
      _Thread_Dispatch_necessary = true;                              
    }                                                                 
    else if ( !_Thread_Is_heir( executing ) )                         
ffc0caf8:	81 6a 00 10 	lwz     r11,16(r10)                            
ffc0cafc:	7f 89 58 00 	cmpw    cr7,r9,r11                             
ffc0cb00:	40 9e ff dc 	bne+    cr7,ffc0cadc <_Thread_Yield_processor+0x6c><== NEVER TAKEN
ffc0cb04:	4b ff ff e0 	b       ffc0cae4 <_Thread_Yield_processor+0x74>
                                                                      

ffc0c0e0 <_Thread_queue_Enqueue_priority>: Priority_Control priority; States_Control block_state; _Chain_Initialize_empty( &the_thread->Wait.Block2n ); priority = the_thread->current_priority;
ffc0c0e0:	80 04 00 14 	lwz     r0,20(r4)                              
ffc0c0e4:	39 44 00 3c 	addi    r10,r4,60                              
Thread_blocking_operation_States _Thread_queue_Enqueue_priority (     
  Thread_queue_Control *the_thread_queue,                             
  Thread_Control       *the_thread,                                   
  ISR_Level            *level_p                                       
)                                                                     
{                                                                     
ffc0c0e8:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0c0ec:	7c 69 1b 78 	mr      r9,r3                                  
  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;                             
                                                                      
  if ( _Thread_queue_Is_reverse_search( priority ) )                  
ffc0c0f0:	70 0b 00 20 	andi.   r11,r0,32                              
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
ffc0c0f4:	91 44 00 38 	stw     r10,56(r4)                             
  Chain_Node          *previous_node;                                 
  Chain_Node          *search_node;                                   
  Priority_Control     priority;                                      
  States_Control       block_state;                                   
                                                                      
  _Chain_Initialize_empty( &the_thread->Wait.Block2n );               
ffc0c0f8:	39 64 00 38 	addi    r11,r4,56                              
  the_chain->permanent_null = NULL;                                   
ffc0c0fc:	39 40 00 00 	li      r10,0                                  
Thread_blocking_operation_States _Thread_queue_Enqueue_priority (     
  Thread_queue_Control *the_thread_queue,                             
  Thread_Control       *the_thread,                                   
  ISR_Level            *level_p                                       
)                                                                     
{                                                                     
ffc0c100:	93 a1 00 0c 	stw     r29,12(r1)                             
                                                                      
RTEMS_INLINE_ROUTINE uint32_t   _Thread_queue_Header_number (         
  Priority_Control the_priority                                       
)                                                                     
{                                                                     
  return (the_priority / TASK_QUEUE_DATA_PRIORITIES_PER_HEADER);      
ffc0c104:	54 03 d1 be 	rlwinm  r3,r0,26,6,31                          
ffc0c108:	93 c1 00 10 	stw     r30,16(r1)                             
ffc0c10c:	93 e1 00 14 	stw     r31,20(r1)                             
ffc0c110:	91 44 00 3c 	stw     r10,60(r4)                             
  the_chain->last           = _Chain_Head(the_chain);                 
ffc0c114:	91 64 00 40 	stw     r11,64(r4)                             
  _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 ];  
  block_state  = the_thread_queue->state;                             
ffc0c118:	81 09 00 38 	lwz     r8,56(r9)                              
                                                                      
  if ( _Thread_queue_Is_reverse_search( priority ) )                  
ffc0c11c:	40 82 00 ac 	bne-    ffc0c1c8 <_Thread_queue_Enqueue_priority+0xe8>
ffc0c120:	1c 63 00 0c 	mulli   r3,r3,12                               
    goto restart_reverse_search;                                      
                                                                      
restart_forward_search:                                               
  search_priority = PRIORITY_MINIMUM - 1;                             
  _ISR_Disable( level );                                              
  search_thread = (Thread_Control *) header->first;                   
ffc0c124:	7c 69 1a 14 	add     r3,r9,r3                               
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc0c128:	39 83 00 04 	addi    r12,r3,4                               
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0c12c:	7c c0 00 a6 	mfmsr   r6                                     
ffc0c130:	7d 70 42 a6 	mfsprg  r11,0                                  
ffc0c134:	7c cb 58 78 	andc    r11,r6,r11                             
ffc0c138:	7d 60 01 24 	mtmsr   r11                                    
ffc0c13c:	7c df 33 78 	mr      r31,r6                                 
ffc0c140:	81 63 00 00 	lwz     r11,0(r3)                              
  while ( !_Chain_Is_tail( header, (Chain_Node *)search_thread ) ) {  
ffc0c144:	7f 8b 60 00 	cmpw    cr7,r11,r12                            
ffc0c148:	41 9e 01 b4 	beq-    cr7,ffc0c2fc <_Thread_queue_Enqueue_priority+0x21c>
    search_priority = search_thread->current_priority;                
ffc0c14c:	81 4b 00 14 	lwz     r10,20(r11)                            
    if ( priority <= search_priority )                                
ffc0c150:	7f 80 50 40 	cmplw   cr7,r0,r10                             
ffc0c154:	40 9d 00 50 	ble-    cr7,ffc0c1a4 <_Thread_queue_Enqueue_priority+0xc4>
                                                                      
static inline void ppc_interrupt_flash( uint32_t level )              
{                                                                     
  uint32_t current_level;                                             
                                                                      
  asm volatile (                                                      
ffc0c158:	7c e0 00 a6 	mfmsr   r7                                     
ffc0c15c:	7c c0 01 24 	mtmsr   r6                                     
ffc0c160:	7c e0 01 24 	mtmsr   r7                                     
RTEMS_INLINE_ROUTINE bool _States_Are_set (                           
  States_Control the_states,                                          
  States_Control mask                                                 
)                                                                     
{                                                                     
   return ( (the_states & mask) != STATES_READY);                     
ffc0c164:	80 eb 00 10 	lwz     r7,16(r11)                             
    search_priority = search_thread->current_priority;                
    if ( priority <= search_priority )                                
      break;                                                          
#endif                                                                
    _ISR_Flash( level );                                              
    if ( !_States_Are_set( search_thread->current_state, block_state) ) {
ffc0c168:	7d 1d 38 39 	and.    r29,r8,r7                              
ffc0c16c:	40 a2 00 2c 	bne+    ffc0c198 <_Thread_queue_Enqueue_priority+0xb8><== ALWAYS TAKEN
ffc0c170:	48 00 01 1c 	b       ffc0c28c <_Thread_queue_Enqueue_priority+0x1ac><== NOT EXECUTED
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 ) ) {  
    search_priority = search_thread->current_priority;                
ffc0c174:	81 4b 00 14 	lwz     r10,20(r11)                            
    if ( priority <= search_priority )                                
ffc0c178:	7f 80 50 40 	cmplw   cr7,r0,r10                             
ffc0c17c:	40 9d 00 28 	ble-    cr7,ffc0c1a4 <_Thread_queue_Enqueue_priority+0xc4>
ffc0c180:	7c e0 00 a6 	mfmsr   r7                                     
ffc0c184:	7c c0 01 24 	mtmsr   r6                                     
ffc0c188:	7c e0 01 24 	mtmsr   r7                                     
ffc0c18c:	80 eb 00 10 	lwz     r7,16(r11)                             
    search_priority = search_thread->current_priority;                
    if ( priority <= search_priority )                                
      break;                                                          
#endif                                                                
    _ISR_Flash( level );                                              
    if ( !_States_Are_set( search_thread->current_state, block_state) ) {
ffc0c190:	7d 1e 38 39 	and.    r30,r8,r7                              
ffc0c194:	41 82 00 f8 	beq-    ffc0c28c <_Thread_queue_Enqueue_priority+0x1ac><== NEVER TAKEN
      _ISR_Enable( level );                                           
      goto restart_forward_search;                                    
    }                                                                 
    search_thread =                                                   
       (Thread_Control *)search_thread->Object.Node.next;             
ffc0c198:	81 6b 00 00 	lwz     r11,0(r11)                             
                                                                      
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 ) ) {  
ffc0c19c:	7f 8b 60 00 	cmpw    cr7,r11,r12                            
ffc0c1a0:	40 9e ff d4 	bne+    cr7,ffc0c174 <_Thread_queue_Enqueue_priority+0x94>
    }                                                                 
    search_thread =                                                   
       (Thread_Control *)search_thread->Object.Node.next;             
  }                                                                   
                                                                      
  if ( the_thread_queue->sync_state !=                                
ffc0c1a4:	80 69 00 30 	lwz     r3,48(r9)                              
ffc0c1a8:	2f 83 00 01 	cmpwi   cr7,r3,1                               
ffc0c1ac:	41 9e 00 e8 	beq-    cr7,ffc0c294 <_Thread_queue_Enqueue_priority+0x1b4>
   *  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;                                                   
ffc0c1b0:	93 e5 00 00 	stw     r31,0(r5)                              
  return the_thread_queue->sync_state;                                
}                                                                     
ffc0c1b4:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0c1b8:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0c1bc:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0c1c0:	38 21 00 18 	addi    r1,r1,24                               
ffc0c1c4:	4e 80 00 20 	blr                                            
                                                                      
  _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 ];  
ffc0c1c8:	1c 63 00 0c 	mulli   r3,r3,12                               
ffc0c1cc:	3f c0 00 00 	lis     r30,0                                  
ffc0c1d0:	7c 69 1a 14 	add     r3,r9,r3                               
ffc0c1d4:	3b de 26 64 	addi    r30,r30,9828                           
                                                                      
restart_reverse_search:                                               
  search_priority     = PRIORITY_MAXIMUM + 1;                         
                                                                      
  _ISR_Disable( level );                                              
  search_thread = (Thread_Control *) header->last;                    
ffc0c1d8:	7c 6c 1b 78 	mr      r12,r3                                 
  the_thread->Wait.queue = the_thread_queue;                          
  _ISR_Enable( level );                                               
  return THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED;                  
                                                                      
restart_reverse_search:                                               
  search_priority     = PRIORITY_MAXIMUM + 1;                         
ffc0c1dc:	89 5e 00 00 	lbz     r10,0(r30)                             
ffc0c1e0:	39 4a 00 01 	addi    r10,r10,1                              
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0c1e4:	7c c0 00 a6 	mfmsr   r6                                     
ffc0c1e8:	7d 70 42 a6 	mfsprg  r11,0                                  
ffc0c1ec:	7c cb 58 78 	andc    r11,r6,r11                             
ffc0c1f0:	7d 60 01 24 	mtmsr   r11                                    
ffc0c1f4:	7c df 33 78 	mr      r31,r6                                 
                                                                      
  _ISR_Disable( level );                                              
  search_thread = (Thread_Control *) header->last;                    
ffc0c1f8:	81 6c 00 08 	lwz     r11,8(r12)                             
  while ( !_Chain_Is_head( header, (Chain_Node *)search_thread ) ) {  
ffc0c1fc:	7f 8b 18 00 	cmpw    cr7,r11,r3                             
ffc0c200:	40 be 00 2c 	bne+    cr7,ffc0c22c <_Thread_queue_Enqueue_priority+0x14c>
ffc0c204:	48 00 00 34 	b       ffc0c238 <_Thread_queue_Enqueue_priority+0x158>
                                                                      
static inline void ppc_interrupt_flash( uint32_t level )              
{                                                                     
  uint32_t current_level;                                             
                                                                      
  asm volatile (                                                      
ffc0c208:	7c e0 00 a6 	mfmsr   r7                                     
ffc0c20c:	7c c0 01 24 	mtmsr   r6                                     
ffc0c210:	7c e0 01 24 	mtmsr   r7                                     
ffc0c214:	80 eb 00 10 	lwz     r7,16(r11)                             
    search_priority = search_thread->current_priority;                
    if ( priority >= search_priority )                                
      break;                                                          
#endif                                                                
    _ISR_Flash( level );                                              
    if ( !_States_Are_set( search_thread->current_state, block_state) ) {
ffc0c218:	7d 1d 38 39 	and.    r29,r8,r7                              
ffc0c21c:	41 82 00 68 	beq-    ffc0c284 <_Thread_queue_Enqueue_priority+0x1a4>
      _ISR_Enable( level );                                           
      goto restart_reverse_search;                                    
    }                                                                 
    search_thread = (Thread_Control *)                                
                         search_thread->Object.Node.previous;         
ffc0c220:	81 6b 00 04 	lwz     r11,4(r11)                             
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 ) ) {  
ffc0c224:	7f 8b 18 00 	cmpw    cr7,r11,r3                             
ffc0c228:	41 9e 00 10 	beq-    cr7,ffc0c238 <_Thread_queue_Enqueue_priority+0x158>
    search_priority = search_thread->current_priority;                
ffc0c22c:	81 4b 00 14 	lwz     r10,20(r11)                            
    if ( priority >= search_priority )                                
ffc0c230:	7f 80 50 40 	cmplw   cr7,r0,r10                             
ffc0c234:	41 9c ff d4 	blt+    cr7,ffc0c208 <_Thread_queue_Enqueue_priority+0x128>
    }                                                                 
    search_thread = (Thread_Control *)                                
                         search_thread->Object.Node.previous;         
  }                                                                   
                                                                      
  if ( the_thread_queue->sync_state !=                                
ffc0c238:	80 69 00 30 	lwz     r3,48(r9)                              
ffc0c23c:	2f 83 00 01 	cmpwi   cr7,r3,1                               
ffc0c240:	40 9e ff 70 	bne+    cr7,ffc0c1b0 <_Thread_queue_Enqueue_priority+0xd0>
       THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED )                   
    goto synchronize;                                                 
                                                                      
  the_thread_queue->sync_state = THREAD_BLOCKING_OPERATION_SYNCHRONIZED;
                                                                      
  if ( priority == search_priority )                                  
ffc0c244:	7f 80 50 00 	cmpw    cr7,r0,r10                             
                                                                      
  if ( the_thread_queue->sync_state !=                                
       THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED )                   
    goto synchronize;                                                 
                                                                      
  the_thread_queue->sync_state = THREAD_BLOCKING_OPERATION_SYNCHRONIZED;
ffc0c248:	38 00 00 00 	li      r0,0                                   
ffc0c24c:	90 09 00 30 	stw     r0,48(r9)                              
                                                                      
  if ( priority == search_priority )                                  
ffc0c250:	41 9e 00 84 	beq-    cr7,ffc0c2d4 <_Thread_queue_Enqueue_priority+0x1f4>
    goto equal_priority;                                              
                                                                      
  search_node = (Chain_Node *) search_thread;                         
  next_node   = search_node->next;                                    
ffc0c254:	81 4b 00 00 	lwz     r10,0(r11)                             
  the_node    = (Chain_Node *) the_thread;                            
                                                                      
  the_node->next          = next_node;                                
  the_node->previous      = search_node;                              
ffc0c258:	91 64 00 04 	stw     r11,4(r4)                              
                                                                      
  search_node = (Chain_Node *) search_thread;                         
  next_node   = search_node->next;                                    
  the_node    = (Chain_Node *) the_thread;                            
                                                                      
  the_node->next          = next_node;                                
ffc0c25c:	91 44 00 00 	stw     r10,0(r4)                              
  the_node->previous      = search_node;                              
  search_node->next       = the_node;                                 
  next_node->previous    = the_node;                                  
ffc0c260:	90 8a 00 04 	stw     r4,4(r10)                              
  next_node   = search_node->next;                                    
  the_node    = (Chain_Node *) the_thread;                            
                                                                      
  the_node->next          = next_node;                                
  the_node->previous      = search_node;                              
  search_node->next       = the_node;                                 
ffc0c264:	90 8b 00 00 	stw     r4,0(r11)                              
  next_node->previous    = the_node;                                  
  the_thread->Wait.queue = the_thread_queue;                          
ffc0c268:	91 24 00 44 	stw     r9,68(r4)                              
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0c26c:	7c c0 01 24 	mtmsr   r6                                     
   *                                                                  
   *  WARNING! Returning with interrupts disabled!                    
   */                                                                 
  *level_p = level;                                                   
  return the_thread_queue->sync_state;                                
}                                                                     
ffc0c270:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0c274:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0c278:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0c27c:	38 21 00 18 	addi    r1,r1,24                               
ffc0c280:	4e 80 00 20 	blr                                            
ffc0c284:	7c c0 01 24 	mtmsr   r6                                     
ffc0c288:	4b ff ff 54 	b       ffc0c1dc <_Thread_queue_Enqueue_priority+0xfc>
ffc0c28c:	7c c0 01 24 	mtmsr   r6                                     <== NOT EXECUTED
ffc0c290:	4b ff fe 9c 	b       ffc0c12c <_Thread_queue_Enqueue_priority+0x4c><== NOT EXECUTED
       THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED )                   
    goto synchronize;                                                 
                                                                      
  the_thread_queue->sync_state = THREAD_BLOCKING_OPERATION_SYNCHRONIZED;
                                                                      
  if ( priority == search_priority )                                  
ffc0c294:	7f 80 50 00 	cmpw    cr7,r0,r10                             
                                                                      
  if ( the_thread_queue->sync_state !=                                
       THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED )                   
    goto synchronize;                                                 
                                                                      
  the_thread_queue->sync_state = THREAD_BLOCKING_OPERATION_SYNCHRONIZED;
ffc0c298:	38 00 00 00 	li      r0,0                                   
ffc0c29c:	90 09 00 30 	stw     r0,48(r9)                              
                                                                      
  if ( priority == search_priority )                                  
ffc0c2a0:	41 9e 00 34 	beq-    cr7,ffc0c2d4 <_Thread_queue_Enqueue_priority+0x1f4>
    goto equal_priority;                                              
                                                                      
  search_node   = (Chain_Node *) search_thread;                       
  previous_node = search_node->previous;                              
ffc0c2a4:	81 4b 00 04 	lwz     r10,4(r11)                             
  the_node      = (Chain_Node *) the_thread;                          
                                                                      
  the_node->next         = search_node;                               
ffc0c2a8:	91 64 00 00 	stw     r11,0(r4)                              
  the_node->previous     = previous_node;                             
ffc0c2ac:	91 44 00 04 	stw     r10,4(r4)                              
  previous_node->next    = the_node;                                  
ffc0c2b0:	90 8a 00 00 	stw     r4,0(r10)                              
  search_node->previous  = the_node;                                  
ffc0c2b4:	90 8b 00 04 	stw     r4,4(r11)                              
  the_thread->Wait.queue = the_thread_queue;                          
ffc0c2b8:	91 24 00 44 	stw     r9,68(r4)                              
ffc0c2bc:	7c c0 01 24 	mtmsr   r6                                     
   *                                                                  
   *  WARNING! Returning with interrupts disabled!                    
   */                                                                 
  *level_p = level;                                                   
  return the_thread_queue->sync_state;                                
}                                                                     
ffc0c2c0:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0c2c4:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0c2c8:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0c2cc:	38 21 00 18 	addi    r1,r1,24                               
ffc0c2d0:	4e 80 00 20 	blr                                            
ffc0c2d4:	39 6b 00 3c 	addi    r11,r11,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;                              
ffc0c2d8:	81 4b 00 04 	lwz     r10,4(r11)                             
  the_node      = (Chain_Node *) the_thread;                          
                                                                      
  the_node->next         = search_node;                               
ffc0c2dc:	91 64 00 00 	stw     r11,0(r4)                              
  the_node->previous     = previous_node;                             
ffc0c2e0:	91 44 00 04 	stw     r10,4(r4)                              
  previous_node->next    = the_node;                                  
ffc0c2e4:	90 8a 00 00 	stw     r4,0(r10)                              
  search_node->previous  = the_node;                                  
ffc0c2e8:	90 8b 00 04 	stw     r4,4(r11)                              
  the_thread->Wait.queue = the_thread_queue;                          
ffc0c2ec:	91 24 00 44 	stw     r9,68(r4)                              
ffc0c2f0:	7f e0 01 24 	mtmsr   r31                                    
  _ISR_Enable( level );                                               
  return THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED;                  
ffc0c2f4:	38 60 00 01 	li      r3,1                                   
ffc0c2f8:	4b ff fe bc 	b       ffc0c1b4 <_Thread_queue_Enqueue_priority+0xd4>
                                                                      
  if ( _Thread_queue_Is_reverse_search( priority ) )                  
    goto restart_reverse_search;                                      
                                                                      
restart_forward_search:                                               
  search_priority = PRIORITY_MINIMUM - 1;                             
ffc0c2fc:	39 40 ff ff 	li      r10,-1                                 
ffc0c300:	4b ff fe a4 	b       ffc0c1a4 <_Thread_queue_Enqueue_priority+0xc4>
                                                                      

ffc0c400 <_Thread_queue_Requeue>: void _Thread_queue_Requeue( Thread_queue_Control *the_thread_queue, Thread_Control *the_thread ) {
ffc0c400:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc0c404:	7c 08 02 a6 	mflr    r0                                     
ffc0c408:	93 e1 00 24 	stw     r31,36(r1)                             
  /*                                                                  
   * Just in case the thread really wasn't blocked on a thread queue  
   * when we get here.                                                
   */                                                                 
  if ( !the_thread_queue )                                            
ffc0c40c:	7c 7f 1b 79 	mr.     r31,r3                                 
                                                                      
void _Thread_queue_Requeue(                                           
  Thread_queue_Control *the_thread_queue,                             
  Thread_Control       *the_thread                                    
)                                                                     
{                                                                     
ffc0c410:	93 c1 00 20 	stw     r30,32(r1)                             
ffc0c414:	7c 9e 23 78 	mr      r30,r4                                 
ffc0c418:	90 01 00 2c 	stw     r0,44(r1)                              
ffc0c41c:	93 a1 00 1c 	stw     r29,28(r1)                             
  /*                                                                  
   * Just in case the thread really wasn't blocked on a thread queue  
   * when we get here.                                                
   */                                                                 
  if ( !the_thread_queue )                                            
ffc0c420:	41 82 00 10 	beq-    ffc0c430 <_Thread_queue_Requeue+0x30>  <== 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 ) {
ffc0c424:	80 1f 00 34 	lwz     r0,52(r31)                             
ffc0c428:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0c42c:	41 9e 00 20 	beq-    cr7,ffc0c44c <_Thread_queue_Requeue+0x4c><== ALWAYS TAKEN
      _Thread_queue_Extract_priority_helper( tq, the_thread, true );  
      (void) _Thread_queue_Enqueue_priority( tq, the_thread, &level_ignored );
    }                                                                 
    _ISR_Enable( level );                                             
  }                                                                   
}                                                                     
ffc0c430:	80 01 00 2c 	lwz     r0,44(r1)                              <== NOT EXECUTED
ffc0c434:	83 a1 00 1c 	lwz     r29,28(r1)                             <== NOT EXECUTED
ffc0c438:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc0c43c:	83 c1 00 20 	lwz     r30,32(r1)                             <== NOT EXECUTED
ffc0c440:	83 e1 00 24 	lwz     r31,36(r1)                             <== NOT EXECUTED
ffc0c444:	38 21 00 28 	addi    r1,r1,40                               <== NOT EXECUTED
ffc0c448:	4e 80 00 20 	blr                                            <== NOT EXECUTED
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0c44c:	7f a0 00 a6 	mfmsr   r29                                    
ffc0c450:	7d 30 42 a6 	mfsprg  r9,0                                   
ffc0c454:	7f a9 48 78 	andc    r9,r29,r9                              
ffc0c458:	7d 20 01 24 	mtmsr   r9                                     
ffc0c45c:	3d 60 00 03 	lis     r11,3                                  
ffc0c460:	81 24 00 10 	lwz     r9,16(r4)                              
ffc0c464:	61 6b be e0 	ori     r11,r11,48864                          
    Thread_queue_Control *tq = the_thread_queue;                      
    ISR_Level             level;                                      
    ISR_Level             level_ignored;                              
                                                                      
    _ISR_Disable( level );                                            
    if ( _States_Is_waiting_on_thread_queue( the_thread->current_state ) ) {
ffc0c468:	7d 6a 48 39 	and.    r10,r11,r9                             
ffc0c46c:	40 82 00 24 	bne-    ffc0c490 <_Thread_queue_Requeue+0x90>  <== ALWAYS TAKEN
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0c470:	7f a0 01 24 	mtmsr   r29                                    <== NOT EXECUTED
      _Thread_queue_Extract_priority_helper( tq, the_thread, true );  
      (void) _Thread_queue_Enqueue_priority( tq, the_thread, &level_ignored );
    }                                                                 
    _ISR_Enable( level );                                             
  }                                                                   
}                                                                     
ffc0c474:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc0c478:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc0c47c:	7c 08 03 a6 	mtlr    r0                                     
ffc0c480:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc0c484:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc0c488:	38 21 00 28 	addi    r1,r1,40                               
ffc0c48c:	4e 80 00 20 	blr                                            
                                                                      
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;
ffc0c490:	90 1f 00 30 	stw     r0,48(r31)                             
    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 );  
ffc0c494:	38 a0 00 01 	li      r5,1                                   
ffc0c498:	48 00 3b 9d 	bl      ffc10034 <_Thread_queue_Extract_priority_helper>
      (void) _Thread_queue_Enqueue_priority( tq, the_thread, &level_ignored );
ffc0c49c:	7f e3 fb 78 	mr      r3,r31                                 
ffc0c4a0:	7f c4 f3 78 	mr      r4,r30                                 
ffc0c4a4:	38 a1 00 08 	addi    r5,r1,8                                
ffc0c4a8:	4b ff fc 39 	bl      ffc0c0e0 <_Thread_queue_Enqueue_priority>
ffc0c4ac:	7f a0 01 24 	mtmsr   r29                                    
ffc0c4b0:	4b ff ff c4 	b       ffc0c474 <_Thread_queue_Requeue+0x74>  
                                                                      

ffc0c4b4 <_Thread_queue_Timeout>: void _Thread_queue_Timeout( Objects_Id id, void *ignored __attribute__((unused)) ) {
ffc0c4b4:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0c4b8:	7c 08 02 a6 	mflr    r0                                     
  Thread_Control       *the_thread;                                   
  Objects_Locations     location;                                     
                                                                      
  the_thread = _Thread_Get( id, &location );                          
ffc0c4bc:	38 81 00 08 	addi    r4,r1,8                                
                                                                      
void _Thread_queue_Timeout(                                           
  Objects_Id  id,                                                     
  void       *ignored __attribute__((unused))                         
)                                                                     
{                                                                     
ffc0c4c0:	90 01 00 1c 	stw     r0,28(r1)                              
  Thread_Control       *the_thread;                                   
  Objects_Locations     location;                                     
                                                                      
  the_thread = _Thread_Get( id, &location );                          
ffc0c4c4:	4b ff f5 29 	bl      ffc0b9ec <_Thread_Get>                 
  switch ( location ) {                                               
ffc0c4c8:	80 01 00 08 	lwz     r0,8(r1)                               
ffc0c4cc:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0c4d0:	40 9e 00 18 	bne-    cr7,ffc0c4e8 <_Thread_queue_Timeout+0x34><== NEVER TAKEN
#if defined(RTEMS_MULTIPROCESSING)                                    
    case OBJECTS_REMOTE:  /* impossible */                            
#endif                                                                
      break;                                                          
    case OBJECTS_LOCAL:                                               
      _Thread_queue_Process_timeout( the_thread );                    
ffc0c4d4:	48 00 3c 6d 	bl      ffc10140 <_Thread_queue_Process_timeout>
 */                                                                   
                                                                      
RTEMS_INLINE_ROUTINE void _Thread_Unnest_dispatch( void )             
{                                                                     
  RTEMS_COMPILER_MEMORY_BARRIER();                                    
  _Thread_Dispatch_disable_level -= 1;                                
ffc0c4d8:	3d 20 00 00 	lis     r9,0                                   
ffc0c4dc:	81 69 27 2c 	lwz     r11,10028(r9)                          
ffc0c4e0:	38 0b ff ff 	addi    r0,r11,-1                              
ffc0c4e4:	90 09 27 2c 	stw     r0,10028(r9)                           
      _Thread_Unnest_dispatch();                                      
      break;                                                          
  }                                                                   
}                                                                     
ffc0c4e8:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0c4ec:	38 21 00 18 	addi    r1,r1,24                               
ffc0c4f0:	7c 08 03 a6 	mtlr    r0                                     
ffc0c4f4:	4e 80 00 20 	blr                                            
                                                                      

ffc1baac <_Timer_server_Body>: * @a arg points to the corresponding timer server control block. */ static rtems_task _Timer_server_Body( rtems_task_argument arg ) {
ffc1baac:	94 21 ff 98 	stwu    r1,-104(r1)                            
ffc1bab0:	7c 08 02 a6 	mflr    r0                                     
ffc1bab4:	92 a1 00 3c 	stw     r21,60(r1)                             
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
  the_chain->permanent_null = NULL;                                   
  the_chain->last           = _Chain_Head(the_chain);                 
ffc1bab8:	3a a1 00 08 	addi    r21,r1,8                               
ffc1babc:	90 01 00 6c 	stw     r0,108(r1)                             
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
  the_chain->permanent_null = NULL;                                   
ffc1bac0:	38 00 00 00 	li      r0,0                                   
ffc1bac4:	92 e1 00 44 	stw     r23,68(r1)                             
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc1bac8:	3a e1 00 18 	addi    r23,r1,24                              
ffc1bacc:	93 41 00 50 	stw     r26,80(r1)                             
ffc1bad0:	3b 41 00 0c 	addi    r26,r1,12                              
ffc1bad4:	93 81 00 58 	stw     r28,88(r1)                             
ffc1bad8:	3b 81 00 14 	addi    r28,r1,20                              
ffc1badc:	92 81 00 38 	stw     r20,56(r1)                             
ffc1bae0:	3e 80 00 00 	lis     r20,0                                  
ffc1bae4:	3a 94 28 24 	addi    r20,r20,10276                          
ffc1bae8:	93 01 00 48 	stw     r24,72(r1)                             
ffc1baec:	3f 00 00 00 	lis     r24,0                                  
ffc1baf0:	3b 18 28 64 	addi    r24,r24,10340                          
ffc1baf4:	93 21 00 4c 	stw     r25,76(r1)                             
ffc1baf8:	3f 20 00 00 	lis     r25,0                                  
ffc1bafc:	3b 39 28 3c 	addi    r25,r25,10300                          
ffc1bb00:	93 c1 00 60 	stw     r30,96(r1)                             
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
ffc1bb04:	93 41 00 08 	stw     r26,8(r1)                              
  the_chain->permanent_null = NULL;                                   
ffc1bb08:	90 01 00 0c 	stw     r0,12(r1)                              
  the_chain->last           = _Chain_Head(the_chain);                 
ffc1bb0c:	92 a1 00 10 	stw     r21,16(r1)                             
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
ffc1bb10:	92 e1 00 14 	stw     r23,20(r1)                             
  the_chain->permanent_null = NULL;                                   
ffc1bb14:	90 01 00 18 	stw     r0,24(r1)                              
  the_chain->last           = _Chain_Head(the_chain);                 
ffc1bb18:	93 81 00 1c 	stw     r28,28(r1)                             
ffc1bb1c:	92 01 00 28 	stw     r16,40(r1)                             
ffc1bb20:	3a 03 00 08 	addi    r16,r3,8                               
ffc1bb24:	92 21 00 2c 	stw     r17,44(r1)                             
ffc1bb28:	3a 23 00 40 	addi    r17,r3,64                              
ffc1bb2c:	92 41 00 30 	stw     r18,48(r1)                             
         *  the active flag of the timer server is true.              
         */                                                           
        (*watchdog->routine)( watchdog->id, watchdog->user_data );    
      }                                                               
    } else {                                                          
      ts->active = false;                                             
ffc1bb30:	3a 40 00 00 	li      r18,0                                  
 *  @a arg points to the corresponding timer server control block.    
 */                                                                   
static rtems_task _Timer_server_Body(                                 
  rtems_task_argument arg                                             
)                                                                     
{                                                                     
ffc1bb34:	92 61 00 34 	stw     r19,52(r1)                             
        _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;                                              
ffc1bb38:	3a 60 00 01 	li      r19,1                                  
 *  @a arg points to the corresponding timer server control block.    
 */                                                                   
static rtems_task _Timer_server_Body(                                 
  rtems_task_argument arg                                             
)                                                                     
{                                                                     
ffc1bb3c:	92 c1 00 40 	stw     r22,64(r1)                             
         *  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;                        
ffc1bb40:	3a c0 00 00 	li      r22,0                                  
 *  @a arg points to the corresponding timer server control block.    
 */                                                                   
static rtems_task _Timer_server_Body(                                 
  rtems_task_argument arg                                             
)                                                                     
{                                                                     
ffc1bb44:	93 61 00 54 	stw     r27,84(r1)                             
ffc1bb48:	3b 63 00 68 	addi    r27,r3,104                             
ffc1bb4c:	93 a1 00 5c 	stw     r29,92(r1)                             
ffc1bb50:	3b a3 00 30 	addi    r29,r3,48                              
ffc1bb54:	93 e1 00 64 	stw     r31,100(r1)                            
ffc1bb58:	7c 7f 1b 78 	mr      r31,r3                                 
{                                                                     
  /*                                                                  
   *  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;                                    
ffc1bb5c:	92 bf 00 78 	stw     r21,120(r31)                           
   */                                                                 
  Watchdog_Interval delta = snapshot - watchdogs->last_snapshot;      
                                                                      
  watchdogs->last_snapshot = snapshot;                                
                                                                      
  _Watchdog_Adjust_to_chain( &watchdogs->Chain, delta, fire_chain );  
ffc1bb60:	7f 85 e3 78 	mr      r5,r28                                 
ffc1bb64:	7f a3 eb 78 	mr      r3,r29                                 
static void _Timer_server_Process_interval_watchdogs(                 
  Timer_server_Watchdogs *watchdogs,                                  
  Chain_Control *fire_chain                                           
)                                                                     
{                                                                     
  Watchdog_Interval snapshot = _Watchdog_Ticks_since_boot;            
ffc1bb68:	80 18 00 00 	lwz     r0,0(r24)                              
                                                                      
  /*                                                                  
   *  We assume adequate unsigned arithmetic here.                    
   */                                                                 
  Watchdog_Interval delta = snapshot - watchdogs->last_snapshot;      
ffc1bb6c:	80 9f 00 3c 	lwz     r4,60(r31)                             
                                                                      
  watchdogs->last_snapshot = snapshot;                                
ffc1bb70:	90 1f 00 3c 	stw     r0,60(r31)                             
                                                                      
  _Watchdog_Adjust_to_chain( &watchdogs->Chain, delta, fire_chain );  
ffc1bb74:	7c 84 00 50 	subf    r4,r4,r0                               
ffc1bb78:	48 00 56 99 	bl      ffc21210 <_Watchdog_Adjust_to_chain>   
static void _Timer_server_Process_tod_watchdogs(                      
  Timer_server_Watchdogs *watchdogs,                                  
  Chain_Control *fire_chain                                           
)                                                                     
{                                                                     
  Watchdog_Interval snapshot = (Watchdog_Interval) _TOD_Seconds_since_epoch();
ffc1bb7c:	83 d9 00 00 	lwz     r30,0(r25)                             
  Watchdog_Interval last_snapshot = watchdogs->last_snapshot;         
ffc1bb80:	80 bf 00 74 	lwz     r5,116(r31)                            
  /*                                                                  
   *  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 ) {                                   
ffc1bb84:	7f 9e 28 40 	cmplw   cr7,r30,r5                             
ffc1bb88:	41 9d 00 98 	bgt-    cr7,ffc1bc20 <_Timer_server_Body+0x174>
     *  TOD has been set forward.                                     
     */                                                               
    delta = snapshot - last_snapshot;                                 
    _Watchdog_Adjust_to_chain( &watchdogs->Chain, delta, fire_chain );
                                                                      
  } else if ( snapshot < last_snapshot ) {                            
ffc1bb8c:	41 9c 00 a8 	blt-    cr7,ffc1bc34 <_Timer_server_Body+0x188>
      */                                                              
     delta = last_snapshot - snapshot;                                
     _Watchdog_Adjust( &watchdogs->Chain, WATCHDOG_BACKWARD, delta ); 
  }                                                                   
                                                                      
  watchdogs->last_snapshot = snapshot;                                
ffc1bb90:	93 df 00 74 	stw     r30,116(r31)                           
}                                                                     
                                                                      
static void _Timer_server_Process_insertions( Timer_server_Control *ts )
{                                                                     
  while ( true ) {                                                    
    Timer_Control *timer = (Timer_Control *) _Chain_Get( ts->insert_chain );
ffc1bb94:	80 7f 00 78 	lwz     r3,120(r31)                            
ffc1bb98:	48 00 0d 79 	bl      ffc1c910 <_Chain_Get>                  
                                                                      
    if ( timer == NULL ) {                                            
ffc1bb9c:	7c 64 1b 79 	mr.     r4,r3                                  
ffc1bba0:	41 82 00 34 	beq-    ffc1bbd4 <_Timer_server_Body+0x128>    
static void _Timer_server_Insert_timer(                               
  Timer_server_Control *ts,                                           
  Timer_Control *timer                                                
)                                                                     
{                                                                     
  if ( timer->the_class == TIMER_INTERVAL_ON_TASK ) {                 
ffc1bba4:	80 04 00 38 	lwz     r0,56(r4)                              
ffc1bba8:	2f 80 00 01 	cmpwi   cr7,r0,1                               
    _Watchdog_Insert( &ts->Interval_watchdogs.Chain, &timer->Ticker );
  } else if ( timer->the_class == TIMER_TIME_OF_DAY_ON_TASK ) {       
ffc1bbac:	2f 00 00 03 	cmpwi   cr6,r0,3                               
static void _Timer_server_Insert_timer(                               
  Timer_server_Control *ts,                                           
  Timer_Control *timer                                                
)                                                                     
{                                                                     
  if ( timer->the_class == TIMER_INTERVAL_ON_TASK ) {                 
ffc1bbb0:	41 9e 00 98 	beq-    cr7,ffc1bc48 <_Timer_server_Body+0x19c>
    _Watchdog_Insert( &ts->Interval_watchdogs.Chain, &timer->Ticker );
  } else if ( timer->the_class == TIMER_TIME_OF_DAY_ON_TASK ) {       
ffc1bbb4:	40 9a ff e0 	bne+    cr6,ffc1bb94 <_Timer_server_Body+0xe8> <== NEVER TAKEN
    _Watchdog_Insert( &ts->TOD_watchdogs.Chain, &timer->Ticker );     
ffc1bbb8:	38 84 00 10 	addi    r4,r4,16                               
ffc1bbbc:	7f 63 db 78 	mr      r3,r27                                 
ffc1bbc0:	48 00 57 09 	bl      ffc212c8 <_Watchdog_Insert>            
}                                                                     
                                                                      
static void _Timer_server_Process_insertions( Timer_server_Control *ts )
{                                                                     
  while ( true ) {                                                    
    Timer_Control *timer = (Timer_Control *) _Chain_Get( ts->insert_chain );
ffc1bbc4:	80 7f 00 78 	lwz     r3,120(r31)                            
ffc1bbc8:	48 00 0d 49 	bl      ffc1c910 <_Chain_Get>                  
                                                                      
    if ( timer == NULL ) {                                            
ffc1bbcc:	7c 64 1b 79 	mr.     r4,r3                                  
ffc1bbd0:	40 82 ff d4 	bne+    ffc1bba4 <_Timer_server_Body+0xf8>     <== NEVER TAKEN
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc1bbd4:	7d 20 00 a6 	mfmsr   r9                                     
ffc1bbd8:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc1bbdc:	7d 20 00 78 	andc    r0,r9,r0                               
ffc1bbe0:	7c 00 01 24 	mtmsr   r0                                     
     *  body loop.                                                    
     */                                                               
    _Timer_server_Process_insertions( ts );                           
                                                                      
    _ISR_Disable( level );                                            
    if ( _Chain_Is_empty( insert_chain ) ) {                          
ffc1bbe4:	80 01 00 08 	lwz     r0,8(r1)                               
ffc1bbe8:	7f 9a 00 00 	cmpw    cr7,r26,r0                             
ffc1bbec:	41 9e 00 6c 	beq-    cr7,ffc1bc58 <_Timer_server_Body+0x1ac>
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc1bbf0:	7d 20 01 24 	mtmsr   r9                                     
static void _Timer_server_Process_interval_watchdogs(                 
  Timer_server_Watchdogs *watchdogs,                                  
  Chain_Control *fire_chain                                           
)                                                                     
{                                                                     
  Watchdog_Interval snapshot = _Watchdog_Ticks_since_boot;            
ffc1bbf4:	80 18 00 00 	lwz     r0,0(r24)                              
   */                                                                 
  Watchdog_Interval delta = snapshot - watchdogs->last_snapshot;      
                                                                      
  watchdogs->last_snapshot = snapshot;                                
                                                                      
  _Watchdog_Adjust_to_chain( &watchdogs->Chain, delta, fire_chain );  
ffc1bbf8:	7f 85 e3 78 	mr      r5,r28                                 
  Watchdog_Interval snapshot = _Watchdog_Ticks_since_boot;            
                                                                      
  /*                                                                  
   *  We assume adequate unsigned arithmetic here.                    
   */                                                                 
  Watchdog_Interval delta = snapshot - watchdogs->last_snapshot;      
ffc1bbfc:	80 9f 00 3c 	lwz     r4,60(r31)                             
                                                                      
  watchdogs->last_snapshot = snapshot;                                
                                                                      
  _Watchdog_Adjust_to_chain( &watchdogs->Chain, delta, fire_chain );  
ffc1bc00:	7f a3 eb 78 	mr      r3,r29                                 
  /*                                                                  
   *  We assume adequate unsigned arithmetic here.                    
   */                                                                 
  Watchdog_Interval delta = snapshot - watchdogs->last_snapshot;      
                                                                      
  watchdogs->last_snapshot = snapshot;                                
ffc1bc04:	90 1f 00 3c 	stw     r0,60(r31)                             
                                                                      
  _Watchdog_Adjust_to_chain( &watchdogs->Chain, delta, fire_chain );  
ffc1bc08:	7c 84 00 50 	subf    r4,r4,r0                               
ffc1bc0c:	48 00 56 05 	bl      ffc21210 <_Watchdog_Adjust_to_chain>   
static void _Timer_server_Process_tod_watchdogs(                      
  Timer_server_Watchdogs *watchdogs,                                  
  Chain_Control *fire_chain                                           
)                                                                     
{                                                                     
  Watchdog_Interval snapshot = (Watchdog_Interval) _TOD_Seconds_since_epoch();
ffc1bc10:	83 d9 00 00 	lwz     r30,0(r25)                             
  Watchdog_Interval last_snapshot = watchdogs->last_snapshot;         
ffc1bc14:	80 bf 00 74 	lwz     r5,116(r31)                            
  /*                                                                  
   *  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 ) {                                   
ffc1bc18:	7f 9e 28 40 	cmplw   cr7,r30,r5                             
ffc1bc1c:	40 9d ff 70 	ble+    cr7,ffc1bb8c <_Timer_server_Body+0xe0> <== ALWAYS TAKEN
    /*                                                                
     *  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 );
ffc1bc20:	7c 85 f0 50 	subf    r4,r5,r30                              
ffc1bc24:	7f 63 db 78 	mr      r3,r27                                 
ffc1bc28:	7f 85 e3 78 	mr      r5,r28                                 
ffc1bc2c:	48 00 55 e5 	bl      ffc21210 <_Watchdog_Adjust_to_chain>   
ffc1bc30:	4b ff ff 60 	b       ffc1bb90 <_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 ); 
ffc1bc34:	7f 63 db 78 	mr      r3,r27                                 
ffc1bc38:	38 80 00 01 	li      r4,1                                   
ffc1bc3c:	7c be 28 50 	subf    r5,r30,r5                              
ffc1bc40:	48 00 54 b1 	bl      ffc210f0 <_Watchdog_Adjust>            
ffc1bc44:	4b ff ff 4c 	b       ffc1bb90 <_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 );
ffc1bc48:	7f a3 eb 78 	mr      r3,r29                                 
ffc1bc4c:	38 84 00 10 	addi    r4,r4,16                               
ffc1bc50:	48 00 56 79 	bl      ffc212c8 <_Watchdog_Insert>            
ffc1bc54:	4b ff ff 40 	b       ffc1bb94 <_Timer_server_Body+0xe8>     
     */                                                               
    _Timer_server_Process_insertions( ts );                           
                                                                      
    _ISR_Disable( level );                                            
    if ( _Chain_Is_empty( insert_chain ) ) {                          
      ts->insert_chain = NULL;                                        
ffc1bc58:	90 9f 00 78 	stw     r4,120(r31)                            
ffc1bc5c:	7d 20 01 24 	mtmsr   r9                                     
  _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 ) ) {                          
ffc1bc60:	80 01 00 14 	lwz     r0,20(r1)                              
ffc1bc64:	7f 97 00 00 	cmpw    cr7,r23,r0                             
ffc1bc68:	40 be 00 30 	bne+    cr7,ffc1bc98 <_Timer_server_Body+0x1ec>
ffc1bc6c:	48 00 00 50 	b       ffc1bcbc <_Timer_server_Body+0x210>    
{                                                                     
  Chain_Node  *return_node;                                           
  Chain_Node  *new_first;                                             
                                                                      
  return_node         = the_chain->first;                             
  new_first           = return_node->next;                            
ffc1bc70:	81 69 00 00 	lwz     r11,0(r9)                              
  the_chain->first    = new_first;                                    
  new_first->previous = _Chain_Head(the_chain);                       
ffc1bc74:	93 8b 00 04 	stw     r28,4(r11)                             
  Chain_Node  *return_node;                                           
  Chain_Node  *new_first;                                             
                                                                      
  return_node         = the_chain->first;                             
  new_first           = return_node->next;                            
  the_chain->first    = new_first;                                    
ffc1bc78:	91 61 00 14 	stw     r11,20(r1)                             
         *  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;                        
ffc1bc7c:	92 c9 00 08 	stw     r22,8(r9)                              
ffc1bc80:	7c 00 01 24 	mtmsr   r0                                     
        /*                                                            
         *  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 );    
ffc1bc84:	80 09 00 1c 	lwz     r0,28(r9)                              
ffc1bc88:	80 69 00 20 	lwz     r3,32(r9)                              
ffc1bc8c:	80 89 00 24 	lwz     r4,36(r9)                              
ffc1bc90:	7c 09 03 a6 	mtctr   r0                                     
ffc1bc94:	4e 80 04 21 	bctrl                                          
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc1bc98:	7c 00 00 a6 	mfmsr   r0                                     
ffc1bc9c:	7d 30 42 a6 	mfsprg  r9,0                                   
ffc1bca0:	7c 09 48 78 	andc    r9,r0,r9                               
ffc1bca4:	7d 20 01 24 	mtmsr   r9                                     
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
ffc1bca8:	81 21 00 14 	lwz     r9,20(r1)                              
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Get_unprotected(              
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  if ( !_Chain_Is_empty(the_chain))                                   
ffc1bcac:	7f 97 48 00 	cmpw    cr7,r23,r9                             
ffc1bcb0:	40 9e ff c0 	bne+    cr7,ffc1bc70 <_Timer_server_Body+0x1c4>
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc1bcb4:	7c 00 01 24 	mtmsr   r0                                     
ffc1bcb8:	4b ff fe a4 	b       ffc1bb5c <_Timer_server_Body+0xb0>     
      }                                                               
    } else {                                                          
      ts->active = false;                                             
ffc1bcbc:	9a 5f 00 7c 	stb     r18,124(r31)                           
ffc1bcc0:	80 14 00 00 	lwz     r0,0(r20)                              
ffc1bcc4:	30 00 00 01 	addic   r0,r0,1                                
ffc1bcc8:	90 14 00 00 	stw     r0,0(r20)                              
                                                                      
      /*                                                              
       *  Block until there is something to do.                       
       */                                                             
      _Thread_Disable_dispatch();                                     
        _Thread_Set_state( ts->thread, STATES_DELAYING );             
ffc1bccc:	80 7f 00 00 	lwz     r3,0(r31)                              
ffc1bcd0:	38 80 00 08 	li      r4,8                                   
ffc1bcd4:	48 00 47 f1 	bl      ffc204c4 <_Thread_Set_state>           
        _Timer_server_Reset_interval_system_watchdog( ts );           
ffc1bcd8:	7f e3 fb 78 	mr      r3,r31                                 
ffc1bcdc:	4b ff fc a9 	bl      ffc1b984 <_Timer_server_Reset_interval_system_watchdog>
        _Timer_server_Reset_tod_system_watchdog( ts );                
ffc1bce0:	7f e3 fb 78 	mr      r3,r31                                 
ffc1bce4:	4b ff fd 35 	bl      ffc1ba18 <_Timer_server_Reset_tod_system_watchdog>
      _Thread_Enable_dispatch();                                      
ffc1bce8:	48 00 3a d5 	bl      ffc1f7bc <_Thread_Enable_dispatch>     
                                                                      
      ts->active = true;                                              
ffc1bcec:	9a 7f 00 7c 	stb     r19,124(r31)                           
                                                                      
static void _Timer_server_Stop_interval_system_watchdog(              
  Timer_server_Control *ts                                            
)                                                                     
{                                                                     
  _Watchdog_Remove( &ts->Interval_watchdogs.System_watchdog );        
ffc1bcf0:	7e 03 83 78 	mr      r3,r16                                 
ffc1bcf4:	48 00 57 9d 	bl      ffc21490 <_Watchdog_Remove>            
                                                                      
static void _Timer_server_Stop_tod_system_watchdog(                   
  Timer_server_Control *ts                                            
)                                                                     
{                                                                     
  _Watchdog_Remove( &ts->TOD_watchdogs.System_watchdog );             
ffc1bcf8:	7e 23 8b 78 	mr      r3,r17                                 
ffc1bcfc:	48 00 57 95 	bl      ffc21490 <_Watchdog_Remove>            
ffc1bd00:	4b ff fe 5c 	b       ffc1bb5c <_Timer_server_Body+0xb0>     
                                                                      

ffc1bd04 <_Timer_server_Schedule_operation_method>: static void _Timer_server_Schedule_operation_method( Timer_server_Control *ts, Timer_Control *timer ) {
ffc1bd04:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc1bd08:	7c 08 02 a6 	mflr    r0                                     
ffc1bd0c:	7c 89 23 78 	mr      r9,r4                                  
ffc1bd10:	90 01 00 14 	stw     r0,20(r1)                              
  if ( ts->insert_chain == NULL ) {                                   
ffc1bd14:	80 03 00 78 	lwz     r0,120(r3)                             
                                                                      
static void _Timer_server_Schedule_operation_method(                  
  Timer_server_Control *ts,                                           
  Timer_Control *timer                                                
)                                                                     
{                                                                     
ffc1bd18:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc1bd1c:	7c 7f 1b 78 	mr      r31,r3                                 
  if ( ts->insert_chain == NULL ) {                                   
ffc1bd20:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc1bd24:	41 9e 00 20 	beq-    cr7,ffc1bd44 <_Timer_server_Schedule_operation_method+0x40>
     *  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 );           
ffc1bd28:	80 63 00 78 	lwz     r3,120(r3)                             
ffc1bd2c:	48 00 0b 8d 	bl      ffc1c8b8 <_Chain_Append>               
  }                                                                   
}                                                                     
ffc1bd30:	80 01 00 14 	lwz     r0,20(r1)                              
ffc1bd34:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc1bd38:	38 21 00 10 	addi    r1,r1,16                               
ffc1bd3c:	7c 08 03 a6 	mtlr    r0                                     
ffc1bd40:	4e 80 00 20 	blr                                            
ffc1bd44:	3d 60 00 00 	lis     r11,0                                  
ffc1bd48:	81 4b 28 24 	lwz     r10,10276(r11)                         
ffc1bd4c:	38 0a 00 01 	addi    r0,r10,1                               
ffc1bd50:	90 0b 28 24 	stw     r0,10276(r11)                          
   *  being inserted.  This could result in an integer overflow.      
   */                                                                 
                                                                      
  _Thread_Disable_dispatch();                                         
                                                                      
  if ( timer->the_class == TIMER_INTERVAL_ON_TASK ) {                 
ffc1bd54:	80 04 00 38 	lwz     r0,56(r4)                              
ffc1bd58:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc1bd5c:	41 9e 00 ac 	beq-    cr7,ffc1be08 <_Timer_server_Schedule_operation_method+0x104>
    _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 ) {       
ffc1bd60:	2f 80 00 03 	cmpwi   cr7,r0,3                               
ffc1bd64:	41 9e 00 1c 	beq-    cr7,ffc1bd80 <_Timer_server_Schedule_operation_method+0x7c>
    if ( !ts->active ) {                                              
      _Timer_server_Reset_tod_system_watchdog( ts );                  
    }                                                                 
  }                                                                   
                                                                      
  _Thread_Enable_dispatch();                                          
ffc1bd68:	48 00 3a 55 	bl      ffc1f7bc <_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 );           
  }                                                                   
}                                                                     
ffc1bd6c:	80 01 00 14 	lwz     r0,20(r1)                              
ffc1bd70:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc1bd74:	38 21 00 10 	addi    r1,r1,16                               
ffc1bd78:	7c 08 03 a6 	mtlr    r0                                     
ffc1bd7c:	4e 80 00 20 	blr                                            
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc1bd80:	7c c0 00 a6 	mfmsr   r6                                     
ffc1bd84:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc1bd88:	7c c0 00 78 	andc    r0,r6,r0                               
ffc1bd8c:	7c 00 01 24 	mtmsr   r0                                     
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
ffc1bd90:	81 63 00 68 	lwz     r11,104(r3)                            
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc1bd94:	38 03 00 6c 	addi    r0,r3,108                              
    /*                                                                
     *  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();        
ffc1bd98:	3d 40 00 00 	lis     r10,0                                  
    last_snapshot = ts->TOD_watchdogs.last_snapshot;                  
    if ( !_Chain_Is_empty( &ts->TOD_watchdogs.Chain ) ) {             
ffc1bd9c:	7f 8b 00 00 	cmpw    cr7,r11,r0                             
    /*                                                                
     *  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();        
ffc1bda0:	80 0a 28 3c 	lwz     r0,10300(r10)                          
    last_snapshot = ts->TOD_watchdogs.last_snapshot;                  
ffc1bda4:	81 43 00 74 	lwz     r10,116(r3)                            
    if ( !_Chain_Is_empty( &ts->TOD_watchdogs.Chain ) ) {             
ffc1bda8:	41 9e 00 30 	beq-    cr7,ffc1bdd8 <_Timer_server_Schedule_operation_method+0xd4>
      first_watchdog = _Watchdog_First( &ts->TOD_watchdogs.Chain );   
      delta_interval = first_watchdog->delta_interval;                
      if ( snapshot > last_snapshot ) {                               
ffc1bdac:	7f 80 50 40 	cmplw   cr7,r0,r10                             
    _ISR_Disable( level );                                            
    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;                
ffc1bdb0:	80 eb 00 10 	lwz     r7,16(r11)                             
        }                                                             
      } else {                                                        
        /*                                                            
         *  Someone put us in the past.                               
         */                                                           
        delta = last_snapshot - snapshot;                             
ffc1bdb4:	7d 07 52 14 	add     r8,r7,r10                              
        delta_interval += delta;                                      
ffc1bdb8:	7d 00 40 50 	subf    r8,r0,r8                               
    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 ) {                               
ffc1bdbc:	40 9d 00 18 	ble-    cr7,ffc1bdd4 <_Timer_server_Schedule_operation_method+0xd0>
        /*                                                            
         *  We advanced in time.                                      
         */                                                           
        delta = snapshot - last_snapshot;                             
ffc1bdc0:	7d 4a 00 50 	subf    r10,r10,r0                             
        if (delta_interval > delta) {                                 
ffc1bdc4:	7f 87 50 40 	cmplw   cr7,r7,r10                             
          delta_interval -= delta;                                    
        } else {                                                      
          delta_interval = 0;                                         
ffc1bdc8:	39 00 00 00 	li      r8,0                                   
      if ( snapshot > last_snapshot ) {                               
        /*                                                            
         *  We advanced in time.                                      
         */                                                           
        delta = snapshot - last_snapshot;                             
        if (delta_interval > delta) {                                 
ffc1bdcc:	40 9d 00 08 	ble-    cr7,ffc1bdd4 <_Timer_server_Schedule_operation_method+0xd0><== NEVER TAKEN
          delta_interval -= delta;                                    
ffc1bdd0:	7d 0a 38 50 	subf    r8,r10,r7                              
         *  Someone put us in the past.                               
         */                                                           
        delta = last_snapshot - snapshot;                             
        delta_interval += delta;                                      
      }                                                               
      first_watchdog->delta_interval = delta_interval;                
ffc1bdd4:	91 0b 00 10 	stw     r8,16(r11)                             
    }                                                                 
    ts->TOD_watchdogs.last_snapshot = snapshot;                       
ffc1bdd8:	90 1f 00 74 	stw     r0,116(r31)                            
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc1bddc:	7c c0 01 24 	mtmsr   r6                                     
    _ISR_Enable( level );                                             
                                                                      
    _Watchdog_Insert( &ts->TOD_watchdogs.Chain, &timer->Ticker );     
ffc1bde0:	38 7f 00 68 	addi    r3,r31,104                             
ffc1bde4:	38 89 00 10 	addi    r4,r9,16                               
ffc1bde8:	48 00 54 e1 	bl      ffc212c8 <_Watchdog_Insert>            
                                                                      
    if ( !ts->active ) {                                              
ffc1bdec:	88 1f 00 7c 	lbz     r0,124(r31)                            
ffc1bdf0:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc1bdf4:	40 9e ff 74 	bne+    cr7,ffc1bd68 <_Timer_server_Schedule_operation_method+0x64>
      _Timer_server_Reset_tod_system_watchdog( ts );                  
ffc1bdf8:	7f e3 fb 78 	mr      r3,r31                                 
ffc1bdfc:	4b ff fc 1d 	bl      ffc1ba18 <_Timer_server_Reset_tod_system_watchdog>
    }                                                                 
  }                                                                   
                                                                      
  _Thread_Enable_dispatch();                                          
ffc1be00:	48 00 39 bd 	bl      ffc1f7bc <_Thread_Enable_dispatch>     
ffc1be04:	4b ff ff 68 	b       ffc1bd6c <_Timer_server_Schedule_operation_method+0x68>
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc1be08:	7c c0 00 a6 	mfmsr   r6                                     
ffc1be0c:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc1be10:	7c c0 00 78 	andc    r0,r6,r0                               
ffc1be14:	7c 00 01 24 	mtmsr   r0                                     
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
ffc1be18:	81 63 00 30 	lwz     r11,48(r3)                             
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc1be1c:	38 03 00 34 	addi    r0,r3,52                               
    /*                                                                
     *  We have to advance the last known ticks value of the server and update
     *  the watchdog chain accordingly.                               
     */                                                               
    _ISR_Disable( level );                                            
    snapshot = _Watchdog_Ticks_since_boot;                            
ffc1be20:	3d 40 00 00 	lis     r10,0                                  
    last_snapshot = ts->Interval_watchdogs.last_snapshot;             
    if ( !_Chain_Is_empty( &ts->Interval_watchdogs.Chain ) ) {        
ffc1be24:	7f 8b 00 00 	cmpw    cr7,r11,r0                             
    /*                                                                
     *  We have to advance the last known ticks value of the server and update
     *  the watchdog chain accordingly.                               
     */                                                               
    _ISR_Disable( level );                                            
    snapshot = _Watchdog_Ticks_since_boot;                            
ffc1be28:	80 0a 28 64 	lwz     r0,10340(r10)                          
    last_snapshot = ts->Interval_watchdogs.last_snapshot;             
ffc1be2c:	81 03 00 3c 	lwz     r8,60(r3)                              
    if ( !_Chain_Is_empty( &ts->Interval_watchdogs.Chain ) ) {        
ffc1be30:	41 9e 00 20 	beq-    cr7,ffc1be50 <_Timer_server_Schedule_operation_method+0x14c>
      /*                                                              
       *  We assume adequate unsigned arithmetic here.                
       */                                                             
      delta = snapshot - last_snapshot;                               
                                                                      
      delta_interval = first_watchdog->delta_interval;                
ffc1be34:	80 eb 00 10 	lwz     r7,16(r11)                             
      first_watchdog = _Watchdog_First( &ts->Interval_watchdogs.Chain );
                                                                      
      /*                                                              
       *  We assume adequate unsigned arithmetic here.                
       */                                                             
      delta = snapshot - last_snapshot;                               
ffc1be38:	7d 08 00 50 	subf    r8,r8,r0                               
                                                                      
      delta_interval = first_watchdog->delta_interval;                
      if (delta_interval > delta) {                                   
        delta_interval -= delta;                                      
      } else {                                                        
        delta_interval = 0;                                           
ffc1be3c:	39 40 00 00 	li      r10,0                                  
       *  We assume adequate unsigned arithmetic here.                
       */                                                             
      delta = snapshot - last_snapshot;                               
                                                                      
      delta_interval = first_watchdog->delta_interval;                
      if (delta_interval > delta) {                                   
ffc1be40:	7f 88 38 40 	cmplw   cr7,r8,r7                              
ffc1be44:	40 9c 00 08 	bge-    cr7,ffc1be4c <_Timer_server_Schedule_operation_method+0x148>
        delta_interval -= delta;                                      
ffc1be48:	7d 48 38 50 	subf    r10,r8,r7                              
      } else {                                                        
        delta_interval = 0;                                           
      }                                                               
      first_watchdog->delta_interval = delta_interval;                
ffc1be4c:	91 4b 00 10 	stw     r10,16(r11)                            
    }                                                                 
    ts->Interval_watchdogs.last_snapshot = snapshot;                  
ffc1be50:	90 1f 00 3c 	stw     r0,60(r31)                             
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc1be54:	7c c0 01 24 	mtmsr   r6                                     
    _ISR_Enable( level );                                             
                                                                      
    _Watchdog_Insert( &ts->Interval_watchdogs.Chain, &timer->Ticker );
ffc1be58:	38 7f 00 30 	addi    r3,r31,48                              
ffc1be5c:	38 89 00 10 	addi    r4,r9,16                               
ffc1be60:	48 00 54 69 	bl      ffc212c8 <_Watchdog_Insert>            
                                                                      
    if ( !ts->active ) {                                              
ffc1be64:	88 1f 00 7c 	lbz     r0,124(r31)                            
ffc1be68:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc1be6c:	40 9e fe fc 	bne+    cr7,ffc1bd68 <_Timer_server_Schedule_operation_method+0x64>
      _Timer_server_Reset_interval_system_watchdog( ts );             
ffc1be70:	7f e3 fb 78 	mr      r3,r31                                 
ffc1be74:	4b ff fb 11 	bl      ffc1b984 <_Timer_server_Reset_interval_system_watchdog>
    if ( !ts->active ) {                                              
      _Timer_server_Reset_tod_system_watchdog( ts );                  
    }                                                                 
  }                                                                   
                                                                      
  _Thread_Enable_dispatch();                                          
ffc1be78:	48 00 39 45 	bl      ffc1f7bc <_Thread_Enable_dispatch>     
ffc1be7c:	4b ff fe f0 	b       ffc1bd6c <_Timer_server_Schedule_operation_method+0x68>
                                                                      

ffc0cb08 <_Timespec_Add_to>: { uint32_t seconds = add->tv_sec; /* Add the basics */ time->tv_sec += add->tv_sec; time->tv_nsec += add->tv_nsec;
ffc0cb08:	80 03 00 04 	lwz     r0,4(r3)                               
                                                                      
uint32_t _Timespec_Add_to(                                            
  struct timespec       *time,                                        
  const struct timespec *add                                          
)                                                                     
{                                                                     
ffc0cb0c:	7c 69 1b 78 	mr      r9,r3                                  
  uint32_t seconds = add->tv_sec;                                     
                                                                      
  /* Add the basics */                                                
  time->tv_sec += add->tv_sec;                                        
  time->tv_nsec += add->tv_nsec;                                      
ffc0cb10:	81 04 00 04 	lwz     r8,4(r4)                               
uint32_t _Timespec_Add_to(                                            
  struct timespec       *time,                                        
  const struct timespec *add                                          
)                                                                     
{                                                                     
  uint32_t seconds = add->tv_sec;                                     
ffc0cb14:	80 64 00 00 	lwz     r3,0(r4)                               
                                                                      
  /* Add the basics */                                                
  time->tv_sec += add->tv_sec;                                        
  time->tv_nsec += add->tv_nsec;                                      
ffc0cb18:	7d 08 02 14 	add     r8,r8,r0                               
)                                                                     
{                                                                     
  uint32_t seconds = add->tv_sec;                                     
                                                                      
  /* Add the basics */                                                
  time->tv_sec += add->tv_sec;                                        
ffc0cb1c:	81 49 00 00 	lwz     r10,0(r9)                              
  time->tv_nsec += add->tv_nsec;                                      
                                                                      
  /* Now adjust it so nanoseconds is in range */                      
  while ( time->tv_nsec >= TOD_NANOSECONDS_PER_SECOND ) {             
ffc0cb20:	3c 00 3b 9a 	lis     r0,15258                               
{                                                                     
  uint32_t seconds = add->tv_sec;                                     
                                                                      
  /* Add the basics */                                                
  time->tv_sec += add->tv_sec;                                        
  time->tv_nsec += add->tv_nsec;                                      
ffc0cb24:	91 09 00 04 	stw     r8,4(r9)                               
                                                                      
  /* Now adjust it so nanoseconds is in range */                      
  while ( time->tv_nsec >= TOD_NANOSECONDS_PER_SECOND ) {             
ffc0cb28:	60 00 c9 ff 	ori     r0,r0,51711                            
ffc0cb2c:	7f 88 00 40 	cmplw   cr7,r8,r0                              
)                                                                     
{                                                                     
  uint32_t seconds = add->tv_sec;                                     
                                                                      
  /* Add the basics */                                                
  time->tv_sec += add->tv_sec;                                        
ffc0cb30:	7d 4a 1a 14 	add     r10,r10,r3                             
  time->tv_nsec += add->tv_nsec;                                      
                                                                      
  /* Now adjust it so nanoseconds is in range */                      
  while ( time->tv_nsec >= TOD_NANOSECONDS_PER_SECOND ) {             
ffc0cb34:	7d 0b 43 78 	mr      r11,r8                                 
)                                                                     
{                                                                     
  uint32_t seconds = add->tv_sec;                                     
                                                                      
  /* Add the basics */                                                
  time->tv_sec += add->tv_sec;                                        
ffc0cb38:	91 49 00 00 	stw     r10,0(r9)                              
  time->tv_nsec += add->tv_nsec;                                      
                                                                      
  /* Now adjust it so nanoseconds is in range */                      
  while ( time->tv_nsec >= TOD_NANOSECONDS_PER_SECOND ) {             
ffc0cb3c:	4c 9d 00 20 	blelr   cr7                                    
    time->tv_nsec -= TOD_NANOSECONDS_PER_SECOND;                      
ffc0cb40:	3d 6b c4 65 	addis   r11,r11,-15259                         
ffc0cb44:	39 6b 36 00 	addi    r11,r11,13824                          
  /* 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 ) {             
ffc0cb48:	7f 8b 00 40 	cmplw   cr7,r11,r0                             
 *                                                                    
 *  This routines adds two timespecs.  The second argument is added   
 *  to the first.                                                     
 */                                                                   
                                                                      
uint32_t _Timespec_Add_to(                                            
ffc0cb4c:	39 4a 00 01 	addi    r10,r10,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++;                                                        
ffc0cb50:	38 63 00 01 	addi    r3,r3,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 ) {             
ffc0cb54:	41 9d ff ec 	bgt+    cr7,ffc0cb40 <_Timespec_Add_to+0x38>   <== NEVER TAKEN
ffc0cb58:	91 69 00 04 	stw     r11,4(r9)                              
ffc0cb5c:	91 49 00 00 	stw     r10,0(r9)                              
    time->tv_sec++;                                                   
    seconds++;                                                        
  }                                                                   
                                                                      
  return seconds;                                                     
}                                                                     
ffc0cb60:	4e 80 00 20 	blr                                            
                                                                      

ffc0cdac <_User_extensions_Fatal>: void _User_extensions_Fatal ( Internal_errors_Source the_source, bool is_internal, Internal_errors_t the_error ) {
ffc0cdac:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc0cdb0:	7c 08 02 a6 	mflr    r0                                     
ffc0cdb4:	93 c1 00 18 	stw     r30,24(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0cdb8:	3f c0 00 00 	lis     r30,0                                  
ffc0cdbc:	3b de 2d 20 	addi    r30,r30,11552                          
void _User_extensions_Fatal (                                         
  Internal_errors_Source  the_source,                                 
  bool                    is_internal,                                
  Internal_errors_t       the_error                                   
)                                                                     
{                                                                     
ffc0cdc0:	93 e1 00 1c 	stw     r31,28(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0cdc4:	83 fe 00 08 	lwz     r31,8(r30)                             
void _User_extensions_Fatal (                                         
  Internal_errors_Source  the_source,                                 
  bool                    is_internal,                                
  Internal_errors_t       the_error                                   
)                                                                     
{                                                                     
ffc0cdc8:	93 61 00 0c 	stw     r27,12(r1)                             
ffc0cdcc:	7c 7b 1b 78 	mr      r27,r3                                 
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0cdd0:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
void _User_extensions_Fatal (                                         
  Internal_errors_Source  the_source,                                 
  bool                    is_internal,                                
  Internal_errors_t       the_error                                   
)                                                                     
{                                                                     
ffc0cdd4:	93 81 00 10 	stw     r28,16(r1)                             
ffc0cdd8:	7c 9c 23 78 	mr      r28,r4                                 
ffc0cddc:	93 a1 00 14 	stw     r29,20(r1)                             
ffc0cde0:	7c bd 2b 78 	mr      r29,r5                                 
ffc0cde4:	90 01 00 24 	stw     r0,36(r1)                              
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0cde8:	41 9e 00 30 	beq-    cr7,ffc0ce18 <_User_extensions_Fatal+0x6c><== 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 )                      
ffc0cdec:	80 1f 00 30 	lwz     r0,48(r31)                             
      (*the_extension->Callouts.fatal)( the_source, is_internal, the_error );
ffc0cdf0:	7f 63 db 78 	mr      r3,r27                                 
ffc0cdf4:	7f 84 e3 78 	mr      r4,r28                                 
        !_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 )                      
ffc0cdf8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
      (*the_extension->Callouts.fatal)( the_source, is_internal, the_error );
ffc0cdfc:	7f a5 eb 78 	mr      r5,r29                                 
        !_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 )                      
ffc0ce00:	41 9e 00 0c 	beq-    cr7,ffc0ce0c <_User_extensions_Fatal+0x60>
      (*the_extension->Callouts.fatal)( the_source, is_internal, the_error );
ffc0ce04:	7c 09 03 a6 	mtctr   r0                                     
ffc0ce08:	4e 80 04 21 	bctrl                                          
  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 ) {                             
ffc0ce0c:	83 ff 00 04 	lwz     r31,4(r31)                             
)                                                                     
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0ce10:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
ffc0ce14:	40 9e ff d8 	bne+    cr7,ffc0cdec <_User_extensions_Fatal+0x40>
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.fatal != NULL )                      
      (*the_extension->Callouts.fatal)( the_source, is_internal, the_error );
  }                                                                   
}                                                                     
ffc0ce18:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0ce1c:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc0ce20:	7c 08 03 a6 	mtlr    r0                                     
ffc0ce24:	83 81 00 10 	lwz     r28,16(r1)                             
ffc0ce28:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc0ce2c:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0ce30:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0ce34:	38 21 00 20 	addi    r1,r1,32                               
ffc0ce38:	4e 80 00 20 	blr                                            
                                                                      

ffc0cbb8 <_User_extensions_Handler_initialization>: #include <rtems/score/userext.h> #include <rtems/score/wkspace.h> #include <string.h> void _User_extensions_Handler_initialization(void) {
ffc0cbb8:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0cbbc:	7c 08 02 a6 	mflr    r0                                     
  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;  
ffc0cbc0:	3c e0 00 00 	lis     r7,0                                   
#include <rtems/score/userext.h>                                      
#include <rtems/score/wkspace.h>                                      
#include <string.h>                                                   
                                                                      
void _User_extensions_Handler_initialization(void)                    
{                                                                     
ffc0cbc4:	90 01 00 1c 	stw     r0,28(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;  
ffc0cbc8:	38 e7 20 a0 	addi    r7,r7,8352                             
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
ffc0cbcc:	3d 00 00 00 	lis     r8,0                                   
#include <rtems/score/userext.h>                                      
#include <rtems/score/wkspace.h>                                      
#include <string.h>                                                   
                                                                      
void _User_extensions_Handler_initialization(void)                    
{                                                                     
ffc0cbd0:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0cbd4:	3d 40 00 00 	lis     r10,0                                  
ffc0cbd8:	39 68 2d 20 	addi    r11,r8,11552                           
  uint32_t                 i;                                         
  uint32_t                 number_of_extensions;                      
  User_extensions_Table   *initial_extensions;                        
                                                                      
  number_of_extensions = Configuration.number_of_initial_extensions;  
  initial_extensions   = Configuration.User_extension_table;          
ffc0cbdc:	83 a7 00 3c 	lwz     r29,60(r7)                             
ffc0cbe0:	39 2a 2b b0 	addi    r9,r10,11184                           
  the_chain->permanent_null = NULL;                                   
ffc0cbe4:	38 00 00 00 	li      r0,0                                   
#include <rtems/score/userext.h>                                      
#include <rtems/score/wkspace.h>                                      
#include <string.h>                                                   
                                                                      
void _User_extensions_Handler_initialization(void)                    
{                                                                     
ffc0cbe8:	93 c1 00 10 	stw     r30,16(r1)                             
  initial_extensions   = Configuration.User_extension_table;          
                                                                      
  _Chain_Initialize_empty( &_User_extensions_List );                  
  _Chain_Initialize_empty( &_User_extensions_Switches_list );         
                                                                      
  if ( initial_extensions ) {                                         
ffc0cbec:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
ffc0cbf0:	38 ab 00 04 	addi    r5,r11,4                               
#include <rtems/score/userext.h>                                      
#include <rtems/score/wkspace.h>                                      
#include <string.h>                                                   
                                                                      
void _User_extensions_Handler_initialization(void)                    
{                                                                     
ffc0cbf4:	93 81 00 08 	stw     r28,8(r1)                              
ffc0cbf8:	38 c9 00 04 	addi    r6,r9,4                                
ffc0cbfc:	93 e1 00 14 	stw     r31,20(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;  
ffc0cc00:	83 c7 00 38 	lwz     r30,56(r7)                             
ffc0cc04:	90 a8 2d 20 	stw     r5,11552(r8)                           
  the_chain->permanent_null = NULL;                                   
ffc0cc08:	90 0b 00 04 	stw     r0,4(r11)                              
  the_chain->last           = _Chain_Head(the_chain);                 
ffc0cc0c:	91 6b 00 08 	stw     r11,8(r11)                             
 */                                                                   
RTEMS_INLINE_ROUTINE void _Chain_Initialize_empty(                    
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  the_chain->first          = _Chain_Tail(the_chain);                 
ffc0cc10:	90 ca 2b b0 	stw     r6,11184(r10)                          
  the_chain->permanent_null = NULL;                                   
ffc0cc14:	90 09 00 04 	stw     r0,4(r9)                               
  the_chain->last           = _Chain_Head(the_chain);                 
ffc0cc18:	91 29 00 08 	stw     r9,8(r9)                               
  initial_extensions   = Configuration.User_extension_table;          
                                                                      
  _Chain_Initialize_empty( &_User_extensions_List );                  
  _Chain_Initialize_empty( &_User_extensions_Switches_list );         
                                                                      
  if ( initial_extensions ) {                                         
ffc0cc1c:	41 9e 00 8c 	beq-    cr7,ffc0cca8 <_User_extensions_Handler_initialization+0xf0><== NEVER TAKEN
    extension = (User_extensions_Control *)                           
      _Workspace_Allocate_or_fatal_error(                             
        number_of_extensions * sizeof( User_extensions_Control )      
ffc0cc20:	1f 9e 00 34 	mulli   r28,r30,52                             
  _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(                             
ffc0cc24:	7f 83 e3 78 	mr      r3,r28                                 
ffc0cc28:	48 00 08 b1 	bl      ffc0d4d8 <_Workspace_Allocate_or_fatal_error>
        number_of_extensions * sizeof( User_extensions_Control )      
      );                                                              
                                                                      
    memset (                                                          
ffc0cc2c:	38 80 00 00 	li      r4,0                                   
ffc0cc30:	7f 85 e3 78 	mr      r5,r28                                 
  _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(                             
ffc0cc34:	7c 7f 1b 78 	mr      r31,r3                                 
        number_of_extensions * sizeof( User_extensions_Control )      
      );                                                              
                                                                      
    memset (                                                          
ffc0cc38:	48 00 62 51 	bl      ffc12e88 <memset>                      
      extension,                                                      
      0,                                                              
      number_of_extensions * sizeof( User_extensions_Control )        
    );                                                                
                                                                      
    for ( i = 0 ; i < number_of_extensions ; i++ ) {                  
ffc0cc3c:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc0cc40:	41 9e 00 68 	beq-    cr7,ffc0cca8 <_User_extensions_Handler_initialization+0xf0><== NEVER TAKEN
ffc0cc44:	3b 80 00 00 	li      r28,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;                             
ffc0cc48:	7f a9 eb 78 	mr      r9,r29                                 
#include <rtems/config.h>                                             
#include <rtems/score/userext.h>                                      
#include <rtems/score/wkspace.h>                                      
#include <string.h>                                                   
                                                                      
void _User_extensions_Handler_initialization(void)                    
ffc0cc4c:	57 80 28 34 	rlwinm  r0,r28,5,0,26                          
ffc0cc50:	7d 09 00 6e 	lwzux   r8,r9,r0                               
                                                                      
  _User_extensions_Add_set( extension );                              
ffc0cc54:	7f e3 fb 78 	mr      r3,r31                                 
      extension,                                                      
      0,                                                              
      number_of_extensions * sizeof( User_extensions_Control )        
    );                                                                
                                                                      
    for ( i = 0 ; i < number_of_extensions ; i++ ) {                  
ffc0cc58:	3b 9c 00 01 	addi    r28,r28,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;                             
ffc0cc5c:	81 49 00 04 	lwz     r10,4(r9)                              
ffc0cc60:	81 69 00 08 	lwz     r11,8(r9)                              
ffc0cc64:	80 09 00 0c 	lwz     r0,12(r9)                              
ffc0cc68:	91 1f 00 14 	stw     r8,20(r31)                             
ffc0cc6c:	91 5f 00 18 	stw     r10,24(r31)                            
ffc0cc70:	91 7f 00 1c 	stw     r11,28(r31)                            
ffc0cc74:	90 1f 00 20 	stw     r0,32(r31)                             
ffc0cc78:	81 09 00 10 	lwz     r8,16(r9)                              
ffc0cc7c:	81 49 00 14 	lwz     r10,20(r9)                             
ffc0cc80:	81 69 00 18 	lwz     r11,24(r9)                             
ffc0cc84:	80 09 00 1c 	lwz     r0,28(r9)                              
ffc0cc88:	91 1f 00 24 	stw     r8,36(r31)                             
ffc0cc8c:	91 5f 00 28 	stw     r10,40(r31)                            
ffc0cc90:	91 7f 00 2c 	stw     r11,44(r31)                            
ffc0cc94:	90 1f 00 30 	stw     r0,48(r31)                             
      _User_extensions_Add_set_with_table (extension, &initial_extensions[i]);
      extension++;                                                    
ffc0cc98:	3b ff 00 34 	addi    r31,r31,52                             
                                                                      
  _User_extensions_Add_set( extension );                              
ffc0cc9c:	48 00 35 e5 	bl      ffc10280 <_User_extensions_Add_set>    
      extension,                                                      
      0,                                                              
      number_of_extensions * sizeof( User_extensions_Control )        
    );                                                                
                                                                      
    for ( i = 0 ; i < number_of_extensions ; i++ ) {                  
ffc0cca0:	7f 9e e0 40 	cmplw   cr7,r30,r28                            
ffc0cca4:	41 9d ff a4 	bgt+    cr7,ffc0cc48 <_User_extensions_Handler_initialization+0x90>
      _User_extensions_Add_set_with_table (extension, &initial_extensions[i]);
      extension++;                                                    
    }                                                                 
  }                                                                   
}                                                                     
ffc0cca8:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0ccac:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0ccb0:	7c 08 03 a6 	mtlr    r0                                     
ffc0ccb4:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0ccb8:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0ccbc:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0ccc0:	38 21 00 18 	addi    r1,r1,24                               
ffc0ccc4:	4e 80 00 20 	blr                                            
                                                                      

ffc0ccc8 <_User_extensions_Thread_begin>: #include <rtems/score/userext.h> void _User_extensions_Thread_begin ( Thread_Control *executing ) {
ffc0ccc8:	94 21 ff e8 	stwu    r1,-24(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0cccc:	3d 20 00 00 	lis     r9,0                                   
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_begin (                                  
  Thread_Control *executing                                           
)                                                                     
{                                                                     
ffc0ccd0:	7c 08 02 a6 	mflr    r0                                     
ffc0ccd4:	93 c1 00 10 	stw     r30,16(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0ccd8:	3b c9 2d 20 	addi    r30,r9,11552                           
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc0ccdc:	3b de 00 04 	addi    r30,r30,4                              
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_begin (                                  
  Thread_Control *executing                                           
)                                                                     
{                                                                     
ffc0cce0:	93 e1 00 14 	stw     r31,20(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0cce4:	83 e9 2d 20 	lwz     r31,11552(r9)                          
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_begin (                                  
  Thread_Control *executing                                           
)                                                                     
{                                                                     
ffc0cce8:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0ccec:	7c 7d 1b 78 	mr      r29,r3                                 
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0ccf0:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_begin (                                  
  Thread_Control *executing                                           
)                                                                     
{                                                                     
ffc0ccf4:	90 01 00 1c 	stw     r0,28(r1)                              
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0ccf8:	41 9e 00 28 	beq-    cr7,ffc0cd20 <_User_extensions_Thread_begin+0x58><== 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 )               
ffc0ccfc:	80 1f 00 28 	lwz     r0,40(r31)                             
      (*the_extension->Callouts.thread_begin)( executing );           
ffc0cd00:	7f a3 eb 78 	mr      r3,r29                                 
        !_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 )               
ffc0cd04:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0cd08:	41 9e 00 0c 	beq-    cr7,ffc0cd14 <_User_extensions_Thread_begin+0x4c>
      (*the_extension->Callouts.thread_begin)( executing );           
ffc0cd0c:	7c 09 03 a6 	mtctr   r0                                     
ffc0cd10:	4e 80 04 21 	bctrl                                          
  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 ) {                                 
ffc0cd14:	83 ff 00 00 	lwz     r31,0(r31)                             
)                                                                     
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0cd18:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
ffc0cd1c:	40 9e ff e0 	bne+    cr7,ffc0ccfc <_User_extensions_Thread_begin+0x34>
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_begin != NULL )               
      (*the_extension->Callouts.thread_begin)( executing );           
  }                                                                   
}                                                                     
ffc0cd20:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0cd24:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0cd28:	7c 08 03 a6 	mtlr    r0                                     
ffc0cd2c:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0cd30:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0cd34:	38 21 00 18 	addi    r1,r1,24                               
ffc0cd38:	4e 80 00 20 	blr                                            
                                                                      

ffc0ce3c <_User_extensions_Thread_create>: #include <rtems/score/userext.h> bool _User_extensions_Thread_create ( Thread_Control *the_thread ) {
ffc0ce3c:	94 21 ff e8 	stwu    r1,-24(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
  bool                     status;                                    
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0ce40:	3d 20 00 00 	lis     r9,0                                   
#include <rtems/score/userext.h>                                      
                                                                      
bool _User_extensions_Thread_create (                                 
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0ce44:	7c 08 02 a6 	mflr    r0                                     
ffc0ce48:	93 c1 00 10 	stw     r30,16(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
  bool                     status;                                    
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0ce4c:	3b c9 2d 20 	addi    r30,r9,11552                           
ffc0ce50:	3b de 00 04 	addi    r30,r30,4                              
#include <rtems/score/userext.h>                                      
                                                                      
bool _User_extensions_Thread_create (                                 
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0ce54:	93 e1 00 14 	stw     r31,20(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
  bool                     status;                                    
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0ce58:	83 e9 2d 20 	lwz     r31,11552(r9)                          
#include <rtems/score/userext.h>                                      
                                                                      
bool _User_extensions_Thread_create (                                 
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0ce5c:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0ce60:	7c 7d 1b 78 	mr      r29,r3                                 
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
  bool                     status;                                    
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0ce64:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
#include <rtems/score/userext.h>                                      
                                                                      
bool _User_extensions_Thread_create (                                 
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0ce68:	90 01 00 1c 	stw     r0,28(r1)                              
      if ( !status )                                                  
        return false;                                                 
    }                                                                 
  }                                                                   
                                                                      
  return true;                                                        
ffc0ce6c:	38 60 00 01 	li      r3,1                                   
#include <rtems/score/userext.h>                                      
                                                                      
bool _User_extensions_Thread_create (                                 
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0ce70:	93 81 00 08 	stw     r28,8(r1)                              
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
  bool                     status;                                    
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0ce74:	41 9e 00 40 	beq-    cr7,ffc0ceb4 <_User_extensions_Thread_create+0x78><== 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)(              
ffc0ce78:	3f 80 00 00 	lis     r28,0                                  
        !_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 ) {            
ffc0ce7c:	80 1f 00 14 	lwz     r0,20(r31)                             
      status = (*the_extension->Callouts.thread_create)(              
ffc0ce80:	39 3c 2d 64 	addi    r9,r28,11620                           
ffc0ce84:	7f a4 eb 78 	mr      r4,r29                                 
        !_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 ) {            
ffc0ce88:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0ce8c:	41 9e 00 18 	beq-    cr7,ffc0cea4 <_User_extensions_Thread_create+0x68>
      status = (*the_extension->Callouts.thread_create)(              
ffc0ce90:	80 69 00 0c 	lwz     r3,12(r9)                              
ffc0ce94:	7c 09 03 a6 	mtctr   r0                                     
ffc0ce98:	4e 80 04 21 	bctrl                                          
        _Thread_Executing,                                            
        the_thread                                                    
      );                                                              
      if ( !status )                                                  
ffc0ce9c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0cea0:	41 9e 00 34 	beq-    cr7,ffc0ced4 <_User_extensions_Thread_create+0x98>
  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 ) {                                 
ffc0cea4:	83 ff 00 00 	lwz     r31,0(r31)                             
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
  bool                     status;                                    
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0cea8:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
ffc0ceac:	40 9e ff d0 	bne+    cr7,ffc0ce7c <_User_extensions_Thread_create+0x40>
      if ( !status )                                                  
        return false;                                                 
    }                                                                 
  }                                                                   
                                                                      
  return true;                                                        
ffc0ceb0:	38 60 00 01 	li      r3,1                                   
}                                                                     
ffc0ceb4:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0ceb8:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0cebc:	7c 08 03 a6 	mtlr    r0                                     
ffc0cec0:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0cec4:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0cec8:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0cecc:	38 21 00 18 	addi    r1,r1,24                               
ffc0ced0:	4e 80 00 20 	blr                                            
ffc0ced4:	80 01 00 1c 	lwz     r0,28(r1)                              
      status = (*the_extension->Callouts.thread_create)(              
        _Thread_Executing,                                            
        the_thread                                                    
      );                                                              
      if ( !status )                                                  
        return false;                                                 
ffc0ced8:	38 60 00 00 	li      r3,0                                   
    }                                                                 
  }                                                                   
                                                                      
  return true;                                                        
}                                                                     
ffc0cedc:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0cee0:	7c 08 03 a6 	mtlr    r0                                     
ffc0cee4:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0cee8:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0ceec:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0cef0:	38 21 00 18 	addi    r1,r1,24                               
ffc0cef4:	4e 80 00 20 	blr                                            
                                                                      

ffc0cef8 <_User_extensions_Thread_delete>: #include <rtems/score/userext.h> void _User_extensions_Thread_delete ( Thread_Control *the_thread ) {
ffc0cef8:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0cefc:	7c 08 02 a6 	mflr    r0                                     
ffc0cf00:	93 c1 00 10 	stw     r30,16(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0cf04:	3f c0 00 00 	lis     r30,0                                  
ffc0cf08:	3b de 2d 20 	addi    r30,r30,11552                          
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_delete (                                 
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0cf0c:	93 e1 00 14 	stw     r31,20(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0cf10:	83 fe 00 08 	lwz     r31,8(r30)                             
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_delete (                                 
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0cf14:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0cf18:	7c 7d 1b 78 	mr      r29,r3                                 
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0cf1c:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_delete (                                 
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0cf20:	90 01 00 1c 	stw     r0,28(r1)                              
ffc0cf24:	93 81 00 08 	stw     r28,8(r1)                              
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0cf28:	41 9e 00 34 	beq-    cr7,ffc0cf5c <_User_extensions_Thread_delete+0x64><== 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)(                       
ffc0cf2c:	3f 80 00 00 	lis     r28,0                                  
        !_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 )              
ffc0cf30:	80 1f 00 20 	lwz     r0,32(r31)                             
      (*the_extension->Callouts.thread_delete)(                       
ffc0cf34:	39 3c 2d 64 	addi    r9,r28,11620                           
ffc0cf38:	7f a4 eb 78 	mr      r4,r29                                 
        !_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 )              
ffc0cf3c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0cf40:	41 9e 00 10 	beq-    cr7,ffc0cf50 <_User_extensions_Thread_delete+0x58>
      (*the_extension->Callouts.thread_delete)(                       
ffc0cf44:	80 69 00 0c 	lwz     r3,12(r9)                              
ffc0cf48:	7c 09 03 a6 	mtctr   r0                                     
ffc0cf4c:	4e 80 04 21 	bctrl                                          
  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 ) {                             
ffc0cf50:	83 ff 00 04 	lwz     r31,4(r31)                             
)                                                                     
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0cf54:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
ffc0cf58:	40 9e ff d8 	bne+    cr7,ffc0cf30 <_User_extensions_Thread_delete+0x38>
      (*the_extension->Callouts.thread_delete)(                       
        _Thread_Executing,                                            
        the_thread                                                    
      );                                                              
  }                                                                   
}                                                                     
ffc0cf5c:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0cf60:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0cf64:	7c 08 03 a6 	mtlr    r0                                     
ffc0cf68:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0cf6c:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0cf70:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0cf74:	38 21 00 18 	addi    r1,r1,24                               
ffc0cf78:	4e 80 00 20 	blr                                            
                                                                      

ffc0cd3c <_User_extensions_Thread_exitted>: void _User_extensions_Thread_exitted ( Thread_Control *executing ) {
ffc0cd3c:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0cd40:	7c 08 02 a6 	mflr    r0                                     
ffc0cd44:	93 c1 00 10 	stw     r30,16(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0cd48:	3f c0 00 00 	lis     r30,0                                  
ffc0cd4c:	3b de 2d 20 	addi    r30,r30,11552                          
}                                                                     
                                                                      
void _User_extensions_Thread_exitted (                                
  Thread_Control *executing                                           
)                                                                     
{                                                                     
ffc0cd50:	93 e1 00 14 	stw     r31,20(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0cd54:	83 fe 00 08 	lwz     r31,8(r30)                             
}                                                                     
                                                                      
void _User_extensions_Thread_exitted (                                
  Thread_Control *executing                                           
)                                                                     
{                                                                     
ffc0cd58:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0cd5c:	7c 7d 1b 78 	mr      r29,r3                                 
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0cd60:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
}                                                                     
                                                                      
void _User_extensions_Thread_exitted (                                
  Thread_Control *executing                                           
)                                                                     
{                                                                     
ffc0cd64:	90 01 00 1c 	stw     r0,28(r1)                              
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0cd68:	41 9e 00 28 	beq-    cr7,ffc0cd90 <_User_extensions_Thread_exitted+0x54><== 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 )             
ffc0cd6c:	80 1f 00 2c 	lwz     r0,44(r31)                             
      (*the_extension->Callouts.thread_exitted)( executing );         
ffc0cd70:	7f a3 eb 78 	mr      r3,r29                                 
        !_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 )             
ffc0cd74:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0cd78:	41 9e 00 0c 	beq-    cr7,ffc0cd84 <_User_extensions_Thread_exitted+0x48>
      (*the_extension->Callouts.thread_exitted)( executing );         
ffc0cd7c:	7c 09 03 a6 	mtctr   r0                                     
ffc0cd80:	4e 80 04 21 	bctrl                                          
  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 ) {                             
ffc0cd84:	83 ff 00 04 	lwz     r31,4(r31)                             
)                                                                     
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.last ;                       
ffc0cd88:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
ffc0cd8c:	40 9e ff e0 	bne+    cr7,ffc0cd6c <_User_extensions_Thread_exitted+0x30>
    the_extension = (User_extensions_Control *) the_node;             
                                                                      
    if ( the_extension->Callouts.thread_exitted != NULL )             
      (*the_extension->Callouts.thread_exitted)( executing );         
  }                                                                   
}                                                                     
ffc0cd90:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0cd94:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0cd98:	7c 08 03 a6 	mtlr    r0                                     
ffc0cd9c:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0cda0:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0cda4:	38 21 00 18 	addi    r1,r1,24                               
ffc0cda8:	4e 80 00 20 	blr                                            
                                                                      

ffc0e0e8 <_User_extensions_Thread_restart>: #include <rtems/score/userext.h> void _User_extensions_Thread_restart ( Thread_Control *the_thread ) {
ffc0e0e8:	94 21 ff e8 	stwu    r1,-24(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0e0ec:	3d 20 00 00 	lis     r9,0                                   
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_restart (                                
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0e0f0:	7c 08 02 a6 	mflr    r0                                     
ffc0e0f4:	93 c1 00 10 	stw     r30,16(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0e0f8:	3b c9 2d a0 	addi    r30,r9,11680                           
ffc0e0fc:	3b de 00 04 	addi    r30,r30,4                              
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_restart (                                
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0e100:	93 e1 00 14 	stw     r31,20(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0e104:	83 e9 2d a0 	lwz     r31,11680(r9)                          
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_restart (                                
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0e108:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0e10c:	7c 7d 1b 78 	mr      r29,r3                                 
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0e110:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_restart (                                
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0e114:	90 01 00 1c 	stw     r0,28(r1)                              
ffc0e118:	93 81 00 08 	stw     r28,8(r1)                              
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0e11c:	41 9e 00 34 	beq-    cr7,ffc0e150 <_User_extensions_Thread_restart+0x68><== 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)(                      
ffc0e120:	3f 80 00 00 	lis     r28,0                                  
        !_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 )             
ffc0e124:	80 1f 00 1c 	lwz     r0,28(r31)                             
      (*the_extension->Callouts.thread_restart)(                      
ffc0e128:	39 3c 2d e4 	addi    r9,r28,11748                           
ffc0e12c:	7f a4 eb 78 	mr      r4,r29                                 
        !_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 )             
ffc0e130:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0e134:	41 9e 00 10 	beq-    cr7,ffc0e144 <_User_extensions_Thread_restart+0x5c>
      (*the_extension->Callouts.thread_restart)(                      
ffc0e138:	80 69 00 0c 	lwz     r3,12(r9)                              
ffc0e13c:	7c 09 03 a6 	mtctr   r0                                     
ffc0e140:	4e 80 04 21 	bctrl                                          
  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 ) {                                 
ffc0e144:	83 ff 00 00 	lwz     r31,0(r31)                             
)                                                                     
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0e148:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
ffc0e14c:	40 9e ff d8 	bne+    cr7,ffc0e124 <_User_extensions_Thread_restart+0x3c>
      (*the_extension->Callouts.thread_restart)(                      
        _Thread_Executing,                                            
        the_thread                                                    
      );                                                              
  }                                                                   
}                                                                     
ffc0e150:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0e154:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0e158:	7c 08 03 a6 	mtlr    r0                                     
ffc0e15c:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0e160:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0e164:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0e168:	38 21 00 18 	addi    r1,r1,24                               
ffc0e16c:	4e 80 00 20 	blr                                            
                                                                      

ffc0cf7c <_User_extensions_Thread_start>: #include <rtems/score/userext.h> void _User_extensions_Thread_start ( Thread_Control *the_thread ) {
ffc0cf7c:	94 21 ff e8 	stwu    r1,-24(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0cf80:	3d 20 00 00 	lis     r9,0                                   
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_start (                                  
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0cf84:	7c 08 02 a6 	mflr    r0                                     
ffc0cf88:	93 c1 00 10 	stw     r30,16(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0cf8c:	3b c9 2d 20 	addi    r30,r9,11552                           
ffc0cf90:	3b de 00 04 	addi    r30,r30,4                              
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_start (                                  
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0cf94:	93 e1 00 14 	stw     r31,20(r1)                             
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0cf98:	83 e9 2d 20 	lwz     r31,11552(r9)                          
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_start (                                  
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0cf9c:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0cfa0:	7c 7d 1b 78 	mr      r29,r3                                 
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0cfa4:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
#include <rtems/score/userext.h>                                      
                                                                      
void _User_extensions_Thread_start (                                  
  Thread_Control *the_thread                                          
)                                                                     
{                                                                     
ffc0cfa8:	90 01 00 1c 	stw     r0,28(r1)                              
ffc0cfac:	93 81 00 08 	stw     r28,8(r1)                              
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0cfb0:	41 9e 00 34 	beq-    cr7,ffc0cfe4 <_User_extensions_Thread_start+0x68><== 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)(                        
ffc0cfb4:	3f 80 00 00 	lis     r28,0                                  
        !_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 )               
ffc0cfb8:	80 1f 00 18 	lwz     r0,24(r31)                             
      (*the_extension->Callouts.thread_start)(                        
ffc0cfbc:	39 3c 2d 64 	addi    r9,r28,11620                           
ffc0cfc0:	7f a4 eb 78 	mr      r4,r29                                 
        !_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 )               
ffc0cfc4:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0cfc8:	41 9e 00 10 	beq-    cr7,ffc0cfd8 <_User_extensions_Thread_start+0x5c>
      (*the_extension->Callouts.thread_start)(                        
ffc0cfcc:	80 69 00 0c 	lwz     r3,12(r9)                              
ffc0cfd0:	7c 09 03 a6 	mtctr   r0                                     
ffc0cfd4:	4e 80 04 21 	bctrl                                          
  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 ) {                                 
ffc0cfd8:	83 ff 00 00 	lwz     r31,0(r31)                             
)                                                                     
{                                                                     
  Chain_Node              *the_node;                                  
  User_extensions_Control *the_extension;                             
                                                                      
  for ( the_node = _User_extensions_List.first ;                      
ffc0cfdc:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
ffc0cfe0:	40 9e ff d8 	bne+    cr7,ffc0cfb8 <_User_extensions_Thread_start+0x3c>
      (*the_extension->Callouts.thread_start)(                        
        _Thread_Executing,                                            
        the_thread                                                    
      );                                                              
  }                                                                   
}                                                                     
ffc0cfe4:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0cfe8:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0cfec:	7c 08 03 a6 	mtlr    r0                                     
ffc0cff0:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0cff4:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0cff8:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0cffc:	38 21 00 18 	addi    r1,r1,24                               
ffc0d000:	4e 80 00 20 	blr                                            
                                                                      

ffc0d004 <_User_extensions_Thread_switch>: void _User_extensions_Thread_switch ( Thread_Control *executing, Thread_Control *heir ) {
ffc0d004:	94 21 ff e8 	stwu    r1,-24(r1)                             
  Chain_Node                     *the_node;                           
  User_extensions_Switch_control *the_extension_switch;               
                                                                      
  for ( the_node = _User_extensions_Switches_list.first ;             
ffc0d008:	3d 20 00 00 	lis     r9,0                                   
                                                                      
void _User_extensions_Thread_switch (                                 
  Thread_Control *executing,                                          
  Thread_Control *heir                                                
)                                                                     
{                                                                     
ffc0d00c:	7c 08 02 a6 	mflr    r0                                     
ffc0d010:	93 c1 00 10 	stw     r30,16(r1)                             
  Chain_Node                     *the_node;                           
  User_extensions_Switch_control *the_extension_switch;               
                                                                      
  for ( the_node = _User_extensions_Switches_list.first ;             
ffc0d014:	3b c9 2b b0 	addi    r30,r9,11184                           
ffc0d018:	3b de 00 04 	addi    r30,r30,4                              
                                                                      
void _User_extensions_Thread_switch (                                 
  Thread_Control *executing,                                          
  Thread_Control *heir                                                
)                                                                     
{                                                                     
ffc0d01c:	93 e1 00 14 	stw     r31,20(r1)                             
  Chain_Node                     *the_node;                           
  User_extensions_Switch_control *the_extension_switch;               
                                                                      
  for ( the_node = _User_extensions_Switches_list.first ;             
ffc0d020:	83 e9 2b b0 	lwz     r31,11184(r9)                          
                                                                      
void _User_extensions_Thread_switch (                                 
  Thread_Control *executing,                                          
  Thread_Control *heir                                                
)                                                                     
{                                                                     
ffc0d024:	93 81 00 08 	stw     r28,8(r1)                              
ffc0d028:	7c 7c 1b 78 	mr      r28,r3                                 
  Chain_Node                     *the_node;                           
  User_extensions_Switch_control *the_extension_switch;               
                                                                      
  for ( the_node = _User_extensions_Switches_list.first ;             
ffc0d02c:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
                                                                      
void _User_extensions_Thread_switch (                                 
  Thread_Control *executing,                                          
  Thread_Control *heir                                                
)                                                                     
{                                                                     
ffc0d030:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0d034:	7c 9d 23 78 	mr      r29,r4                                 
ffc0d038:	90 01 00 1c 	stw     r0,28(r1)                              
  Chain_Node                     *the_node;                           
  User_extensions_Switch_control *the_extension_switch;               
                                                                      
  for ( the_node = _User_extensions_Switches_list.first ;             
ffc0d03c:	41 9e 00 24 	beq-    cr7,ffc0d060 <_User_extensions_Thread_switch+0x5c><== 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 );        
ffc0d040:	80 1f 00 08 	lwz     r0,8(r31)                              
ffc0d044:	7f 83 e3 78 	mr      r3,r28                                 
ffc0d048:	7f a4 eb 78 	mr      r4,r29                                 
ffc0d04c:	7c 09 03 a6 	mtctr   r0                                     
ffc0d050:	4e 80 04 21 	bctrl                                          
  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 ) {                                 
ffc0d054:	83 ff 00 00 	lwz     r31,0(r31)                             
)                                                                     
{                                                                     
  Chain_Node                     *the_node;                           
  User_extensions_Switch_control *the_extension_switch;               
                                                                      
  for ( the_node = _User_extensions_Switches_list.first ;             
ffc0d058:	7f 9f f0 00 	cmpw    cr7,r31,r30                            
ffc0d05c:	40 9e ff e4 	bne+    cr7,ffc0d040 <_User_extensions_Thread_switch+0x3c>
                                                                      
    the_extension_switch = (User_extensions_Switch_control *) the_node;
                                                                      
    (*the_extension_switch->thread_switch)( executing, heir );        
  }                                                                   
}                                                                     
ffc0d060:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0d064:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0d068:	7c 08 03 a6 	mtlr    r0                                     
ffc0d06c:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0d070:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0d074:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0d078:	38 21 00 18 	addi    r1,r1,24                               
ffc0d07c:	4e 80 00 20 	blr                                            
                                                                      

ffc0f598 <_Watchdog_Adjust>: void _Watchdog_Adjust( Chain_Control *header, Watchdog_Adjust_directions direction, Watchdog_Interval units ) {
ffc0f598:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc0f59c:	7c 08 02 a6 	mflr    r0                                     
ffc0f5a0:	90 01 00 24 	stw     r0,36(r1)                              
ffc0f5a4:	93 c1 00 18 	stw     r30,24(r1)                             
ffc0f5a8:	7c be 2b 78 	mr      r30,r5                                 
ffc0f5ac:	93 e1 00 1c 	stw     r31,28(r1)                             
ffc0f5b0:	7c 7f 1b 78 	mr      r31,r3                                 
ffc0f5b4:	93 61 00 0c 	stw     r27,12(r1)                             
ffc0f5b8:	93 81 00 10 	stw     r28,16(r1)                             
ffc0f5bc:	93 a1 00 14 	stw     r29,20(r1)                             
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0f5c0:	7c 00 00 a6 	mfmsr   r0                                     
ffc0f5c4:	7d 30 42 a6 	mfsprg  r9,0                                   
ffc0f5c8:	7c 09 48 78 	andc    r9,r0,r9                               
ffc0f5cc:	7d 20 01 24 	mtmsr   r9                                     
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
ffc0f5d0:	81 23 00 00 	lwz     r9,0(r3)                               
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc0f5d4:	3b 83 00 04 	addi    r28,r3,4                               
   *       hence the compiler must not assume *header to remain       
   *       unmodified across that call.                               
   *                                                                  
   *       Till Straumann, 7/2003                                     
   */                                                                 
  if ( !_Chain_Is_empty( header ) ) {                                 
ffc0f5d8:	7f 89 e0 00 	cmpw    cr7,r9,r28                             
ffc0f5dc:	41 9e 00 6c 	beq-    cr7,ffc0f648 <_Watchdog_Adjust+0xb0>   
    switch ( direction ) {                                            
ffc0f5e0:	2f 84 00 00 	cmpwi   cr7,r4,0                               
ffc0f5e4:	40 9e 00 8c 	bne-    cr7,ffc0f670 <_Watchdog_Adjust+0xd8>   
      case WATCHDOG_BACKWARD:                                         
        _Watchdog_First( header )->delta_interval += units;           
        break;                                                        
      case WATCHDOG_FORWARD:                                          
        while ( units ) {                                             
ffc0f5e8:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc0f5ec:	41 9e 00 5c 	beq-    cr7,ffc0f648 <_Watchdog_Adjust+0xb0>   <== NEVER TAKEN
          if ( units < _Watchdog_First( header )->delta_interval ) {  
ffc0f5f0:	83 a9 00 10 	lwz     r29,16(r9)                             
            _Watchdog_First( header )->delta_interval -= units;       
            break;                                                    
          } else {                                                    
            units -= _Watchdog_First( header )->delta_interval;       
            _Watchdog_First( header )->delta_interval = 1;            
ffc0f5f4:	3b 60 00 01 	li      r27,1                                  
      case WATCHDOG_BACKWARD:                                         
        _Watchdog_First( header )->delta_interval += units;           
        break;                                                        
      case WATCHDOG_FORWARD:                                          
        while ( units ) {                                             
          if ( units < _Watchdog_First( header )->delta_interval ) {  
ffc0f5f8:	7f 85 e8 40 	cmplw   cr7,r5,r29                             
ffc0f5fc:	40 bc 00 18 	bge+    cr7,ffc0f614 <_Watchdog_Adjust+0x7c>   <== ALWAYS TAKEN
ffc0f600:	48 00 00 ac 	b       ffc0f6ac <_Watchdog_Adjust+0x114>      <== NOT EXECUTED
    switch ( direction ) {                                            
      case WATCHDOG_BACKWARD:                                         
        _Watchdog_First( header )->delta_interval += units;           
        break;                                                        
      case WATCHDOG_FORWARD:                                          
        while ( units ) {                                             
ffc0f604:	41 82 00 44 	beq-    ffc0f648 <_Watchdog_Adjust+0xb0>       <== NEVER TAKEN
          if ( units < _Watchdog_First( header )->delta_interval ) {  
ffc0f608:	83 a9 00 10 	lwz     r29,16(r9)                             
ffc0f60c:	7f 9d f0 40 	cmplw   cr7,r29,r30                            
ffc0f610:	41 9d 00 9c 	bgt-    cr7,ffc0f6ac <_Watchdog_Adjust+0x114>  
            _Watchdog_First( header )->delta_interval -= units;       
            break;                                                    
          } else {                                                    
            units -= _Watchdog_First( header )->delta_interval;       
            _Watchdog_First( header )->delta_interval = 1;            
ffc0f614:	93 69 00 10 	stw     r27,16(r9)                             
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0f618:	7c 00 01 24 	mtmsr   r0                                     
                                                                      
            _ISR_Enable( level );                                     
                                                                      
            _Watchdog_Tickle( header );                               
ffc0f61c:	7f e3 fb 78 	mr      r3,r31                                 
ffc0f620:	48 00 03 31 	bl      ffc0f950 <_Watchdog_Tickle>            
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0f624:	7c 00 00 a6 	mfmsr   r0                                     
ffc0f628:	7d 30 42 a6 	mfsprg  r9,0                                   
ffc0f62c:	7c 09 48 78 	andc    r9,r0,r9                               
ffc0f630:	7d 20 01 24 	mtmsr   r9                                     
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
ffc0f634:	81 7f 00 00 	lwz     r11,0(r31)                             
    switch ( direction ) {                                            
      case WATCHDOG_BACKWARD:                                         
        _Watchdog_First( header )->delta_interval += units;           
        break;                                                        
      case WATCHDOG_FORWARD:                                          
        while ( units ) {                                             
ffc0f638:	7f dd f0 51 	subf.   r30,r29,r30                            
                                                                      
            _Watchdog_Tickle( header );                               
                                                                      
            _ISR_Disable( level );                                    
                                                                      
            if ( _Chain_Is_empty( header ) )                          
ffc0f63c:	7f 9c 58 00 	cmpw    cr7,r28,r11                            
RTEMS_INLINE_ROUTINE Watchdog_Control *_Watchdog_First(               
  Chain_Control *header                                               
)                                                                     
{                                                                     
                                                                      
  return ( (Watchdog_Control *) header->first );                      
ffc0f640:	7d 69 5b 78 	mr      r9,r11                                 
ffc0f644:	40 9e ff c0 	bne+    cr7,ffc0f604 <_Watchdog_Adjust+0x6c>   
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0f648:	7c 00 01 24 	mtmsr   r0                                     
    }                                                                 
  }                                                                   
                                                                      
  _ISR_Enable( level );                                               
                                                                      
}                                                                     
ffc0f64c:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0f650:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc0f654:	7c 08 03 a6 	mtlr    r0                                     
ffc0f658:	83 81 00 10 	lwz     r28,16(r1)                             
ffc0f65c:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc0f660:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0f664:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0f668:	38 21 00 20 	addi    r1,r1,32                               
ffc0f66c:	4e 80 00 20 	blr                                            
   *       unmodified across that call.                               
   *                                                                  
   *       Till Straumann, 7/2003                                     
   */                                                                 
  if ( !_Chain_Is_empty( header ) ) {                                 
    switch ( direction ) {                                            
ffc0f670:	2f 84 00 01 	cmpwi   cr7,r4,1                               
ffc0f674:	40 9e ff d4 	bne+    cr7,ffc0f648 <_Watchdog_Adjust+0xb0>   <== NEVER TAKEN
      case WATCHDOG_BACKWARD:                                         
        _Watchdog_First( header )->delta_interval += units;           
ffc0f678:	81 69 00 10 	lwz     r11,16(r9)                             
ffc0f67c:	7f cb 2a 14 	add     r30,r11,r5                             
ffc0f680:	93 c9 00 10 	stw     r30,16(r9)                             
ffc0f684:	7c 00 01 24 	mtmsr   r0                                     
    }                                                                 
  }                                                                   
                                                                      
  _ISR_Enable( level );                                               
                                                                      
}                                                                     
ffc0f688:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0f68c:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc0f690:	7c 08 03 a6 	mtlr    r0                                     
ffc0f694:	83 81 00 10 	lwz     r28,16(r1)                             
ffc0f698:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc0f69c:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0f6a0:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0f6a4:	38 21 00 20 	addi    r1,r1,32                               
ffc0f6a8:	4e 80 00 20 	blr                                            
        _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;       
ffc0f6ac:	7f de e8 50 	subf    r30,r30,r29                            
ffc0f6b0:	93 c9 00 10 	stw     r30,16(r9)                             
            break;                                                    
ffc0f6b4:	4b ff ff 94 	b       ffc0f648 <_Watchdog_Adjust+0xb0>       
                                                                      

ffc0d080 <_Watchdog_Insert>: Watchdog_Control *after; uint32_t insert_isr_nest_level; Watchdog_Interval delta_interval; insert_isr_nest_level = _ISR_Nest_level;
ffc0d080:	3d 20 00 00 	lis     r9,0                                   
ffc0d084:	80 09 2d 6c 	lwz     r0,11628(r9)                           
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0d088:	7c e0 00 a6 	mfmsr   r7                                     
ffc0d08c:	7d 30 42 a6 	mfsprg  r9,0                                   
ffc0d090:	7c e9 48 78 	andc    r9,r7,r9                               
ffc0d094:	7d 20 01 24 	mtmsr   r9                                     
  /*                                                                  
   *  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 ) {                   
ffc0d098:	81 24 00 08 	lwz     r9,8(r4)                               
ffc0d09c:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0d0a0:	40 9e 01 0c 	bne-    cr7,ffc0d1ac <_Watchdog_Insert+0x12c>  
    _ISR_Enable( level );                                             
    return;                                                           
  }                                                                   
                                                                      
  the_watchdog->state = WATCHDOG_BEING_INSERTED;                      
  _Watchdog_Sync_count++;                                             
ffc0d0a4:	3c a0 00 00 	lis     r5,0                                   
ffc0d0a8:	81 25 27 68 	lwz     r9,10088(r5)                           
  if ( the_watchdog->state != WATCHDOG_INACTIVE ) {                   
    _ISR_Enable( level );                                             
    return;                                                           
  }                                                                   
                                                                      
  the_watchdog->state = WATCHDOG_BEING_INSERTED;                      
ffc0d0ac:	39 60 00 01 	li      r11,1                                  
ffc0d0b0:	91 64 00 08 	stw     r11,8(r4)                              
ffc0d0b4:	3d 80 00 00 	lis     r12,0                                  
  _Watchdog_Sync_count++;                                             
ffc0d0b8:	39 29 00 01 	addi    r9,r9,1                                
ffc0d0bc:	91 25 27 68 	stw     r9,10088(r5)                           
                                                                      
restart:                                                              
  delta_interval = the_watchdog->initial;                             
ffc0d0c0:	81 24 00 0c 	lwz     r9,12(r4)                              
   * cache *header!!                                                  
   *                                                                  
   *  Till Straumann, 7/2003 (gcc-3.2.2 -O4 on powerpc)               
   *                                                                  
   */                                                                 
  for ( after = (Watchdog_Control *) ((volatile Chain_Control *)header)->first ;
ffc0d0c4:	81 63 00 00 	lwz     r11,0(r3)                              
        ;                                                             
        after = _Watchdog_Next( after ) ) {                           
                                                                      
     if ( delta_interval == 0 || !_Watchdog_Next( after ) )           
ffc0d0c8:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0d0cc:	41 9e 00 98 	beq-    cr7,ffc0d164 <_Watchdog_Insert+0xe4>   
ffc0d0d0:	81 4b 00 00 	lwz     r10,0(r11)                             
ffc0d0d4:	2f 8a 00 00 	cmpwi   cr7,r10,0                              
ffc0d0d8:	41 9e 00 8c 	beq-    cr7,ffc0d164 <_Watchdog_Insert+0xe4>   
       break;                                                         
                                                                      
     if ( delta_interval < after->delta_interval ) {                  
ffc0d0dc:	81 4b 00 10 	lwz     r10,16(r11)                            
ffc0d0e0:	7f 89 50 40 	cmplw   cr7,r9,r10                             
ffc0d0e4:	41 9c 00 d0 	blt-    cr7,ffc0d1b4 <_Watchdog_Insert+0x134>  
                                                                      
static inline void ppc_interrupt_flash( uint32_t level )              
{                                                                     
  uint32_t current_level;                                             
                                                                      
  asm volatile (                                                      
ffc0d0e8:	7d 00 00 a6 	mfmsr   r8                                     
ffc0d0ec:	7c e0 01 24 	mtmsr   r7                                     
ffc0d0f0:	7d 00 01 24 	mtmsr   r8                                     
      *  mechanism used here WAS redesigned to address this.          
      */                                                              
                                                                      
     _ISR_Flash( level );                                             
                                                                      
     if ( the_watchdog->state != WATCHDOG_BEING_INSERTED ) {          
ffc0d0f4:	81 04 00 08 	lwz     r8,8(r4)                               
ffc0d0f8:	2f 88 00 01 	cmpwi   cr7,r8,1                               
ffc0d0fc:	40 9e 00 98 	bne-    cr7,ffc0d194 <_Watchdog_Insert+0x114>  
       goto exit_insert;                                              
     }                                                                
                                                                      
     if ( _Watchdog_Sync_level > insert_isr_nest_level ) {            
ffc0d100:	81 0c 27 58 	lwz     r8,10072(r12)                          
ffc0d104:	38 cc 27 58 	addi    r6,r12,10072                           
     if ( delta_interval < after->delta_interval ) {                  
       after->delta_interval -= delta_interval;                       
       break;                                                         
     }                                                                
                                                                      
     delta_interval -= after->delta_interval;                         
ffc0d108:	7d 2a 48 50 	subf    r9,r10,r9                              
                                                                      
     if ( the_watchdog->state != WATCHDOG_BEING_INSERTED ) {          
       goto exit_insert;                                              
     }                                                                
                                                                      
     if ( _Watchdog_Sync_level > insert_isr_nest_level ) {            
ffc0d10c:	7f 80 40 40 	cmplw   cr7,r0,r8                              
ffc0d110:	40 bc 00 48 	bge+    cr7,ffc0d158 <_Watchdog_Insert+0xd8>   
ffc0d114:	48 00 00 dc 	b       ffc0d1f0 <_Watchdog_Insert+0x170>      
   */                                                                 
  for ( after = (Watchdog_Control *) ((volatile Chain_Control *)header)->first ;
        ;                                                             
        after = _Watchdog_Next( after ) ) {                           
                                                                      
     if ( delta_interval == 0 || !_Watchdog_Next( after ) )           
ffc0d118:	81 4b 00 00 	lwz     r10,0(r11)                             
ffc0d11c:	2f 8a 00 00 	cmpwi   cr7,r10,0                              
ffc0d120:	41 9e 00 44 	beq-    cr7,ffc0d164 <_Watchdog_Insert+0xe4>   
       break;                                                         
                                                                      
     if ( delta_interval < after->delta_interval ) {                  
ffc0d124:	81 4b 00 10 	lwz     r10,16(r11)                            
ffc0d128:	7f 8a 48 40 	cmplw   cr7,r10,r9                             
ffc0d12c:	41 9d 00 88 	bgt-    cr7,ffc0d1b4 <_Watchdog_Insert+0x134>  
ffc0d130:	7d 00 00 a6 	mfmsr   r8                                     
ffc0d134:	7c e0 01 24 	mtmsr   r7                                     
ffc0d138:	7d 00 01 24 	mtmsr   r8                                     
      *  mechanism used here WAS redesigned to address this.          
      */                                                              
                                                                      
     _ISR_Flash( level );                                             
                                                                      
     if ( the_watchdog->state != WATCHDOG_BEING_INSERTED ) {          
ffc0d13c:	81 04 00 08 	lwz     r8,8(r4)                               
     if ( delta_interval < after->delta_interval ) {                  
       after->delta_interval -= delta_interval;                       
       break;                                                         
     }                                                                
                                                                      
     delta_interval -= after->delta_interval;                         
ffc0d140:	7d 2a 48 50 	subf    r9,r10,r9                              
      *  mechanism used here WAS redesigned to address this.          
      */                                                              
                                                                      
     _ISR_Flash( level );                                             
                                                                      
     if ( the_watchdog->state != WATCHDOG_BEING_INSERTED ) {          
ffc0d144:	2f 88 00 01 	cmpwi   cr7,r8,1                               
ffc0d148:	40 9e 00 4c 	bne-    cr7,ffc0d194 <_Watchdog_Insert+0x114>  <== NEVER TAKEN
       goto exit_insert;                                              
     }                                                                
                                                                      
     if ( _Watchdog_Sync_level > insert_isr_nest_level ) {            
ffc0d14c:	81 46 00 00 	lwz     r10,0(r6)                              
ffc0d150:	7f 80 50 40 	cmplw   cr7,r0,r10                             
ffc0d154:	41 9c 00 9c 	blt-    cr7,ffc0d1f0 <_Watchdog_Insert+0x170>  <== NEVER TAKEN
   */                                                                 
  for ( after = (Watchdog_Control *) ((volatile Chain_Control *)header)->first ;
        ;                                                             
        after = _Watchdog_Next( after ) ) {                           
                                                                      
     if ( delta_interval == 0 || !_Watchdog_Next( after ) )           
ffc0d158:	2f 89 00 00 	cmpwi   cr7,r9,0                               
                                                                      
exit_insert:                                                          
  _Watchdog_Sync_level = insert_isr_nest_level;                       
  _Watchdog_Sync_count--;                                             
  _ISR_Enable( level );                                               
}                                                                     
ffc0d15c:	81 6b 00 00 	lwz     r11,0(r11)                             
   */                                                                 
  for ( after = (Watchdog_Control *) ((volatile Chain_Control *)header)->first ;
        ;                                                             
        after = _Watchdog_Next( after ) ) {                           
                                                                      
     if ( delta_interval == 0 || !_Watchdog_Next( after ) )           
ffc0d160:	40 9e ff b8 	bne+    cr7,ffc0d118 <_Watchdog_Insert+0x98>   
                                                                      
  _Watchdog_Activate( the_watchdog );                                 
                                                                      
  the_watchdog->delta_interval = delta_interval;                      
                                                                      
  _Chain_Insert_unprotected( after->Node.previous, &the_watchdog->Node );
ffc0d164:	81 6b 00 04 	lwz     r11,4(r11)                             
                                                                      
  the_watchdog->start_time = _Watchdog_Ticks_since_boot;              
ffc0d168:	3d 00 00 00 	lis     r8,0                                   
ffc0d16c:	81 08 27 6c 	lwz     r8,10092(r8)                           
RTEMS_INLINE_ROUTINE void _Watchdog_Activate(                         
  Watchdog_Control *the_watchdog                                      
)                                                                     
{                                                                     
                                                                      
  the_watchdog->state = WATCHDOG_ACTIVE;                              
ffc0d170:	38 c0 00 02 	li      r6,2                                   
)                                                                     
{                                                                     
  Chain_Node *before_node;                                            
                                                                      
  the_node->previous    = after_node;                                 
  before_node           = after_node->next;                           
ffc0d174:	81 4b 00 00 	lwz     r10,0(r11)                             
  Chain_Node *the_node                                                
)                                                                     
{                                                                     
  Chain_Node *before_node;                                            
                                                                      
  the_node->previous    = after_node;                                 
ffc0d178:	91 64 00 04 	stw     r11,4(r4)                              
ffc0d17c:	90 c4 00 08 	stw     r6,8(r4)                               
     }                                                                
  }                                                                   
                                                                      
  _Watchdog_Activate( the_watchdog );                                 
                                                                      
  the_watchdog->delta_interval = delta_interval;                      
ffc0d180:	91 24 00 10 	stw     r9,16(r4)                              
  before_node           = after_node->next;                           
  after_node->next      = the_node;                                   
ffc0d184:	90 8b 00 00 	stw     r4,0(r11)                              
  the_node->next        = before_node;                                
  before_node->previous = the_node;                                   
ffc0d188:	90 8a 00 04 	stw     r4,4(r10)                              
  Chain_Node *before_node;                                            
                                                                      
  the_node->previous    = after_node;                                 
  before_node           = after_node->next;                           
  after_node->next      = the_node;                                   
  the_node->next        = before_node;                                
ffc0d18c:	91 44 00 00 	stw     r10,0(r4)                              
                                                                      
  _Chain_Insert_unprotected( after->Node.previous, &the_watchdog->Node );
                                                                      
  the_watchdog->start_time = _Watchdog_Ticks_since_boot;              
ffc0d190:	91 04 00 14 	stw     r8,20(r4)                              
                                                                      
exit_insert:                                                          
  _Watchdog_Sync_level = insert_isr_nest_level;                       
ffc0d194:	90 0c 27 58 	stw     r0,10072(r12)                          
  _Watchdog_Sync_count--;                                             
ffc0d198:	81 25 27 68 	lwz     r9,10088(r5)                           
ffc0d19c:	38 09 ff ff 	addi    r0,r9,-1                               
ffc0d1a0:	90 05 27 68 	stw     r0,10088(r5)                           
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0d1a4:	7c e0 01 24 	mtmsr   r7                                     
ffc0d1a8:	4e 80 00 20 	blr                                            
ffc0d1ac:	7c e0 01 24 	mtmsr   r7                                     
ffc0d1b0:	4e 80 00 20 	blr                                            
                                                                      
     if ( delta_interval == 0 || !_Watchdog_Next( after ) )           
       break;                                                         
                                                                      
     if ( delta_interval < after->delta_interval ) {                  
       after->delta_interval -= delta_interval;                       
ffc0d1b4:	7d 49 50 50 	subf    r10,r9,r10                             
ffc0d1b8:	91 4b 00 10 	stw     r10,16(r11)                            
                                                                      
  the_watchdog->delta_interval = delta_interval;                      
                                                                      
  _Chain_Insert_unprotected( after->Node.previous, &the_watchdog->Node );
                                                                      
  the_watchdog->start_time = _Watchdog_Ticks_since_boot;              
ffc0d1bc:	3d 00 00 00 	lis     r8,0                                   
ffc0d1c0:	38 c0 00 02 	li      r6,2                                   
                                                                      
  _Watchdog_Activate( the_watchdog );                                 
                                                                      
  the_watchdog->delta_interval = delta_interval;                      
                                                                      
  _Chain_Insert_unprotected( after->Node.previous, &the_watchdog->Node );
ffc0d1c4:	81 6b 00 04 	lwz     r11,4(r11)                             
                                                                      
  the_watchdog->start_time = _Watchdog_Ticks_since_boot;              
ffc0d1c8:	81 08 27 6c 	lwz     r8,10092(r8)                           
)                                                                     
{                                                                     
  Chain_Node *before_node;                                            
                                                                      
  the_node->previous    = after_node;                                 
  before_node           = after_node->next;                           
ffc0d1cc:	81 4b 00 00 	lwz     r10,0(r11)                             
  Chain_Node *the_node                                                
)                                                                     
{                                                                     
  Chain_Node *before_node;                                            
                                                                      
  the_node->previous    = after_node;                                 
ffc0d1d0:	91 64 00 04 	stw     r11,4(r4)                              
ffc0d1d4:	90 c4 00 08 	stw     r6,8(r4)                               
     }                                                                
  }                                                                   
                                                                      
  _Watchdog_Activate( the_watchdog );                                 
                                                                      
  the_watchdog->delta_interval = delta_interval;                      
ffc0d1d8:	91 24 00 10 	stw     r9,16(r4)                              
  before_node           = after_node->next;                           
  after_node->next      = the_node;                                   
ffc0d1dc:	90 8b 00 00 	stw     r4,0(r11)                              
  the_node->next        = before_node;                                
  before_node->previous = the_node;                                   
ffc0d1e0:	90 8a 00 04 	stw     r4,4(r10)                              
  Chain_Node *before_node;                                            
                                                                      
  the_node->previous    = after_node;                                 
  before_node           = after_node->next;                           
  after_node->next      = the_node;                                   
  the_node->next        = before_node;                                
ffc0d1e4:	91 44 00 00 	stw     r10,0(r4)                              
                                                                      
  _Chain_Insert_unprotected( after->Node.previous, &the_watchdog->Node );
                                                                      
  the_watchdog->start_time = _Watchdog_Ticks_since_boot;              
ffc0d1e8:	91 04 00 14 	stw     r8,20(r4)                              
ffc0d1ec:	4b ff ff a8 	b       ffc0d194 <_Watchdog_Insert+0x114>      
     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;                  
ffc0d1f0:	90 0c 27 58 	stw     r0,10072(r12)                          
       goto restart;                                                  
ffc0d1f4:	4b ff fe cc 	b       ffc0d0c0 <_Watchdog_Insert+0x40>       
                                                                      

ffc0d248 <_Watchdog_Remove>: static inline uint32_t ppc_interrupt_disable( void ) { uint32_t level; uint32_t mask; asm volatile (
ffc0d248:	7d 20 00 a6 	mfmsr   r9                                     
ffc0d24c:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc0d250:	7d 20 00 78 	andc    r0,r9,r0                               
ffc0d254:	7c 00 01 24 	mtmsr   r0                                     
  ISR_Level         level;                                            
  Watchdog_States   previous_state;                                   
  Watchdog_Control *next_watchdog;                                    
                                                                      
  _ISR_Disable( level );                                              
  previous_state = the_watchdog->state;                               
ffc0d258:	80 03 00 08 	lwz     r0,8(r3)                               
  switch ( previous_state ) {                                         
ffc0d25c:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc0d260:	41 9e 00 98 	beq-    cr7,ffc0d2f8 <_Watchdog_Remove+0xb0>   
ffc0d264:	2b 80 00 01 	cmplwi  cr7,r0,1                               
ffc0d268:	40 9c 00 1c 	bge-    cr7,ffc0d284 <_Watchdog_Remove+0x3c>   
        _Watchdog_Sync_level = _ISR_Nest_level;                       
                                                                      
      _Chain_Extract_unprotected( &the_watchdog->Node );              
      break;                                                          
  }                                                                   
  the_watchdog->stop_time = _Watchdog_Ticks_since_boot;               
ffc0d26c:	3d 60 00 00 	lis     r11,0                                  
ffc0d270:	81 6b 27 6c 	lwz     r11,10092(r11)                         
ffc0d274:	91 63 00 18 	stw     r11,24(r3)                             
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0d278:	7d 20 01 24 	mtmsr   r9                                     
                                                                      
  _ISR_Enable( level );                                               
  return( previous_state );                                           
}                                                                     
ffc0d27c:	7c 03 03 78 	mr      r3,r0                                  
ffc0d280:	4e 80 00 20 	blr                                            
  Watchdog_States   previous_state;                                   
  Watchdog_Control *next_watchdog;                                    
                                                                      
  _ISR_Disable( level );                                              
  previous_state = the_watchdog->state;                               
  switch ( previous_state ) {                                         
ffc0d284:	2b 80 00 03 	cmplwi  cr7,r0,3                               
ffc0d288:	41 bd ff e4 	bgt-    cr7,ffc0d26c <_Watchdog_Remove+0x24>   <== NEVER TAKEN
  }                                                                   
  the_watchdog->stop_time = _Watchdog_Ticks_since_boot;               
                                                                      
  _ISR_Enable( level );                                               
  return( previous_state );                                           
}                                                                     
ffc0d28c:	81 63 00 00 	lwz     r11,0(r3)                              
      break;                                                          
                                                                      
    case WATCHDOG_ACTIVE:                                             
    case WATCHDOG_REMOVE_IT:                                          
                                                                      
      the_watchdog->state = WATCHDOG_INACTIVE;                        
ffc0d290:	39 00 00 00 	li      r8,0                                   
ffc0d294:	91 03 00 08 	stw     r8,8(r3)                               
      next_watchdog = _Watchdog_Next( the_watchdog );                 
                                                                      
      if ( _Watchdog_Next(next_watchdog) )                            
ffc0d298:	81 4b 00 00 	lwz     r10,0(r11)                             
ffc0d29c:	2f 8a 00 00 	cmpwi   cr7,r10,0                              
ffc0d2a0:	41 9e 00 14 	beq-    cr7,ffc0d2b4 <_Watchdog_Remove+0x6c>   
        next_watchdog->delta_interval += the_watchdog->delta_interval;
ffc0d2a4:	81 0b 00 10 	lwz     r8,16(r11)                             
ffc0d2a8:	81 43 00 10 	lwz     r10,16(r3)                             
ffc0d2ac:	7d 48 52 14 	add     r10,r8,r10                             
ffc0d2b0:	91 4b 00 10 	stw     r10,16(r11)                            
                                                                      
      if ( _Watchdog_Sync_count )                                     
ffc0d2b4:	3d 40 00 00 	lis     r10,0                                  
ffc0d2b8:	81 4a 27 68 	lwz     r10,10088(r10)                         
ffc0d2bc:	2f 8a 00 00 	cmpwi   cr7,r10,0                              
ffc0d2c0:	41 9e 00 14 	beq-    cr7,ffc0d2d4 <_Watchdog_Remove+0x8c>   
        _Watchdog_Sync_level = _ISR_Nest_level;                       
ffc0d2c4:	3d 40 00 00 	lis     r10,0                                  
ffc0d2c8:	81 0a 2d 6c 	lwz     r8,11628(r10)                          
ffc0d2cc:	3d 40 00 00 	lis     r10,0                                  
ffc0d2d0:	91 0a 27 58 	stw     r8,10072(r10)                          
{                                                                     
  Chain_Node *next;                                                   
  Chain_Node *previous;                                               
                                                                      
  next           = the_node->next;                                    
  previous       = the_node->previous;                                
ffc0d2d4:	81 43 00 04 	lwz     r10,4(r3)                              
  next->previous = previous;                                          
ffc0d2d8:	91 4b 00 04 	stw     r10,4(r11)                             
  previous->next = next;                                              
ffc0d2dc:	91 6a 00 00 	stw     r11,0(r10)                             
                                                                      
      _Chain_Extract_unprotected( &the_watchdog->Node );              
      break;                                                          
  }                                                                   
  the_watchdog->stop_time = _Watchdog_Ticks_since_boot;               
ffc0d2e0:	3d 60 00 00 	lis     r11,0                                  
ffc0d2e4:	81 6b 27 6c 	lwz     r11,10092(r11)                         
ffc0d2e8:	91 63 00 18 	stw     r11,24(r3)                             
ffc0d2ec:	7d 20 01 24 	mtmsr   r9                                     
                                                                      
  _ISR_Enable( level );                                               
  return( previous_state );                                           
}                                                                     
ffc0d2f0:	7c 03 03 78 	mr      r3,r0                                  
ffc0d2f4:	4e 80 00 20 	blr                                            
                                                                      
      /*                                                              
       *  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;                        
ffc0d2f8:	39 60 00 00 	li      r11,0                                  
ffc0d2fc:	91 63 00 08 	stw     r11,8(r3)                              
        _Watchdog_Sync_level = _ISR_Nest_level;                       
                                                                      
      _Chain_Extract_unprotected( &the_watchdog->Node );              
      break;                                                          
  }                                                                   
  the_watchdog->stop_time = _Watchdog_Ticks_since_boot;               
ffc0d300:	3d 60 00 00 	lis     r11,0                                  
ffc0d304:	81 6b 27 6c 	lwz     r11,10092(r11)                         
ffc0d308:	91 63 00 18 	stw     r11,24(r3)                             
ffc0d30c:	7d 20 01 24 	mtmsr   r9                                     
                                                                      
  _ISR_Enable( level );                                               
  return( previous_state );                                           
}                                                                     
ffc0d310:	7c 03 03 78 	mr      r3,r0                                  
ffc0d314:	4e 80 00 20 	blr                                            
                                                                      

ffc0ed04 <_Watchdog_Report_chain>: void _Watchdog_Report_chain( const char *name, Chain_Control *header ) {
ffc0ed04:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0ed08:	7c 08 02 a6 	mflr    r0                                     
ffc0ed0c:	93 c1 00 10 	stw     r30,16(r1)                             
ffc0ed10:	7c 7e 1b 78 	mr      r30,r3                                 
ffc0ed14:	93 e1 00 14 	stw     r31,20(r1)                             
ffc0ed18:	7c 9f 23 78 	mr      r31,r4                                 
ffc0ed1c:	90 01 00 1c 	stw     r0,28(r1)                              
ffc0ed20:	93 81 00 08 	stw     r28,8(r1)                              
ffc0ed24:	93 a1 00 0c 	stw     r29,12(r1)                             
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0ed28:	7f a0 00 a6 	mfmsr   r29                                    
ffc0ed2c:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc0ed30:	7f a0 00 78 	andc    r0,r29,r0                              
ffc0ed34:	7c 00 01 24 	mtmsr   r0                                     
  ISR_Level          level;                                           
  Chain_Node        *node;                                            
                                                                      
  _ISR_Disable( level );                                              
    printk( "Watchdog Chain: %s %p\n", name, header );                
ffc0ed38:	3c 60 ff c2 	lis     r3,-62                                 
ffc0ed3c:	7f e5 fb 78 	mr      r5,r31                                 
ffc0ed40:	38 63 0e ec 	addi    r3,r3,3820                             
ffc0ed44:	7f c4 f3 78 	mr      r4,r30                                 
ffc0ed48:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0ed4c:	4b ff 80 95 	bl      ffc06de0 <printk>                      
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
ffc0ed50:	83 9f 00 00 	lwz     r28,0(r31)                             
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc0ed54:	3b ff 00 04 	addi    r31,r31,4                              
    if ( !_Chain_Is_empty( header ) ) {                               
ffc0ed58:	7f 9c f8 00 	cmpw    cr7,r28,r31                            
ffc0ed5c:	41 9e 00 54 	beq-    cr7,ffc0edb0 <_Watchdog_Report_chain+0xac>
            node != _Chain_Tail(header) ;                             
            node = node->next )                                       
      {                                                               
        Watchdog_Control *watch = (Watchdog_Control *) node;          
                                                                      
        _Watchdog_Report( NULL, watch );                              
ffc0ed60:	7f 84 e3 78 	mr      r4,r28                                 
ffc0ed64:	38 60 00 00 	li      r3,0                                   
ffc0ed68:	48 00 00 5d 	bl      ffc0edc4 <_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 )                                       
ffc0ed6c:	83 9c 00 00 	lwz     r28,0(r28)                             
  Chain_Node        *node;                                            
                                                                      
  _ISR_Disable( level );                                              
    printk( "Watchdog Chain: %s %p\n", name, header );                
    if ( !_Chain_Is_empty( header ) ) {                               
      for ( node = header->first ;                                    
ffc0ed70:	7f 9c f8 00 	cmpw    cr7,r28,r31                            
ffc0ed74:	40 9e ff ec 	bne+    cr7,ffc0ed60 <_Watchdog_Report_chain+0x5c><== NEVER TAKEN
      {                                                               
        Watchdog_Control *watch = (Watchdog_Control *) node;          
                                                                      
        _Watchdog_Report( NULL, watch );                              
      }                                                               
      printk( "== end of %s \n", name );                              
ffc0ed78:	3c 60 ff c2 	lis     r3,-62                                 
ffc0ed7c:	38 63 0f 04 	addi    r3,r3,3844                             
ffc0ed80:	7f c4 f3 78 	mr      r4,r30                                 
ffc0ed84:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0ed88:	4b ff 80 59 	bl      ffc06de0 <printk>                      
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0ed8c:	7f a0 01 24 	mtmsr   r29                                    
    } else {                                                          
      printk( "Chain is empty\n" );                                   
    }                                                                 
  _ISR_Enable( level );                                               
}                                                                     
ffc0ed90:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0ed94:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0ed98:	7c 08 03 a6 	mtlr    r0                                     
ffc0ed9c:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0eda0:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0eda4:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0eda8:	38 21 00 18 	addi    r1,r1,24                               
ffc0edac:	4e 80 00 20 	blr                                            
                                                                      
        _Watchdog_Report( NULL, watch );                              
      }                                                               
      printk( "== end of %s \n", name );                              
    } else {                                                          
      printk( "Chain is empty\n" );                                   
ffc0edb0:	3c 60 ff c2 	lis     r3,-62                                 
ffc0edb4:	38 63 0f 14 	addi    r3,r3,3860                             
ffc0edb8:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0edbc:	4b ff 80 25 	bl      ffc06de0 <printk>                      
ffc0edc0:	4b ff ff cc 	b       ffc0ed8c <_Watchdog_Report_chain+0x88> 
                                                                      

ffc27c20 <__kill>: #endif int __kill( pid_t pid, int sig ) { return 0; }
ffc27c20:	38 60 00 00 	li      r3,0                                   <== NOT EXECUTED
ffc27c24:	4e 80 00 20 	blr                                            <== NOT EXECUTED
                                                                      

ffc04de0 <_gettimeofday>: int _gettimeofday( struct timeval *tp, struct timezone *tzp ) { return gettimeofday( tp, tzp );
ffc04de0:	4b ff ff 64 	b       ffc04d44 <gettimeofday>                <== NOT EXECUTED
                                                                      

ffc0a138 <_rename_r>: int _rename_r( struct _reent *ptr __attribute__((unused)), const char *old, const char *new ) {
ffc0a138:	94 21 ff 90 	stwu    r1,-112(r1)                            
ffc0a13c:	7c 08 02 a6 	mflr    r0                                     
                                                                      
  /*                                                                  
   *  Get the parent node of the old path to be renamed. Find the parent path.
   */                                                                 
                                                                      
  old_parent_pathlen = rtems_filesystem_dirname ( old );              
ffc0a140:	7c 83 23 78 	mr      r3,r4                                  
int _rename_r(                                                        
  struct _reent *ptr __attribute__((unused)),                         
  const char    *old,                                                 
  const char    *new                                                  
)                                                                     
{                                                                     
ffc0a144:	93 81 00 60 	stw     r28,96(r1)                             
ffc0a148:	7c bc 2b 78 	mr      r28,r5                                 
ffc0a14c:	93 e1 00 6c 	stw     r31,108(r1)                            
ffc0a150:	7c 9f 23 78 	mr      r31,r4                                 
ffc0a154:	90 01 00 74 	stw     r0,116(r1)                             
ffc0a158:	93 41 00 58 	stw     r26,88(r1)                             
ffc0a15c:	93 61 00 5c 	stw     r27,92(r1)                             
ffc0a160:	93 a1 00 64 	stw     r29,100(r1)                            
ffc0a164:	93 c1 00 68 	stw     r30,104(r1)                            
                                                                      
  /*                                                                  
   *  Get the parent node of the old path to be renamed. Find the parent path.
   */                                                                 
                                                                      
  old_parent_pathlen = rtems_filesystem_dirname ( old );              
ffc0a168:	4b ff e2 dd 	bl      ffc08444 <rtems_filesystem_dirname>    
                                                                      
  if ( old_parent_pathlen == 0 )                                      
ffc0a16c:	2c 03 00 00 	cmpwi   r3,0                                   
ffc0a170:	40 82 01 cc 	bne-    ffc0a33c <_rename_r+0x204>             
    rtems_filesystem_get_start_loc( old, &i, &old_parent_loc );       
ffc0a174:	3b a1 00 24 	addi    r29,r1,36                              
ffc0a178:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a17c:	38 81 00 08 	addi    r4,r1,8                                
ffc0a180:	7f a5 eb 78 	mr      r5,r29                                 
ffc0a184:	48 00 04 bd 	bl      ffc0a640 <rtems_filesystem_get_start_loc>
ffc0a188:	3b c0 00 00 	li      r30,0                                  
  rtems_filesystem_location_info_t    old_parent_loc;                 
  rtems_filesystem_location_info_t    new_parent_loc;                 
  int                                 i;                              
  int                                 result;                         
  const char                         *name;                           
  bool                                free_old_parentloc = false;     
ffc0a18c:	3b 60 00 00 	li      r27,0                                  
                                                                      
  /*                                                                  
   * Start from the parent to find the node that should be under it.  
   */                                                                 
                                                                      
  old_loc = old_parent_loc;                                           
ffc0a190:	80 01 00 24 	lwz     r0,36(r1)                              
  name = old + old_parent_pathlen;                                    
ffc0a194:	7f ff f2 14 	add     r31,r31,r30                            
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
ffc0a198:	7f e3 fb 78 	mr      r3,r31                                 
  /*                                                                  
   * Start from the parent to find the node that should be under it.  
   */                                                                 
                                                                      
  old_loc = old_parent_loc;                                           
  name = old + old_parent_pathlen;                                    
ffc0a19c:	93 e1 00 0c 	stw     r31,12(r1)                             
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
                                                                      
  result = rtems_filesystem_evaluate_relative_path( name , strlen( name ),
ffc0a1a0:	3b c1 00 10 	addi    r30,r1,16                              
                                                                      
  /*                                                                  
   * Start from the parent to find the node that should be under it.  
   */                                                                 
                                                                      
  old_loc = old_parent_loc;                                           
ffc0a1a4:	90 01 00 10 	stw     r0,16(r1)                              
ffc0a1a8:	80 01 00 28 	lwz     r0,40(r1)                              
ffc0a1ac:	90 01 00 14 	stw     r0,20(r1)                              
ffc0a1b0:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc0a1b4:	90 01 00 18 	stw     r0,24(r1)                              
ffc0a1b8:	80 01 00 30 	lwz     r0,48(r1)                              
ffc0a1bc:	90 01 00 1c 	stw     r0,28(r1)                              
ffc0a1c0:	80 01 00 34 	lwz     r0,52(r1)                              
ffc0a1c4:	90 01 00 20 	stw     r0,32(r1)                              
  name = old + old_parent_pathlen;                                    
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
ffc0a1c8:	48 01 05 99 	bl      ffc1a760 <strlen>                      
ffc0a1cc:	7c 64 1b 78 	mr      r4,r3                                  
ffc0a1d0:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a1d4:	4b ff e2 d1 	bl      ffc084a4 <rtems_filesystem_prefix_separators>
ffc0a1d8:	7f ff 1a 14 	add     r31,r31,r3                             
                                                                      
  result = rtems_filesystem_evaluate_relative_path( name , strlen( name ),
ffc0a1dc:	7f e3 fb 78 	mr      r3,r31                                 
   * Start from the parent to find the node that should be under it.  
   */                                                                 
                                                                      
  old_loc = old_parent_loc;                                           
  name = old + old_parent_pathlen;                                    
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
ffc0a1e0:	93 e1 00 0c 	stw     r31,12(r1)                             
                                                                      
  result = rtems_filesystem_evaluate_relative_path( name , strlen( name ),
ffc0a1e4:	48 01 05 7d 	bl      ffc1a760 <strlen>                      
ffc0a1e8:	38 a0 00 00 	li      r5,0                                   
ffc0a1ec:	7c 64 1b 78 	mr      r4,r3                                  
ffc0a1f0:	7f c6 f3 78 	mr      r6,r30                                 
ffc0a1f4:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a1f8:	38 e0 00 00 	li      r7,0                                   
ffc0a1fc:	4b ff e1 21 	bl      ffc0831c <rtems_filesystem_evaluate_relative_path>
                                                    0, &old_loc, false );
  if ( result != 0 ) {                                                
ffc0a200:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0a204:	40 9e 01 20 	bne-    cr7,ffc0a324 <_rename_r+0x1ec>         
                                                                      
  /*                                                                  
   * Get the parent of the new node we are renaming to.               
   */                                                                 
                                                                      
  rtems_filesystem_get_start_loc( new, &i, &new_parent_loc );         
ffc0a208:	3b e1 00 38 	addi    r31,r1,56                              
ffc0a20c:	7f 83 e3 78 	mr      r3,r28                                 
ffc0a210:	38 81 00 08 	addi    r4,r1,8                                
ffc0a214:	7f e5 fb 78 	mr      r5,r31                                 
ffc0a218:	48 00 04 29 	bl      ffc0a640 <rtems_filesystem_get_start_loc>
                                                                      
  result = (*new_parent_loc.ops->evalformake_h)( &new[i], &new_parent_loc, &name );
ffc0a21c:	81 21 00 44 	lwz     r9,68(r1)                              
ffc0a220:	80 61 00 08 	lwz     r3,8(r1)                               
ffc0a224:	7f e4 fb 78 	mr      r4,r31                                 
ffc0a228:	80 09 00 04 	lwz     r0,4(r9)                               
ffc0a22c:	38 a1 00 0c 	addi    r5,r1,12                               
ffc0a230:	7c 7c 1a 14 	add     r3,r28,r3                              
ffc0a234:	7c 09 03 a6 	mtctr   r0                                     
ffc0a238:	4e 80 04 21 	bctrl                                          
  if ( result != 0 ) {                                                
ffc0a23c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0a240:	40 9e 01 30 	bne-    cr7,ffc0a370 <_rename_r+0x238>         
  /*                                                                  
   *  Check to see if the caller is trying to rename across file system
   *  boundaries.                                                     
   */                                                                 
                                                                      
  if ( old_parent_loc.mt_entry != new_parent_loc.mt_entry ) {         
ffc0a244:	80 01 00 48 	lwz     r0,72(r1)                              
ffc0a248:	81 21 00 34 	lwz     r9,52(r1)                              
ffc0a24c:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc0a250:	40 9e 00 78 	bne-    cr7,ffc0a2c8 <_rename_r+0x190>         
      rtems_filesystem_freenode( &old_parent_loc );                   
    rtems_filesystem_freenode( &old_loc );                            
    rtems_set_errno_and_return_minus_one( EXDEV );                    
  }                                                                   
                                                                      
  result = (*new_parent_loc.ops->rename_h)( &old_parent_loc, &old_loc, &new_parent_loc, name );
ffc0a254:	81 21 00 44 	lwz     r9,68(r1)                              
ffc0a258:	7f c4 f3 78 	mr      r4,r30                                 
ffc0a25c:	7f e5 fb 78 	mr      r5,r31                                 
ffc0a260:	80 c1 00 0c 	lwz     r6,12(r1)                              
ffc0a264:	80 09 00 40 	lwz     r0,64(r9)                              
ffc0a268:	7f a3 eb 78 	mr      r3,r29                                 
ffc0a26c:	7c 09 03 a6 	mtctr   r0                                     
ffc0a270:	4e 80 04 21 	bctrl                                          
ffc0a274:	7c 7a 1b 78 	mr      r26,r3                                 
                                                                      
  rtems_filesystem_freenode( &new_parent_loc );                       
ffc0a278:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a27c:	4b ff e5 51 	bl      ffc087cc <rtems_filesystem_freenode>   
  if ( free_old_parentloc )                                           
ffc0a280:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
ffc0a284:	40 9e 00 38 	bne-    cr7,ffc0a2bc <_rename_r+0x184>         
    rtems_filesystem_freenode( &old_parent_loc );                     
  rtems_filesystem_freenode( &old_loc );                              
ffc0a288:	7f c3 f3 78 	mr      r3,r30                                 
ffc0a28c:	4b ff e5 41 	bl      ffc087cc <rtems_filesystem_freenode>   
                                                                      
  return result;                                                      
}                                                                     
ffc0a290:	80 01 00 74 	lwz     r0,116(r1)                             
ffc0a294:	7f 43 d3 78 	mr      r3,r26                                 
ffc0a298:	83 61 00 5c 	lwz     r27,92(r1)                             
ffc0a29c:	7c 08 03 a6 	mtlr    r0                                     
ffc0a2a0:	83 41 00 58 	lwz     r26,88(r1)                             
ffc0a2a4:	83 81 00 60 	lwz     r28,96(r1)                             
ffc0a2a8:	83 a1 00 64 	lwz     r29,100(r1)                            
ffc0a2ac:	83 c1 00 68 	lwz     r30,104(r1)                            
ffc0a2b0:	83 e1 00 6c 	lwz     r31,108(r1)                            
ffc0a2b4:	38 21 00 70 	addi    r1,r1,112                              
ffc0a2b8:	4e 80 00 20 	blr                                            
                                                                      
  result = (*new_parent_loc.ops->rename_h)( &old_parent_loc, &old_loc, &new_parent_loc, name );
                                                                      
  rtems_filesystem_freenode( &new_parent_loc );                       
  if ( free_old_parentloc )                                           
    rtems_filesystem_freenode( &old_parent_loc );                     
ffc0a2bc:	7f a3 eb 78 	mr      r3,r29                                 
ffc0a2c0:	4b ff e5 0d 	bl      ffc087cc <rtems_filesystem_freenode>   
ffc0a2c4:	4b ff ff c4 	b       ffc0a288 <_rename_r+0x150>             
   *  Check to see if the caller is trying to rename across file system
   *  boundaries.                                                     
   */                                                                 
                                                                      
  if ( old_parent_loc.mt_entry != new_parent_loc.mt_entry ) {         
    rtems_filesystem_freenode( &new_parent_loc );                     
ffc0a2c8:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a2cc:	4b ff e5 01 	bl      ffc087cc <rtems_filesystem_freenode>   
    if ( free_old_parentloc )                                         
ffc0a2d0:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
ffc0a2d4:	41 be 00 0c 	beq+    cr7,ffc0a2e0 <_rename_r+0x1a8>         
      rtems_filesystem_freenode( &old_parent_loc );                   
ffc0a2d8:	7f a3 eb 78 	mr      r3,r29                                 
ffc0a2dc:	4b ff e4 f1 	bl      ffc087cc <rtems_filesystem_freenode>   
    rtems_filesystem_freenode( &old_loc );                            
ffc0a2e0:	7f c3 f3 78 	mr      r3,r30                                 
ffc0a2e4:	4b ff e4 e9 	bl      ffc087cc <rtems_filesystem_freenode>   
    rtems_set_errno_and_return_minus_one( EXDEV );                    
ffc0a2e8:	3b 40 ff ff 	li      r26,-1                                 
ffc0a2ec:	48 00 ca 05 	bl      ffc16cf0 <__errno>                     
ffc0a2f0:	38 00 00 12 	li      r0,18                                  
ffc0a2f4:	90 03 00 00 	stw     r0,0(r3)                               
  if ( free_old_parentloc )                                           
    rtems_filesystem_freenode( &old_parent_loc );                     
  rtems_filesystem_freenode( &old_loc );                              
                                                                      
  return result;                                                      
}                                                                     
ffc0a2f8:	7f 43 d3 78 	mr      r3,r26                                 
ffc0a2fc:	80 01 00 74 	lwz     r0,116(r1)                             
ffc0a300:	83 41 00 58 	lwz     r26,88(r1)                             
ffc0a304:	7c 08 03 a6 	mtlr    r0                                     
ffc0a308:	83 61 00 5c 	lwz     r27,92(r1)                             
ffc0a30c:	83 81 00 60 	lwz     r28,96(r1)                             
ffc0a310:	83 a1 00 64 	lwz     r29,100(r1)                            
ffc0a314:	83 c1 00 68 	lwz     r30,104(r1)                            
ffc0a318:	83 e1 00 6c 	lwz     r31,108(r1)                            
ffc0a31c:	38 21 00 70 	addi    r1,r1,112                              
ffc0a320:	4e 80 00 20 	blr                                            
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
                                                                      
  result = rtems_filesystem_evaluate_relative_path( name , strlen( name ),
                                                    0, &old_loc, false );
  if ( result != 0 ) {                                                
    if ( free_old_parentloc )                                         
ffc0a324:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
      rtems_filesystem_freenode( &old_parent_loc );                   
    return -1;                                                        
ffc0a328:	3b 40 ff ff 	li      r26,-1                                 
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
                                                                      
  result = rtems_filesystem_evaluate_relative_path( name , strlen( name ),
                                                    0, &old_loc, false );
  if ( result != 0 ) {                                                
    if ( free_old_parentloc )                                         
ffc0a32c:	41 9e ff 64 	beq+    cr7,ffc0a290 <_rename_r+0x158>         <== NEVER TAKEN
      rtems_filesystem_freenode( &old_parent_loc );                   
ffc0a330:	7f a3 eb 78 	mr      r3,r29                                 
ffc0a334:	4b ff e4 99 	bl      ffc087cc <rtems_filesystem_freenode>   
ffc0a338:	4b ff ff 58 	b       ffc0a290 <_rename_r+0x158>             
  old_parent_pathlen = rtems_filesystem_dirname ( old );              
                                                                      
  if ( old_parent_pathlen == 0 )                                      
    rtems_filesystem_get_start_loc( old, &i, &old_parent_loc );       
  else {                                                              
    result = rtems_filesystem_evaluate_path( old, old_parent_pathlen, 
ffc0a33c:	7c 7e 1b 78 	mr      r30,r3                                 
ffc0a340:	3b a1 00 24 	addi    r29,r1,36                              
ffc0a344:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a348:	7f c4 f3 78 	mr      r4,r30                                 
ffc0a34c:	38 a0 00 02 	li      r5,2                                   
ffc0a350:	7f a6 eb 78 	mr      r6,r29                                 
ffc0a354:	38 e0 00 00 	li      r7,0                                   
ffc0a358:	4b ff e0 71 	bl      ffc083c8 <rtems_filesystem_evaluate_path>
                                             RTEMS_LIBIO_PERMS_WRITE, 
                                             &old_parent_loc,         
                                             false );                 
    if ( result != 0 )                                                
      return -1;                                                      
ffc0a35c:	3b 40 ff ff 	li      r26,-1                                 
  else {                                                              
    result = rtems_filesystem_evaluate_path( old, old_parent_pathlen, 
                                             RTEMS_LIBIO_PERMS_WRITE, 
                                             &old_parent_loc,         
                                             false );                 
    if ( result != 0 )                                                
ffc0a360:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0a364:	40 be ff 2c 	bne-    cr7,ffc0a290 <_rename_r+0x158>         <== NEVER TAKEN
      return -1;                                                      
                                                                      
    free_old_parentloc = true;                                        
ffc0a368:	3b 60 00 01 	li      r27,1                                  
ffc0a36c:	4b ff fe 24 	b       ffc0a190 <_rename_r+0x58>              
                                                                      
  rtems_filesystem_get_start_loc( new, &i, &new_parent_loc );         
                                                                      
  result = (*new_parent_loc.ops->evalformake_h)( &new[i], &new_parent_loc, &name );
  if ( result != 0 ) {                                                
    rtems_filesystem_freenode( &new_parent_loc );                     
ffc0a370:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a374:	4b ff e4 59 	bl      ffc087cc <rtems_filesystem_freenode>   
    if ( free_old_parentloc )                                         
ffc0a378:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
ffc0a37c:	41 be 00 0c 	beq+    cr7,ffc0a388 <_rename_r+0x250>         <== NEVER TAKEN
      rtems_filesystem_freenode( &old_parent_loc );                   
ffc0a380:	7f a3 eb 78 	mr      r3,r29                                 
ffc0a384:	4b ff e4 49 	bl      ffc087cc <rtems_filesystem_freenode>   
    rtems_filesystem_freenode( &old_loc );                            
ffc0a388:	7f c3 f3 78 	mr      r3,r30                                 
ffc0a38c:	4b ff e4 41 	bl      ffc087cc <rtems_filesystem_freenode>   
    return -1;                                                        
ffc0a390:	3b 40 ff ff 	li      r26,-1                                 
ffc0a394:	4b ff fe fc 	b       ffc0a290 <_rename_r+0x158>             
                                                                      

ffc04b10 <chroot>: #include <rtems/seterr.h> int chroot( const char *pathname ) {
ffc04b10:	94 21 ff c8 	stwu    r1,-56(r1)                             
ffc04b14:	7c 08 02 a6 	mflr    r0                                     
  int                               result;                           
  rtems_filesystem_location_info_t  loc;                              
                                                                      
  /* an automatic call to new private env the first time */           
  if (rtems_current_user_env == &rtems_global_user_env) {             
ffc04b18:	3d 20 00 00 	lis     r9,0                                   
#include <rtems/seterr.h>                                             
                                                                      
int chroot(                                                           
  const char *pathname                                                
)                                                                     
{                                                                     
ffc04b1c:	93 e1 00 34 	stw     r31,52(r1)                             
  int                               result;                           
  rtems_filesystem_location_info_t  loc;                              
                                                                      
  /* an automatic call to new private env the first time */           
  if (rtems_current_user_env == &rtems_global_user_env) {             
ffc04b20:	3f e0 00 00 	lis     r31,0                                  
#include <rtems/seterr.h>                                             
                                                                      
int chroot(                                                           
  const char *pathname                                                
)                                                                     
{                                                                     
ffc04b24:	93 c1 00 30 	stw     r30,48(r1)                             
  int                               result;                           
  rtems_filesystem_location_info_t  loc;                              
                                                                      
  /* an automatic call to new private env the first time */           
  if (rtems_current_user_env == &rtems_global_user_env) {             
ffc04b28:	83 df 26 74 	lwz     r30,9844(r31)                          
#include <rtems/seterr.h>                                             
                                                                      
int chroot(                                                           
  const char *pathname                                                
)                                                                     
{                                                                     
ffc04b2c:	90 01 00 3c 	stw     r0,60(r1)                              
  int                               result;                           
  rtems_filesystem_location_info_t  loc;                              
                                                                      
  /* an automatic call to new private env the first time */           
  if (rtems_current_user_env == &rtems_global_user_env) {             
ffc04b30:	38 09 2a 50 	addi    r0,r9,10832                            
ffc04b34:	7f 9e 00 00 	cmpw    cr7,r30,r0                             
#include <rtems/seterr.h>                                             
                                                                      
int chroot(                                                           
  const char *pathname                                                
)                                                                     
{                                                                     
ffc04b38:	93 a1 00 2c 	stw     r29,44(r1)                             
ffc04b3c:	7c 7d 1b 78 	mr      r29,r3                                 
  int                               result;                           
  rtems_filesystem_location_info_t  loc;                              
                                                                      
  /* an automatic call to new private env the first time */           
  if (rtems_current_user_env == &rtems_global_user_env) {             
ffc04b40:	41 9e 00 90 	beq-    cr7,ffc04bd0 <chroot+0xc0>             
   rtems_libio_set_private_env(); /* try to set a new private env*/   
   if (rtems_current_user_env == &rtems_global_user_env) /* not ok */ 
    rtems_set_errno_and_return_minus_one( ENOTSUP );                  
  }                                                                   
                                                                      
  result = chdir(pathname);                                           
ffc04b44:	7f a3 eb 78 	mr      r3,r29                                 
ffc04b48:	48 00 a8 51 	bl      ffc0f398 <chdir>                       
  if (result) {                                                       
ffc04b4c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc04b50:	40 9e 00 a4 	bne-    cr7,ffc04bf4 <chroot+0xe4>             
    rtems_set_errno_and_return_minus_one( errno );                    
  }                                                                   
                                                                      
  /* clone the new root location */                                   
  if (rtems_filesystem_evaluate_path(".", 1, 0, &loc, 0)) {           
ffc04b54:	3c 60 ff c2 	lis     r3,-62                                 
ffc04b58:	38 63 93 c0 	addi    r3,r3,-27712                           
ffc04b5c:	38 80 00 01 	li      r4,1                                   
ffc04b60:	38 a0 00 00 	li      r5,0                                   
ffc04b64:	38 c1 00 08 	addi    r6,r1,8                                
ffc04b68:	38 e0 00 00 	li      r7,0                                   
ffc04b6c:	48 00 01 f1 	bl      ffc04d5c <rtems_filesystem_evaluate_path>
ffc04b70:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc04b74:	40 9e 00 80 	bne-    cr7,ffc04bf4 <chroot+0xe4>             <== NEVER TAKEN
    /* our cwd has changed, though - but there is no easy way of return :-( */
    rtems_set_errno_and_return_minus_one( errno );                    
  }                                                                   
  rtems_filesystem_freenode(&rtems_filesystem_root);                  
ffc04b78:	80 7f 26 74 	lwz     r3,9844(r31)                           
ffc04b7c:	38 63 00 18 	addi    r3,r3,24                               
ffc04b80:	48 00 03 39 	bl      ffc04eb8 <rtems_filesystem_freenode>   
  rtems_filesystem_root = loc;                                        
ffc04b84:	81 3f 26 74 	lwz     r9,9844(r31)                           
ffc04b88:	80 01 00 08 	lwz     r0,8(r1)                               
                                                                      
  return 0;                                                           
ffc04b8c:	38 60 00 00 	li      r3,0                                   
  if (rtems_filesystem_evaluate_path(".", 1, 0, &loc, 0)) {           
    /* our cwd has changed, though - but there is no easy way of return :-( */
    rtems_set_errno_and_return_minus_one( errno );                    
  }                                                                   
  rtems_filesystem_freenode(&rtems_filesystem_root);                  
  rtems_filesystem_root = loc;                                        
ffc04b90:	90 09 00 18 	stw     r0,24(r9)                              
ffc04b94:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc04b98:	90 09 00 1c 	stw     r0,28(r9)                              
ffc04b9c:	80 01 00 10 	lwz     r0,16(r1)                              
ffc04ba0:	90 09 00 20 	stw     r0,32(r9)                              
ffc04ba4:	80 01 00 14 	lwz     r0,20(r1)                              
ffc04ba8:	90 09 00 24 	stw     r0,36(r9)                              
ffc04bac:	80 01 00 18 	lwz     r0,24(r1)                              
ffc04bb0:	90 09 00 28 	stw     r0,40(r9)                              
                                                                      
  return 0;                                                           
}                                                                     
ffc04bb4:	80 01 00 3c 	lwz     r0,60(r1)                              
ffc04bb8:	83 a1 00 2c 	lwz     r29,44(r1)                             
ffc04bbc:	7c 08 03 a6 	mtlr    r0                                     
ffc04bc0:	83 c1 00 30 	lwz     r30,48(r1)                             
ffc04bc4:	83 e1 00 34 	lwz     r31,52(r1)                             
ffc04bc8:	38 21 00 38 	addi    r1,r1,56                               
ffc04bcc:	4e 80 00 20 	blr                                            
  int                               result;                           
  rtems_filesystem_location_info_t  loc;                              
                                                                      
  /* an automatic call to new private env the first time */           
  if (rtems_current_user_env == &rtems_global_user_env) {             
   rtems_libio_set_private_env(); /* try to set a new private env*/   
ffc04bd0:	48 00 18 ed 	bl      ffc064bc <rtems_libio_set_private_env> 
   if (rtems_current_user_env == &rtems_global_user_env) /* not ok */ 
ffc04bd4:	80 1f 26 74 	lwz     r0,9844(r31)                           
ffc04bd8:	7f 80 f0 00 	cmpw    cr7,r0,r30                             
ffc04bdc:	40 9e ff 68 	bne+    cr7,ffc04b44 <chroot+0x34>             
    rtems_set_errno_and_return_minus_one( ENOTSUP );                  
ffc04be0:	48 00 dc 75 	bl      ffc12854 <__errno>                     
ffc04be4:	38 00 00 86 	li      r0,134                                 
ffc04be8:	90 03 00 00 	stw     r0,0(r3)                               
ffc04bec:	38 60 ff ff 	li      r3,-1                                  
ffc04bf0:	4b ff ff c4 	b       ffc04bb4 <chroot+0xa4>                 
  }                                                                   
                                                                      
  /* clone the new root location */                                   
  if (rtems_filesystem_evaluate_path(".", 1, 0, &loc, 0)) {           
    /* our cwd has changed, though - but there is no easy way of return :-( */
    rtems_set_errno_and_return_minus_one( errno );                    
ffc04bf4:	48 00 dc 61 	bl      ffc12854 <__errno>                     
ffc04bf8:	7c 7f 1b 78 	mr      r31,r3                                 
ffc04bfc:	48 00 dc 59 	bl      ffc12854 <__errno>                     
ffc04c00:	80 03 00 00 	lwz     r0,0(r3)                               
ffc04c04:	38 60 ff ff 	li      r3,-1                                  
ffc04c08:	90 1f 00 00 	stw     r0,0(r31)                              
ffc04c0c:	4b ff ff a8 	b       ffc04bb4 <chroot+0xa4>                 
                                                                      

ffc0d6f8 <devFS_evaluate_path>: const char *pathname, size_t pathnamelen, int flags, rtems_filesystem_location_info_t *pathloc ) {
ffc0d6f8:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc0d6fc:	7c 08 02 a6 	mflr    r0                                     
ffc0d700:	90 01 00 2c 	stw     r0,44(r1)                              
  int                   i;                                            
  rtems_device_name_t  *device_name_table;                            
                                                                      
  /* see if 'flags' is valid */                                       
  if ( !rtems_libio_is_valid_perms( flags ) )                         
ffc0d704:	54 a0 00 39 	rlwinm. r0,r5,0,0,28                           
  const char                        *pathname,                        
  size_t                             pathnamelen,                     
  int                                flags,                           
  rtems_filesystem_location_info_t  *pathloc                          
)                                                                     
{                                                                     
ffc0d708:	93 01 00 08 	stw     r24,8(r1)                              
ffc0d70c:	7c d8 33 78 	mr      r24,r6                                 
ffc0d710:	93 c1 00 20 	stw     r30,32(r1)                             
ffc0d714:	7c 7e 1b 78 	mr      r30,r3                                 
ffc0d718:	93 e1 00 24 	stw     r31,36(r1)                             
ffc0d71c:	7c 9f 23 78 	mr      r31,r4                                 
ffc0d720:	93 21 00 0c 	stw     r25,12(r1)                             
ffc0d724:	93 41 00 10 	stw     r26,16(r1)                             
ffc0d728:	93 61 00 14 	stw     r27,20(r1)                             
ffc0d72c:	93 81 00 18 	stw     r28,24(r1)                             
ffc0d730:	93 a1 00 1c 	stw     r29,28(r1)                             
  int                   i;                                            
  rtems_device_name_t  *device_name_table;                            
                                                                      
  /* see if 'flags' is valid */                                       
  if ( !rtems_libio_is_valid_perms( flags ) )                         
ffc0d734:	40 82 01 0c 	bne-    ffc0d840 <devFS_evaluate_path+0x148>   <== NEVER TAKEN
    rtems_set_errno_and_return_minus_one( EPERM );                    
                                                                      
  /* get the device name table */                                     
  device_name_table = (rtems_device_name_t *)pathloc->node_access;    
ffc0d738:	83 66 00 00 	lwz     r27,0(r6)                              
  if (!device_name_table)                                             
ffc0d73c:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
ffc0d740:	41 9e 01 14 	beq-    cr7,ffc0d854 <devFS_evaluate_path+0x15c>
    rtems_set_errno_and_return_minus_one( EFAULT );                   
                                                                      
  for (i = 0; i < rtems_device_table_size; i++) {                     
ffc0d744:	3d 20 00 00 	lis     r9,0                                   
ffc0d748:	83 49 26 d0 	lwz     r26,9936(r9)                           
ffc0d74c:	38 00 00 00 	li      r0,0                                   
ffc0d750:	3b a0 00 00 	li      r29,0                                  
ffc0d754:	2f 9a 00 00 	cmpwi   cr7,r26,0                              
ffc0d758:	41 9e 00 4c 	beq-    cr7,ffc0d7a4 <devFS_evaluate_path+0xac><== NEVER TAKEN
    if (!device_name_table[i].device_name)                            
ffc0d75c:	1c 00 00 14 	mulli   r0,r0,20                               
ffc0d760:	7f 9b 00 2e 	lwzx    r28,r27,r0                             
      continue;                                                       
                                                                      
    if (strncmp(pathname, device_name_table[i].device_name, pathnamelen) != 0)
ffc0d764:	7f c3 f3 78 	mr      r3,r30                                 
ffc0d768:	7f e5 fb 78 	mr      r5,r31                                 
  device_name_table = (rtems_device_name_t *)pathloc->node_access;    
  if (!device_name_table)                                             
    rtems_set_errno_and_return_minus_one( EFAULT );                   
                                                                      
  for (i = 0; i < rtems_device_table_size; i++) {                     
    if (!device_name_table[i].device_name)                            
ffc0d76c:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
      continue;                                                       
                                                                      
    if (strncmp(pathname, device_name_table[i].device_name, pathnamelen) != 0)
ffc0d770:	7f 84 e3 78 	mr      r4,r28                                 
  /* get the device name table */                                     
  device_name_table = (rtems_device_name_t *)pathloc->node_access;    
  if (!device_name_table)                                             
    rtems_set_errno_and_return_minus_one( EFAULT );                   
                                                                      
  for (i = 0; i < rtems_device_table_size; i++) {                     
ffc0d774:	3b bd 00 01 	addi    r29,r29,1                              
    if (!device_name_table[i].device_name)                            
ffc0d778:	7f 3b 02 14 	add     r25,r27,r0                             
ffc0d77c:	41 9e 00 1c 	beq-    cr7,ffc0d798 <devFS_evaluate_path+0xa0>
      continue;                                                       
                                                                      
    if (strncmp(pathname, device_name_table[i].device_name, pathnamelen) != 0)
ffc0d780:	48 00 32 c1 	bl      ffc10a40 <strncmp>                     
ffc0d784:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0d788:	40 9e 00 10 	bne-    cr7,ffc0d798 <devFS_evaluate_path+0xa0>
      continue;                                                       
                                                                      
    if (device_name_table[i].device_name[pathnamelen] != '\0')        
ffc0d78c:	7c 1c f8 ae 	lbzx    r0,r28,r31                             
ffc0d790:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0d794:	41 9e 00 50 	beq-    cr7,ffc0d7e4 <devFS_evaluate_path+0xec><== ALWAYS TAKEN
  /* get the device name table */                                     
  device_name_table = (rtems_device_name_t *)pathloc->node_access;    
  if (!device_name_table)                                             
    rtems_set_errno_and_return_minus_one( EFAULT );                   
                                                                      
  for (i = 0; i < rtems_device_table_size; i++) {                     
ffc0d798:	7f 9a e8 40 	cmplw   cr7,r26,r29                            
ffc0d79c:	7f a0 eb 78 	mr      r0,r29                                 
ffc0d7a0:	41 9d ff bc 	bgt+    cr7,ffc0d75c <devFS_evaluate_path+0x64>
    pathloc->mt_entry = rtems_filesystem_root.mt_entry;               
    return 0;                                                         
  }                                                                   
                                                                      
  /* no such file or directory */                                     
  rtems_set_errno_and_return_minus_one( ENOENT );                     
ffc0d7a4:	48 00 21 69 	bl      ffc0f90c <__errno>                     
ffc0d7a8:	38 00 00 02 	li      r0,2                                   
ffc0d7ac:	90 03 00 00 	stw     r0,0(r3)                               
ffc0d7b0:	38 60 ff ff 	li      r3,-1                                  
}                                                                     
ffc0d7b4:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc0d7b8:	83 01 00 08 	lwz     r24,8(r1)                              
ffc0d7bc:	7c 08 03 a6 	mtlr    r0                                     
ffc0d7c0:	83 21 00 0c 	lwz     r25,12(r1)                             
ffc0d7c4:	83 41 00 10 	lwz     r26,16(r1)                             
ffc0d7c8:	83 61 00 14 	lwz     r27,20(r1)                             
ffc0d7cc:	83 81 00 18 	lwz     r28,24(r1)                             
ffc0d7d0:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc0d7d4:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc0d7d8:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc0d7dc:	38 21 00 28 	addi    r1,r1,40                               
ffc0d7e0:	4e 80 00 20 	blr                                            
                                                                      
    /* find the device, set proper values */                          
    pathloc->node_access = (void *)&device_name_table[i];             
    pathloc->handlers = &devFS_file_handlers;                         
    pathloc->ops = &devFS_ops;                                        
    pathloc->mt_entry = rtems_filesystem_root.mt_entry;               
ffc0d7e4:	3d 20 00 00 	lis     r9,0                                   
ffc0d7e8:	81 29 27 1c 	lwz     r9,10012(r9)                           
                                                                      
    if (device_name_table[i].device_name[pathnamelen] != '\0')        
      continue;                                                       
                                                                      
    /* find the device, set proper values */                          
    pathloc->node_access = (void *)&device_name_table[i];             
ffc0d7ec:	93 38 00 00 	stw     r25,0(r24)                             
    pathloc->handlers = &devFS_file_handlers;                         
    pathloc->ops = &devFS_ops;                                        
    pathloc->mt_entry = rtems_filesystem_root.mt_entry;               
ffc0d7f0:	80 09 00 28 	lwz     r0,40(r9)                              
    if (device_name_table[i].device_name[pathnamelen] != '\0')        
      continue;                                                       
                                                                      
    /* find the device, set proper values */                          
    pathloc->node_access = (void *)&device_name_table[i];             
    pathloc->handlers = &devFS_file_handlers;                         
ffc0d7f4:	3d 20 00 00 	lis     r9,0                                   
ffc0d7f8:	39 29 21 68 	addi    r9,r9,8552                             
ffc0d7fc:	91 38 00 08 	stw     r9,8(r24)                              
    pathloc->ops = &devFS_ops;                                        
ffc0d800:	3d 20 00 00 	lis     r9,0                                   
ffc0d804:	39 29 21 a0 	addi    r9,r9,8608                             
ffc0d808:	91 38 00 0c 	stw     r9,12(r24)                             
    pathloc->mt_entry = rtems_filesystem_root.mt_entry;               
ffc0d80c:	90 18 00 10 	stw     r0,16(r24)                             
    return 0;                                                         
  }                                                                   
                                                                      
  /* no such file or directory */                                     
  rtems_set_errno_and_return_minus_one( ENOENT );                     
}                                                                     
ffc0d810:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc0d814:	83 01 00 08 	lwz     r24,8(r1)                              
ffc0d818:	7c 08 03 a6 	mtlr    r0                                     
ffc0d81c:	83 21 00 0c 	lwz     r25,12(r1)                             
ffc0d820:	83 41 00 10 	lwz     r26,16(r1)                             
ffc0d824:	83 61 00 14 	lwz     r27,20(r1)                             
ffc0d828:	83 81 00 18 	lwz     r28,24(r1)                             
ffc0d82c:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc0d830:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc0d834:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc0d838:	38 21 00 28 	addi    r1,r1,40                               
ffc0d83c:	4e 80 00 20 	blr                                            
  int                   i;                                            
  rtems_device_name_t  *device_name_table;                            
                                                                      
  /* see if 'flags' is valid */                                       
  if ( !rtems_libio_is_valid_perms( flags ) )                         
    rtems_set_errno_and_return_minus_one( EPERM );                    
ffc0d840:	48 00 20 cd 	bl      ffc0f90c <__errno>                     <== NOT EXECUTED
ffc0d844:	38 00 00 01 	li      r0,1                                   <== NOT EXECUTED
ffc0d848:	90 03 00 00 	stw     r0,0(r3)                               <== NOT EXECUTED
ffc0d84c:	38 60 ff ff 	li      r3,-1                                  <== NOT EXECUTED
ffc0d850:	4b ff ff c0 	b       ffc0d810 <devFS_evaluate_path+0x118>   <== NOT EXECUTED
                                                                      
  /* get the device name table */                                     
  device_name_table = (rtems_device_name_t *)pathloc->node_access;    
  if (!device_name_table)                                             
    rtems_set_errno_and_return_minus_one( EFAULT );                   
ffc0d854:	48 00 20 b9 	bl      ffc0f90c <__errno>                     
ffc0d858:	38 00 00 0e 	li      r0,14                                  
ffc0d85c:	90 03 00 00 	stw     r0,0(r3)                               
ffc0d860:	38 60 ff ff 	li      r3,-1                                  
ffc0d864:	4b ff ff ac 	b       ffc0d810 <devFS_evaluate_path+0x118>   
                                                                      

ffc04190 <devFS_mknod>: const char *path, mode_t mode, dev_t dev, rtems_filesystem_location_info_t *pathloc ) {
ffc04190:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc04194:	7c 08 02 a6 	mflr    r0                                     
ffc04198:	93 81 00 18 	stw     r28,24(r1)                             
ffc0419c:	7c dc 33 78 	mr      r28,r6                                 
ffc041a0:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc041a4:	7c bd 2b 78 	mr      r29,r5                                 
ffc041a8:	93 c1 00 20 	stw     r30,32(r1)                             
ffc041ac:	7c 9e 23 78 	mr      r30,r4                                 
ffc041b0:	93 e1 00 24 	stw     r31,36(r1)                             
ffc041b4:	7c 7f 1b 78 	mr      r31,r3                                 
ffc041b8:	90 01 00 2c 	stw     r0,44(r1)                              
ffc041bc:	93 01 00 08 	stw     r24,8(r1)                              
ffc041c0:	93 21 00 0c 	stw     r25,12(r1)                             
ffc041c4:	93 41 00 10 	stw     r26,16(r1)                             
ffc041c8:	93 61 00 14 	stw     r27,20(r1)                             
   * condition and do not create the '/dev' and the 'path'            
   * actually passed in is 'dev', not '/dev'. Just return 0 to        
   * indicate we are OK.                                              
   */                                                                 
                                                                      
  if ((path[0] == 'd') && (path[1] == 'e') &&                         
ffc041cc:	88 03 00 00 	lbz     r0,0(r3)                               
ffc041d0:	2f 80 00 64 	cmpwi   cr7,r0,100                             
ffc041d4:	41 9e 01 40 	beq-    cr7,ffc04314 <devFS_mknod+0x184>       
      (path[2] == 'v') && (path[3] == '\0'))                          
      return 0;                                                       
                                                                      
  /* must be a character device or a block device */                  
  if (!S_ISBLK(mode) && !S_ISCHR(mode))                               
ffc041d8:	57 c0 04 26 	rlwinm  r0,r30,0,16,19                         
ffc041dc:	2f 80 60 00 	cmpwi   cr7,r0,24576                           
ffc041e0:	41 9e 00 0c 	beq-    cr7,ffc041ec <devFS_mknod+0x5c>        
ffc041e4:	2f 80 20 00 	cmpwi   cr7,r0,8192                            
ffc041e8:	40 9e 01 58 	bne-    cr7,ffc04340 <devFS_mknod+0x1b0>       
    rtems_set_errno_and_return_minus_one( EINVAL );                   
  else                                                                
    rtems_filesystem_split_dev_t(dev, major, minor);                  
                                                                      
  /* Find an empty slot in device name table */                       
  device_name_table = (rtems_device_name_t *)pathloc->node_access;    
ffc041ec:	83 47 00 00 	lwz     r26,0(r7)                              
  if (!device_name_table)                                             
ffc041f0:	2f 9a 00 00 	cmpwi   cr7,r26,0                              
ffc041f4:	41 9e 01 74 	beq-    cr7,ffc04368 <devFS_mknod+0x1d8>       
    rtems_set_errno_and_return_minus_one( EFAULT );                   
                                                                      
  for (slot = -1, i = 0; i < rtems_device_table_size; i++){           
ffc041f8:	3d 20 00 00 	lis     r9,0                                   
ffc041fc:	83 29 26 d0 	lwz     r25,9936(r9)                           
ffc04200:	2f 99 00 00 	cmpwi   cr7,r25,0                              
ffc04204:	41 9e 01 50 	beq-    cr7,ffc04354 <devFS_mknod+0x1c4>       
ffc04208:	38 00 00 00 	li      r0,0                                   
ffc0420c:	3b 00 ff ff 	li      r24,-1                                 
ffc04210:	3b 60 00 00 	li      r27,0                                  
ffc04214:	48 00 00 20 	b       ffc04234 <devFS_mknod+0xa4>            
      if (device_name_table[i].device_name == NULL)                   
          slot = i;                                                   
      else                                                            
          if (strcmp(path, device_name_table[i].device_name) == 0)    
ffc04218:	48 00 c6 d1 	bl      ffc108e8 <strcmp>                      
ffc0421c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc04220:	41 9e 00 b4 	beq-    cr7,ffc042d4 <devFS_mknod+0x144>       
  /* Find an empty slot in device name table */                       
  device_name_table = (rtems_device_name_t *)pathloc->node_access;    
  if (!device_name_table)                                             
    rtems_set_errno_and_return_minus_one( EFAULT );                   
                                                                      
  for (slot = -1, i = 0; i < rtems_device_table_size; i++){           
ffc04224:	3b 7b 00 01 	addi    r27,r27,1                              
ffc04228:	7f 9b c8 40 	cmplw   cr7,r27,r25                            
ffc0422c:	7f 60 db 78 	mr      r0,r27                                 
ffc04230:	40 9c 00 30 	bge-    cr7,ffc04260 <devFS_mknod+0xd0>        
      if (device_name_table[i].device_name == NULL)                   
ffc04234:	1c 00 00 14 	mulli   r0,r0,20                               
ffc04238:	7c 1a 00 2e 	lwzx    r0,r26,r0                              
          slot = i;                                                   
      else                                                            
          if (strcmp(path, device_name_table[i].device_name) == 0)    
ffc0423c:	7f e3 fb 78 	mr      r3,r31                                 
  device_name_table = (rtems_device_name_t *)pathloc->node_access;    
  if (!device_name_table)                                             
    rtems_set_errno_and_return_minus_one( EFAULT );                   
                                                                      
  for (slot = -1, i = 0; i < rtems_device_table_size; i++){           
      if (device_name_table[i].device_name == NULL)                   
ffc04240:	2f 80 00 00 	cmpwi   cr7,r0,0                               
          slot = i;                                                   
      else                                                            
          if (strcmp(path, device_name_table[i].device_name) == 0)    
ffc04244:	7c 04 03 78 	mr      r4,r0                                  
  device_name_table = (rtems_device_name_t *)pathloc->node_access;    
  if (!device_name_table)                                             
    rtems_set_errno_and_return_minus_one( EFAULT );                   
                                                                      
  for (slot = -1, i = 0; i < rtems_device_table_size; i++){           
      if (device_name_table[i].device_name == NULL)                   
ffc04248:	40 9e ff d0 	bne+    cr7,ffc04218 <devFS_mknod+0x88>        
ffc0424c:	7f 78 db 78 	mr      r24,r27                                
  /* Find an empty slot in device name table */                       
  device_name_table = (rtems_device_name_t *)pathloc->node_access;    
  if (!device_name_table)                                             
    rtems_set_errno_and_return_minus_one( EFAULT );                   
                                                                      
  for (slot = -1, i = 0; i < rtems_device_table_size; i++){           
ffc04250:	3b 7b 00 01 	addi    r27,r27,1                              
ffc04254:	7f 9b c8 40 	cmplw   cr7,r27,r25                            
ffc04258:	7f 60 db 78 	mr      r0,r27                                 
ffc0425c:	41 9c ff d8 	blt+    cr7,ffc04234 <devFS_mknod+0xa4>        
      else                                                            
          if (strcmp(path, device_name_table[i].device_name) == 0)    
              rtems_set_errno_and_return_minus_one( EEXIST );         
  }                                                                   
                                                                      
  if (slot == -1)                                                     
ffc04260:	2f 98 ff ff 	cmpwi   cr7,r24,-1                             
ffc04264:	41 9e 00 f0 	beq-    cr7,ffc04354 <devFS_mknod+0x1c4>       <== NEVER TAKEN
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc04268:	7f 60 00 a6 	mfmsr   r27                                    
ffc0426c:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc04270:	7f 60 00 78 	andc    r0,r27,r0                              
ffc04274:	7c 00 01 24 	mtmsr   r0                                     
      rtems_set_errno_and_return_minus_one( ENOMEM );                 
                                                                      
  _ISR_Disable(level);                                                
  device_name_table[slot].device_name  = (char *)path;                
ffc04278:	1f 18 00 14 	mulli   r24,r24,20                             
ffc0427c:	7f fa c1 2e 	stwx    r31,r26,r24                            
  device_name_table[slot].device_name_length = strlen(path);          
ffc04280:	7f e3 fb 78 	mr      r3,r31                                 
                                                                      
  if (slot == -1)                                                     
      rtems_set_errno_and_return_minus_one( ENOMEM );                 
                                                                      
  _ISR_Disable(level);                                                
  device_name_table[slot].device_name  = (char *)path;                
ffc04284:	7f 5a c2 14 	add     r26,r26,r24                            
  device_name_table[slot].device_name_length = strlen(path);          
ffc04288:	48 00 c7 15 	bl      ffc1099c <strlen>                      
  device_name_table[slot].major = major;                              
ffc0428c:	93 ba 00 08 	stw     r29,8(r26)                             
  if (slot == -1)                                                     
      rtems_set_errno_and_return_minus_one( ENOMEM );                 
                                                                      
  _ISR_Disable(level);                                                
  device_name_table[slot].device_name  = (char *)path;                
  device_name_table[slot].device_name_length = strlen(path);          
ffc04290:	90 7a 00 04 	stw     r3,4(r26)                              
  device_name_table[slot].major = major;                              
  device_name_table[slot].minor = minor;                              
ffc04294:	93 9a 00 0c 	stw     r28,12(r26)                            
  device_name_table[slot].mode  = mode;                               
ffc04298:	93 da 00 10 	stw     r30,16(r26)                            
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0429c:	7f 60 01 24 	mtmsr   r27                                    
  _ISR_Enable(level);                                                 
                                                                      
  return 0;                                                           
ffc042a0:	38 60 00 00 	li      r3,0                                   
}                                                                     
ffc042a4:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc042a8:	83 01 00 08 	lwz     r24,8(r1)                              
ffc042ac:	7c 08 03 a6 	mtlr    r0                                     
ffc042b0:	83 21 00 0c 	lwz     r25,12(r1)                             
ffc042b4:	83 41 00 10 	lwz     r26,16(r1)                             
ffc042b8:	83 61 00 14 	lwz     r27,20(r1)                             
ffc042bc:	83 81 00 18 	lwz     r28,24(r1)                             
ffc042c0:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc042c4:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc042c8:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc042cc:	38 21 00 28 	addi    r1,r1,40                               
ffc042d0:	4e 80 00 20 	blr                                            
  for (slot = -1, i = 0; i < rtems_device_table_size; i++){           
      if (device_name_table[i].device_name == NULL)                   
          slot = i;                                                   
      else                                                            
          if (strcmp(path, device_name_table[i].device_name) == 0)    
              rtems_set_errno_and_return_minus_one( EEXIST );         
ffc042d4:	48 00 b6 39 	bl      ffc0f90c <__errno>                     
ffc042d8:	38 00 00 11 	li      r0,17                                  
ffc042dc:	90 03 00 00 	stw     r0,0(r3)                               
ffc042e0:	38 60 ff ff 	li      r3,-1                                  
  device_name_table[slot].minor = minor;                              
  device_name_table[slot].mode  = mode;                               
  _ISR_Enable(level);                                                 
                                                                      
  return 0;                                                           
}                                                                     
ffc042e4:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc042e8:	83 01 00 08 	lwz     r24,8(r1)                              
ffc042ec:	7c 08 03 a6 	mtlr    r0                                     
ffc042f0:	83 21 00 0c 	lwz     r25,12(r1)                             
ffc042f4:	83 41 00 10 	lwz     r26,16(r1)                             
ffc042f8:	83 61 00 14 	lwz     r27,20(r1)                             
ffc042fc:	83 81 00 18 	lwz     r28,24(r1)                             
ffc04300:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc04304:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc04308:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc0430c:	38 21 00 28 	addi    r1,r1,40                               
ffc04310:	4e 80 00 20 	blr                                            
   * condition and do not create the '/dev' and the 'path'            
   * actually passed in is 'dev', not '/dev'. Just return 0 to        
   * indicate we are OK.                                              
   */                                                                 
                                                                      
  if ((path[0] == 'd') && (path[1] == 'e') &&                         
ffc04314:	88 03 00 01 	lbz     r0,1(r3)                               
ffc04318:	2f 80 00 65 	cmpwi   cr7,r0,101                             
ffc0431c:	40 9e fe bc 	bne+    cr7,ffc041d8 <devFS_mknod+0x48>        <== NEVER TAKEN
ffc04320:	88 03 00 02 	lbz     r0,2(r3)                               
ffc04324:	2f 80 00 76 	cmpwi   cr7,r0,118                             
ffc04328:	40 9e fe b0 	bne+    cr7,ffc041d8 <devFS_mknod+0x48>        <== NEVER TAKEN
      (path[2] == 'v') && (path[3] == '\0'))                          
ffc0432c:	88 03 00 03 	lbz     r0,3(r3)                               
      return 0;                                                       
ffc04330:	38 60 00 00 	li      r3,0                                   
   * actually passed in is 'dev', not '/dev'. Just return 0 to        
   * indicate we are OK.                                              
   */                                                                 
                                                                      
  if ((path[0] == 'd') && (path[1] == 'e') &&                         
      (path[2] == 'v') && (path[3] == '\0'))                          
ffc04334:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc04338:	40 9e fe a0 	bne+    cr7,ffc041d8 <devFS_mknod+0x48>        
ffc0433c:	4b ff ff 68 	b       ffc042a4 <devFS_mknod+0x114>           
      return 0;                                                       
                                                                      
  /* must be a character device or a block device */                  
  if (!S_ISBLK(mode) && !S_ISCHR(mode))                               
    rtems_set_errno_and_return_minus_one( EINVAL );                   
ffc04340:	48 00 b5 cd 	bl      ffc0f90c <__errno>                     
ffc04344:	38 00 00 16 	li      r0,22                                  
ffc04348:	90 03 00 00 	stw     r0,0(r3)                               
ffc0434c:	38 60 ff ff 	li      r3,-1                                  
ffc04350:	4b ff ff 54 	b       ffc042a4 <devFS_mknod+0x114>           
          if (strcmp(path, device_name_table[i].device_name) == 0)    
              rtems_set_errno_and_return_minus_one( EEXIST );         
  }                                                                   
                                                                      
  if (slot == -1)                                                     
      rtems_set_errno_and_return_minus_one( ENOMEM );                 
ffc04354:	48 00 b5 b9 	bl      ffc0f90c <__errno>                     
ffc04358:	38 00 00 0c 	li      r0,12                                  
ffc0435c:	90 03 00 00 	stw     r0,0(r3)                               
ffc04360:	38 60 ff ff 	li      r3,-1                                  
ffc04364:	4b ff ff 40 	b       ffc042a4 <devFS_mknod+0x114>           
    rtems_filesystem_split_dev_t(dev, major, minor);                  
                                                                      
  /* Find an empty slot in device name table */                       
  device_name_table = (rtems_device_name_t *)pathloc->node_access;    
  if (!device_name_table)                                             
    rtems_set_errno_and_return_minus_one( EFAULT );                   
ffc04368:	48 00 b5 a5 	bl      ffc0f90c <__errno>                     
ffc0436c:	38 00 00 0e 	li      r0,14                                  
ffc04370:	90 03 00 00 	stw     r0,0(r3)                               
ffc04374:	38 60 ff ff 	li      r3,-1                                  
ffc04378:	4b ff ff 2c 	b       ffc042a4 <devFS_mknod+0x114>           
                                                                      

ffc05f80 <drainOutput>: /* * Drain output queue */ static void drainOutput (struct rtems_termios_tty *tty) {
ffc05f80:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc05f84:	7c 08 02 a6 	mflr    r0                                     
ffc05f88:	90 01 00 14 	stw     r0,20(r1)                              
  rtems_interrupt_level level;                                        
  rtems_status_code sc;                                               
                                                                      
  if (tty->device.outputUsesInterrupts != TERMIOS_POLLED) {           
ffc05f8c:	80 03 00 b4 	lwz     r0,180(r3)                             
/*                                                                    
 * Drain output queue                                                 
 */                                                                   
static void                                                           
drainOutput (struct rtems_termios_tty *tty)                           
{                                                                     
ffc05f90:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc05f94:	7c 7f 1b 78 	mr      r31,r3                                 
  rtems_interrupt_level level;                                        
  rtems_status_code sc;                                               
                                                                      
  if (tty->device.outputUsesInterrupts != TERMIOS_POLLED) {           
ffc05f98:	2f 80 00 00 	cmpwi   cr7,r0,0                               
/*                                                                    
 * Drain output queue                                                 
 */                                                                   
static void                                                           
drainOutput (struct rtems_termios_tty *tty)                           
{                                                                     
ffc05f9c:	93 c1 00 08 	stw     r30,8(r1)                              
  rtems_interrupt_level level;                                        
  rtems_status_code sc;                                               
                                                                      
  if (tty->device.outputUsesInterrupts != TERMIOS_POLLED) {           
ffc05fa0:	41 9e 00 6c 	beq-    cr7,ffc0600c <drainOutput+0x8c>        
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc05fa4:	7c 00 00 a6 	mfmsr   r0                                     
ffc05fa8:	7d 30 42 a6 	mfsprg  r9,0                                   
ffc05fac:	7c 09 48 78 	andc    r9,r0,r9                               
ffc05fb0:	7d 20 01 24 	mtmsr   r9                                     
    rtems_interrupt_disable (level);                                  
    while (tty->rawOutBuf.Tail != tty->rawOutBuf.Head) {              
ffc05fb4:	81 63 00 84 	lwz     r11,132(r3)                            
ffc05fb8:	81 23 00 80 	lwz     r9,128(r3)                             
ffc05fbc:	7f 8b 48 00 	cmpw    cr7,r11,r9                             
ffc05fc0:	41 9e 00 48 	beq-    cr7,ffc06008 <drainOutput+0x88>        <== ALWAYS TAKEN
      tty->rawOutBufState = rob_wait;                                 
ffc05fc4:	3b c0 00 02 	li      r30,2                                  <== NOT EXECUTED
ffc05fc8:	93 df 00 94 	stw     r30,148(r31)                           <== NOT EXECUTED
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc05fcc:	7c 00 01 24 	mtmsr   r0                                     <== NOT EXECUTED
      rtems_interrupt_enable (level);                                 
      sc = rtems_semaphore_obtain(                                    
ffc05fd0:	80 7f 00 8c 	lwz     r3,140(r31)                            <== NOT EXECUTED
ffc05fd4:	38 80 00 00 	li      r4,0                                   <== NOT EXECUTED
ffc05fd8:	38 a0 00 00 	li      r5,0                                   <== NOT EXECUTED
ffc05fdc:	48 00 2e a5 	bl      ffc08e80 <rtems_semaphore_obtain>      <== NOT EXECUTED
        tty->rawOutBuf.Semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT);      
      if (sc != RTEMS_SUCCESSFUL)                                     
ffc05fe0:	2f 83 00 00 	cmpwi   cr7,r3,0                               <== NOT EXECUTED
ffc05fe4:	40 9e 00 40 	bne-    cr7,ffc06024 <drainOutput+0xa4>        <== NOT EXECUTED
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc05fe8:	7c 00 00 a6 	mfmsr   r0                                     <== NOT EXECUTED
ffc05fec:	7d 30 42 a6 	mfsprg  r9,0                                   <== NOT EXECUTED
ffc05ff0:	7c 09 48 78 	andc    r9,r0,r9                               <== NOT EXECUTED
ffc05ff4:	7d 20 01 24 	mtmsr   r9                                     <== NOT EXECUTED
  rtems_interrupt_level level;                                        
  rtems_status_code sc;                                               
                                                                      
  if (tty->device.outputUsesInterrupts != TERMIOS_POLLED) {           
    rtems_interrupt_disable (level);                                  
    while (tty->rawOutBuf.Tail != tty->rawOutBuf.Head) {              
ffc05ff8:	81 7f 00 84 	lwz     r11,132(r31)                           <== NOT EXECUTED
ffc05ffc:	81 3f 00 80 	lwz     r9,128(r31)                            <== NOT EXECUTED
ffc06000:	7f 8b 48 00 	cmpw    cr7,r11,r9                             <== NOT EXECUTED
ffc06004:	40 9e ff c4 	bne+    cr7,ffc05fc8 <drainOutput+0x48>        <== NOT EXECUTED
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc06008:	7c 00 01 24 	mtmsr   r0                                     
        rtems_fatal_error_occurred (sc);                              
      rtems_interrupt_disable (level);                                
    }                                                                 
    rtems_interrupt_enable (level);                                   
  }                                                                   
}                                                                     
ffc0600c:	80 01 00 14 	lwz     r0,20(r1)                              
ffc06010:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc06014:	7c 08 03 a6 	mtlr    r0                                     
ffc06018:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0601c:	38 21 00 10 	addi    r1,r1,16                               
ffc06020:	4e 80 00 20 	blr                                            
      tty->rawOutBufState = rob_wait;                                 
      rtems_interrupt_enable (level);                                 
      sc = rtems_semaphore_obtain(                                    
        tty->rawOutBuf.Semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT);      
      if (sc != RTEMS_SUCCESSFUL)                                     
        rtems_fatal_error_occurred (sc);                              
ffc06024:	48 00 37 d1 	bl      ffc097f4 <rtems_fatal_error_occurred>  <== NOT EXECUTED
                                                                      

ffc06e44 <echo>: /* * Echo a typed character */ static void echo (unsigned char c, struct rtems_termios_tty *tty) {
ffc06e44:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc06e48:	7c 08 02 a6 	mflr    r0                                     
ffc06e4c:	90 01 00 24 	stw     r0,36(r1)                              
  if ((tty->termios.c_lflag & ECHOCTL) &&                             
ffc06e50:	81 24 00 3c 	lwz     r9,60(r4)                              
/*                                                                    
 * Echo a typed character                                             
 */                                                                   
static void                                                           
echo (unsigned char c, struct rtems_termios_tty *tty)                 
{                                                                     
ffc06e54:	93 e1 00 1c 	stw     r31,28(r1)                             
ffc06e58:	7c 9f 23 78 	mr      r31,r4                                 
  if ((tty->termios.c_lflag & ECHOCTL) &&                             
ffc06e5c:	71 20 02 00 	andi.   r0,r9,512                              
ffc06e60:	41 82 00 2c 	beq-    ffc06e8c <echo+0x48>                   <== NEVER TAKEN
       iscntrl(c) && (c != '\t') && (c != '\n')) {                    
ffc06e64:	3d 20 00 00 	lis     r9,0                                   
ffc06e68:	81 29 26 a0 	lwz     r9,9888(r9)                            
ffc06e6c:	7d 29 1a 14 	add     r9,r9,r3                               
ffc06e70:	88 09 00 01 	lbz     r0,1(r9)                               
 * Echo a typed character                                             
 */                                                                   
static void                                                           
echo (unsigned char c, struct rtems_termios_tty *tty)                 
{                                                                     
  if ((tty->termios.c_lflag & ECHOCTL) &&                             
ffc06e74:	70 09 00 20 	andi.   r9,r0,32                               
ffc06e78:	41 82 00 14 	beq-    ffc06e8c <echo+0x48>                   
       iscntrl(c) && (c != '\t') && (c != '\n')) {                    
ffc06e7c:	2f 83 00 09 	cmpwi   cr7,r3,9                               
ffc06e80:	41 9e 00 0c 	beq-    cr7,ffc06e8c <echo+0x48>               
ffc06e84:	2f 83 00 0a 	cmpwi   cr7,r3,10                              
ffc06e88:	40 9e 00 20 	bne-    cr7,ffc06ea8 <echo+0x64>               
    echobuf[0] = '^';                                                 
    echobuf[1] = c ^ 0x40;                                            
    rtems_termios_puts (echobuf, 2, tty);                             
    tty->column += 2;                                                 
  } else {                                                            
    oproc (c, tty);                                                   
ffc06e8c:	7f e4 fb 78 	mr      r4,r31                                 
ffc06e90:	4b ff fe 1d 	bl      ffc06cac <oproc>                       
  }                                                                   
}                                                                     
ffc06e94:	80 01 00 24 	lwz     r0,36(r1)                              
ffc06e98:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc06e9c:	38 21 00 20 	addi    r1,r1,32                               
ffc06ea0:	7c 08 03 a6 	mtlr    r0                                     
ffc06ea4:	4e 80 00 20 	blr                                            
  if ((tty->termios.c_lflag & ECHOCTL) &&                             
       iscntrl(c) && (c != '\t') && (c != '\n')) {                    
    char echobuf[2];                                                  
                                                                      
    echobuf[0] = '^';                                                 
    echobuf[1] = c ^ 0x40;                                            
ffc06ea8:	68 60 00 40 	xori    r0,r3,64                               
{                                                                     
  if ((tty->termios.c_lflag & ECHOCTL) &&                             
       iscntrl(c) && (c != '\t') && (c != '\n')) {                    
    char echobuf[2];                                                  
                                                                      
    echobuf[0] = '^';                                                 
ffc06eac:	39 20 00 5e 	li      r9,94                                  
    echobuf[1] = c ^ 0x40;                                            
ffc06eb0:	98 01 00 09 	stb     r0,9(r1)                               
    rtems_termios_puts (echobuf, 2, tty);                             
ffc06eb4:	38 61 00 08 	addi    r3,r1,8                                
ffc06eb8:	7f e5 fb 78 	mr      r5,r31                                 
{                                                                     
  if ((tty->termios.c_lflag & ECHOCTL) &&                             
       iscntrl(c) && (c != '\t') && (c != '\n')) {                    
    char echobuf[2];                                                  
                                                                      
    echobuf[0] = '^';                                                 
ffc06ebc:	99 21 00 08 	stb     r9,8(r1)                               
    echobuf[1] = c ^ 0x40;                                            
    rtems_termios_puts (echobuf, 2, tty);                             
ffc06ec0:	38 80 00 02 	li      r4,2                                   
ffc06ec4:	4b ff fc 61 	bl      ffc06b24 <rtems_termios_puts>          
    tty->column += 2;                                                 
ffc06ec8:	81 3f 00 28 	lwz     r9,40(r31)                             
ffc06ecc:	38 09 00 02 	addi    r0,r9,2                                
ffc06ed0:	90 1f 00 28 	stw     r0,40(r31)                             
  } else {                                                            
    oproc (c, tty);                                                   
  }                                                                   
}                                                                     
ffc06ed4:	80 01 00 24 	lwz     r0,36(r1)                              
ffc06ed8:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc06edc:	38 21 00 20 	addi    r1,r1,32                               
ffc06ee0:	7c 08 03 a6 	mtlr    r0                                     
ffc06ee4:	4e 80 00 20 	blr                                            
                                                                      

ffc062a8 <endgrent>: void endgrent(void) { if (group_fp != NULL)
ffc062a8:	3d 20 00 00 	lis     r9,0                                   
    fclose(group_fp);                                                 
  group_fp = fopen("/etc/group", "r");                                
}                                                                     
                                                                      
void endgrent(void)                                                   
{                                                                     
ffc062ac:	94 21 ff f8 	stwu    r1,-8(r1)                              
ffc062b0:	7c 08 02 a6 	mflr    r0                                     
  if (group_fp != NULL)                                               
ffc062b4:	80 69 29 98 	lwz     r3,10648(r9)                           
    fclose(group_fp);                                                 
  group_fp = fopen("/etc/group", "r");                                
}                                                                     
                                                                      
void endgrent(void)                                                   
{                                                                     
ffc062b8:	90 01 00 0c 	stw     r0,12(r1)                              
  if (group_fp != NULL)                                               
ffc062bc:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc062c0:	41 9e 00 08 	beq-    cr7,ffc062c8 <endgrent+0x20>           <== NEVER TAKEN
    fclose(group_fp);                                                 
ffc062c4:	48 00 d6 51 	bl      ffc13914 <fclose>                      
}                                                                     
ffc062c8:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc062cc:	38 21 00 08 	addi    r1,r1,8                                
ffc062d0:	7c 08 03 a6 	mtlr    r0                                     
ffc062d4:	4e 80 00 20 	blr                                            
                                                                      

ffc060d8 <endpwent>: void endpwent(void) { if (passwd_fp != NULL)
ffc060d8:	3d 20 00 00 	lis     r9,0                                   
    fclose(passwd_fp);                                                
  passwd_fp = fopen("/etc/passwd", "r");                              
}                                                                     
                                                                      
void endpwent(void)                                                   
{                                                                     
ffc060dc:	94 21 ff f8 	stwu    r1,-8(r1)                              
ffc060e0:	7c 08 02 a6 	mflr    r0                                     
  if (passwd_fp != NULL)                                              
ffc060e4:	80 69 28 bc 	lwz     r3,10428(r9)                           
    fclose(passwd_fp);                                                
  passwd_fp = fopen("/etc/passwd", "r");                              
}                                                                     
                                                                      
void endpwent(void)                                                   
{                                                                     
ffc060e8:	90 01 00 0c 	stw     r0,12(r1)                              
  if (passwd_fp != NULL)                                              
ffc060ec:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc060f0:	41 9e 00 08 	beq-    cr7,ffc060f8 <endpwent+0x20>           <== NEVER TAKEN
    fclose(passwd_fp);                                                
ffc060f4:	48 00 d8 21 	bl      ffc13914 <fclose>                      
}                                                                     
ffc060f8:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc060fc:	38 21 00 08 	addi    r1,r1,8                                
ffc06100:	7c 08 03 a6 	mtlr    r0                                     
ffc06104:	4e 80 00 20 	blr                                            
                                                                      

ffc06ee8 <erase>: * FIXME: Needs support for WERASE and ECHOPRT. * FIXME: Some of the tests should check for IEXTEN, too. */ static void erase (struct rtems_termios_tty *tty, int lineFlag) {
ffc06ee8:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc06eec:	7c 08 02 a6 	mflr    r0                                     
ffc06ef0:	7d 80 00 26 	mfcr    r12                                    
ffc06ef4:	90 01 00 2c 	stw     r0,44(r1)                              
  if (tty->ccount == 0)                                               
ffc06ef8:	81 23 00 20 	lwz     r9,32(r3)                              
 * FIXME: Needs support for WERASE and ECHOPRT.                       
 * FIXME: Some of the tests should check for IEXTEN, too.             
 */                                                                   
static void                                                           
erase (struct rtems_termios_tty *tty, int lineFlag)                   
{                                                                     
ffc06efc:	93 e1 00 24 	stw     r31,36(r1)                             
ffc06f00:	7c 7f 1b 78 	mr      r31,r3                                 
  if (tty->ccount == 0)                                               
ffc06f04:	2f 89 00 00 	cmpwi   cr7,r9,0                               
 * FIXME: Needs support for WERASE and ECHOPRT.                       
 * FIXME: Some of the tests should check for IEXTEN, too.             
 */                                                                   
static void                                                           
erase (struct rtems_termios_tty *tty, int lineFlag)                   
{                                                                     
ffc06f08:	93 41 00 10 	stw     r26,16(r1)                             
ffc06f0c:	93 61 00 14 	stw     r27,20(r1)                             
ffc06f10:	93 81 00 18 	stw     r28,24(r1)                             
ffc06f14:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc06f18:	93 c1 00 20 	stw     r30,32(r1)                             
ffc06f1c:	91 81 00 0c 	stw     r12,12(r1)                             
  if (tty->ccount == 0)                                               
ffc06f20:	41 9e 00 a0 	beq-    cr7,ffc06fc0 <erase+0xd8>              
    return;                                                           
  if (lineFlag) {                                                     
ffc06f24:	2e 04 00 00 	cmpwi   cr4,r4,0                               
ffc06f28:	40 92 00 88 	bne-    cr4,ffc06fb0 <erase+0xc8>              
        echo ('\n', tty);                                             
      return;                                                         
    }                                                                 
  }                                                                   
                                                                      
  while (tty->ccount) {                                               
ffc06f2c:	80 03 00 3c 	lwz     r0,60(r3)                              
ffc06f30:	54 0b 07 38 	rlwinm  r11,r0,0,28,28                         
          tty->column--;                                              
        }                                                             
      }                                                               
      else {                                                          
        if (iscntrl (c) && (tty->termios.c_lflag & ECHOCTL)) {        
          rtems_termios_puts ("\b \b", 3, tty);                       
ffc06f34:	3f 60 ff c2 	lis     r27,-62                                
ffc06f38:	3f a0 ff c2 	lis     r29,-62                                
          rtems_termios_puts ("\b", 1, tty);                          
          tty->column--;                                              
        }                                                             
      }                                                               
      else {                                                          
        if (iscntrl (c) && (tty->termios.c_lflag & ECHOCTL)) {        
ffc06f3c:	3f 80 00 00 	lis     r28,0                                  
          rtems_termios_puts ("\b \b", 3, tty);                       
ffc06f40:	3b 7b 8d 34 	addi    r27,r27,-29388                         
ffc06f44:	3b bd 8d 30 	addi    r29,r29,-29392                         
  }                                                                   
                                                                      
  while (tty->ccount) {                                               
    unsigned char c = tty->cbuf[--tty->ccount];                       
                                                                      
    if (tty->termios.c_lflag & ECHO) {                                
ffc06f48:	2f 8b 00 00 	cmpwi   cr7,r11,0                              
      return;                                                         
    }                                                                 
  }                                                                   
                                                                      
  while (tty->ccount) {                                               
    unsigned char c = tty->cbuf[--tty->ccount];                       
ffc06f4c:	81 5f 00 1c 	lwz     r10,28(r31)                            
ffc06f50:	39 29 ff ff 	addi    r9,r9,-1                               
ffc06f54:	91 3f 00 20 	stw     r9,32(r31)                             
ffc06f58:	7f ca 48 ae 	lbzx    r30,r10,r9                             
                                                                      
    if (tty->termios.c_lflag & ECHO) {                                
ffc06f5c:	41 9e 00 38 	beq-    cr7,ffc06f94 <erase+0xac>              <== NEVER TAKEN
      if (!lineFlag && !(tty->termios.c_lflag & ECHOE)) {             
ffc06f60:	40 92 00 0c 	bne-    cr4,ffc06f6c <erase+0x84>              
ffc06f64:	70 0b 00 10 	andi.   r11,r0,16                              
ffc06f68:	41 82 01 e8 	beq-    ffc07150 <erase+0x268>                 <== NEVER TAKEN
        echo (tty->termios.c_cc[VERASE], tty);                        
      } else if (c == '\t') {                                         
ffc06f6c:	2f 9e 00 09 	cmpwi   cr7,r30,9                              
ffc06f70:	41 9e 00 e8 	beq-    cr7,ffc07058 <erase+0x170>             
          rtems_termios_puts ("\b", 1, tty);                          
          tty->column--;                                              
        }                                                             
      }                                                               
      else {                                                          
        if (iscntrl (c) && (tty->termios.c_lflag & ECHOCTL)) {        
ffc06f74:	81 3c 26 a0 	lwz     r9,9888(r28)                           
ffc06f78:	3b de 00 01 	addi    r30,r30,1                              
ffc06f7c:	7f 7a db 78 	mr      r26,r27                                
ffc06f80:	7d 29 f0 ae 	lbzx    r9,r9,r30                              
ffc06f84:	71 2b 00 20 	andi.   r11,r9,32                              
ffc06f88:	41 82 00 a8 	beq-    ffc07030 <erase+0x148>                 <== ALWAYS TAKEN
ffc06f8c:	70 09 02 00 	andi.   r9,r0,512                              <== NOT EXECUTED
ffc06f90:	40 82 00 60 	bne-    ffc06ff0 <erase+0x108>                 <== NOT EXECUTED
          if (tty->column)                                            
            tty->column--;                                            
        }                                                             
      }                                                               
    }                                                                 
    if (!lineFlag)                                                    
ffc06f94:	41 92 00 2c 	beq-    cr4,ffc06fc0 <erase+0xd8>              
        echo ('\n', tty);                                             
      return;                                                         
    }                                                                 
  }                                                                   
                                                                      
  while (tty->ccount) {                                               
ffc06f98:	81 3f 00 20 	lwz     r9,32(r31)                             
ffc06f9c:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc06fa0:	41 9e 00 20 	beq-    cr7,ffc06fc0 <erase+0xd8>              
    }                                                                 
    if (!(tty->termios.c_lflag & ECHOE)) {                            
      tty->ccount = 0;                                                
      echo (tty->termios.c_cc[VKILL], tty);                           
      if (tty->termios.c_lflag & ECHOK)                               
        echo ('\n', tty);                                             
ffc06fa4:	80 1f 00 3c 	lwz     r0,60(r31)                             
ffc06fa8:	54 0b 07 38 	rlwinm  r11,r0,0,28,28                         
ffc06fac:	4b ff ff 9c 	b       ffc06f48 <erase+0x60>                  
erase (struct rtems_termios_tty *tty, int lineFlag)                   
{                                                                     
  if (tty->ccount == 0)                                               
    return;                                                           
  if (lineFlag) {                                                     
    if (!(tty->termios.c_lflag & ECHO)) {                             
ffc06fb0:	80 03 00 3c 	lwz     r0,60(r3)                              
ffc06fb4:	70 0b 00 08 	andi.   r11,r0,8                               
ffc06fb8:	40 a2 01 3c 	bne+    ffc070f4 <erase+0x20c>                 <== ALWAYS TAKEN
      tty->ccount = 0;                                                
ffc06fbc:	91 63 00 20 	stw     r11,32(r3)                             <== NOT EXECUTED
      }                                                               
    }                                                                 
    if (!lineFlag)                                                    
      break;                                                          
  }                                                                   
}                                                                     
ffc06fc0:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc06fc4:	81 81 00 0c 	lwz     r12,12(r1)                             
ffc06fc8:	7c 08 03 a6 	mtlr    r0                                     
ffc06fcc:	83 41 00 10 	lwz     r26,16(r1)                             
ffc06fd0:	83 61 00 14 	lwz     r27,20(r1)                             
ffc06fd4:	7d 80 81 20 	mtcrf   8,r12                                  
ffc06fd8:	83 81 00 18 	lwz     r28,24(r1)                             
ffc06fdc:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc06fe0:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc06fe4:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc06fe8:	38 21 00 28 	addi    r1,r1,40                               
ffc06fec:	4e 80 00 20 	blr                                            
          tty->column--;                                              
        }                                                             
      }                                                               
      else {                                                          
        if (iscntrl (c) && (tty->termios.c_lflag & ECHOCTL)) {        
          rtems_termios_puts ("\b \b", 3, tty);                       
ffc06ff0:	7f 63 db 78 	mr      r3,r27                                 <== NOT EXECUTED
ffc06ff4:	38 80 00 03 	li      r4,3                                   <== NOT EXECUTED
ffc06ff8:	7f e5 fb 78 	mr      r5,r31                                 <== NOT EXECUTED
ffc06ffc:	4b ff fb 29 	bl      ffc06b24 <rtems_termios_puts>          <== NOT EXECUTED
          if (tty->column)                                            
ffc07000:	81 3f 00 28 	lwz     r9,40(r31)                             <== NOT EXECUTED
ffc07004:	2f 89 00 00 	cmpwi   cr7,r9,0                               <== NOT EXECUTED
ffc07008:	41 9e 00 0c 	beq-    cr7,ffc07014 <erase+0x12c>             <== NOT EXECUTED
            tty->column--;                                            
ffc0700c:	39 29 ff ff 	addi    r9,r9,-1                               <== NOT EXECUTED
ffc07010:	91 3f 00 28 	stw     r9,40(r31)                             <== NOT EXECUTED
        }                                                             
        if (!iscntrl (c) || (tty->termios.c_lflag & ECHOCTL)) {       
ffc07014:	81 3c 26 a0 	lwz     r9,9888(r28)                           <== NOT EXECUTED
ffc07018:	7c 09 f0 ae 	lbzx    r0,r9,r30                              <== NOT EXECUTED
ffc0701c:	70 0b 00 20 	andi.   r11,r0,32                              <== NOT EXECUTED
ffc07020:	41 82 00 10 	beq-    ffc07030 <erase+0x148>                 <== NOT EXECUTED
ffc07024:	80 1f 00 3c 	lwz     r0,60(r31)                             <== NOT EXECUTED
ffc07028:	70 09 02 00 	andi.   r9,r0,512                              <== NOT EXECUTED
ffc0702c:	41 a2 ff 68 	beq-    ffc06f94 <erase+0xac>                  <== NOT EXECUTED
          rtems_termios_puts ("\b \b", 3, tty);                       
ffc07030:	7f 43 d3 78 	mr      r3,r26                                 
ffc07034:	38 80 00 03 	li      r4,3                                   
ffc07038:	7f e5 fb 78 	mr      r5,r31                                 
ffc0703c:	4b ff fa e9 	bl      ffc06b24 <rtems_termios_puts>          
          if (tty->column)                                            
ffc07040:	81 3f 00 28 	lwz     r9,40(r31)                             
ffc07044:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc07048:	41 be ff 4c 	beq-    cr7,ffc06f94 <erase+0xac>              <== NEVER TAKEN
            tty->column--;                                            
ffc0704c:	39 29 ff ff 	addi    r9,r9,-1                               
ffc07050:	91 3f 00 28 	stw     r9,40(r31)                             
ffc07054:	4b ff ff 40 	b       ffc06f94 <erase+0xac>                  
        int i = 0;                                                    
                                                                      
        /*                                                            
         * Find the character before the tab                          
         */                                                           
        while (i != tty->ccount) {                                    
ffc07058:	2f 89 00 00 	cmpwi   cr7,r9,0                               
                                                                      
    if (tty->termios.c_lflag & ECHO) {                                
      if (!lineFlag && !(tty->termios.c_lflag & ECHOE)) {             
        echo (tty->termios.c_cc[VERASE], tty);                        
      } else if (c == '\t') {                                         
        int col = tty->read_start_column;                             
ffc0705c:	83 df 00 2c 	lwz     r30,44(r31)                            
        int i = 0;                                                    
                                                                      
        /*                                                            
         * Find the character before the tab                          
         */                                                           
        while (i != tty->ccount) {                                    
ffc07060:	41 9e 00 44 	beq-    cr7,ffc070a4 <erase+0x1bc>             
          c = tty->cbuf[i++];                                         
          if (c == '\t') {                                            
            col = (col | 7) + 1;                                      
          } else if (iscntrl (c)) {                                   
            if (tty->termios.c_lflag & ECHOCTL)                       
ffc07064:	7d 29 03 a6 	mtctr   r9                                     
ffc07068:	54 0b bf fe 	rlwinm  r11,r0,23,31,31                        
         */                                                           
        while (i != tty->ccount) {                                    
          c = tty->cbuf[i++];                                         
          if (c == '\t') {                                            
            col = (col | 7) + 1;                                      
          } else if (iscntrl (c)) {                                   
ffc0706c:	81 1c 26 a0 	lwz     r8,9888(r28)                           
            if (tty->termios.c_lflag & ECHOCTL)                       
ffc07070:	2f 0b 00 00 	cmpwi   cr6,r11,0                              
    if (tty->termios.c_lflag & ECHO) {                                
      if (!lineFlag && !(tty->termios.c_lflag & ECHOE)) {             
        echo (tty->termios.c_cc[VERASE], tty);                        
      } else if (c == '\t') {                                         
        int col = tty->read_start_column;                             
        int i = 0;                                                    
ffc07074:	39 60 00 00 	li      r11,0                                  
                                                                      
        /*                                                            
         * Find the character before the tab                          
         */                                                           
        while (i != tty->ccount) {                                    
          c = tty->cbuf[i++];                                         
ffc07078:	7c 0a 58 ae 	lbzx    r0,r10,r11                             
ffc0707c:	39 6b 00 01 	addi    r11,r11,1                              
          if (c == '\t') {                                            
ffc07080:	2f 80 00 09 	cmpwi   cr7,r0,9                               
            col = (col | 7) + 1;                                      
          } else if (iscntrl (c)) {                                   
ffc07084:	7d 28 02 14 	add     r9,r8,r0                               
        /*                                                            
         * Find the character before the tab                          
         */                                                           
        while (i != tty->ccount) {                                    
          c = tty->cbuf[i++];                                         
          if (c == '\t') {                                            
ffc07088:	41 9e 00 5c 	beq-    cr7,ffc070e4 <erase+0x1fc>             
            col = (col | 7) + 1;                                      
          } else if (iscntrl (c)) {                                   
ffc0708c:	88 09 00 01 	lbz     r0,1(r9)                               
ffc07090:	70 09 00 20 	andi.   r9,r0,32                               
ffc07094:	41 82 00 44 	beq-    ffc070d8 <erase+0x1f0>                 <== ALWAYS TAKEN
            if (tty->termios.c_lflag & ECHOCTL)                       
ffc07098:	41 9a 00 08 	beq-    cr6,ffc070a0 <erase+0x1b8>             <== NOT EXECUTED
              col += 2;                                               
ffc0709c:	3b de 00 02 	addi    r30,r30,2                              <== NOT EXECUTED
        int i = 0;                                                    
                                                                      
        /*                                                            
         * Find the character before the tab                          
         */                                                           
        while (i != tty->ccount) {                                    
ffc070a0:	42 00 ff d8 	bdnz+   ffc07078 <erase+0x190>                 <== NOT EXECUTED
        }                                                             
                                                                      
        /*                                                            
         * Back up over the tab                                       
         */                                                           
        while (tty->column > col) {                                   
ffc070a4:	80 1f 00 28 	lwz     r0,40(r31)                             
ffc070a8:	7f 9e 00 00 	cmpw    cr7,r30,r0                             
ffc070ac:	40 bc fe e8 	bge-    cr7,ffc06f94 <erase+0xac>              <== NEVER TAKEN
          rtems_termios_puts ("\b", 1, tty);                          
ffc070b0:	7f a3 eb 78 	mr      r3,r29                                 
ffc070b4:	38 80 00 01 	li      r4,1                                   
ffc070b8:	7f e5 fb 78 	mr      r5,r31                                 
ffc070bc:	4b ff fa 69 	bl      ffc06b24 <rtems_termios_puts>          
          tty->column--;                                              
ffc070c0:	81 3f 00 28 	lwz     r9,40(r31)                             
ffc070c4:	38 09 ff ff 	addi    r0,r9,-1                               
        }                                                             
                                                                      
        /*                                                            
         * Back up over the tab                                       
         */                                                           
        while (tty->column > col) {                                   
ffc070c8:	7f 80 f0 00 	cmpw    cr7,r0,r30                             
          rtems_termios_puts ("\b", 1, tty);                          
          tty->column--;                                              
ffc070cc:	90 1f 00 28 	stw     r0,40(r31)                             
        }                                                             
                                                                      
        /*                                                            
         * Back up over the tab                                       
         */                                                           
        while (tty->column > col) {                                   
ffc070d0:	41 9d ff e0 	bgt+    cr7,ffc070b0 <erase+0x1c8>             
ffc070d4:	4b ff fe c0 	b       ffc06f94 <erase+0xac>                  
            col = (col | 7) + 1;                                      
          } else if (iscntrl (c)) {                                   
            if (tty->termios.c_lflag & ECHOCTL)                       
              col += 2;                                               
          } else {                                                    
            col++;                                                    
ffc070d8:	3b de 00 01 	addi    r30,r30,1                              
        int i = 0;                                                    
                                                                      
        /*                                                            
         * Find the character before the tab                          
         */                                                           
        while (i != tty->ccount) {                                    
ffc070dc:	42 00 ff 9c 	bdnz+   ffc07078 <erase+0x190>                 
ffc070e0:	4b ff ff c4 	b       ffc070a4 <erase+0x1bc>                 
          c = tty->cbuf[i++];                                         
          if (c == '\t') {                                            
            col = (col | 7) + 1;                                      
ffc070e4:	63 de 00 07 	ori     r30,r30,7                              
ffc070e8:	3b de 00 01 	addi    r30,r30,1                              
        int i = 0;                                                    
                                                                      
        /*                                                            
         * Find the character before the tab                          
         */                                                           
        while (i != tty->ccount) {                                    
ffc070ec:	42 00 ff 8c 	bdnz+   ffc07078 <erase+0x190>                 
ffc070f0:	4b ff ff b4 	b       ffc070a4 <erase+0x1bc>                 <== NOT EXECUTED
  if (lineFlag) {                                                     
    if (!(tty->termios.c_lflag & ECHO)) {                             
      tty->ccount = 0;                                                
      return;                                                         
    }                                                                 
    if (!(tty->termios.c_lflag & ECHOE)) {                            
ffc070f4:	70 0a 00 10 	andi.   r10,r0,16                              
ffc070f8:	40 82 fe 3c 	bne+    ffc06f34 <erase+0x4c>                  <== ALWAYS TAKEN
      tty->ccount = 0;                                                
ffc070fc:	91 43 00 20 	stw     r10,32(r3)                             <== NOT EXECUTED
      echo (tty->termios.c_cc[VKILL], tty);                           
ffc07100:	7c 64 1b 78 	mr      r4,r3                                  <== NOT EXECUTED
ffc07104:	88 63 00 44 	lbz     r3,68(r3)                              <== NOT EXECUTED
ffc07108:	4b ff fd 3d 	bl      ffc06e44 <echo>                        <== NOT EXECUTED
      if (tty->termios.c_lflag & ECHOK)                               
ffc0710c:	80 1f 00 3c 	lwz     r0,60(r31)                             <== NOT EXECUTED
        echo ('\n', tty);                                             
ffc07110:	38 60 00 0a 	li      r3,10                                  <== NOT EXECUTED
      return;                                                         
    }                                                                 
    if (!(tty->termios.c_lflag & ECHOE)) {                            
      tty->ccount = 0;                                                
      echo (tty->termios.c_cc[VKILL], tty);                           
      if (tty->termios.c_lflag & ECHOK)                               
ffc07114:	70 09 00 20 	andi.   r9,r0,32                               <== NOT EXECUTED
ffc07118:	41 82 fe a8 	beq+    ffc06fc0 <erase+0xd8>                  <== NOT EXECUTED
      }                                                               
    }                                                                 
    if (!lineFlag)                                                    
      break;                                                          
  }                                                                   
}                                                                     
ffc0711c:	80 01 00 2c 	lwz     r0,44(r1)                              <== NOT EXECUTED
  while (tty->ccount) {                                               
    unsigned char c = tty->cbuf[--tty->ccount];                       
                                                                      
    if (tty->termios.c_lflag & ECHO) {                                
      if (!lineFlag && !(tty->termios.c_lflag & ECHOE)) {             
        echo (tty->termios.c_cc[VERASE], tty);                        
ffc07120:	7f e4 fb 78 	mr      r4,r31                                 <== NOT EXECUTED
      }                                                               
    }                                                                 
    if (!lineFlag)                                                    
      break;                                                          
  }                                                                   
}                                                                     
ffc07124:	81 81 00 0c 	lwz     r12,12(r1)                             <== NOT EXECUTED
ffc07128:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc0712c:	83 41 00 10 	lwz     r26,16(r1)                             <== NOT EXECUTED
ffc07130:	83 61 00 14 	lwz     r27,20(r1)                             <== NOT EXECUTED
ffc07134:	7d 80 81 20 	mtcrf   8,r12                                  <== NOT EXECUTED
ffc07138:	83 81 00 18 	lwz     r28,24(r1)                             <== NOT EXECUTED
ffc0713c:	83 a1 00 1c 	lwz     r29,28(r1)                             <== NOT EXECUTED
ffc07140:	83 c1 00 20 	lwz     r30,32(r1)                             <== NOT EXECUTED
ffc07144:	83 e1 00 24 	lwz     r31,36(r1)                             <== NOT EXECUTED
ffc07148:	38 21 00 28 	addi    r1,r1,40                               <== NOT EXECUTED
  while (tty->ccount) {                                               
    unsigned char c = tty->cbuf[--tty->ccount];                       
                                                                      
    if (tty->termios.c_lflag & ECHO) {                                
      if (!lineFlag && !(tty->termios.c_lflag & ECHOE)) {             
        echo (tty->termios.c_cc[VERASE], tty);                        
ffc0714c:	4b ff fc f8 	b       ffc06e44 <echo>                        <== NOT EXECUTED
      }                                                               
    }                                                                 
    if (!lineFlag)                                                    
      break;                                                          
  }                                                                   
}                                                                     
ffc07150:	80 01 00 2c 	lwz     r0,44(r1)                              <== NOT EXECUTED
  while (tty->ccount) {                                               
    unsigned char c = tty->cbuf[--tty->ccount];                       
                                                                      
    if (tty->termios.c_lflag & ECHO) {                                
      if (!lineFlag && !(tty->termios.c_lflag & ECHOE)) {             
        echo (tty->termios.c_cc[VERASE], tty);                        
ffc07154:	7f e4 fb 78 	mr      r4,r31                                 <== NOT EXECUTED
      }                                                               
    }                                                                 
    if (!lineFlag)                                                    
      break;                                                          
  }                                                                   
}                                                                     
ffc07158:	81 81 00 0c 	lwz     r12,12(r1)                             <== NOT EXECUTED
ffc0715c:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
  while (tty->ccount) {                                               
    unsigned char c = tty->cbuf[--tty->ccount];                       
                                                                      
    if (tty->termios.c_lflag & ECHO) {                                
      if (!lineFlag && !(tty->termios.c_lflag & ECHOE)) {             
        echo (tty->termios.c_cc[VERASE], tty);                        
ffc07160:	88 7f 00 43 	lbz     r3,67(r31)                             <== NOT EXECUTED
      }                                                               
    }                                                                 
    if (!lineFlag)                                                    
      break;                                                          
  }                                                                   
}                                                                     
ffc07164:	83 41 00 10 	lwz     r26,16(r1)                             <== NOT EXECUTED
ffc07168:	7d 80 81 20 	mtcrf   8,r12                                  <== NOT EXECUTED
ffc0716c:	83 61 00 14 	lwz     r27,20(r1)                             <== NOT EXECUTED
ffc07170:	83 81 00 18 	lwz     r28,24(r1)                             <== NOT EXECUTED
ffc07174:	83 a1 00 1c 	lwz     r29,28(r1)                             <== NOT EXECUTED
ffc07178:	83 c1 00 20 	lwz     r30,32(r1)                             <== NOT EXECUTED
ffc0717c:	83 e1 00 24 	lwz     r31,36(r1)                             <== NOT EXECUTED
ffc07180:	38 21 00 28 	addi    r1,r1,40                               <== NOT EXECUTED
  while (tty->ccount) {                                               
    unsigned char c = tty->cbuf[--tty->ccount];                       
                                                                      
    if (tty->termios.c_lflag & ECHO) {                                
      if (!lineFlag && !(tty->termios.c_lflag & ECHOE)) {             
        echo (tty->termios.c_cc[VERASE], tty);                        
ffc07184:	4b ff fc c0 	b       ffc06e44 <echo>                        <== NOT EXECUTED
                                                                      

ffc05950 <fcntl>: int fcntl( int fd, int cmd, ... ) {
ffc05950:	94 21 ff c8 	stwu    r1,-56(r1)                             
ffc05954:	7c 08 02 a6 	mflr    r0                                     
  int            fd2;                                                 
  int            flags;                                               
  int            mask;                                                
  int            ret = 0;                                             
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc05958:	3d 20 00 00 	lis     r9,0                                   
int fcntl(                                                            
  int fd,                                                             
  int cmd,                                                            
  ...                                                                 
)                                                                     
{                                                                     
ffc0595c:	90 01 00 3c 	stw     r0,60(r1)                              
  int            fd2;                                                 
  int            flags;                                               
  int            mask;                                                
  int            ret = 0;                                             
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc05960:	80 09 26 4c 	lwz     r0,9804(r9)                            
  ...                                                                 
)                                                                     
{                                                                     
  int            ret;                                                 
  va_list        ap;                                                  
  va_start( ap, cmd );                                                
ffc05964:	39 20 00 02 	li      r9,2                                   
ffc05968:	99 21 00 08 	stb     r9,8(r1)                               
ffc0596c:	39 21 00 40 	addi    r9,r1,64                               
  int            fd2;                                                 
  int            flags;                                               
  int            mask;                                                
  int            ret = 0;                                             
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc05970:	7f 83 00 40 	cmplw   cr7,r3,r0                              
  ...                                                                 
)                                                                     
{                                                                     
  int            ret;                                                 
  va_list        ap;                                                  
  va_start( ap, cmd );                                                
ffc05974:	91 21 00 0c 	stw     r9,12(r1)                              
ffc05978:	39 21 00 10 	addi    r9,r1,16                               
int fcntl(                                                            
  int fd,                                                             
  int cmd,                                                            
  ...                                                                 
)                                                                     
{                                                                     
ffc0597c:	93 c1 00 30 	stw     r30,48(r1)                             
ffc05980:	93 e1 00 34 	stw     r31,52(r1)                             
ffc05984:	90 a1 00 18 	stw     r5,24(r1)                              
ffc05988:	90 c1 00 1c 	stw     r6,28(r1)                              
ffc0598c:	90 e1 00 20 	stw     r7,32(r1)                              
  int            ret;                                                 
  va_list        ap;                                                  
  va_start( ap, cmd );                                                
ffc05990:	91 21 00 10 	stw     r9,16(r1)                              
  int            fd2;                                                 
  int            flags;                                               
  int            mask;                                                
  int            ret = 0;                                             
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc05994:	40 9c 02 08 	bge-    cr7,ffc05b9c <fcntl+0x24c>             
  iop = rtems_libio_iop( fd );                                        
ffc05998:	3f e0 00 00 	lis     r31,0                                  
ffc0599c:	81 7f 27 0c 	lwz     r11,9996(r31)                          
ffc059a0:	54 63 30 32 	rlwinm  r3,r3,6,0,25                           
ffc059a4:	7f cb 1a 14 	add     r30,r11,r3                             
  rtems_libio_check_is_open(iop);                                     
ffc059a8:	80 7e 00 18 	lwz     r3,24(r30)                             
ffc059ac:	70 69 01 00 	andi.   r9,r3,256                              
ffc059b0:	41 82 01 ec 	beq-    ffc05b9c <fcntl+0x24c>                 
                                                                      
  /*                                                                  
   *  This switch should contain all the cases from POSIX.            
   */                                                                 
                                                                      
  switch ( cmd ) {                                                    
ffc059b4:	2b 84 00 09 	cmplwi  cr7,r4,9                               
ffc059b8:	40 9d 00 30 	ble-    cr7,ffc059e8 <fcntl+0x98>              
      errno = ENOTSUP;                                                
      ret = -1;                                                       
      break;                                                          
                                                                      
    default:                                                          
      errno = EINVAL;                                                 
ffc059bc:	48 00 de c1 	bl      ffc1387c <__errno>                     
ffc059c0:	38 00 00 16 	li      r0,22                                  
ffc059c4:	90 03 00 00 	stw     r0,0(r3)                               
                                                                      
  if (ret >= 0) {                                                     
    int err = (*iop->pathinfo.handlers->fcntl_h)( cmd, iop );         
    if (err) {                                                        
      errno = err;                                                    
      ret = -1;                                                       
ffc059c8:	3b e0 ff ff 	li      r31,-1                                 
  va_list        ap;                                                  
  va_start( ap, cmd );                                                
  ret = vfcntl(fd,cmd,ap);                                            
  va_end(ap);                                                         
  return ret;                                                         
}                                                                     
ffc059cc:	80 01 00 3c 	lwz     r0,60(r1)                              
ffc059d0:	7f e3 fb 78 	mr      r3,r31                                 
ffc059d4:	83 c1 00 30 	lwz     r30,48(r1)                             
ffc059d8:	7c 08 03 a6 	mtlr    r0                                     
ffc059dc:	83 e1 00 34 	lwz     r31,52(r1)                             
ffc059e0:	38 21 00 38 	addi    r1,r1,56                               
ffc059e4:	4e 80 00 20 	blr                                            
                                                                      
  /*                                                                  
   *  This switch should contain all the cases from POSIX.            
   */                                                                 
                                                                      
  switch ( cmd ) {                                                    
ffc059e8:	3d 20 ff c2 	lis     r9,-62                                 
ffc059ec:	39 29 b0 5c 	addi    r9,r9,-20388                           
ffc059f0:	54 8a 10 3a 	rlwinm  r10,r4,2,0,29                          
ffc059f4:	7d 49 50 2e 	lwzx    r10,r9,r10                             
ffc059f8:	7d 2a 4a 14 	add     r9,r10,r9                              
ffc059fc:	7d 29 03 a6 	mtctr   r9                                     
ffc05a00:	4e 80 04 20 	bctr                                           
      errno = ENOTSUP;                                                
      ret = -1;                                                       
      break;                                                          
                                                                      
    case F_GETOWN:       /*  for sockets. */                          
      errno = ENOTSUP;                                                
ffc05a04:	48 00 de 79 	bl      ffc1387c <__errno>                     
ffc05a08:	38 00 00 86 	li      r0,134                                 
ffc05a0c:	90 03 00 00 	stw     r0,0(r3)                               
ffc05a10:	4b ff ff b8 	b       ffc059c8 <fcntl+0x78>                  
    case F_GETFL:        /* more flags (cloexec) */                   
      ret = rtems_libio_to_fcntl_flags( iop->flags );                 
      break;                                                          
                                                                      
    case F_SETFL:                                                     
      flags = rtems_libio_fcntl_flags( va_arg( ap, int ) );           
ffc05a14:	89 21 00 08 	lbz     r9,8(r1)                               
ffc05a18:	2b 89 00 07 	cmplwi  cr7,r9,7                               
ffc05a1c:	40 9d 01 68 	ble-    cr7,ffc05b84 <fcntl+0x234>             <== ALWAYS TAKEN
ffc05a20:	81 61 00 0c 	lwz     r11,12(r1)                             <== NOT EXECUTED
ffc05a24:	38 0b 00 04 	addi    r0,r11,4                               <== NOT EXECUTED
ffc05a28:	90 01 00 0c 	stw     r0,12(r1)                              <== NOT EXECUTED
ffc05a2c:	80 6b 00 00 	lwz     r3,0(r11)                              
  rtems_libio_t *iop;                                                 
  rtems_libio_t *diop;                                                
  int            fd2;                                                 
  int            flags;                                               
  int            mask;                                                
  int            ret = 0;                                             
ffc05a30:	3b e0 00 00 	li      r31,0                                  
    case F_GETFL:        /* more flags (cloexec) */                   
      ret = rtems_libio_to_fcntl_flags( iop->flags );                 
      break;                                                          
                                                                      
    case F_SETFL:                                                     
      flags = rtems_libio_fcntl_flags( va_arg( ap, int ) );           
ffc05a34:	90 81 00 28 	stw     r4,40(r1)                              
ffc05a38:	48 00 07 01 	bl      ffc06138 <rtems_libio_fcntl_flags>     
                                                                      
      /*                                                              
       *  XXX If we are turning on append, should we seek to the end? 
       */                                                             
                                                                      
      iop->flags = (iop->flags & ~mask) | (flags & mask);             
ffc05a3c:	39 20 fd fe 	li      r9,-514                                
ffc05a40:	80 1e 00 18 	lwz     r0,24(r30)                             
ffc05a44:	70 63 02 01 	andi.   r3,r3,513                              
ffc05a48:	80 81 00 28 	lwz     r4,40(r1)                              
ffc05a4c:	7d 20 00 38 	and     r0,r9,r0                               
ffc05a50:	7c 60 03 78 	or      r0,r3,r0                               
ffc05a54:	90 1e 00 18 	stw     r0,24(r30)                             
ffc05a58:	48 00 00 1c 	b       ffc05a74 <fcntl+0x124>                 
      else                                                            
        iop->flags &= ~LIBIO_FLAGS_CLOSE_ON_EXEC;                     
      break;                                                          
                                                                      
    case F_GETFL:        /* more flags (cloexec) */                   
      ret = rtems_libio_to_fcntl_flags( iop->flags );                 
ffc05a5c:	90 81 00 28 	stw     r4,40(r1)                              
ffc05a60:	48 00 07 39 	bl      ffc06198 <rtems_libio_to_fcntl_flags>  
ffc05a64:	7c 7f 1b 78 	mr      r31,r3                                 
ffc05a68:	80 81 00 28 	lwz     r4,40(r1)                              
  /*                                                                  
   *  If we got this far successfully, then we give the optional      
   *  filesystem specific handler a chance to process this.           
   */                                                                 
                                                                      
  if (ret >= 0) {                                                     
ffc05a6c:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc05a70:	41 bc ff 5c 	blt-    cr7,ffc059cc <fcntl+0x7c>              <== NEVER TAKEN
    int err = (*iop->pathinfo.handlers->fcntl_h)( cmd, iop );         
ffc05a74:	81 3e 00 24 	lwz     r9,36(r30)                             
ffc05a78:	7c 83 23 78 	mr      r3,r4                                  
ffc05a7c:	7f c4 f3 78 	mr      r4,r30                                 
ffc05a80:	80 09 00 30 	lwz     r0,48(r9)                              
ffc05a84:	7c 09 03 a6 	mtctr   r0                                     
ffc05a88:	4e 80 04 21 	bctrl                                          
    if (err) {                                                        
ffc05a8c:	7c 7e 1b 79 	mr.     r30,r3                                 
ffc05a90:	41 82 ff 3c 	beq+    ffc059cc <fcntl+0x7c>                  <== ALWAYS TAKEN
      errno = err;                                                    
ffc05a94:	48 00 dd e9 	bl      ffc1387c <__errno>                     <== NOT EXECUTED
ffc05a98:	93 c3 00 00 	stw     r30,0(r3)                              <== NOT EXECUTED
ffc05a9c:	4b ff ff 2c 	b       ffc059c8 <fcntl+0x78>                  <== NOT EXECUTED
       *  if a new process is exec()'ed.  Since RTEMS does not support
       *  processes, then we can ignore this one except to make       
       *  F_GETFD work.                                               
       */                                                             
                                                                      
      if ( va_arg( ap, int ) )                                        
ffc05aa0:	89 21 00 08 	lbz     r9,8(r1)                               
ffc05aa4:	2b 89 00 07 	cmplwi  cr7,r9,7                               
ffc05aa8:	41 9d 00 cc 	bgt-    cr7,ffc05b74 <fcntl+0x224>             <== NEVER TAKEN
ffc05aac:	55 20 10 3a 	rlwinm  r0,r9,2,0,29                           
ffc05ab0:	81 61 00 10 	lwz     r11,16(r1)                             
ffc05ab4:	39 29 00 01 	addi    r9,r9,1                                
ffc05ab8:	99 21 00 08 	stb     r9,8(r1)                               
ffc05abc:	7d 6b 02 14 	add     r11,r11,r0                             
ffc05ac0:	80 0b 00 00 	lwz     r0,0(r11)                              
ffc05ac4:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc05ac8:	41 9e 00 e8 	beq-    cr7,ffc05bb0 <fcntl+0x260>             
        iop->flags |= LIBIO_FLAGS_CLOSE_ON_EXEC;                      
ffc05acc:	60 63 08 00 	ori     r3,r3,2048                             
ffc05ad0:	90 7e 00 18 	stw     r3,24(r30)                             
  rtems_libio_t *iop;                                                 
  rtems_libio_t *diop;                                                
  int            fd2;                                                 
  int            flags;                                               
  int            mask;                                                
  int            ret = 0;                                             
ffc05ad4:	3b e0 00 00 	li      r31,0                                  
ffc05ad8:	4b ff ff 9c 	b       ffc05a74 <fcntl+0x124>                 
      diop->pathinfo   = iop->pathinfo;                               
      ret = (int) (diop - rtems_libio_iops);                          
      break;                                                          
                                                                      
    case F_GETFD:        /* get f_flags */                            
      ret = ((iop->flags & LIBIO_FLAGS_CLOSE_ON_EXEC) != 0);          
ffc05adc:	54 7f af fe 	rlwinm  r31,r3,21,31,31                        
ffc05ae0:	4b ff ff 94 	b       ffc05a74 <fcntl+0x124>                 
   *  This switch should contain all the cases from POSIX.            
   */                                                                 
                                                                      
  switch ( cmd ) {                                                    
    case F_DUPFD:        /* dup */                                    
      fd2 = va_arg( ap, int );                                        
ffc05ae4:	89 21 00 08 	lbz     r9,8(r1)                               
ffc05ae8:	2b 89 00 07 	cmplwi  cr7,r9,7                               
ffc05aec:	41 9d 00 78 	bgt-    cr7,ffc05b64 <fcntl+0x214>             <== NEVER TAKEN
ffc05af0:	55 2a 10 3a 	rlwinm  r10,r9,2,0,29                          
ffc05af4:	81 01 00 10 	lwz     r8,16(r1)                              
ffc05af8:	39 29 00 01 	addi    r9,r9,1                                
ffc05afc:	99 21 00 08 	stb     r9,8(r1)                               
ffc05b00:	7d 48 52 14 	add     r10,r8,r10                             
ffc05b04:	81 4a 00 00 	lwz     r10,0(r10)                             
      if ( fd2 )                                                      
ffc05b08:	2f 8a 00 00 	cmpwi   cr7,r10,0                              
ffc05b0c:	41 9e 00 b4 	beq-    cr7,ffc05bc0 <fcntl+0x270>             
        diop = rtems_libio_iop( fd2 );                                
ffc05b10:	7f 80 50 40 	cmplw   cr7,r0,r10                             
ffc05b14:	3b e0 00 00 	li      r31,0                                  
ffc05b18:	39 20 00 00 	li      r9,0                                   
ffc05b1c:	40 9d 00 10 	ble-    cr7,ffc05b2c <fcntl+0x1dc>             <== NEVER TAKEN
ffc05b20:	55 49 30 32 	rlwinm  r9,r10,6,0,25                          
ffc05b24:	7d 2b 4a 14 	add     r9,r11,r9                              
ffc05b28:	7d 3f 4b 78 	mr      r31,r9                                 
          break;                                                      
        }                                                             
      }                                                               
                                                                      
      diop->flags      = iop->flags;                                  
      diop->pathinfo   = iop->pathinfo;                               
ffc05b2c:	80 1e 00 28 	lwz     r0,40(r30)                             
      ret = (int) (diop - rtems_libio_iops);                          
ffc05b30:	7f eb f8 50 	subf    r31,r11,r31                            
          break;                                                      
        }                                                             
      }                                                               
                                                                      
      diop->flags      = iop->flags;                                  
      diop->pathinfo   = iop->pathinfo;                               
ffc05b34:	80 fe 00 1c 	lwz     r7,28(r30)                             
      ret = (int) (diop - rtems_libio_iops);                          
ffc05b38:	7f ff 36 70 	srawi   r31,r31,6                              
          break;                                                      
        }                                                             
      }                                                               
                                                                      
      diop->flags      = iop->flags;                                  
      diop->pathinfo   = iop->pathinfo;                               
ffc05b3c:	81 1e 00 20 	lwz     r8,32(r30)                             
ffc05b40:	81 5e 00 24 	lwz     r10,36(r30)                            
ffc05b44:	90 e9 00 1c 	stw     r7,28(r9)                              
ffc05b48:	91 09 00 20 	stw     r8,32(r9)                              
ffc05b4c:	91 49 00 24 	stw     r10,36(r9)                             
ffc05b50:	90 09 00 28 	stw     r0,40(r9)                              
ffc05b54:	80 1e 00 2c 	lwz     r0,44(r30)                             
          ret = -1;                                                   
          break;                                                      
        }                                                             
      }                                                               
                                                                      
      diop->flags      = iop->flags;                                  
ffc05b58:	90 69 00 18 	stw     r3,24(r9)                              
      diop->pathinfo   = iop->pathinfo;                               
ffc05b5c:	90 09 00 2c 	stw     r0,44(r9)                              
ffc05b60:	4b ff ff 0c 	b       ffc05a6c <fcntl+0x11c>                 
   *  This switch should contain all the cases from POSIX.            
   */                                                                 
                                                                      
  switch ( cmd ) {                                                    
    case F_DUPFD:        /* dup */                                    
      fd2 = va_arg( ap, int );                                        
ffc05b64:	81 41 00 0c 	lwz     r10,12(r1)                             <== NOT EXECUTED
ffc05b68:	39 2a 00 04 	addi    r9,r10,4                               <== NOT EXECUTED
ffc05b6c:	91 21 00 0c 	stw     r9,12(r1)                              <== NOT EXECUTED
ffc05b70:	4b ff ff 94 	b       ffc05b04 <fcntl+0x1b4>                 <== NOT EXECUTED
       *  if a new process is exec()'ed.  Since RTEMS does not support
       *  processes, then we can ignore this one except to make       
       *  F_GETFD work.                                               
       */                                                             
                                                                      
      if ( va_arg( ap, int ) )                                        
ffc05b74:	81 61 00 0c 	lwz     r11,12(r1)                             <== NOT EXECUTED
ffc05b78:	38 0b 00 04 	addi    r0,r11,4                               <== NOT EXECUTED
ffc05b7c:	90 01 00 0c 	stw     r0,12(r1)                              <== NOT EXECUTED
ffc05b80:	4b ff ff 40 	b       ffc05ac0 <fcntl+0x170>                 <== NOT EXECUTED
    case F_GETFL:        /* more flags (cloexec) */                   
      ret = rtems_libio_to_fcntl_flags( iop->flags );                 
      break;                                                          
                                                                      
    case F_SETFL:                                                     
      flags = rtems_libio_fcntl_flags( va_arg( ap, int ) );           
ffc05b84:	81 61 00 10 	lwz     r11,16(r1)                             
ffc05b88:	55 20 10 3a 	rlwinm  r0,r9,2,0,29                           
ffc05b8c:	39 29 00 01 	addi    r9,r9,1                                
ffc05b90:	7d 6b 02 14 	add     r11,r11,r0                             
ffc05b94:	99 21 00 08 	stb     r9,8(r1)                               
ffc05b98:	4b ff fe 94 	b       ffc05a2c <fcntl+0xdc>                  
  int            mask;                                                
  int            ret = 0;                                             
                                                                      
  rtems_libio_check_fd( fd );                                         
  iop = rtems_libio_iop( fd );                                        
  rtems_libio_check_is_open(iop);                                     
ffc05b9c:	48 00 dc e1 	bl      ffc1387c <__errno>                     
ffc05ba0:	38 00 00 09 	li      r0,9                                   
ffc05ba4:	90 03 00 00 	stw     r0,0(r3)                               
ffc05ba8:	3b e0 ff ff 	li      r31,-1                                 
ffc05bac:	4b ff fe 20 	b       ffc059cc <fcntl+0x7c>                  
       */                                                             
                                                                      
      if ( va_arg( ap, int ) )                                        
        iop->flags |= LIBIO_FLAGS_CLOSE_ON_EXEC;                      
      else                                                            
        iop->flags &= ~LIBIO_FLAGS_CLOSE_ON_EXEC;                     
ffc05bb0:	54 63 05 66 	rlwinm  r3,r3,0,21,19                          
ffc05bb4:	90 7e 00 18 	stw     r3,24(r30)                             
  rtems_libio_t *iop;                                                 
  rtems_libio_t *diop;                                                
  int            fd2;                                                 
  int            flags;                                               
  int            mask;                                                
  int            ret = 0;                                             
ffc05bb8:	3b e0 00 00 	li      r31,0                                  
ffc05bbc:	4b ff fe b8 	b       ffc05a74 <fcntl+0x124>                 
      fd2 = va_arg( ap, int );                                        
      if ( fd2 )                                                      
        diop = rtems_libio_iop( fd2 );                                
      else {                                                          
        /* allocate a file control block */                           
        diop = rtems_libio_allocate();                                
ffc05bc0:	90 81 00 28 	stw     r4,40(r1)                              
ffc05bc4:	48 00 06 25 	bl      ffc061e8 <rtems_libio_allocate>        
        if ( diop == 0 ) {                                            
ffc05bc8:	7c 69 1b 79 	mr.     r9,r3                                  
ffc05bcc:	80 81 00 28 	lwz     r4,40(r1)                              
ffc05bd0:	41 a2 fd f8 	beq-    ffc059c8 <fcntl+0x78>                  <== NEVER TAKEN
ffc05bd4:	81 7f 27 0c 	lwz     r11,9996(r31)                          
ffc05bd8:	7d 3f 4b 78 	mr      r31,r9                                 
ffc05bdc:	80 7e 00 18 	lwz     r3,24(r30)                             
ffc05be0:	4b ff ff 4c 	b       ffc05b2c <fcntl+0x1dc>                 
                                                                      

ffc1150c <fifo_open>: */ int fifo_open( pipe_control_t **pipep, rtems_libio_t *iop ) {
ffc1150c:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc11510:	7c 08 02 a6 	mflr    r0                                     
ffc11514:	93 e1 00 2c 	stw     r31,44(r1)                             
                                                                      
static rtems_status_code pipe_lock(void)                              
{                                                                     
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
                                                                      
  if (pipe_semaphore == RTEMS_ID_NONE) {                              
ffc11518:	3f e0 00 00 	lis     r31,0                                  
 */                                                                   
int fifo_open(                                                        
  pipe_control_t **pipep,                                             
  rtems_libio_t *iop                                                  
)                                                                     
{                                                                     
ffc1151c:	90 01 00 34 	stw     r0,52(r1)                              
                                                                      
static rtems_status_code pipe_lock(void)                              
{                                                                     
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
                                                                      
  if (pipe_semaphore == RTEMS_ID_NONE) {                              
ffc11520:	80 1f 28 fc 	lwz     r0,10492(r31)                          
 */                                                                   
int fifo_open(                                                        
  pipe_control_t **pipep,                                             
  rtems_libio_t *iop                                                  
)                                                                     
{                                                                     
ffc11524:	93 61 00 1c 	stw     r27,28(r1)                             
                                                                      
static rtems_status_code pipe_lock(void)                              
{                                                                     
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
                                                                      
  if (pipe_semaphore == RTEMS_ID_NONE) {                              
ffc11528:	3b 7f 28 fc 	addi    r27,r31,10492                          
ffc1152c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
 */                                                                   
int fifo_open(                                                        
  pipe_control_t **pipep,                                             
  rtems_libio_t *iop                                                  
)                                                                     
{                                                                     
ffc11530:	93 a1 00 24 	stw     r29,36(r1)                             
ffc11534:	7c 9d 23 78 	mr      r29,r4                                 
ffc11538:	93 c1 00 28 	stw     r30,40(r1)                             
ffc1153c:	7c 7e 1b 78 	mr      r30,r3                                 
ffc11540:	93 81 00 20 	stw     r28,32(r1)                             
                                                                      
static rtems_status_code pipe_lock(void)                              
{                                                                     
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
                                                                      
  if (pipe_semaphore == RTEMS_ID_NONE) {                              
ffc11544:	41 9e 00 bc 	beq-    cr7,ffc11600 <fifo_open+0xf4>          
                                                                      
    rtems_libio_unlock();                                             
  }                                                                   
                                                                      
  if (sc == RTEMS_SUCCESSFUL) {                                       
    sc = rtems_semaphore_obtain(pipe_semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
ffc11548:	7c 03 03 78 	mr      r3,r0                                  
ffc1154c:	38 80 00 00 	li      r4,0                                   
ffc11550:	38 a0 00 00 	li      r5,0                                   
ffc11554:	4b ff a3 81 	bl      ffc0b8d4 <rtems_semaphore_obtain>      
)                                                                     
{                                                                     
  pipe_control_t *pipe;                                               
  int err = 0;                                                        
                                                                      
  err = pipe_lock();                                                  
ffc11558:	3b 80 ff f4 	li      r28,-12                                
                                                                      
  if (sc == RTEMS_SUCCESSFUL) {                                       
    sc = rtems_semaphore_obtain(pipe_semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
  }                                                                   
                                                                      
  if (sc == RTEMS_SUCCESSFUL) {                                       
ffc1155c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc11560:	40 9e 00 78 	bne-    cr7,ffc115d8 <fifo_open+0xcc>          <== NEVER TAKEN
                                                                      
  err = pipe_lock();                                                  
  if (err)                                                            
    return err;                                                       
                                                                      
  pipe = *pipep;                                                      
ffc11564:	83 fe 00 00 	lwz     r31,0(r30)                             
  if (pipe == NULL) {                                                 
ffc11568:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc1156c:	41 9e 02 2c 	beq-    cr7,ffc11798 <fifo_open+0x28c>         
    err = pipe_alloc(&pipe);                                          
    if (err)                                                          
      goto out;                                                       
  }                                                                   
                                                                      
  if (! PIPE_LOCK(pipe))                                              
ffc11570:	80 7f 00 28 	lwz     r3,40(r31)                             
ffc11574:	38 80 00 00 	li      r4,0                                   
ffc11578:	38 a0 00 00 	li      r5,0                                   
ffc1157c:	4b ff a3 59 	bl      ffc0b8d4 <rtems_semaphore_obtain>      
    err = -EINTR;                                                     
ffc11580:	3b 80 ff fc 	li      r28,-4                                 
    err = pipe_alloc(&pipe);                                          
    if (err)                                                          
      goto out;                                                       
  }                                                                   
                                                                      
  if (! PIPE_LOCK(pipe))                                              
ffc11584:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc11588:	40 9e 00 08 	bne-    cr7,ffc11590 <fifo_open+0x84>          <== NEVER TAKEN
ffc1158c:	3b 80 00 00 	li      r28,0                                  
    err = -EINTR;                                                     
                                                                      
  if (*pipep == NULL) {                                               
ffc11590:	80 1e 00 00 	lwz     r0,0(r30)                              
ffc11594:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc11598:	41 9e 02 d4 	beq-    cr7,ffc1186c <fifo_open+0x360>         
    else                                                              
      *pipep = pipe;                                                  
  }                                                                   
                                                                      
out:                                                                  
  pipe_unlock();                                                      
ffc1159c:	4b ff fe 09 	bl      ffc113a4 <pipe_unlock>                 
  pipe_control_t *pipe;                                               
  unsigned int prevCounter;                                           
  int err;                                                            
                                                                      
  err = pipe_new(pipep);                                              
  if (err)                                                            
ffc115a0:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
ffc115a4:	40 9e 00 34 	bne-    cr7,ffc115d8 <fifo_open+0xcc>          <== NEVER TAKEN
    return err;                                                       
  pipe = *pipep;                                                      
                                                                      
  switch (LIBIO_ACCMODE(iop)) {                                       
ffc115a8:	80 1d 00 18 	lwz     r0,24(r29)                             
  int err;                                                            
                                                                      
  err = pipe_new(pipep);                                              
  if (err)                                                            
    return err;                                                       
  pipe = *pipep;                                                      
ffc115ac:	83 fe 00 00 	lwz     r31,0(r30)                             
                                                                      
  switch (LIBIO_ACCMODE(iop)) {                                       
ffc115b0:	54 00 07 7c 	rlwinm  r0,r0,0,29,30                          
ffc115b4:	2f 80 00 04 	cmpwi   cr7,r0,4                               
ffc115b8:	41 9e 00 78 	beq-    cr7,ffc11630 <fifo_open+0x124>         
ffc115bc:	2f 80 00 06 	cmpwi   cr7,r0,6                               
ffc115c0:	41 9e 01 88 	beq-    cr7,ffc11748 <fifo_open+0x23c>         
ffc115c4:	2f 80 00 02 	cmpwi   cr7,r0,2                               
ffc115c8:	41 9e 00 fc 	beq-    cr7,ffc116c4 <fifo_open+0x1b8>         <== ALWAYS TAKEN
      if (pipe->Writers ++ == 0)                                      
        PIPE_WAKEUPREADERS(pipe);                                     
      break;                                                          
  }                                                                   
                                                                      
  PIPE_UNLOCK(pipe);                                                  
ffc115cc:	80 7f 00 28 	lwz     r3,40(r31)                             
  return 0;                                                           
ffc115d0:	3b 80 00 00 	li      r28,0                                  
      if (pipe->Writers ++ == 0)                                      
        PIPE_WAKEUPREADERS(pipe);                                     
      break;                                                          
  }                                                                   
                                                                      
  PIPE_UNLOCK(pipe);                                                  
ffc115d4:	4b ff a4 89 	bl      ffc0ba5c <rtems_semaphore_release>     
  return 0;                                                           
                                                                      
out_error:                                                            
  pipe_release(pipep, iop);                                           
  return err;                                                         
}                                                                     
ffc115d8:	80 01 00 34 	lwz     r0,52(r1)                              
ffc115dc:	7f 83 e3 78 	mr      r3,r28                                 
ffc115e0:	83 61 00 1c 	lwz     r27,28(r1)                             
ffc115e4:	7c 08 03 a6 	mtlr    r0                                     
ffc115e8:	83 81 00 20 	lwz     r28,32(r1)                             
ffc115ec:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc115f0:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc115f4:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc115f8:	38 21 00 30 	addi    r1,r1,48                               
ffc115fc:	4e 80 00 20 	blr                                            
rtems_status_code rtems_libio_set_private_env(void);                  
rtems_status_code rtems_libio_share_private_env(rtems_id task_id) ;   
                                                                      
static inline void rtems_libio_lock( void )                           
{                                                                     
  rtems_semaphore_obtain( rtems_libio_semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT );
ffc11600:	3f 80 00 00 	lis     r28,0                                  
ffc11604:	80 7c 27 34 	lwz     r3,10036(r28)                          
ffc11608:	38 80 00 00 	li      r4,0                                   
ffc1160c:	38 a0 00 00 	li      r5,0                                   
ffc11610:	4b ff a2 c5 	bl      ffc0b8d4 <rtems_semaphore_obtain>      
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
                                                                      
  if (pipe_semaphore == RTEMS_ID_NONE) {                              
    rtems_libio_lock();                                               
                                                                      
    if (pipe_semaphore == RTEMS_ID_NONE) {                            
ffc11614:	80 1f 28 fc 	lwz     r0,10492(r31)                          
ffc11618:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc1161c:	41 9e 02 64 	beq-    cr7,ffc11880 <fifo_open+0x374>         <== ALWAYS TAKEN
}                                                                     
                                                                      
static inline void rtems_libio_unlock( void )                         
{                                                                     
  rtems_semaphore_release( rtems_libio_semaphore );                   
ffc11620:	80 7c 27 34 	lwz     r3,10036(r28)                          <== NOT EXECUTED
ffc11624:	4b ff a4 39 	bl      ffc0ba5c <rtems_semaphore_release>     <== NOT EXECUTED
ffc11628:	80 1f 28 fc 	lwz     r0,10492(r31)                          <== NOT EXECUTED
ffc1162c:	4b ff ff 1c 	b       ffc11548 <fifo_open+0x3c>              <== NOT EXECUTED
      break;                                                          
                                                                      
    case LIBIO_FLAGS_WRITE:                                           
      pipe->writerCounter ++;                                         
                                                                      
      if (pipe->Writers ++ == 0)                                      
ffc11630:	81 3f 00 14 	lwz     r9,20(r31)                             
        } while (prevCounter == pipe->writerCounter);                 
      }                                                               
      break;                                                          
                                                                      
    case LIBIO_FLAGS_WRITE:                                           
      pipe->writerCounter ++;                                         
ffc11634:	81 7f 00 24 	lwz     r11,36(r31)                            
                                                                      
      if (pipe->Writers ++ == 0)                                      
ffc11638:	2f 89 00 00 	cmpwi   cr7,r9,0                               
        } while (prevCounter == pipe->writerCounter);                 
      }                                                               
      break;                                                          
                                                                      
    case LIBIO_FLAGS_WRITE:                                           
      pipe->writerCounter ++;                                         
ffc1163c:	38 0b 00 01 	addi    r0,r11,1                               
                                                                      
      if (pipe->Writers ++ == 0)                                      
ffc11640:	39 29 00 01 	addi    r9,r9,1                                
        } while (prevCounter == pipe->writerCounter);                 
      }                                                               
      break;                                                          
                                                                      
    case LIBIO_FLAGS_WRITE:                                           
      pipe->writerCounter ++;                                         
ffc11644:	90 1f 00 24 	stw     r0,36(r31)                             
                                                                      
      if (pipe->Writers ++ == 0)                                      
ffc11648:	91 3f 00 14 	stw     r9,20(r31)                             
ffc1164c:	41 9e 02 90 	beq-    cr7,ffc118dc <fifo_open+0x3d0>         <== ALWAYS TAKEN
        PIPE_WAKEUPREADERS(pipe);                                     
                                                                      
      if (pipe->Readers == 0 && LIBIO_NODELAY(iop)) {                 
ffc11650:	80 1f 00 10 	lwz     r0,16(r31)                             
ffc11654:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc11658:	40 be ff 74 	bne-    cr7,ffc115cc <fifo_open+0xc0>          
ffc1165c:	80 1d 00 18 	lwz     r0,24(r29)                             
ffc11660:	70 09 00 01 	andi.   r9,r0,1                                
ffc11664:	40 82 02 b8 	bne-    ffc1191c <fifo_open+0x410>             
        err = -ENXIO;                                                 
        goto out_error;                                               
      }                                                               
                                                                      
      if (pipe->Readers == 0) {                                       
        prevCounter = pipe->readerCounter;                            
ffc11668:	83 9f 00 20 	lwz     r28,32(r31)                            
ffc1166c:	48 00 00 20 	b       ffc1168c <fifo_open+0x180>             
        err = -EINTR;                                                 
        do {                                                          
          PIPE_UNLOCK(pipe);                                          
          if (! PIPE_WRITEWAIT(pipe))                                 
            goto out_error;                                           
          if (! PIPE_LOCK(pipe))                                      
ffc11670:	80 7f 00 28 	lwz     r3,40(r31)                             
ffc11674:	4b ff a2 61 	bl      ffc0b8d4 <rtems_semaphore_obtain>      
ffc11678:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc1167c:	40 9e 00 34 	bne-    cr7,ffc116b0 <fifo_open+0x1a4>         <== NEVER TAKEN
            goto out_error;                                           
        } while (prevCounter == pipe->readerCounter);                 
ffc11680:	80 1f 00 20 	lwz     r0,32(r31)                             
ffc11684:	7f 80 e0 00 	cmpw    cr7,r0,r28                             
ffc11688:	40 be ff 44 	bne-    cr7,ffc115cc <fifo_open+0xc0>          <== ALWAYS TAKEN
                                                                      
      if (pipe->Readers == 0) {                                       
        prevCounter = pipe->readerCounter;                            
        err = -EINTR;                                                 
        do {                                                          
          PIPE_UNLOCK(pipe);                                          
ffc1168c:	80 7f 00 28 	lwz     r3,40(r31)                             
ffc11690:	4b ff a3 cd 	bl      ffc0ba5c <rtems_semaphore_release>     
          if (! PIPE_WRITEWAIT(pipe))                                 
ffc11694:	80 7f 00 30 	lwz     r3,48(r31)                             
ffc11698:	38 80 00 00 	li      r4,0                                   
ffc1169c:	48 00 18 81 	bl      ffc12f1c <rtems_barrier_wait>          
            goto out_error;                                           
          if (! PIPE_LOCK(pipe))                                      
ffc116a0:	38 80 00 00 	li      r4,0                                   
      if (pipe->Readers == 0) {                                       
        prevCounter = pipe->readerCounter;                            
        err = -EINTR;                                                 
        do {                                                          
          PIPE_UNLOCK(pipe);                                          
          if (! PIPE_WRITEWAIT(pipe))                                 
ffc116a4:	2f 83 00 00 	cmpwi   cr7,r3,0                               
            goto out_error;                                           
          if (! PIPE_LOCK(pipe))                                      
ffc116a8:	38 a0 00 00 	li      r5,0                                   
      if (pipe->Readers == 0) {                                       
        prevCounter = pipe->readerCounter;                            
        err = -EINTR;                                                 
        do {                                                          
          PIPE_UNLOCK(pipe);                                          
          if (! PIPE_WRITEWAIT(pipe))                                 
ffc116ac:	41 9e ff c4 	beq+    cr7,ffc11670 <fifo_open+0x164>         <== ALWAYS TAKEN
        goto out_error;                                               
      }                                                               
                                                                      
      if (pipe->Readers == 0) {                                       
        prevCounter = pipe->readerCounter;                            
        err = -EINTR;                                                 
ffc116b0:	3b 80 ff fc 	li      r28,-4                                 <== NOT EXECUTED
                                                                      
  PIPE_UNLOCK(pipe);                                                  
  return 0;                                                           
                                                                      
out_error:                                                            
  pipe_release(pipep, iop);                                           
ffc116b4:	7f c3 f3 78 	mr      r3,r30                                 
ffc116b8:	7f a4 eb 78 	mr      r4,r29                                 
ffc116bc:	4b ff fd 11 	bl      ffc113cc <pipe_release>                
  return err;                                                         
ffc116c0:	4b ff ff 18 	b       ffc115d8 <fifo_open+0xcc>              
  pipe = *pipep;                                                      
                                                                      
  switch (LIBIO_ACCMODE(iop)) {                                       
    case LIBIO_FLAGS_READ:                                            
      pipe->readerCounter ++;                                         
      if (pipe->Readers ++ == 0)                                      
ffc116c4:	81 3f 00 10 	lwz     r9,16(r31)                             
    return err;                                                       
  pipe = *pipep;                                                      
                                                                      
  switch (LIBIO_ACCMODE(iop)) {                                       
    case LIBIO_FLAGS_READ:                                            
      pipe->readerCounter ++;                                         
ffc116c8:	81 7f 00 20 	lwz     r11,32(r31)                            
      if (pipe->Readers ++ == 0)                                      
ffc116cc:	2f 89 00 00 	cmpwi   cr7,r9,0                               
    return err;                                                       
  pipe = *pipep;                                                      
                                                                      
  switch (LIBIO_ACCMODE(iop)) {                                       
    case LIBIO_FLAGS_READ:                                            
      pipe->readerCounter ++;                                         
ffc116d0:	38 0b 00 01 	addi    r0,r11,1                               
      if (pipe->Readers ++ == 0)                                      
ffc116d4:	39 29 00 01 	addi    r9,r9,1                                
    return err;                                                       
  pipe = *pipep;                                                      
                                                                      
  switch (LIBIO_ACCMODE(iop)) {                                       
    case LIBIO_FLAGS_READ:                                            
      pipe->readerCounter ++;                                         
ffc116d8:	90 1f 00 20 	stw     r0,32(r31)                             
      if (pipe->Readers ++ == 0)                                      
ffc116dc:	91 3f 00 10 	stw     r9,16(r31)                             
ffc116e0:	41 9e 01 dc 	beq-    cr7,ffc118bc <fifo_open+0x3b0>         <== ALWAYS TAKEN
        PIPE_WAKEUPWRITERS(pipe);                                     
                                                                      
      if (pipe->Writers == 0) {                                       
ffc116e4:	80 1f 00 14 	lwz     r0,20(r31)                             
ffc116e8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc116ec:	40 be fe e0 	bne-    cr7,ffc115cc <fifo_open+0xc0>          
        /* Not an error */                                            
        if (LIBIO_NODELAY(iop))                                       
ffc116f0:	80 1d 00 18 	lwz     r0,24(r29)                             
ffc116f4:	70 09 00 01 	andi.   r9,r0,1                                
ffc116f8:	40 a2 fe d4 	bne-    ffc115cc <fifo_open+0xc0>              
          break;                                                      
                                                                      
        prevCounter = pipe->writerCounter;                            
ffc116fc:	83 9f 00 24 	lwz     r28,36(r31)                            
ffc11700:	48 00 00 20 	b       ffc11720 <fifo_open+0x214>             
        /* Wait until a writer opens the pipe */                      
        do {                                                          
          PIPE_UNLOCK(pipe);                                          
          if (! PIPE_READWAIT(pipe))                                  
            goto out_error;                                           
          if (! PIPE_LOCK(pipe))                                      
ffc11704:	80 7f 00 28 	lwz     r3,40(r31)                             
ffc11708:	4b ff a1 cd 	bl      ffc0b8d4 <rtems_semaphore_obtain>      
ffc1170c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc11710:	40 be ff a0 	bne-    cr7,ffc116b0 <fifo_open+0x1a4>         <== NEVER TAKEN
            goto out_error;                                           
        } while (prevCounter == pipe->writerCounter);                 
ffc11714:	80 1f 00 24 	lwz     r0,36(r31)                             
ffc11718:	7f 80 e0 00 	cmpw    cr7,r0,r28                             
ffc1171c:	40 be fe b0 	bne-    cr7,ffc115cc <fifo_open+0xc0>          <== ALWAYS TAKEN
                                                                      
        prevCounter = pipe->writerCounter;                            
        err = -EINTR;                                                 
        /* Wait until a writer opens the pipe */                      
        do {                                                          
          PIPE_UNLOCK(pipe);                                          
ffc11720:	80 7f 00 28 	lwz     r3,40(r31)                             
ffc11724:	4b ff a3 39 	bl      ffc0ba5c <rtems_semaphore_release>     
          if (! PIPE_READWAIT(pipe))                                  
ffc11728:	80 7f 00 2c 	lwz     r3,44(r31)                             
ffc1172c:	38 80 00 00 	li      r4,0                                   
ffc11730:	48 00 17 ed 	bl      ffc12f1c <rtems_barrier_wait>          
            goto out_error;                                           
          if (! PIPE_LOCK(pipe))                                      
ffc11734:	38 80 00 00 	li      r4,0                                   
        prevCounter = pipe->writerCounter;                            
        err = -EINTR;                                                 
        /* Wait until a writer opens the pipe */                      
        do {                                                          
          PIPE_UNLOCK(pipe);                                          
          if (! PIPE_READWAIT(pipe))                                  
ffc11738:	2f 83 00 00 	cmpwi   cr7,r3,0                               
            goto out_error;                                           
          if (! PIPE_LOCK(pipe))                                      
ffc1173c:	38 a0 00 00 	li      r5,0                                   
        prevCounter = pipe->writerCounter;                            
        err = -EINTR;                                                 
        /* Wait until a writer opens the pipe */                      
        do {                                                          
          PIPE_UNLOCK(pipe);                                          
          if (! PIPE_READWAIT(pipe))                                  
ffc11740:	41 9e ff c4 	beq+    cr7,ffc11704 <fifo_open+0x1f8>         <== ALWAYS TAKEN
ffc11744:	4b ff ff 6c 	b       ffc116b0 <fifo_open+0x1a4>             <== NOT EXECUTED
      }                                                               
      break;                                                          
                                                                      
    case LIBIO_FLAGS_READ_WRITE:                                      
      pipe->readerCounter ++;                                         
      if (pipe->Readers ++ == 0)                                      
ffc11748:	81 3f 00 10 	lwz     r9,16(r31)                             
        } while (prevCounter == pipe->readerCounter);                 
      }                                                               
      break;                                                          
                                                                      
    case LIBIO_FLAGS_READ_WRITE:                                      
      pipe->readerCounter ++;                                         
ffc1174c:	81 7f 00 20 	lwz     r11,32(r31)                            
      if (pipe->Readers ++ == 0)                                      
ffc11750:	2f 89 00 00 	cmpwi   cr7,r9,0                               
        } while (prevCounter == pipe->readerCounter);                 
      }                                                               
      break;                                                          
                                                                      
    case LIBIO_FLAGS_READ_WRITE:                                      
      pipe->readerCounter ++;                                         
ffc11754:	38 0b 00 01 	addi    r0,r11,1                               
      if (pipe->Readers ++ == 0)                                      
ffc11758:	39 29 00 01 	addi    r9,r9,1                                
        } while (prevCounter == pipe->readerCounter);                 
      }                                                               
      break;                                                          
                                                                      
    case LIBIO_FLAGS_READ_WRITE:                                      
      pipe->readerCounter ++;                                         
ffc1175c:	90 1f 00 20 	stw     r0,32(r31)                             
      if (pipe->Readers ++ == 0)                                      
ffc11760:	91 3f 00 10 	stw     r9,16(r31)                             
ffc11764:	41 9e 01 68 	beq-    cr7,ffc118cc <fifo_open+0x3c0>         <== ALWAYS TAKEN
        PIPE_WAKEUPWRITERS(pipe);                                     
      pipe->writerCounter ++;                                         
      if (pipe->Writers ++ == 0)                                      
ffc11768:	81 3f 00 14 	lwz     r9,20(r31)                             
                                                                      
    case LIBIO_FLAGS_READ_WRITE:                                      
      pipe->readerCounter ++;                                         
      if (pipe->Readers ++ == 0)                                      
        PIPE_WAKEUPWRITERS(pipe);                                     
      pipe->writerCounter ++;                                         
ffc1176c:	81 7f 00 24 	lwz     r11,36(r31)                            
      if (pipe->Writers ++ == 0)                                      
ffc11770:	2f 89 00 00 	cmpwi   cr7,r9,0                               
                                                                      
    case LIBIO_FLAGS_READ_WRITE:                                      
      pipe->readerCounter ++;                                         
      if (pipe->Readers ++ == 0)                                      
        PIPE_WAKEUPWRITERS(pipe);                                     
      pipe->writerCounter ++;                                         
ffc11774:	38 0b 00 01 	addi    r0,r11,1                               
      if (pipe->Writers ++ == 0)                                      
ffc11778:	39 29 00 01 	addi    r9,r9,1                                
                                                                      
    case LIBIO_FLAGS_READ_WRITE:                                      
      pipe->readerCounter ++;                                         
      if (pipe->Readers ++ == 0)                                      
        PIPE_WAKEUPWRITERS(pipe);                                     
      pipe->writerCounter ++;                                         
ffc1177c:	90 1f 00 24 	stw     r0,36(r31)                             
      if (pipe->Writers ++ == 0)                                      
ffc11780:	91 3f 00 14 	stw     r9,20(r31)                             
ffc11784:	40 9e fe 48 	bne+    cr7,ffc115cc <fifo_open+0xc0>          <== NEVER TAKEN
        PIPE_WAKEUPREADERS(pipe);                                     
ffc11788:	80 7f 00 2c 	lwz     r3,44(r31)                             
ffc1178c:	38 81 00 08 	addi    r4,r1,8                                
ffc11790:	48 00 16 f9 	bl      ffc12e88 <rtems_barrier_release>       
ffc11794:	4b ff fe 38 	b       ffc115cc <fifo_open+0xc0>              
{                                                                     
  static char c = 'a';                                                
  pipe_control_t *pipe;                                               
  int err = -ENOMEM;                                                  
                                                                      
  pipe = malloc(sizeof(pipe_control_t));                              
ffc11798:	38 60 00 34 	li      r3,52                                  
ffc1179c:	4b ff 61 d1 	bl      ffc0796c <malloc>                      
  if (pipe == NULL)                                                   
ffc117a0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
{                                                                     
  static char c = 'a';                                                
  pipe_control_t *pipe;                                               
  int err = -ENOMEM;                                                  
                                                                      
  pipe = malloc(sizeof(pipe_control_t));                              
ffc117a4:	7c 7f 1b 78 	mr      r31,r3                                 
ffc117a8:	7c 7b 1b 78 	mr      r27,r3                                 
  if (pipe == NULL)                                                   
ffc117ac:	41 9e 01 a0 	beq-    cr7,ffc1194c <fifo_open+0x440>         
    return err;                                                       
  memset(pipe, 0, sizeof(pipe_control_t));                            
ffc117b0:	38 80 00 00 	li      r4,0                                   
ffc117b4:	38 a0 00 34 	li      r5,52                                  
ffc117b8:	48 00 48 f1 	bl      ffc160a8 <memset>                      
                                                                      
  pipe->Size = PIPE_BUF;                                              
ffc117bc:	38 00 02 00 	li      r0,512                                 
ffc117c0:	90 1f 00 04 	stw     r0,4(r31)                              
  pipe->Buffer = malloc(pipe->Size);                                  
ffc117c4:	38 60 02 00 	li      r3,512                                 
ffc117c8:	4b ff 61 a5 	bl      ffc0796c <malloc>                      
  if (! pipe->Buffer)                                                 
ffc117cc:	2f 83 00 00 	cmpwi   cr7,r3,0                               
  if (pipe == NULL)                                                   
    return err;                                                       
  memset(pipe, 0, sizeof(pipe_control_t));                            
                                                                      
  pipe->Size = PIPE_BUF;                                              
  pipe->Buffer = malloc(pipe->Size);                                  
ffc117d0:	90 7f 00 00 	stw     r3,0(r31)                              
  if (! pipe->Buffer)                                                 
ffc117d4:	41 9e 01 70 	beq-    cr7,ffc11944 <fifo_open+0x438>         <== NEVER TAKEN
    goto err_buf;                                                     
                                                                      
  err = -ENOMEM;                                                      
                                                                      
  if (rtems_barrier_create(                                           
        rtems_build_name ('P', 'I', 'r', c),                          
ffc117d8:	3f 80 00 00 	lis     r28,0                                  
ffc117dc:	88 7c 21 81 	lbz     r3,8577(r28)                           
  if (! pipe->Buffer)                                                 
    goto err_buf;                                                     
                                                                      
  err = -ENOMEM;                                                      
                                                                      
  if (rtems_barrier_create(                                           
ffc117e0:	38 80 00 00 	li      r4,0                                   
ffc117e4:	38 a0 00 00 	li      r5,0                                   
ffc117e8:	64 63 50 49 	oris    r3,r3,20553                            
ffc117ec:	60 63 72 00 	ori     r3,r3,29184                            
ffc117f0:	38 df 00 2c 	addi    r6,r31,44                              
ffc117f4:	48 00 14 8d 	bl      ffc12c80 <rtems_barrier_create>        
ffc117f8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc117fc:	40 9e 01 40 	bne-    cr7,ffc1193c <fifo_open+0x430>         
        rtems_build_name ('P', 'I', 'r', c),                          
        RTEMS_BARRIER_MANUAL_RELEASE, 0,                              
        &pipe->readBarrier) != RTEMS_SUCCESSFUL)                      
    goto err_rbar;                                                    
  if (rtems_barrier_create(                                           
        rtems_build_name ('P', 'I', 'w', c),                          
ffc11800:	88 7c 21 81 	lbz     r3,8577(r28)                           
  if (rtems_barrier_create(                                           
        rtems_build_name ('P', 'I', 'r', c),                          
        RTEMS_BARRIER_MANUAL_RELEASE, 0,                              
        &pipe->readBarrier) != RTEMS_SUCCESSFUL)                      
    goto err_rbar;                                                    
  if (rtems_barrier_create(                                           
ffc11804:	38 80 00 00 	li      r4,0                                   
ffc11808:	38 a0 00 00 	li      r5,0                                   
ffc1180c:	64 63 50 49 	oris    r3,r3,20553                            
ffc11810:	60 63 77 00 	ori     r3,r3,30464                            
ffc11814:	38 df 00 30 	addi    r6,r31,48                              
ffc11818:	48 00 14 69 	bl      ffc12c80 <rtems_barrier_create>        
ffc1181c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc11820:	40 9e 01 14 	bne-    cr7,ffc11934 <fifo_open+0x428>         
        rtems_build_name ('P', 'I', 'w', c),                          
        RTEMS_BARRIER_MANUAL_RELEASE, 0,                              
        &pipe->writeBarrier) != RTEMS_SUCCESSFUL)                     
    goto err_wbar;                                                    
  if (rtems_semaphore_create(                                         
        rtems_build_name ('P', 'I', 's', c), 1,                       
ffc11824:	88 7c 21 81 	lbz     r3,8577(r28)                           
  if (rtems_barrier_create(                                           
        rtems_build_name ('P', 'I', 'w', c),                          
        RTEMS_BARRIER_MANUAL_RELEASE, 0,                              
        &pipe->writeBarrier) != RTEMS_SUCCESSFUL)                     
    goto err_wbar;                                                    
  if (rtems_semaphore_create(                                         
ffc11828:	38 80 00 01 	li      r4,1                                   
ffc1182c:	38 a0 00 10 	li      r5,16                                  
ffc11830:	64 63 50 49 	oris    r3,r3,20553                            
ffc11834:	60 63 73 00 	ori     r3,r3,29440                            
ffc11838:	38 c0 00 00 	li      r6,0                                   
ffc1183c:	38 ff 00 28 	addi    r7,r31,40                              
ffc11840:	4b ff 9d 95 	bl      ffc0b5d4 <rtems_semaphore_create>      
ffc11844:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc11848:	40 9e 00 e4 	bne-    cr7,ffc1192c <fifo_open+0x420>         
#ifdef RTEMS_POSIX_API                                                
  pipe_interruptible(pipe);                                           
#endif                                                                
                                                                      
  *pipep = pipe;                                                      
  if (c ++ == 'z')                                                    
ffc1184c:	89 3c 21 81 	lbz     r9,8577(r28)                           
ffc11850:	2f 89 00 7a 	cmpwi   cr7,r9,122                             
ffc11854:	39 29 00 01 	addi    r9,r9,1                                
ffc11858:	99 3c 21 81 	stb     r9,8577(r28)                           
ffc1185c:	40 9e fd 14 	bne+    cr7,ffc11570 <fifo_open+0x64>          
    c = 'a';                                                          
ffc11860:	38 00 00 61 	li      r0,97                                  
ffc11864:	98 1c 21 81 	stb     r0,8577(r28)                           
ffc11868:	4b ff fd 08 	b       ffc11570 <fifo_open+0x64>              
                                                                      
  if (! PIPE_LOCK(pipe))                                              
    err = -EINTR;                                                     
                                                                      
  if (*pipep == NULL) {                                               
    if (err)                                                          
ffc1186c:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
ffc11870:	40 9e 00 7c 	bne-    cr7,ffc118ec <fifo_open+0x3e0>         <== NEVER TAKEN
      pipe_free(pipe);                                                
    else                                                              
      *pipep = pipe;                                                  
ffc11874:	93 fe 00 00 	stw     r31,0(r30)                             
  }                                                                   
                                                                      
out:                                                                  
  pipe_unlock();                                                      
ffc11878:	4b ff fb 2d 	bl      ffc113a4 <pipe_unlock>                 
ffc1187c:	4b ff fd 2c 	b       ffc115a8 <fifo_open+0x9c>              
                                                                      
  if (pipe_semaphore == RTEMS_ID_NONE) {                              
    rtems_libio_lock();                                               
                                                                      
    if (pipe_semaphore == RTEMS_ID_NONE) {                            
      sc = rtems_semaphore_create(                                    
ffc11880:	3c 60 50 49 	lis     r3,20553                               
ffc11884:	7f 67 db 78 	mr      r7,r27                                 
ffc11888:	38 80 00 01 	li      r4,1                                   
ffc1188c:	38 a0 00 54 	li      r5,84                                  
ffc11890:	38 c0 00 00 	li      r6,0                                   
ffc11894:	60 63 50 45 	ori     r3,r3,20549                            
ffc11898:	4b ff 9d 3d 	bl      ffc0b5d4 <rtems_semaphore_create>      
ffc1189c:	7c 7b 1b 78 	mr      r27,r3                                 
ffc118a0:	80 7c 27 34 	lwz     r3,10036(r28)                          
)                                                                     
{                                                                     
  pipe_control_t *pipe;                                               
  int err = 0;                                                        
                                                                      
  err = pipe_lock();                                                  
ffc118a4:	3b 80 ff f4 	li      r28,-12                                
ffc118a8:	4b ff a1 b5 	bl      ffc0ba5c <rtems_semaphore_release>     
    }                                                                 
                                                                      
    rtems_libio_unlock();                                             
  }                                                                   
                                                                      
  if (sc == RTEMS_SUCCESSFUL) {                                       
ffc118ac:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
ffc118b0:	40 9e fd 28 	bne+    cr7,ffc115d8 <fifo_open+0xcc>          
ffc118b4:	80 1f 28 fc 	lwz     r0,10492(r31)                          
ffc118b8:	4b ff fc 90 	b       ffc11548 <fifo_open+0x3c>              
                                                                      
  switch (LIBIO_ACCMODE(iop)) {                                       
    case LIBIO_FLAGS_READ:                                            
      pipe->readerCounter ++;                                         
      if (pipe->Readers ++ == 0)                                      
        PIPE_WAKEUPWRITERS(pipe);                                     
ffc118bc:	80 7f 00 30 	lwz     r3,48(r31)                             
ffc118c0:	38 81 00 08 	addi    r4,r1,8                                
ffc118c4:	48 00 15 c5 	bl      ffc12e88 <rtems_barrier_release>       
ffc118c8:	4b ff fe 1c 	b       ffc116e4 <fifo_open+0x1d8>             
      break;                                                          
                                                                      
    case LIBIO_FLAGS_READ_WRITE:                                      
      pipe->readerCounter ++;                                         
      if (pipe->Readers ++ == 0)                                      
        PIPE_WAKEUPWRITERS(pipe);                                     
ffc118cc:	80 7f 00 30 	lwz     r3,48(r31)                             
ffc118d0:	38 81 00 08 	addi    r4,r1,8                                
ffc118d4:	48 00 15 b5 	bl      ffc12e88 <rtems_barrier_release>       
ffc118d8:	4b ff fe 90 	b       ffc11768 <fifo_open+0x25c>             
                                                                      
    case LIBIO_FLAGS_WRITE:                                           
      pipe->writerCounter ++;                                         
                                                                      
      if (pipe->Writers ++ == 0)                                      
        PIPE_WAKEUPREADERS(pipe);                                     
ffc118dc:	80 7f 00 2c 	lwz     r3,44(r31)                             
ffc118e0:	38 81 00 08 	addi    r4,r1,8                                
ffc118e4:	48 00 15 a5 	bl      ffc12e88 <rtems_barrier_release>       
ffc118e8:	4b ff fd 68 	b       ffc11650 <fifo_open+0x144>             
/* Called with pipe_semaphore held. */                                
static inline void pipe_free(                                         
  pipe_control_t *pipe                                                
)                                                                     
{                                                                     
  rtems_barrier_delete(pipe->readBarrier);                            
ffc118ec:	80 7f 00 2c 	lwz     r3,44(r31)                             <== NOT EXECUTED
ffc118f0:	48 00 14 cd 	bl      ffc12dbc <rtems_barrier_delete>        <== NOT EXECUTED
  rtems_barrier_delete(pipe->writeBarrier);                           
ffc118f4:	80 7f 00 30 	lwz     r3,48(r31)                             <== NOT EXECUTED
ffc118f8:	48 00 14 c5 	bl      ffc12dbc <rtems_barrier_delete>        <== NOT EXECUTED
  rtems_semaphore_delete(pipe->Semaphore);                            
ffc118fc:	80 7f 00 28 	lwz     r3,40(r31)                             <== NOT EXECUTED
ffc11900:	4b ff 9e f9 	bl      ffc0b7f8 <rtems_semaphore_delete>      <== NOT EXECUTED
  free(pipe->Buffer);                                                 
ffc11904:	80 7f 00 00 	lwz     r3,0(r31)                              <== NOT EXECUTED
ffc11908:	4b ff 56 59 	bl      ffc06f60 <free>                        <== NOT EXECUTED
  free(pipe);                                                         
ffc1190c:	7f e3 fb 78 	mr      r3,r31                                 <== NOT EXECUTED
ffc11910:	4b ff 56 51 	bl      ffc06f60 <free>                        <== NOT EXECUTED
    else                                                              
      *pipep = pipe;                                                  
  }                                                                   
                                                                      
out:                                                                  
  pipe_unlock();                                                      
ffc11914:	4b ff fa 91 	bl      ffc113a4 <pipe_unlock>                 <== NOT EXECUTED
ffc11918:	4b ff fc c0 	b       ffc115d8 <fifo_open+0xcc>              <== NOT EXECUTED
                                                                      
      if (pipe->Writers ++ == 0)                                      
        PIPE_WAKEUPREADERS(pipe);                                     
                                                                      
      if (pipe->Readers == 0 && LIBIO_NODELAY(iop)) {                 
	PIPE_UNLOCK(pipe);                                                   
ffc1191c:	80 7f 00 28 	lwz     r3,40(r31)                             
        err = -ENXIO;                                                 
ffc11920:	3b 80 ff fa 	li      r28,-6                                 
                                                                      
      if (pipe->Writers ++ == 0)                                      
        PIPE_WAKEUPREADERS(pipe);                                     
                                                                      
      if (pipe->Readers == 0 && LIBIO_NODELAY(iop)) {                 
	PIPE_UNLOCK(pipe);                                                   
ffc11924:	4b ff a1 39 	bl      ffc0ba5c <rtems_semaphore_release>     
        err = -ENXIO;                                                 
        goto out_error;                                               
ffc11928:	4b ff fd 8c 	b       ffc116b4 <fifo_open+0x1a8>             
  if (c ++ == 'z')                                                    
    c = 'a';                                                          
  return 0;                                                           
                                                                      
err_sem:                                                              
  rtems_barrier_delete(pipe->writeBarrier);                           
ffc1192c:	80 7f 00 30 	lwz     r3,48(r31)                             
ffc11930:	48 00 14 8d 	bl      ffc12dbc <rtems_barrier_delete>        
err_wbar:                                                             
  rtems_barrier_delete(pipe->readBarrier);                            
ffc11934:	80 7b 00 2c 	lwz     r3,44(r27)                             
ffc11938:	48 00 14 85 	bl      ffc12dbc <rtems_barrier_delete>        
err_rbar:                                                             
  free(pipe->Buffer);                                                 
ffc1193c:	80 7b 00 00 	lwz     r3,0(r27)                              
ffc11940:	4b ff 56 21 	bl      ffc06f60 <free>                        
err_buf:                                                              
  free(pipe);                                                         
ffc11944:	7f 63 db 78 	mr      r3,r27                                 
ffc11948:	4b ff 56 19 	bl      ffc06f60 <free>                        
)                                                                     
{                                                                     
  pipe_control_t *pipe;                                               
  int err = 0;                                                        
                                                                      
  err = pipe_lock();                                                  
ffc1194c:	3b 80 ff f4 	li      r28,-12                                
    else                                                              
      *pipep = pipe;                                                  
  }                                                                   
                                                                      
out:                                                                  
  pipe_unlock();                                                      
ffc11950:	4b ff fa 55 	bl      ffc113a4 <pipe_unlock>                 
ffc11954:	4b ff fc 84 	b       ffc115d8 <fifo_open+0xcc>              
                                                                      

ffc05c80 <fpathconf>: long fpathconf( int fd, int name ) {
ffc05c80:	7c 08 02 a6 	mflr    r0                                     
ffc05c84:	94 21 ff f8 	stwu    r1,-8(r1)                              
  long                                    return_value;               
  rtems_libio_t                          *iop;                        
  rtems_filesystem_limits_and_options_t  *the_limits;                 
                                                                      
  rtems_libio_check_fd(fd);                                           
ffc05c88:	3d 20 00 00 	lis     r9,0                                   
                                                                      
long fpathconf(                                                       
  int   fd,                                                           
  int   name                                                          
)                                                                     
{                                                                     
ffc05c8c:	90 01 00 0c 	stw     r0,12(r1)                              
  long                                    return_value;               
  rtems_libio_t                          *iop;                        
  rtems_filesystem_limits_and_options_t  *the_limits;                 
                                                                      
  rtems_libio_check_fd(fd);                                           
ffc05c90:	80 09 26 4c 	lwz     r0,9804(r9)                            
ffc05c94:	7f 83 00 40 	cmplw   cr7,r3,r0                              
ffc05c98:	40 9c 00 d0 	bge-    cr7,ffc05d68 <fpathconf+0xe8>          
  iop = rtems_libio_iop(fd);                                          
ffc05c9c:	3d 20 00 00 	lis     r9,0                                   
ffc05ca0:	80 09 27 0c 	lwz     r0,9996(r9)                            
ffc05ca4:	54 63 30 32 	rlwinm  r3,r3,6,0,25                           
ffc05ca8:	7c 60 1a 14 	add     r3,r0,r3                               
  rtems_libio_check_is_open(iop);                                     
ffc05cac:	80 03 00 18 	lwz     r0,24(r3)                              
ffc05cb0:	70 09 01 00 	andi.   r9,r0,256                              
ffc05cb4:	41 82 00 b4 	beq-    ffc05d68 <fpathconf+0xe8>              <== NEVER TAKEN
  rtems_libio_check_permissions(iop, LIBIO_FLAGS_READ);               
ffc05cb8:	70 09 00 02 	andi.   r9,r0,2                                
ffc05cbc:	41 82 00 10 	beq-    ffc05ccc <fpathconf+0x4c>              
   *  Now process the information request.                            
   */                                                                 
                                                                      
  the_limits = &iop->pathinfo.mt_entry->pathconf_limits_and_options;  
                                                                      
  switch ( name ) {                                                   
ffc05cc0:	2b 84 00 0b 	cmplwi  cr7,r4,11                              
                                                                      
  /*                                                                  
   *  Now process the information request.                            
   */                                                                 
                                                                      
  the_limits = &iop->pathinfo.mt_entry->pathconf_limits_and_options;  
ffc05cc4:	81 23 00 2c 	lwz     r9,44(r3)                              
                                                                      
  switch ( name ) {                                                   
ffc05cc8:	40 9d 00 24 	ble-    cr7,ffc05cec <fpathconf+0x6c>          
      break;                                                          
    case _PC_SYNC_IO:                                                 
      return_value = the_limits->posix_sync_io;                       
      break;                                                          
    default:                                                          
      rtems_set_errno_and_return_minus_one( EINVAL );                 
ffc05ccc:	48 00 db b1 	bl      ffc1387c <__errno>                     
ffc05cd0:	38 00 00 16 	li      r0,22                                  
ffc05cd4:	90 03 00 00 	stw     r0,0(r3)                               
ffc05cd8:	38 60 ff ff 	li      r3,-1                                  
      break;                                                          
  }                                                                   
                                                                      
  return return_value;                                                
}                                                                     
ffc05cdc:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc05ce0:	38 21 00 08 	addi    r1,r1,8                                
ffc05ce4:	7c 08 03 a6 	mtlr    r0                                     
ffc05ce8:	4e 80 00 20 	blr                                            
   *  Now process the information request.                            
   */                                                                 
                                                                      
  the_limits = &iop->pathinfo.mt_entry->pathconf_limits_and_options;  
                                                                      
  switch ( name ) {                                                   
ffc05cec:	3d 60 ff c2 	lis     r11,-62                                
ffc05cf0:	39 6b b0 84 	addi    r11,r11,-20348                         
ffc05cf4:	54 84 10 3a 	rlwinm  r4,r4,2,0,29                           
ffc05cf8:	7c 0b 20 2e 	lwzx    r0,r11,r4                              
ffc05cfc:	7d 60 5a 14 	add     r11,r0,r11                             
ffc05d00:	7d 69 03 a6 	mtctr   r11                                    
ffc05d04:	4e 80 04 20 	bctr                                           
      break;                                                          
    case _PC_ASYNC_IO:                                                
      return_value = the_limits->posix_async_io;                      
      break;                                                          
    case _PC_PRIO_IO:                                                 
      return_value = the_limits->posix_prio_io;                       
ffc05d08:	80 69 00 5c 	lwz     r3,92(r9)                              
      break;                                                          
ffc05d0c:	4b ff ff d0 	b       ffc05cdc <fpathconf+0x5c>              
      break;                                                          
    case _PC_VDISABLE:                                                
      return_value = the_limits->posix_vdisable;                      
      break;                                                          
    case _PC_ASYNC_IO:                                                
      return_value = the_limits->posix_async_io;                      
ffc05d10:	80 69 00 50 	lwz     r3,80(r9)                              
      break;                                                          
ffc05d14:	4b ff ff c8 	b       ffc05cdc <fpathconf+0x5c>              
      break;                                                          
    case _PC_NO_TRUNC:                                                
      return_value = the_limits->posix_no_trunc;                      
      break;                                                          
    case _PC_VDISABLE:                                                
      return_value = the_limits->posix_vdisable;                      
ffc05d18:	80 69 00 64 	lwz     r3,100(r9)                             
      break;                                                          
ffc05d1c:	4b ff ff c0 	b       ffc05cdc <fpathconf+0x5c>              
      break;                                                          
    case _PC_CHOWN_RESTRICTED:                                        
      return_value = the_limits->posix_chown_restrictions;            
      break;                                                          
    case _PC_NO_TRUNC:                                                
      return_value = the_limits->posix_no_trunc;                      
ffc05d20:	80 69 00 58 	lwz     r3,88(r9)                              
      break;                                                          
ffc05d24:	4b ff ff b8 	b       ffc05cdc <fpathconf+0x5c>              
      break;                                                          
    case _PC_PIPE_BUF:                                                
      return_value = the_limits->pipe_buf;                            
      break;                                                          
    case _PC_CHOWN_RESTRICTED:                                        
      return_value = the_limits->posix_chown_restrictions;            
ffc05d28:	80 69 00 54 	lwz     r3,84(r9)                              
      break;                                                          
ffc05d2c:	4b ff ff b0 	b       ffc05cdc <fpathconf+0x5c>              
      break;                                                          
    case _PC_PATH_MAX:                                                
      return_value = the_limits->path_max;                            
      break;                                                          
    case _PC_PIPE_BUF:                                                
      return_value = the_limits->pipe_buf;                            
ffc05d30:	80 69 00 4c 	lwz     r3,76(r9)                              
      break;                                                          
ffc05d34:	4b ff ff a8 	b       ffc05cdc <fpathconf+0x5c>              
      break;                                                          
    case _PC_NAME_MAX:                                                
      return_value = the_limits->name_max;                            
      break;                                                          
    case _PC_PATH_MAX:                                                
      return_value = the_limits->path_max;                            
ffc05d38:	80 69 00 48 	lwz     r3,72(r9)                              
      break;                                                          
ffc05d3c:	4b ff ff a0 	b       ffc05cdc <fpathconf+0x5c>              
      break;                                                          
    case _PC_MAX_INPUT:                                               
      return_value = the_limits->max_input;                           
      break;                                                          
    case _PC_NAME_MAX:                                                
      return_value = the_limits->name_max;                            
ffc05d40:	80 69 00 44 	lwz     r3,68(r9)                              
      break;                                                          
ffc05d44:	4b ff ff 98 	b       ffc05cdc <fpathconf+0x5c>              
      break;                                                          
    case _PC_MAX_CANON:                                               
      return_value = the_limits->max_canon;                           
      break;                                                          
    case _PC_MAX_INPUT:                                               
      return_value = the_limits->max_input;                           
ffc05d48:	80 69 00 40 	lwz     r3,64(r9)                              
      break;                                                          
ffc05d4c:	4b ff ff 90 	b       ffc05cdc <fpathconf+0x5c>              
  switch ( name ) {                                                   
    case _PC_LINK_MAX:                                                
      return_value = the_limits->link_max;                            
      break;                                                          
    case _PC_MAX_CANON:                                               
      return_value = the_limits->max_canon;                           
ffc05d50:	80 69 00 3c 	lwz     r3,60(r9)                              
      break;                                                          
ffc05d54:	4b ff ff 88 	b       ffc05cdc <fpathconf+0x5c>              
                                                                      
  the_limits = &iop->pathinfo.mt_entry->pathconf_limits_and_options;  
                                                                      
  switch ( name ) {                                                   
    case _PC_LINK_MAX:                                                
      return_value = the_limits->link_max;                            
ffc05d58:	80 69 00 38 	lwz     r3,56(r9)                              
      break;                                                          
ffc05d5c:	4b ff ff 80 	b       ffc05cdc <fpathconf+0x5c>              
      break;                                                          
    case _PC_PRIO_IO:                                                 
      return_value = the_limits->posix_prio_io;                       
      break;                                                          
    case _PC_SYNC_IO:                                                 
      return_value = the_limits->posix_sync_io;                       
ffc05d60:	80 69 00 60 	lwz     r3,96(r9)                              
      break;                                                          
ffc05d64:	4b ff ff 78 	b       ffc05cdc <fpathconf+0x5c>              
  rtems_libio_t                          *iop;                        
  rtems_filesystem_limits_and_options_t  *the_limits;                 
                                                                      
  rtems_libio_check_fd(fd);                                           
  iop = rtems_libio_iop(fd);                                          
  rtems_libio_check_is_open(iop);                                     
ffc05d68:	48 00 db 15 	bl      ffc1387c <__errno>                     
ffc05d6c:	38 00 00 09 	li      r0,9                                   
ffc05d70:	90 03 00 00 	stw     r0,0(r3)                               
ffc05d74:	38 60 ff ff 	li      r3,-1                                  
ffc05d78:	4b ff ff 64 	b       ffc05cdc <fpathconf+0x5c>              
                                                                      

ffc04c7c <free>: #include <stdlib.h> void free( void *ptr ) {
ffc04c7c:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc04c80:	7c 08 02 a6 	mflr    r0                                     
  MSBUMP(free_calls, 1);                                              
ffc04c84:	3d 20 00 00 	lis     r9,0                                   
#include <stdlib.h>                                                   
                                                                      
void free(                                                            
  void *ptr                                                           
)                                                                     
{                                                                     
ffc04c88:	90 01 00 14 	stw     r0,20(r1)                              
  MSBUMP(free_calls, 1);                                              
ffc04c8c:	39 29 2a 48 	addi    r9,r9,10824                            
#include <stdlib.h>                                                   
                                                                      
void free(                                                            
  void *ptr                                                           
)                                                                     
{                                                                     
ffc04c90:	93 e1 00 0c 	stw     r31,12(r1)                             
  MSBUMP(free_calls, 1);                                              
                                                                      
  if ( !ptr )                                                         
ffc04c94:	7c 7f 1b 79 	mr.     r31,r3                                 
                                                                      
void free(                                                            
  void *ptr                                                           
)                                                                     
{                                                                     
  MSBUMP(free_calls, 1);                                              
ffc04c98:	81 69 00 0c 	lwz     r11,12(r9)                             
#include <stdlib.h>                                                   
                                                                      
void free(                                                            
  void *ptr                                                           
)                                                                     
{                                                                     
ffc04c9c:	93 c1 00 08 	stw     r30,8(r1)                              
  MSBUMP(free_calls, 1);                                              
ffc04ca0:	38 0b 00 01 	addi    r0,r11,1                               
ffc04ca4:	90 09 00 0c 	stw     r0,12(r9)                              
                                                                      
  if ( !ptr )                                                         
ffc04ca8:	41 82 00 6c 	beq-    ffc04d14 <free+0x98>                   
    return;                                                           
                                                                      
  /*                                                                  
   *  Do not attempt to free memory if in a critical section or ISR.  
   */                                                                 
  if ( _System_state_Is_up(_System_state_Get()) &&                    
ffc04cac:	3d 20 00 00 	lis     r9,0                                   
ffc04cb0:	80 09 27 74 	lwz     r0,10100(r9)                           
ffc04cb4:	2f 80 00 03 	cmpwi   cr7,r0,3                               
ffc04cb8:	41 9e 00 74 	beq-    cr7,ffc04d2c <free+0xb0>               <== ALWAYS TAKEN
  }                                                                   
                                                                      
  /*                                                                  
   *  If configured, update the statistics                            
   */                                                                 
  if ( rtems_malloc_statistics_helpers )                              
ffc04cbc:	3d 20 00 00 	lis     r9,0                                   
ffc04cc0:	81 29 26 c8 	lwz     r9,9928(r9)                            
ffc04cc4:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc04cc8:	41 9e 00 14 	beq-    cr7,ffc04cdc <free+0x60>               
    (*rtems_malloc_statistics_helpers->at_free)(ptr);                 
ffc04ccc:	80 09 00 08 	lwz     r0,8(r9)                               
ffc04cd0:	7f e3 fb 78 	mr      r3,r31                                 
ffc04cd4:	7c 09 03 a6 	mtctr   r0                                     
ffc04cd8:	4e 80 04 21 	bctrl                                          
                                                                      
  if ( !_Protected_heap_Free( RTEMS_Malloc_Heap, ptr ) ) {            
ffc04cdc:	3f c0 00 00 	lis     r30,0                                  
ffc04ce0:	80 7e 26 5c 	lwz     r3,9820(r30)                           
ffc04ce4:	7f e4 fb 78 	mr      r4,r31                                 
ffc04ce8:	48 00 65 49 	bl      ffc0b230 <_Protected_heap_Free>        
ffc04cec:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc04cf0:	40 be 00 24 	bne+    cr7,ffc04d14 <free+0x98>               
    printk( "Program heap: free of bad pointer %p -- range %p - %p \n",
      ptr,                                                            
      RTEMS_Malloc_Heap->area_begin,                                  
ffc04cf4:	81 3e 26 5c 	lwz     r9,9820(r30)                           
   */                                                                 
  if ( rtems_malloc_statistics_helpers )                              
    (*rtems_malloc_statistics_helpers->at_free)(ptr);                 
                                                                      
  if ( !_Protected_heap_Free( RTEMS_Malloc_Heap, ptr ) ) {            
    printk( "Program heap: free of bad pointer %p -- range %p - %p \n",
ffc04cf8:	3c 60 ff c2 	lis     r3,-62                                 
ffc04cfc:	38 63 8c b4 	addi    r3,r3,-29516                           
ffc04d00:	80 a9 00 18 	lwz     r5,24(r9)                              
ffc04d04:	7f e4 fb 78 	mr      r4,r31                                 
ffc04d08:	80 c9 00 1c 	lwz     r6,28(r9)                              
ffc04d0c:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc04d10:	48 00 10 ad 	bl      ffc05dbc <printk>                      
      RTEMS_Malloc_Heap->area_begin,                                  
      RTEMS_Malloc_Heap->area_end                                     
    );                                                                
  }                                                                   
                                                                      
}                                                                     
ffc04d14:	80 01 00 14 	lwz     r0,20(r1)                              
ffc04d18:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc04d1c:	7c 08 03 a6 	mtlr    r0                                     
ffc04d20:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc04d24:	38 21 00 10 	addi    r1,r1,16                               
ffc04d28:	4e 80 00 20 	blr                                            
                                                                      
  /*                                                                  
   *  Do not attempt to free memory if in a critical section or ISR.  
   */                                                                 
  if ( _System_state_Is_up(_System_state_Get()) &&                    
       !malloc_is_system_state_OK() ) {                               
ffc04d2c:	48 00 01 9d 	bl      ffc04ec8 <malloc_is_system_state_OK>   
    return;                                                           
                                                                      
  /*                                                                  
   *  Do not attempt to free memory if in a critical section or ISR.  
   */                                                                 
  if ( _System_state_Is_up(_System_state_Get()) &&                    
ffc04d30:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc04d34:	40 9e ff 88 	bne+    cr7,ffc04cbc <free+0x40>               
       !malloc_is_system_state_OK() ) {                               
      malloc_deferred_free(ptr);                                      
ffc04d38:	7f e3 fb 78 	mr      r3,r31                                 
ffc04d3c:	48 00 02 19 	bl      ffc04f54 <malloc_deferred_free>        
      return;                                                         
ffc04d40:	4b ff ff d4 	b       ffc04d14 <free+0x98>                   
                                                                      

ffc0646c <free_user_env>: * NOTE: this must be called with * thread dispatching disabled! */ static void free_user_env(void *venv) {
ffc0646c:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc06470:	7c 08 02 a6 	mflr    r0                                     
  rtems_user_env_t *env = (rtems_user_env_t*) venv ;                  
                                                                      
  if (env != &rtems_global_user_env                                   
ffc06474:	3d 20 00 00 	lis     r9,0                                   
 * NOTE: this must be called with                                     
 *       thread dispatching disabled!                                 
 */                                                                   
static void                                                           
free_user_env(void *venv)                                             
{                                                                     
ffc06478:	90 01 00 14 	stw     r0,20(r1)                              
  rtems_user_env_t *env = (rtems_user_env_t*) venv ;                  
                                                                      
  if (env != &rtems_global_user_env                                   
ffc0647c:	38 09 2a 50 	addi    r0,r9,10832                            
ffc06480:	7f 83 00 00 	cmpw    cr7,r3,r0                              
 * NOTE: this must be called with                                     
 *       thread dispatching disabled!                                 
 */                                                                   
static void                                                           
free_user_env(void *venv)                                             
{                                                                     
ffc06484:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc06488:	7c 7f 1b 78 	mr      r31,r3                                 
  rtems_user_env_t *env = (rtems_user_env_t*) venv ;                  
                                                                      
  if (env != &rtems_global_user_env                                   
ffc0648c:	41 9e 00 1c 	beq-    cr7,ffc064a8 <free_user_env+0x3c>      <== NEVER TAKEN
  #ifdef HAVE_USERENV_REFCNT                                          
      && --env->refcnt <= 0                                           
  #endif                                                              
  ) {                                                                 
    rtems_filesystem_freenode( &env->current_directory);              
ffc06490:	38 63 00 04 	addi    r3,r3,4                                
ffc06494:	4b ff ea 25 	bl      ffc04eb8 <rtems_filesystem_freenode>   
    rtems_filesystem_freenode( &env->root_directory);                 
ffc06498:	38 7f 00 18 	addi    r3,r31,24                              
ffc0649c:	4b ff ea 1d 	bl      ffc04eb8 <rtems_filesystem_freenode>   
    free(env);                                                        
ffc064a0:	7f e3 fb 78 	mr      r3,r31                                 
ffc064a4:	4b ff ea 41 	bl      ffc04ee4 <free>                        
  }                                                                   
}                                                                     
ffc064a8:	80 01 00 14 	lwz     r0,20(r1)                              
ffc064ac:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc064b0:	38 21 00 10 	addi    r1,r1,16                               
ffc064b4:	7c 08 03 a6 	mtlr    r0                                     
ffc064b8:	4e 80 00 20 	blr                                            
                                                                      

ffc192bc <getdents>: int getdents( int dd_fd, char *dd_buf, int dd_len ) {
ffc192bc:	94 21 ff c8 	stwu    r1,-56(r1)                             
ffc192c0:	7c 08 02 a6 	mflr    r0                                     
  rtems_filesystem_location_info_t  loc;                              
                                                                      
  /*                                                                  
   *  Get the file control block structure associated with the file descriptor
   */                                                                 
  iop = rtems_libio_iop( dd_fd );                                     
ffc192c4:	3d 20 00 00 	lis     r9,0                                   
int getdents(                                                         
  int   dd_fd,                                                        
  char *dd_buf,                                                       
  int   dd_len                                                        
)                                                                     
{                                                                     
ffc192c8:	90 01 00 3c 	stw     r0,60(r1)                              
  rtems_filesystem_location_info_t  loc;                              
                                                                      
  /*                                                                  
   *  Get the file control block structure associated with the file descriptor
   */                                                                 
  iop = rtems_libio_iop( dd_fd );                                     
ffc192cc:	80 09 26 cc 	lwz     r0,9932(r9)                            
int getdents(                                                         
  int   dd_fd,                                                        
  char *dd_buf,                                                       
  int   dd_len                                                        
)                                                                     
{                                                                     
ffc192d0:	93 a1 00 2c 	stw     r29,44(r1)                             
  rtems_filesystem_location_info_t  loc;                              
                                                                      
  /*                                                                  
   *  Get the file control block structure associated with the file descriptor
   */                                                                 
  iop = rtems_libio_iop( dd_fd );                                     
ffc192d4:	3b a0 00 00 	li      r29,0                                  
ffc192d8:	7f 83 00 40 	cmplw   cr7,r3,r0                              
int getdents(                                                         
  int   dd_fd,                                                        
  char *dd_buf,                                                       
  int   dd_len                                                        
)                                                                     
{                                                                     
ffc192dc:	93 c1 00 30 	stw     r30,48(r1)                             
ffc192e0:	7c 9e 23 78 	mr      r30,r4                                 
ffc192e4:	93 e1 00 34 	stw     r31,52(r1)                             
ffc192e8:	7c bf 2b 78 	mr      r31,r5                                 
  rtems_filesystem_location_info_t  loc;                              
                                                                      
  /*                                                                  
   *  Get the file control block structure associated with the file descriptor
   */                                                                 
  iop = rtems_libio_iop( dd_fd );                                     
ffc192ec:	40 9c 00 14 	bge-    cr7,ffc19300 <getdents+0x44>           <== NEVER TAKEN
ffc192f0:	3d 20 00 00 	lis     r9,0                                   
ffc192f4:	83 a9 27 98 	lwz     r29,10136(r9)                          
ffc192f8:	54 63 30 32 	rlwinm  r3,r3,6,0,25                           
ffc192fc:	7f bd 1a 14 	add     r29,r29,r3                             
                                                                      
  /*                                                                  
   *  Make sure we are working on a directory                         
   */                                                                 
  loc = iop->pathinfo;                                                
ffc19300:	81 3d 00 28 	lwz     r9,40(r29)                             
  if ( (*loc.ops->node_type_h)( &loc ) != RTEMS_FILESYSTEM_DIRECTORY )
ffc19304:	38 61 00 08 	addi    r3,r1,8                                
  iop = rtems_libio_iop( dd_fd );                                     
                                                                      
  /*                                                                  
   *  Make sure we are working on a directory                         
   */                                                                 
  loc = iop->pathinfo;                                                
ffc19308:	80 1d 00 2c 	lwz     r0,44(r29)                             
ffc1930c:	81 1d 00 1c 	lwz     r8,28(r29)                             
ffc19310:	81 5d 00 20 	lwz     r10,32(r29)                            
ffc19314:	81 7d 00 24 	lwz     r11,36(r29)                            
ffc19318:	90 01 00 18 	stw     r0,24(r1)                              
  if ( (*loc.ops->node_type_h)( &loc ) != RTEMS_FILESYSTEM_DIRECTORY )
ffc1931c:	80 09 00 10 	lwz     r0,16(r9)                              
  iop = rtems_libio_iop( dd_fd );                                     
                                                                      
  /*                                                                  
   *  Make sure we are working on a directory                         
   */                                                                 
  loc = iop->pathinfo;                                                
ffc19320:	91 01 00 08 	stw     r8,8(r1)                               
  if ( (*loc.ops->node_type_h)( &loc ) != RTEMS_FILESYSTEM_DIRECTORY )
ffc19324:	7c 09 03 a6 	mtctr   r0                                     
  iop = rtems_libio_iop( dd_fd );                                     
                                                                      
  /*                                                                  
   *  Make sure we are working on a directory                         
   */                                                                 
  loc = iop->pathinfo;                                                
ffc19328:	91 41 00 0c 	stw     r10,12(r1)                             
ffc1932c:	91 61 00 10 	stw     r11,16(r1)                             
ffc19330:	91 21 00 14 	stw     r9,20(r1)                              
  if ( (*loc.ops->node_type_h)( &loc ) != RTEMS_FILESYSTEM_DIRECTORY )
ffc19334:	4e 80 04 21 	bctrl                                          
ffc19338:	2f 83 00 01 	cmpwi   cr7,r3,1                               
ffc1933c:	40 9e 00 3c 	bne-    cr7,ffc19378 <getdents+0xbc>           
                                                                      
  /*                                                                  
   *  Return the number of bytes that were actually transfered as a result
   *  of the read attempt.                                            
   */                                                                 
  return (*iop->pathinfo.handlers->read_h)( iop, dd_buf, dd_len  );   
ffc19340:	81 3d 00 24 	lwz     r9,36(r29)                             
ffc19344:	7f a3 eb 78 	mr      r3,r29                                 
ffc19348:	7f c4 f3 78 	mr      r4,r30                                 
ffc1934c:	80 09 00 08 	lwz     r0,8(r9)                               
ffc19350:	7f e5 fb 78 	mr      r5,r31                                 
ffc19354:	7c 09 03 a6 	mtctr   r0                                     
ffc19358:	4e 80 04 21 	bctrl                                          
}                                                                     
ffc1935c:	80 01 00 3c 	lwz     r0,60(r1)                              
ffc19360:	83 a1 00 2c 	lwz     r29,44(r1)                             
ffc19364:	7c 08 03 a6 	mtlr    r0                                     
ffc19368:	83 c1 00 30 	lwz     r30,48(r1)                             
ffc1936c:	83 e1 00 34 	lwz     r31,52(r1)                             
ffc19370:	38 21 00 38 	addi    r1,r1,56                               
ffc19374:	4e 80 00 20 	blr                                            
  /*                                                                  
   *  Make sure we are working on a directory                         
   */                                                                 
  loc = iop->pathinfo;                                                
  if ( (*loc.ops->node_type_h)( &loc ) != RTEMS_FILESYSTEM_DIRECTORY )
    rtems_set_errno_and_return_minus_one( ENOTDIR );                  
ffc19378:	4b ff 9e b5 	bl      ffc1322c <__errno>                     
ffc1937c:	38 00 00 14 	li      r0,20                                  
ffc19380:	90 03 00 00 	stw     r0,0(r3)                               
ffc19384:	38 60 ff ff 	li      r3,-1                                  
ffc19388:	4b ff ff d4 	b       ffc1935c <getdents+0xa0>               
                                                                      

ffc04d44 <gettimeofday>: */ int gettimeofday( struct timeval *tp, void * __tz __attribute__((unused)) ) {
ffc04d44:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc04d48:	7c 08 02 a6 	mflr    r0                                     
ffc04d4c:	93 e1 00 1c 	stw     r31,28(r1)                             
  /* struct timezone* tzp = (struct timezone*) __tz; */               
  if ( !tp )                                                          
ffc04d50:	7c 7f 1b 79 	mr.     r31,r3                                 
 */                                                                   
int gettimeofday(                                                     
  struct timeval  *tp,                                                
  void * __tz __attribute__((unused))                                 
)                                                                     
{                                                                     
ffc04d54:	90 01 00 24 	stw     r0,36(r1)                              
ffc04d58:	93 c1 00 18 	stw     r30,24(r1)                             
  /* struct timezone* tzp = (struct timezone*) __tz; */               
  if ( !tp )                                                          
ffc04d5c:	41 82 00 64 	beq-    ffc04dc0 <gettimeofday+0x7c>           <== NEVER TAKEN
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc04d60:	7f c0 00 a6 	mfmsr   r30                                    
ffc04d64:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc04d68:	7f c0 00 78 	andc    r0,r30,r0                              
ffc04d6c:	7c 00 01 24 	mtmsr   r0                                     
  ISR_Level       level;                                              
  struct timespec now;                                                
  suseconds_t     useconds;                                           
                                                                      
  _ISR_Disable(level);                                                
    _TOD_Get( &now );                                                 
ffc04d70:	38 61 00 08 	addi    r3,r1,8                                
ffc04d74:	48 00 54 91 	bl      ffc0a204 <_TOD_Get>                    
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc04d78:	7f c0 01 24 	mtmsr   r30                                    
  _ISR_Enable(level);                                                 
                                                                      
  useconds = (suseconds_t)now.tv_nsec;                                
  useconds /= (suseconds_t)TOD_NANOSECONDS_PER_MICROSECOND;           
ffc04d7c:	3d 20 10 62 	lis     r9,4194                                
                                                                      
  _ISR_Disable(level);                                                
    _TOD_Get( &now );                                                 
  _ISR_Enable(level);                                                 
                                                                      
  useconds = (suseconds_t)now.tv_nsec;                                
ffc04d80:	80 01 00 0c 	lwz     r0,12(r1)                              
  useconds /= (suseconds_t)TOD_NANOSECONDS_PER_MICROSECOND;           
ffc04d84:	61 29 4d d3 	ori     r9,r9,19923                            
ffc04d88:	7d 20 48 96 	mulhw   r9,r0,r9                               
ffc04d8c:	7c 00 fe 70 	srawi   r0,r0,31                               
ffc04d90:	7d 29 36 70 	srawi   r9,r9,6                                
ffc04d94:	7c 00 48 50 	subf    r0,r0,r9                               
                                                                      
  time->tv_sec  = now.tv_sec;                                         
ffc04d98:	81 21 00 08 	lwz     r9,8(r1)                               
  time->tv_usec = useconds;                                           
ffc04d9c:	90 1f 00 04 	stw     r0,4(r31)                              
   *  Timezone information ignored by the OS proper.   Per email      
   *  with Eric Norum, this is how GNU/Linux, Solaris, and MacOS X    
   *  do it.  This puts us in good company.                           
   */                                                                 
                                                                      
  return 0;                                                           
ffc04da0:	38 60 00 00 	li      r3,0                                   
  _ISR_Enable(level);                                                 
                                                                      
  useconds = (suseconds_t)now.tv_nsec;                                
  useconds /= (suseconds_t)TOD_NANOSECONDS_PER_MICROSECOND;           
                                                                      
  time->tv_sec  = now.tv_sec;                                         
ffc04da4:	91 3f 00 00 	stw     r9,0(r31)                              
}                                                                     
ffc04da8:	80 01 00 24 	lwz     r0,36(r1)                              
ffc04dac:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc04db0:	7c 08 03 a6 	mtlr    r0                                     
ffc04db4:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc04db8:	38 21 00 20 	addi    r1,r1,32                               
ffc04dbc:	4e 80 00 20 	blr                                            
  void * __tz __attribute__((unused))                                 
)                                                                     
{                                                                     
  /* struct timezone* tzp = (struct timezone*) __tz; */               
  if ( !tp )                                                          
    rtems_set_errno_and_return_minus_one( EFAULT );                   
ffc04dc0:	48 00 d3 89 	bl      ffc12148 <__errno>                     <== NOT EXECUTED
ffc04dc4:	38 00 00 0e 	li      r0,14                                  <== NOT EXECUTED
ffc04dc8:	90 03 00 00 	stw     r0,0(r3)                               <== NOT EXECUTED
ffc04dcc:	38 60 ff ff 	li      r3,-1                                  <== NOT EXECUTED
ffc04dd0:	4b ff ff d8 	b       ffc04da8 <gettimeofday+0x64>           <== NOT EXECUTED
                                                                      

ffc115c8 <imfs_dir_open>: IMFS_jnode_t *the_jnode; /* Is the node a directory ? */ the_jnode = (IMFS_jnode_t *) iop->pathinfo.node_access; if ( the_jnode->type != IMFS_DIRECTORY )
ffc115c8:	81 23 00 1c 	lwz     r9,28(r3)                              
     return -1;      /* It wasn't a directory --> return error */     
ffc115cc:	38 00 ff ff 	li      r0,-1                                  
  IMFS_jnode_t      *the_jnode;                                       
                                                                      
  /* Is the node a directory ? */                                     
  the_jnode = (IMFS_jnode_t *) iop->pathinfo.node_access;             
                                                                      
  if ( the_jnode->type != IMFS_DIRECTORY )                            
ffc115d0:	81 29 00 4c 	lwz     r9,76(r9)                              
ffc115d4:	2f 89 00 01 	cmpwi   cr7,r9,1                               
ffc115d8:	40 be 00 18 	bne+    cr7,ffc115f0 <imfs_dir_open+0x28>      <== NEVER TAKEN
     return -1;      /* It wasn't a directory --> return error */     
                                                                      
  iop->offset = 0;                                                    
ffc115dc:	39 20 00 00 	li      r9,0                                   
ffc115e0:	39 40 00 00 	li      r10,0                                  
ffc115e4:	91 23 00 10 	stw     r9,16(r3)                              
  return 0;                                                           
ffc115e8:	38 00 00 00 	li      r0,0                                   
  the_jnode = (IMFS_jnode_t *) iop->pathinfo.node_access;             
                                                                      
  if ( the_jnode->type != IMFS_DIRECTORY )                            
     return -1;      /* It wasn't a directory --> return error */     
                                                                      
  iop->offset = 0;                                                    
ffc115ec:	91 43 00 14 	stw     r10,20(r3)                             
  return 0;                                                           
}                                                                     
ffc115f0:	7c 03 03 78 	mr      r3,r0                                  
ffc115f4:	4e 80 00 20 	blr                                            
                                                                      

ffc115f8 <imfs_dir_read>: ssize_t imfs_dir_read( rtems_libio_t *iop, void *buffer, size_t count ) {
ffc115f8:	94 21 fe a8 	stwu    r1,-344(r1)                            
ffc115fc:	7c 08 02 a6 	mflr    r0                                     
ffc11600:	90 01 01 5c 	stw     r0,348(r1)                             
ffc11604:	93 01 01 38 	stw     r24,312(r1)                            
ffc11608:	7c 98 23 78 	mr      r24,r4                                 
ffc1160c:	93 21 01 3c 	stw     r25,316(r1)                            
ffc11610:	7c 79 1b 78 	mr      r25,r3                                 
ffc11614:	93 41 01 40 	stw     r26,320(r1)                            
                                                                      
   the_jnode = (IMFS_jnode_t *)iop->pathinfo.node_access;             
   the_chain = &the_jnode->info.directory.Entries;                    
                                                                      
   if ( rtems_chain_is_empty( the_chain ) )                           
      return 0;                                                       
ffc11618:	3b 40 00 00 	li      r26,0                                  
ssize_t imfs_dir_read(                                                
  rtems_libio_t  *iop,                                                
  void           *buffer,                                             
  size_t          count                                               
)                                                                     
{                                                                     
ffc1161c:	93 81 01 48 	stw     r28,328(r1)                            
ffc11620:	92 81 01 28 	stw     r20,296(r1)                            
   int                  current_entry;                                
   int                  first_entry;                                  
   int                  last_entry;                                   
   struct dirent        tmp_dirent;                                   
                                                                      
   the_jnode = (IMFS_jnode_t *)iop->pathinfo.node_access;             
ffc11624:	83 83 00 1c 	lwz     r28,28(r3)                             
ssize_t imfs_dir_read(                                                
  rtems_libio_t  *iop,                                                
  void           *buffer,                                             
  size_t          count                                               
)                                                                     
{                                                                     
ffc11628:	92 a1 01 2c 	stw     r21,300(r1)                            
ffc1162c:	92 c1 01 30 	stw     r22,304(r1)                            
ffc11630:	92 e1 01 34 	stw     r23,308(r1)                            
ffc11634:	93 61 01 44 	stw     r27,324(r1)                            
ffc11638:	93 a1 01 4c 	stw     r29,332(r1)                            
ffc1163c:	93 c1 01 50 	stw     r30,336(r1)                            
ffc11640:	93 e1 01 54 	stw     r31,340(r1)                            
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
ffc11644:	83 dc 00 50 	lwz     r30,80(r28)                            
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc11648:	3b 9c 00 54 	addi    r28,r28,84                             
   struct dirent        tmp_dirent;                                   
                                                                      
   the_jnode = (IMFS_jnode_t *)iop->pathinfo.node_access;             
   the_chain = &the_jnode->info.directory.Entries;                    
                                                                      
   if ( rtems_chain_is_empty( the_chain ) )                           
ffc1164c:	7f 9e e0 00 	cmpw    cr7,r30,r28                            
ffc11650:	41 9e 00 d0 	beq-    cr7,ffc11720 <imfs_dir_read+0x128>     
                                                                      
   bytes_transferred = 0;                                             
   first_entry = iop->offset;                                         
   /* protect against using sizes that are not exact multiples of the */
   /* -dirent- size. These could result in unexpected results          */
   last_entry = first_entry + (count/sizeof(struct dirent)) * sizeof(struct dirent);
ffc11654:	3f 60 0e a0 	lis     r27,3744                               
                                                                      
   /* Move to the first of the desired directory entries */           
   the_node = the_chain->first;                                       
                                                                      
   bytes_transferred = 0;                                             
   first_entry = iop->offset;                                         
ffc11658:	83 a3 00 14 	lwz     r29,20(r3)                             
   /* protect against using sizes that are not exact multiples of the */
   /* -dirent- size. These could result in unexpected results          */
   last_entry = first_entry + (count/sizeof(struct dirent)) * sizeof(struct dirent);
ffc1165c:	54 a5 e8 fe 	rlwinm  r5,r5,29,3,31                          
ffc11660:	63 7b ea 0f 	ori     r27,r27,59919                          
ffc11664:	7f 65 d8 16 	mulhwu  r27,r5,r27                             
                                                                      
   /* The directory was not empty so try to move to the desired entry in chain*/
   for (                                                              
ffc11668:	3b e0 00 00 	li      r31,0                                  
                                                                      
   bytes_transferred = 0;                                             
   first_entry = iop->offset;                                         
   /* protect against using sizes that are not exact multiples of the */
   /* -dirent- size. These could result in unexpected results          */
   last_entry = first_entry + (count/sizeof(struct dirent)) * sizeof(struct dirent);
ffc1166c:	57 7b f8 7e 	rlwinm  r27,r27,31,1,31                        
ffc11670:	1f 7b 01 18 	mulli   r27,r27,280                            
                                                                      
   /* The directory was not empty so try to move to the desired entry in chain*/
   for (                                                              
ffc11674:	7f 7b ea 15 	add.    r27,r27,r29                            
ffc11678:	40 81 00 a8 	ble-    ffc11720 <imfs_dir_read+0x128>         <== NEVER TAKEN
      }                                                               
                                                                      
      if( current_entry >= first_entry ) {                            
         /* Move the entry to the return buffer */                    
         tmp_dirent.d_off = current_entry;                            
         tmp_dirent.d_reclen = sizeof( struct dirent );               
ffc1167c:	3a a0 01 18 	li      r21,280                                
         the_jnode = (IMFS_jnode_t *) the_node;                       
         tmp_dirent.d_ino = the_jnode->st_ino;                        
         tmp_dirent.d_namlen = strlen( the_jnode->name );             
         strcpy( tmp_dirent.d_name, the_jnode->name );                
ffc11680:	3a c1 00 1c 	addi    r22,r1,28                              
         memcpy(                                                      
ffc11684:	3a e1 00 08 	addi    r23,r1,8                               
ffc11688:	48 00 00 1c 	b       ffc116a4 <imfs_dir_read+0xac>          
 *  to the end of the exisiting file, the remaining entries will be placed in
 *  the buffer and the returned value will be equal to -m actual- times the
 *  size of a directory entry.                                        
 */                                                                   
                                                                      
ssize_t imfs_dir_read(                                                
ffc1168c:	3b ff 01 18 	addi    r31,r31,280                            
         );                                                           
         iop->offset = iop->offset + sizeof(struct dirent);           
         bytes_transferred = bytes_transferred + sizeof( struct dirent );
      }                                                               
                                                                      
      the_node = the_node->next;                                      
ffc11690:	83 de 00 00 	lwz     r30,0(r30)                             
   /* protect against using sizes that are not exact multiples of the */
   /* -dirent- size. These could result in unexpected results          */
   last_entry = first_entry + (count/sizeof(struct dirent)) * sizeof(struct dirent);
                                                                      
   /* The directory was not empty so try to move to the desired entry in chain*/
   for (                                                              
ffc11694:	7f 9b f8 00 	cmpw    cr7,r27,r31                            
      current_entry = 0;                                              
      current_entry < last_entry;                                     
      current_entry = current_entry + sizeof(struct dirent) ){        
                                                                      
      if ( rtems_chain_is_tail( the_chain, the_node ) ){              
ffc11698:	7f 1e e0 00 	cmpw    cr6,r30,r28                            
   /* protect against using sizes that are not exact multiples of the */
   /* -dirent- size. These could result in unexpected results          */
   last_entry = first_entry + (count/sizeof(struct dirent)) * sizeof(struct dirent);
                                                                      
   /* The directory was not empty so try to move to the desired entry in chain*/
   for (                                                              
ffc1169c:	40 9d 00 84 	ble-    cr7,ffc11720 <imfs_dir_read+0x128>     <== NEVER TAKEN
      current_entry = 0;                                              
      current_entry < last_entry;                                     
      current_entry = current_entry + sizeof(struct dirent) ){        
                                                                      
      if ( rtems_chain_is_tail( the_chain, the_node ) ){              
ffc116a0:	41 9a 00 80 	beq-    cr6,ffc11720 <imfs_dir_read+0x128>     
         /* entry in the read */                                      
         return bytes_transferred;  /* Indicate that there are no more */
                                    /* entries to return */           
      }                                                               
                                                                      
      if( current_entry >= first_entry ) {                            
ffc116a4:	7f 9d f8 00 	cmpw    cr7,r29,r31                            
ffc116a8:	41 9d ff e4 	bgt+    cr7,ffc1168c <imfs_dir_read+0x94>      
         /* Move the entry to the return buffer */                    
         tmp_dirent.d_off = current_entry;                            
         tmp_dirent.d_reclen = sizeof( struct dirent );               
         the_jnode = (IMFS_jnode_t *) the_node;                       
         tmp_dirent.d_ino = the_jnode->st_ino;                        
ffc116ac:	80 1e 00 38 	lwz     r0,56(r30)                             
         tmp_dirent.d_namlen = strlen( the_jnode->name );             
ffc116b0:	3a 9e 00 0c 	addi    r20,r30,12                             
                                    /* entries to return */           
      }                                                               
                                                                      
      if( current_entry >= first_entry ) {                            
         /* Move the entry to the return buffer */                    
         tmp_dirent.d_off = current_entry;                            
ffc116b4:	7f e9 fe 70 	srawi   r9,r31,31                              
ffc116b8:	93 e1 00 14 	stw     r31,20(r1)                             
         tmp_dirent.d_reclen = sizeof( struct dirent );               
         the_jnode = (IMFS_jnode_t *) the_node;                       
         tmp_dirent.d_ino = the_jnode->st_ino;                        
         tmp_dirent.d_namlen = strlen( the_jnode->name );             
ffc116bc:	7e 83 a3 78 	mr      r3,r20                                 
                                    /* entries to return */           
      }                                                               
                                                                      
      if( current_entry >= first_entry ) {                            
         /* Move the entry to the return buffer */                    
         tmp_dirent.d_off = current_entry;                            
ffc116c0:	91 21 00 10 	stw     r9,16(r1)                              
 *  to the end of the exisiting file, the remaining entries will be placed in
 *  the buffer and the returned value will be equal to -m actual- times the
 *  size of a directory entry.                                        
 */                                                                   
                                                                      
ssize_t imfs_dir_read(                                                
ffc116c4:	3b ff 01 18 	addi    r31,r31,280                            
      if( current_entry >= first_entry ) {                            
         /* Move the entry to the return buffer */                    
         tmp_dirent.d_off = current_entry;                            
         tmp_dirent.d_reclen = sizeof( struct dirent );               
         the_jnode = (IMFS_jnode_t *) the_node;                       
         tmp_dirent.d_ino = the_jnode->st_ino;                        
ffc116c8:	90 01 00 08 	stw     r0,8(r1)                               
      }                                                               
                                                                      
      if( current_entry >= first_entry ) {                            
         /* Move the entry to the return buffer */                    
         tmp_dirent.d_off = current_entry;                            
         tmp_dirent.d_reclen = sizeof( struct dirent );               
ffc116cc:	b2 a1 00 18 	sth     r21,24(r1)                             
         the_jnode = (IMFS_jnode_t *) the_node;                       
         tmp_dirent.d_ino = the_jnode->st_ino;                        
         tmp_dirent.d_namlen = strlen( the_jnode->name );             
ffc116d0:	48 00 1d 01 	bl      ffc133d0 <strlen>                      
         strcpy( tmp_dirent.d_name, the_jnode->name );                
ffc116d4:	7e 84 a3 78 	mr      r4,r20                                 
         /* Move the entry to the return buffer */                    
         tmp_dirent.d_off = current_entry;                            
         tmp_dirent.d_reclen = sizeof( struct dirent );               
         the_jnode = (IMFS_jnode_t *) the_node;                       
         tmp_dirent.d_ino = the_jnode->st_ino;                        
         tmp_dirent.d_namlen = strlen( the_jnode->name );             
ffc116d8:	b0 61 00 1a 	sth     r3,26(r1)                              
         strcpy( tmp_dirent.d_name, the_jnode->name );                
ffc116dc:	7e c3 b3 78 	mr      r3,r22                                 
ffc116e0:	48 00 1b e1 	bl      ffc132c0 <strcpy>                      
         memcpy(                                                      
ffc116e4:	7c 78 d2 14 	add     r3,r24,r26                             
ffc116e8:	7e e4 bb 78 	mr      r4,r23                                 
ffc116ec:	38 a0 01 18 	li      r5,280                                 
ffc116f0:	48 00 16 b9 	bl      ffc12da8 <memcpy>                      
   /* protect against using sizes that are not exact multiples of the */
   /* -dirent- size. These could result in unexpected results          */
   last_entry = first_entry + (count/sizeof(struct dirent)) * sizeof(struct dirent);
                                                                      
   /* The directory was not empty so try to move to the desired entry in chain*/
   for (                                                              
ffc116f4:	7f 9b f8 00 	cmpw    cr7,r27,r31                            
         memcpy(                                                      
            buffer + bytes_transferred,                               
            (void *)&tmp_dirent,                                      
            sizeof( struct dirent )                                   
         );                                                           
         iop->offset = iop->offset + sizeof(struct dirent);           
ffc116f8:	81 39 00 10 	lwz     r9,16(r25)                             
         bytes_transferred = bytes_transferred + sizeof( struct dirent );
ffc116fc:	3b 5a 01 18 	addi    r26,r26,280                            
         memcpy(                                                      
            buffer + bytes_transferred,                               
            (void *)&tmp_dirent,                                      
            sizeof( struct dirent )                                   
         );                                                           
         iop->offset = iop->offset + sizeof(struct dirent);           
ffc11700:	81 59 00 14 	lwz     r10,20(r25)                            
         bytes_transferred = bytes_transferred + sizeof( struct dirent );
      }                                                               
                                                                      
      the_node = the_node->next;                                      
ffc11704:	83 de 00 00 	lwz     r30,0(r30)                             
         memcpy(                                                      
            buffer + bytes_transferred,                               
            (void *)&tmp_dirent,                                      
            sizeof( struct dirent )                                   
         );                                                           
         iop->offset = iop->offset + sizeof(struct dirent);           
ffc11708:	31 4a 01 18 	addic   r10,r10,280                            
ffc1170c:	7d 29 01 94 	addze   r9,r9                                  
ffc11710:	91 39 00 10 	stw     r9,16(r25)                             
   for (                                                              
      current_entry = 0;                                              
      current_entry < last_entry;                                     
      current_entry = current_entry + sizeof(struct dirent) ){        
                                                                      
      if ( rtems_chain_is_tail( the_chain, the_node ) ){              
ffc11714:	7f 1e e0 00 	cmpw    cr6,r30,r28                            
         memcpy(                                                      
            buffer + bytes_transferred,                               
            (void *)&tmp_dirent,                                      
            sizeof( struct dirent )                                   
         );                                                           
         iop->offset = iop->offset + sizeof(struct dirent);           
ffc11718:	91 59 00 14 	stw     r10,20(r25)                            
   /* protect against using sizes that are not exact multiples of the */
   /* -dirent- size. These could result in unexpected results          */
   last_entry = first_entry + (count/sizeof(struct dirent)) * sizeof(struct dirent);
                                                                      
   /* The directory was not empty so try to move to the desired entry in chain*/
   for (                                                              
ffc1171c:	41 9d ff 84 	bgt+    cr7,ffc116a0 <imfs_dir_read+0xa8>      <== NEVER TAKEN
      the_node = the_node->next;                                      
   }                                                                  
                                                                      
   /* Success */                                                      
   return bytes_transferred;                                          
}                                                                     
ffc11720:	80 01 01 5c 	lwz     r0,348(r1)                             
ffc11724:	7f 43 d3 78 	mr      r3,r26                                 
ffc11728:	82 81 01 28 	lwz     r20,296(r1)                            
ffc1172c:	7c 08 03 a6 	mtlr    r0                                     
ffc11730:	82 a1 01 2c 	lwz     r21,300(r1)                            
ffc11734:	82 c1 01 30 	lwz     r22,304(r1)                            
ffc11738:	82 e1 01 34 	lwz     r23,308(r1)                            
ffc1173c:	83 01 01 38 	lwz     r24,312(r1)                            
ffc11740:	83 21 01 3c 	lwz     r25,316(r1)                            
ffc11744:	83 41 01 40 	lwz     r26,320(r1)                            
ffc11748:	83 61 01 44 	lwz     r27,324(r1)                            
ffc1174c:	83 81 01 48 	lwz     r28,328(r1)                            
ffc11750:	83 a1 01 4c 	lwz     r29,332(r1)                            
ffc11754:	83 c1 01 50 	lwz     r30,336(r1)                            
ffc11758:	83 e1 01 54 	lwz     r31,340(r1)                            
ffc1175c:	38 21 01 58 	addi    r1,r1,344                              
ffc11760:	4e 80 00 20 	blr                                            
                                                                      

ffc118d8 <imfs_dir_rmnod>: int imfs_dir_rmnod( rtems_filesystem_location_info_t *parent_pathloc, /* IN */ rtems_filesystem_location_info_t *pathloc /* IN */ ) {
ffc118d8:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc118dc:	7c 08 02 a6 	mflr    r0                                     
ffc118e0:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc118e4:	90 01 00 14 	stw     r0,20(r1)                              
  IMFS_jnode_t *the_jnode;                                            
                                                                      
  the_jnode = (IMFS_jnode_t *) pathloc->node_access;                  
ffc118e8:	83 e4 00 00 	lwz     r31,0(r4)                              
                                                                      
  /*                                                                  
   * You cannot remove a node that still has children                 
   */                                                                 
                                                                      
  if ( ! rtems_chain_is_empty( &the_jnode->info.directory.Entries ) ) 
ffc118ec:	81 3f 00 50 	lwz     r9,80(r31)                             
ffc118f0:	38 1f 00 54 	addi    r0,r31,84                              
ffc118f4:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc118f8:	40 9e 00 6c 	bne-    cr7,ffc11964 <imfs_dir_rmnod+0x8c>     
                                                                      
  /*                                                                  
   * You cannot remove the file system root node.                     
   */                                                                 
                                                                      
  if ( pathloc->mt_entry->mt_fs_root.node_access == pathloc->node_access )
ffc118fc:	81 24 00 10 	lwz     r9,16(r4)                              
ffc11900:	80 09 00 1c 	lwz     r0,28(r9)                              
ffc11904:	7f 9f 00 00 	cmpw    cr7,r31,r0                             
ffc11908:	41 9e 00 38 	beq-    cr7,ffc11940 <imfs_dir_rmnod+0x68>     
                                                                      
  /*                                                                  
   * You cannot remove a mountpoint.                                  
   */                                                                 
                                                                      
   if ( the_jnode->info.directory.mt_fs != NULL )                     
ffc1190c:	80 1f 00 5c 	lwz     r0,92(r31)                             
ffc11910:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc11914:	40 9e 00 2c 	bne-    cr7,ffc11940 <imfs_dir_rmnod+0x68>     <== NEVER TAKEN
     rtems_set_errno_and_return_minus_one( EBUSY );                   
                                                                      
  IMFS_create_orphan( the_jnode );                                    
ffc11918:	7f e3 fb 78 	mr      r3,r31                                 
ffc1191c:	4b ff cc d9 	bl      ffc0e5f4 <IMFS_create_orphan>          
  IMFS_check_node_remove( the_jnode );                                
ffc11920:	7f e3 fb 78 	mr      r3,r31                                 
ffc11924:	4b ff cd 31 	bl      ffc0e654 <IMFS_check_node_remove>      
                                                                      
  return 0;                                                           
ffc11928:	38 60 00 00 	li      r3,0                                   
}                                                                     
ffc1192c:	80 01 00 14 	lwz     r0,20(r1)                              
ffc11930:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc11934:	38 21 00 10 	addi    r1,r1,16                               
ffc11938:	7c 08 03 a6 	mtlr    r0                                     
ffc1193c:	4e 80 00 20 	blr                                            
  /*                                                                  
   * You cannot remove a mountpoint.                                  
   */                                                                 
                                                                      
   if ( the_jnode->info.directory.mt_fs != NULL )                     
     rtems_set_errno_and_return_minus_one( EBUSY );                   
ffc11940:	48 00 08 09 	bl      ffc12148 <__errno>                     
ffc11944:	38 00 00 10 	li      r0,16                                  
ffc11948:	90 03 00 00 	stw     r0,0(r3)                               
ffc1194c:	38 60 ff ff 	li      r3,-1                                  
                                                                      
  IMFS_create_orphan( the_jnode );                                    
  IMFS_check_node_remove( the_jnode );                                
                                                                      
  return 0;                                                           
}                                                                     
ffc11950:	80 01 00 14 	lwz     r0,20(r1)                              
ffc11954:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc11958:	38 21 00 10 	addi    r1,r1,16                               
ffc1195c:	7c 08 03 a6 	mtlr    r0                                     
ffc11960:	4e 80 00 20 	blr                                            
  /*                                                                  
   * You cannot remove a node that still has children                 
   */                                                                 
                                                                      
  if ( ! rtems_chain_is_empty( &the_jnode->info.directory.Entries ) ) 
     rtems_set_errno_and_return_minus_one( ENOTEMPTY );               
ffc11964:	48 00 07 e5 	bl      ffc12148 <__errno>                     
ffc11968:	38 00 00 5a 	li      r0,90                                  
ffc1196c:	90 03 00 00 	stw     r0,0(r3)                               
ffc11970:	38 60 ff ff 	li      r3,-1                                  
ffc11974:	4b ff ff b8 	b       ffc1192c <imfs_dir_rmnod+0x54>         
                                                                      

ffc05b68 <init_etc_passwd_group>: /* * Initialize useable but dummy databases */ void init_etc_passwd_group(void) {
ffc05b68:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc05b6c:	7c 08 02 a6 	mflr    r0                                     
  FILE *fp;                                                           
  static char etc_passwd_initted = 0;                                 
                                                                      
  if (etc_passwd_initted)                                             
ffc05b70:	3d 20 00 00 	lis     r9,0                                   
                                                                      
/*                                                                    
 * Initialize useable but dummy databases                             
 */                                                                   
void init_etc_passwd_group(void)                                      
{                                                                     
ffc05b74:	90 01 00 14 	stw     r0,20(r1)                              
  FILE *fp;                                                           
  static char etc_passwd_initted = 0;                                 
                                                                      
  if (etc_passwd_initted)                                             
ffc05b78:	88 09 27 d4 	lbz     r0,10196(r9)                           
                                                                      
/*                                                                    
 * Initialize useable but dummy databases                             
 */                                                                   
void init_etc_passwd_group(void)                                      
{                                                                     
ffc05b7c:	93 c1 00 08 	stw     r30,8(r1)                              
  FILE *fp;                                                           
  static char etc_passwd_initted = 0;                                 
                                                                      
  if (etc_passwd_initted)                                             
ffc05b80:	2f 80 00 00 	cmpwi   cr7,r0,0                               
                                                                      
/*                                                                    
 * Initialize useable but dummy databases                             
 */                                                                   
void init_etc_passwd_group(void)                                      
{                                                                     
ffc05b84:	93 e1 00 0c 	stw     r31,12(r1)                             
  FILE *fp;                                                           
  static char etc_passwd_initted = 0;                                 
                                                                      
  if (etc_passwd_initted)                                             
ffc05b88:	41 9e 00 1c 	beq-    cr7,ffc05ba4 <init_etc_passwd_group+0x3c>
    fprintf( fp, "root:x:0:root\n"                                    
                 "rtems:x:1:rtems\n"                                  
                 "tty:x:2:tty\n" );                                   
    fclose(fp);                                                       
  }                                                                   
}                                                                     
ffc05b8c:	80 01 00 14 	lwz     r0,20(r1)                              
ffc05b90:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc05b94:	7c 08 03 a6 	mtlr    r0                                     
ffc05b98:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc05b9c:	38 21 00 10 	addi    r1,r1,16                               
ffc05ba0:	4e 80 00 20 	blr                                            
  static char etc_passwd_initted = 0;                                 
                                                                      
  if (etc_passwd_initted)                                             
    return;                                                           
  etc_passwd_initted = 1;                                             
  mkdir("/etc", 0777);                                                
ffc05ba4:	3c 60 ff c2 	lis     r3,-62                                 
                                                                      
  /*                                                                  
   *  Initialize /etc/passwd                                          
   */                                                                 
  if ((fp = fopen("/etc/passwd", "r")) != NULL) {                     
ffc05ba8:	3f c0 ff c2 	lis     r30,-62                                
ffc05bac:	3f e0 ff c2 	lis     r31,-62                                
  FILE *fp;                                                           
  static char etc_passwd_initted = 0;                                 
                                                                      
  if (etc_passwd_initted)                                             
    return;                                                           
  etc_passwd_initted = 1;                                             
ffc05bb0:	38 00 00 01 	li      r0,1                                   
  mkdir("/etc", 0777);                                                
ffc05bb4:	38 80 01 ff 	li      r4,511                                 
  FILE *fp;                                                           
  static char etc_passwd_initted = 0;                                 
                                                                      
  if (etc_passwd_initted)                                             
    return;                                                           
  etc_passwd_initted = 1;                                             
ffc05bb8:	98 09 27 d4 	stb     r0,10196(r9)                           
  mkdir("/etc", 0777);                                                
ffc05bbc:	38 63 af e0 	addi    r3,r3,-20512                           
                                                                      
  /*                                                                  
   *  Initialize /etc/passwd                                          
   */                                                                 
  if ((fp = fopen("/etc/passwd", "r")) != NULL) {                     
ffc05bc0:	3b de af e8 	addi    r30,r30,-20504                         
  static char etc_passwd_initted = 0;                                 
                                                                      
  if (etc_passwd_initted)                                             
    return;                                                           
  etc_passwd_initted = 1;                                             
  mkdir("/etc", 0777);                                                
ffc05bc4:	48 00 0b 99 	bl      ffc0675c <mkdir>                       
                                                                      
  /*                                                                  
   *  Initialize /etc/passwd                                          
   */                                                                 
  if ((fp = fopen("/etc/passwd", "r")) != NULL) {                     
ffc05bc8:	3b ff af f4 	addi    r31,r31,-20492                         
ffc05bcc:	7f c3 f3 78 	mr      r3,r30                                 
ffc05bd0:	7f e4 fb 78 	mr      r4,r31                                 
ffc05bd4:	48 00 e7 01 	bl      ffc142d4 <fopen>                       
ffc05bd8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05bdc:	41 9e 00 7c 	beq-    cr7,ffc05c58 <init_etc_passwd_group+0xf0>
  }                                                                   
  else if ((fp = fopen("/etc/passwd", "w")) != NULL) {                
    fprintf(fp, "root:*:0:0:root::/:/bin/sh\n"                        
                 "rtems:*:1:1:RTEMS Application::/:/bin/sh\n"         
                 "tty:!:2:2:tty owner::/:/bin/false\n" );             
    fclose(fp);                                                       
ffc05be0:	48 00 dd 35 	bl      ffc13914 <fclose>                      
  }                                                                   
                                                                      
  /*                                                                  
   *  Initialize /etc/group                                           
   */                                                                 
  if ((fp = fopen("/etc/group", "r")) != NULL) {                      
ffc05be4:	3f c0 ff c2 	lis     r30,-62                                
ffc05be8:	3b de b0 64 	addi    r30,r30,-20380                         
ffc05bec:	7f c3 f3 78 	mr      r3,r30                                 
ffc05bf0:	7f e4 fb 78 	mr      r4,r31                                 
ffc05bf4:	48 00 e6 e1 	bl      ffc142d4 <fopen>                       
ffc05bf8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05bfc:	41 9e 00 20 	beq-    cr7,ffc05c1c <init_etc_passwd_group+0xb4>
  }                                                                   
  else if ((fp = fopen("/etc/group", "w")) != NULL) {                 
    fprintf( fp, "root:x:0:root\n"                                    
                 "rtems:x:1:rtems\n"                                  
                 "tty:x:2:tty\n" );                                   
    fclose(fp);                                                       
ffc05c00:	48 00 dd 15 	bl      ffc13914 <fclose>                      
  }                                                                   
}                                                                     
ffc05c04:	80 01 00 14 	lwz     r0,20(r1)                              
ffc05c08:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc05c0c:	7c 08 03 a6 	mtlr    r0                                     
ffc05c10:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc05c14:	38 21 00 10 	addi    r1,r1,16                               
ffc05c18:	4e 80 00 20 	blr                                            
   *  Initialize /etc/group                                           
   */                                                                 
  if ((fp = fopen("/etc/group", "r")) != NULL) {                      
    fclose(fp);                                                       
  }                                                                   
  else if ((fp = fopen("/etc/group", "w")) != NULL) {                 
ffc05c1c:	3c 80 ff c2 	lis     r4,-62                                 
ffc05c20:	7f c3 f3 78 	mr      r3,r30                                 
ffc05c24:	38 84 af f8 	addi    r4,r4,-20488                           
ffc05c28:	48 00 e6 ad 	bl      ffc142d4 <fopen>                       
ffc05c2c:	7c 7f 1b 79 	mr.     r31,r3                                 
ffc05c30:	41 a2 ff 5c 	beq-    ffc05b8c <init_etc_passwd_group+0x24>  <== NEVER TAKEN
    fprintf( fp, "root:x:0:root\n"                                    
ffc05c34:	3c 60 ff c2 	lis     r3,-62                                 
ffc05c38:	38 80 00 01 	li      r4,1                                   
ffc05c3c:	38 a0 00 2a 	li      r5,42                                  
ffc05c40:	7f e6 fb 78 	mr      r6,r31                                 
ffc05c44:	38 63 b0 70 	addi    r3,r3,-20368                           
ffc05c48:	48 00 ef 71 	bl      ffc14bb8 <fwrite>                      
                 "rtems:x:1:rtems\n"                                  
                 "tty:x:2:tty\n" );                                   
    fclose(fp);                                                       
ffc05c4c:	7f e3 fb 78 	mr      r3,r31                                 
ffc05c50:	48 00 dc c5 	bl      ffc13914 <fclose>                      
ffc05c54:	4b ff ff b0 	b       ffc05c04 <init_etc_passwd_group+0x9c>  
   *  Initialize /etc/passwd                                          
   */                                                                 
  if ((fp = fopen("/etc/passwd", "r")) != NULL) {                     
    fclose(fp);                                                       
  }                                                                   
  else if ((fp = fopen("/etc/passwd", "w")) != NULL) {                
ffc05c58:	3c 80 ff c2 	lis     r4,-62                                 
ffc05c5c:	7f c3 f3 78 	mr      r3,r30                                 
ffc05c60:	38 84 af f8 	addi    r4,r4,-20488                           
ffc05c64:	48 00 e6 71 	bl      ffc142d4 <fopen>                       
ffc05c68:	7c 7e 1b 79 	mr.     r30,r3                                 
ffc05c6c:	41 a2 ff 78 	beq-    ffc05be4 <init_etc_passwd_group+0x7c>  <== NEVER TAKEN
    fprintf(fp, "root:*:0:0:root::/:/bin/sh\n"                        
ffc05c70:	3c 60 ff c2 	lis     r3,-62                                 
ffc05c74:	38 63 af fc 	addi    r3,r3,-20484                           
ffc05c78:	38 80 00 01 	li      r4,1                                   
ffc05c7c:	38 a0 00 66 	li      r5,102                                 
ffc05c80:	7f c6 f3 78 	mr      r6,r30                                 
ffc05c84:	48 00 ef 35 	bl      ffc14bb8 <fwrite>                      
                 "rtems:*:1:1:RTEMS Application::/:/bin/sh\n"         
                 "tty:!:2:2:tty owner::/:/bin/false\n" );             
    fclose(fp);                                                       
ffc05c88:	7f c3 f3 78 	mr      r3,r30                                 
ffc05c8c:	4b ff ff 54 	b       ffc05be0 <init_etc_passwd_group+0x78>  
                                                                      

ffc07188 <iproc>: /* * Process a single input character */ static int iproc (unsigned char c, struct rtems_termios_tty *tty) {
ffc07188:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc0718c:	7c 08 02 a6 	mflr    r0                                     
ffc07190:	90 01 00 14 	stw     r0,20(r1)                              
  if (tty->termios.c_iflag & ISTRIP)                                  
ffc07194:	80 04 00 30 	lwz     r0,48(r4)                              
/*                                                                    
 * Process a single input character                                   
 */                                                                   
static int                                                            
iproc (unsigned char c, struct rtems_termios_tty *tty)                
{                                                                     
ffc07198:	93 c1 00 08 	stw     r30,8(r1)                              
ffc0719c:	7c 9e 23 78 	mr      r30,r4                                 
  if (tty->termios.c_iflag & ISTRIP)                                  
ffc071a0:	70 09 00 20 	andi.   r9,r0,32                               
/*                                                                    
 * Process a single input character                                   
 */                                                                   
static int                                                            
iproc (unsigned char c, struct rtems_termios_tty *tty)                
{                                                                     
ffc071a4:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc071a8:	7c 7f 1b 78 	mr      r31,r3                                 
  if (tty->termios.c_iflag & ISTRIP)                                  
ffc071ac:	41 82 00 08 	beq-    ffc071b4 <iproc+0x2c>                  <== ALWAYS TAKEN
    c &= 0x7f;                                                        
ffc071b0:	54 7f 06 7e 	clrlwi  r31,r3,25                              <== NOT EXECUTED
                                                                      
  if (tty->termios.c_iflag & IUCLC)                                   
ffc071b4:	70 0b 02 00 	andi.   r11,r0,512                             
ffc071b8:	41 82 00 28 	beq-    ffc071e0 <iproc+0x58>                  
    c = tolower (c);                                                  
ffc071bc:	3d 20 00 00 	lis     r9,0                                   
ffc071c0:	81 69 26 a0 	lwz     r11,9888(r9)                           
ffc071c4:	7f e9 fb 78 	mr      r9,r31                                 
ffc071c8:	7f eb fa 14 	add     r31,r11,r31                            
ffc071cc:	89 7f 00 01 	lbz     r11,1(r31)                             
ffc071d0:	55 6b 07 be 	clrlwi  r11,r11,30                             
ffc071d4:	2f 8b 00 01 	cmpwi   cr7,r11,1                              
ffc071d8:	41 9e 01 14 	beq-    cr7,ffc072ec <iproc+0x164>             
ffc071dc:	55 3f 06 3e 	clrlwi  r31,r9,24                              
                                                                      
  if (c == '\r') {                                                    
ffc071e0:	2f 9f 00 0d 	cmpwi   cr7,r31,13                             
ffc071e4:	41 9e 00 68 	beq-    cr7,ffc0724c <iproc+0xc4>              
    if (tty->termios.c_iflag & IGNCR)                                 
      return 0;                                                       
    if (tty->termios.c_iflag & ICRNL)                                 
      c = '\n';                                                       
  } else if ((c == '\n') && (tty->termios.c_iflag & INLCR)) {         
ffc071e8:	2f 9f 00 0a 	cmpwi   cr7,r31,10                             
ffc071ec:	41 9e 00 f0 	beq-    cr7,ffc072dc <iproc+0x154>             
    c = '\r';                                                         
  }                                                                   
                                                                      
  if ((c != '\0') && (tty->termios.c_lflag & ICANON)) {               
ffc071f0:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc071f4:	40 9e 00 70 	bne-    cr7,ffc07264 <iproc+0xdc>              <== ALWAYS TAKEN
  }                                                                   
                                                                      
  /*                                                                  
   * FIXME: Should do IMAXBEL handling somehow                        
   */                                                                 
  if (tty->ccount < (CBUFSIZE-1)) {                                   
ffc071f8:	3d 20 00 00 	lis     r9,0                                   
ffc071fc:	81 69 21 7c 	lwz     r11,8572(r9)                           
    if (tty->termios.c_lflag & ECHO)                                  
      echo (c, tty);                                                  
    tty->cbuf[tty->ccount++] = c;                                     
  }                                                                   
  return 0;                                                           
ffc07200:	38 60 00 00 	li      r3,0                                   
  }                                                                   
                                                                      
  /*                                                                  
   * FIXME: Should do IMAXBEL handling somehow                        
   */                                                                 
  if (tty->ccount < (CBUFSIZE-1)) {                                   
ffc07204:	81 3e 00 20 	lwz     r9,32(r30)                             
ffc07208:	38 0b ff ff 	addi    r0,r11,-1                              
ffc0720c:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc07210:	40 9c 00 24 	bge-    cr7,ffc07234 <iproc+0xac>              <== NEVER TAKEN
    if (tty->termios.c_lflag & ECHO)                                  
ffc07214:	80 1e 00 3c 	lwz     r0,60(r30)                             
ffc07218:	70 0b 00 08 	andi.   r11,r0,8                               
ffc0721c:	40 82 00 d8 	bne-    ffc072f4 <iproc+0x16c>                 <== ALWAYS TAKEN
      echo (c, tty);                                                  
    tty->cbuf[tty->ccount++] = c;                                     
ffc07220:	81 7e 00 1c 	lwz     r11,28(r30)                            
ffc07224:	38 09 00 01 	addi    r0,r9,1                                
  }                                                                   
  return 0;                                                           
ffc07228:	38 60 00 00 	li      r3,0                                   
   * FIXME: Should do IMAXBEL handling somehow                        
   */                                                                 
  if (tty->ccount < (CBUFSIZE-1)) {                                   
    if (tty->termios.c_lflag & ECHO)                                  
      echo (c, tty);                                                  
    tty->cbuf[tty->ccount++] = c;                                     
ffc0722c:	7f eb 49 ae 	stbx    r31,r11,r9                             
ffc07230:	90 1e 00 20 	stw     r0,32(r30)                             
  }                                                                   
  return 0;                                                           
}                                                                     
ffc07234:	80 01 00 14 	lwz     r0,20(r1)                              
ffc07238:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc0723c:	7c 08 03 a6 	mtlr    r0                                     
ffc07240:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc07244:	38 21 00 10 	addi    r1,r1,16                               
ffc07248:	4e 80 00 20 	blr                                            
                                                                      
  if (tty->termios.c_iflag & IUCLC)                                   
    c = tolower (c);                                                  
                                                                      
  if (c == '\r') {                                                    
    if (tty->termios.c_iflag & IGNCR)                                 
ffc0724c:	70 09 00 80 	andi.   r9,r0,128                              
      return 0;                                                       
ffc07250:	38 60 00 00 	li      r3,0                                   
                                                                      
  if (tty->termios.c_iflag & IUCLC)                                   
    c = tolower (c);                                                  
                                                                      
  if (c == '\r') {                                                    
    if (tty->termios.c_iflag & IGNCR)                                 
ffc07254:	40 a2 ff e0 	bne-    ffc07234 <iproc+0xac>                  <== NEVER TAKEN
      return 0;                                                       
    if (tty->termios.c_iflag & ICRNL)                                 
ffc07258:	70 0b 01 00 	andi.   r11,r0,256                             
ffc0725c:	41 82 00 08 	beq-    ffc07264 <iproc+0xdc>                  <== NEVER TAKEN
      c = '\n';                                                       
ffc07260:	3b e0 00 0a 	li      r31,10                                 
  } else if ((c == '\n') && (tty->termios.c_iflag & INLCR)) {         
    c = '\r';                                                         
  }                                                                   
                                                                      
  if ((c != '\0') && (tty->termios.c_lflag & ICANON)) {               
ffc07264:	80 1e 00 3c 	lwz     r0,60(r30)                             
ffc07268:	70 0b 00 02 	andi.   r11,r0,2                               
ffc0726c:	41 a2 ff 8c 	beq-    ffc071f8 <iproc+0x70>                  
    if (c == tty->termios.c_cc[VERASE]) {                             
ffc07270:	89 3e 00 43 	lbz     r9,67(r30)                             
ffc07274:	7f 89 f8 00 	cmpw    cr7,r9,r31                             
ffc07278:	41 9e 00 e8 	beq-    cr7,ffc07360 <iproc+0x1d8>             
      erase (tty, 0);                                                 
      return 0;                                                       
    }                                                                 
    else if (c == tty->termios.c_cc[VKILL]) {                         
ffc0727c:	89 3e 00 44 	lbz     r9,68(r30)                             
ffc07280:	7f 89 f8 00 	cmpw    cr7,r9,r31                             
ffc07284:	41 9e 00 94 	beq-    cr7,ffc07318 <iproc+0x190>             
      erase (tty, 1);                                                 
      return 0;                                                       
    }                                                                 
    else if (c == tty->termios.c_cc[VEOF]) {                          
ffc07288:	89 3e 00 45 	lbz     r9,69(r30)                             
      return 1;                                                       
ffc0728c:	38 60 00 01 	li      r3,1                                   
    }                                                                 
    else if (c == tty->termios.c_cc[VKILL]) {                         
      erase (tty, 1);                                                 
      return 0;                                                       
    }                                                                 
    else if (c == tty->termios.c_cc[VEOF]) {                          
ffc07290:	7f 89 f8 00 	cmpw    cr7,r9,r31                             
ffc07294:	41 be ff a0 	beq-    cr7,ffc07234 <iproc+0xac>              <== NEVER TAKEN
      return 1;                                                       
    } else if (c == '\n') {                                           
ffc07298:	2f 9f 00 0a 	cmpwi   cr7,r31,10                             
ffc0729c:	41 9e 00 90 	beq-    cr7,ffc0732c <iproc+0x1a4>             
      if (tty->termios.c_lflag & (ECHO | ECHONL))                     
        echo (c, tty);                                                
      tty->cbuf[tty->ccount++] = c;                                   
      return 1;                                                       
    } else if ((c == tty->termios.c_cc[VEOL]) ||                      
ffc072a0:	89 3e 00 4c 	lbz     r9,76(r30)                             
ffc072a4:	7f 89 f8 00 	cmpw    cr7,r9,r31                             
ffc072a8:	41 9e 00 10 	beq-    cr7,ffc072b8 <iproc+0x130>             <== NEVER TAKEN
ffc072ac:	89 3e 00 51 	lbz     r9,81(r30)                             
ffc072b0:	7f 89 f8 00 	cmpw    cr7,r9,r31                             
ffc072b4:	40 9e ff 44 	bne+    cr7,ffc071f8 <iproc+0x70>              <== ALWAYS TAKEN
               (c == tty->termios.c_cc[VEOL2])) {                     
      if (tty->termios.c_lflag & ECHO)                                
ffc072b8:	70 0b 00 08 	andi.   r11,r0,8                               <== NOT EXECUTED
ffc072bc:	40 82 00 4c 	bne-    ffc07308 <iproc+0x180>                 <== NOT EXECUTED
        echo (c, tty);                                                
      tty->cbuf[tty->ccount++] = c;                                   
ffc072c0:	81 3e 00 20 	lwz     r9,32(r30)                             <== NOT EXECUTED
      return 1;                                                       
ffc072c4:	38 60 00 01 	li      r3,1                                   <== NOT EXECUTED
      return 1;                                                       
    } else if ((c == tty->termios.c_cc[VEOL]) ||                      
               (c == tty->termios.c_cc[VEOL2])) {                     
      if (tty->termios.c_lflag & ECHO)                                
        echo (c, tty);                                                
      tty->cbuf[tty->ccount++] = c;                                   
ffc072c8:	81 7e 00 1c 	lwz     r11,28(r30)                            <== NOT EXECUTED
ffc072cc:	38 09 00 01 	addi    r0,r9,1                                <== NOT EXECUTED
ffc072d0:	7f eb 49 ae 	stbx    r31,r11,r9                             <== NOT EXECUTED
ffc072d4:	90 1e 00 20 	stw     r0,32(r30)                             <== NOT EXECUTED
      return 1;                                                       
ffc072d8:	4b ff ff 5c 	b       ffc07234 <iproc+0xac>                  <== NOT EXECUTED
  if (c == '\r') {                                                    
    if (tty->termios.c_iflag & IGNCR)                                 
      return 0;                                                       
    if (tty->termios.c_iflag & ICRNL)                                 
      c = '\n';                                                       
  } else if ((c == '\n') && (tty->termios.c_iflag & INLCR)) {         
ffc072dc:	70 09 00 40 	andi.   r9,r0,64                               
ffc072e0:	41 a2 ff 84 	beq-    ffc07264 <iproc+0xdc>                  <== ALWAYS TAKEN
    c = '\r';                                                         
ffc072e4:	3b e0 00 0d 	li      r31,13                                 <== NOT EXECUTED
ffc072e8:	4b ff ff 7c 	b       ffc07264 <iproc+0xdc>                  <== NOT EXECUTED
{                                                                     
  if (tty->termios.c_iflag & ISTRIP)                                  
    c &= 0x7f;                                                        
                                                                      
  if (tty->termios.c_iflag & IUCLC)                                   
    c = tolower (c);                                                  
ffc072ec:	39 29 00 20 	addi    r9,r9,32                               
ffc072f0:	4b ff fe ec 	b       ffc071dc <iproc+0x54>                  
  /*                                                                  
   * FIXME: Should do IMAXBEL handling somehow                        
   */                                                                 
  if (tty->ccount < (CBUFSIZE-1)) {                                   
    if (tty->termios.c_lflag & ECHO)                                  
      echo (c, tty);                                                  
ffc072f4:	7f e3 fb 78 	mr      r3,r31                                 
ffc072f8:	7f c4 f3 78 	mr      r4,r30                                 
ffc072fc:	4b ff fb 49 	bl      ffc06e44 <echo>                        
ffc07300:	81 3e 00 20 	lwz     r9,32(r30)                             
ffc07304:	4b ff ff 1c 	b       ffc07220 <iproc+0x98>                  
      tty->cbuf[tty->ccount++] = c;                                   
      return 1;                                                       
    } else if ((c == tty->termios.c_cc[VEOL]) ||                      
               (c == tty->termios.c_cc[VEOL2])) {                     
      if (tty->termios.c_lflag & ECHO)                                
        echo (c, tty);                                                
ffc07308:	7f e3 fb 78 	mr      r3,r31                                 <== NOT EXECUTED
ffc0730c:	7f c4 f3 78 	mr      r4,r30                                 <== NOT EXECUTED
ffc07310:	4b ff fb 35 	bl      ffc06e44 <echo>                        <== NOT EXECUTED
ffc07314:	4b ff ff ac 	b       ffc072c0 <iproc+0x138>                 <== NOT EXECUTED
    if (c == tty->termios.c_cc[VERASE]) {                             
      erase (tty, 0);                                                 
      return 0;                                                       
    }                                                                 
    else if (c == tty->termios.c_cc[VKILL]) {                         
      erase (tty, 1);                                                 
ffc07318:	7f c3 f3 78 	mr      r3,r30                                 
ffc0731c:	38 80 00 01 	li      r4,1                                   
ffc07320:	4b ff fb c9 	bl      ffc06ee8 <erase>                       
      return 0;                                                       
ffc07324:	38 60 00 00 	li      r3,0                                   
ffc07328:	4b ff ff 0c 	b       ffc07234 <iproc+0xac>                  
    }                                                                 
    else if (c == tty->termios.c_cc[VEOF]) {                          
      return 1;                                                       
    } else if (c == '\n') {                                           
      if (tty->termios.c_lflag & (ECHO | ECHONL))                     
ffc0732c:	70 09 00 48 	andi.   r9,r0,72                               
ffc07330:	41 a2 00 10 	beq+    ffc07340 <iproc+0x1b8>                 <== NEVER TAKEN
        echo (c, tty);                                                
ffc07334:	38 60 00 0a 	li      r3,10                                  
ffc07338:	7f c4 f3 78 	mr      r4,r30                                 
ffc0733c:	4b ff fb 09 	bl      ffc06e44 <echo>                        
      tty->cbuf[tty->ccount++] = c;                                   
ffc07340:	81 3e 00 20 	lwz     r9,32(r30)                             
ffc07344:	39 40 00 0a 	li      r10,10                                 
ffc07348:	81 7e 00 1c 	lwz     r11,28(r30)                            
      return 1;                                                       
ffc0734c:	38 60 00 01 	li      r3,1                                   
    else if (c == tty->termios.c_cc[VEOF]) {                          
      return 1;                                                       
    } else if (c == '\n') {                                           
      if (tty->termios.c_lflag & (ECHO | ECHONL))                     
        echo (c, tty);                                                
      tty->cbuf[tty->ccount++] = c;                                   
ffc07350:	38 09 00 01 	addi    r0,r9,1                                
ffc07354:	7d 4b 49 ae 	stbx    r10,r11,r9                             
ffc07358:	90 1e 00 20 	stw     r0,32(r30)                             
      return 1;                                                       
ffc0735c:	4b ff fe d8 	b       ffc07234 <iproc+0xac>                  
    c = '\r';                                                         
  }                                                                   
                                                                      
  if ((c != '\0') && (tty->termios.c_lflag & ICANON)) {               
    if (c == tty->termios.c_cc[VERASE]) {                             
      erase (tty, 0);                                                 
ffc07360:	7f c3 f3 78 	mr      r3,r30                                 
ffc07364:	38 80 00 00 	li      r4,0                                   
ffc07368:	4b ff fb 81 	bl      ffc06ee8 <erase>                       
      return 0;                                                       
ffc0736c:	38 60 00 00 	li      r3,0                                   
ffc07370:	4b ff fe c4 	b       ffc07234 <iproc+0xac>                  
                                                                      

ffc27c10 <kill>: #if !defined(RTEMS_POSIX_API) int kill( pid_t pid, int sig ) { return 0; }
ffc27c10:	38 60 00 00 	li      r3,0                                   <== NOT EXECUTED
ffc27c14:	4e 80 00 20 	blr                                            <== NOT EXECUTED
                                                                      

ffc175ec <libc_wrapup>: extern void _wrapup_reent(struct _reent *); extern void _reclaim_reent(struct _reent *); void libc_wrapup(void) {
ffc175ec:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc175f0:	7c 08 02 a6 	mflr    r0                                     
  /*                                                                  
   *  In case RTEMS is already down, don't do this.  It could be      
   *  dangerous.                                                      
   */                                                                 
                                                                      
  if (!_System_state_Is_up(_System_state_Get()))                      
ffc175f4:	3d 20 00 00 	lis     r9,0                                   
                                                                      
extern void _wrapup_reent(struct _reent *);                           
extern void _reclaim_reent(struct _reent *);                          
                                                                      
void libc_wrapup(void)                                                
{                                                                     
ffc175f8:	90 01 00 14 	stw     r0,20(r1)                              
  /*                                                                  
   *  In case RTEMS is already down, don't do this.  It could be      
   *  dangerous.                                                      
   */                                                                 
                                                                      
  if (!_System_state_Is_up(_System_state_Get()))                      
ffc175fc:	80 09 27 74 	lwz     r0,10100(r9)                           
                                                                      
extern void _wrapup_reent(struct _reent *);                           
extern void _reclaim_reent(struct _reent *);                          
                                                                      
void libc_wrapup(void)                                                
{                                                                     
ffc17600:	93 c1 00 08 	stw     r30,8(r1)                              
  /*                                                                  
   *  In case RTEMS is already down, don't do this.  It could be      
   *  dangerous.                                                      
   */                                                                 
                                                                      
  if (!_System_state_Is_up(_System_state_Get()))                      
ffc17604:	2f 80 00 03 	cmpwi   cr7,r0,3                               
                                                                      
extern void _wrapup_reent(struct _reent *);                           
extern void _reclaim_reent(struct _reent *);                          
                                                                      
void libc_wrapup(void)                                                
{                                                                     
ffc17608:	93 e1 00 0c 	stw     r31,12(r1)                             
  /*                                                                  
   *  In case RTEMS is already down, don't do this.  It could be      
   *  dangerous.                                                      
   */                                                                 
                                                                      
  if (!_System_state_Is_up(_System_state_Get()))                      
ffc1760c:	41 9e 00 1c 	beq-    cr7,ffc17628 <libc_wrapup+0x3c>        <== ALWAYS TAKEN
   */                                                                 
                                                                      
  fclose (stdin);                                                     
  fclose (stdout);                                                    
  fclose (stderr);                                                    
}                                                                     
ffc17610:	80 01 00 14 	lwz     r0,20(r1)                              <== NOT EXECUTED
ffc17614:	83 c1 00 08 	lwz     r30,8(r1)                              <== NOT EXECUTED
ffc17618:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc1761c:	83 e1 00 0c 	lwz     r31,12(r1)                             <== NOT EXECUTED
ffc17620:	38 21 00 10 	addi    r1,r1,16                               <== NOT EXECUTED
ffc17624:	4e 80 00 20 	blr                                            <== NOT EXECUTED
  /*                                                                  
   *  This was already done if the user called exit() directly .      
  _wrapup_reent(0);                                                   
   */                                                                 
                                                                      
  if (_REENT != _global_impure_ptr) {                                 
ffc17628:	3f e0 00 00 	lis     r31,0                                  
ffc1762c:	3d 20 00 00 	lis     r9,0                                   
ffc17630:	80 1f 26 a4 	lwz     r0,9892(r31)                           
ffc17634:	83 c9 26 a8 	lwz     r30,9896(r9)                           
ffc17638:	7f 80 f0 00 	cmpw    cr7,r0,r30                             
ffc1763c:	41 9e 00 10 	beq-    cr7,ffc1764c <libc_wrapup+0x60>        
      _wrapup_reent(_global_impure_ptr);                              
ffc17640:	7f c3 f3 78 	mr      r3,r30                                 
ffc17644:	48 00 08 49 	bl      ffc17e8c <_wrapup_reent>               
      /*  Don't reclaim this one, just in case we do printfs          
       *  on the way out to ROM.                                      
       */                                                             
      _reclaim_reent(&libc_global_reent);                             
#endif                                                                
      _REENT = _global_impure_ptr;                                    
ffc17648:	93 df 26 a4 	stw     r30,9892(r31)                          
   *                                                                  
   * Should this be changed to do *all* file streams?                 
   *    _fwalk (_REENT, fclose);                                      
   */                                                                 
                                                                      
  fclose (stdin);                                                     
ffc1764c:	80 7e 00 04 	lwz     r3,4(r30)                              
ffc17650:	4b ff ac 99 	bl      ffc122e8 <fclose>                      
  fclose (stdout);                                                    
ffc17654:	81 3f 26 a4 	lwz     r9,9892(r31)                           
ffc17658:	80 69 00 08 	lwz     r3,8(r9)                               
ffc1765c:	4b ff ac 8d 	bl      ffc122e8 <fclose>                      
  fclose (stderr);                                                    
ffc17660:	81 3f 26 a4 	lwz     r9,9892(r31)                           
ffc17664:	80 69 00 0c 	lwz     r3,12(r9)                              
ffc17668:	4b ff ac 81 	bl      ffc122e8 <fclose>                      
}                                                                     
ffc1766c:	80 01 00 14 	lwz     r0,20(r1)                              
ffc17670:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc17674:	7c 08 03 a6 	mtlr    r0                                     
ffc17678:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc1767c:	38 21 00 10 	addi    r1,r1,16                               
ffc17680:	4e 80 00 20 	blr                                            
                                                                      

ffc17438 <lseek>: off_t lseek( int fd, off_t offset, int whence ) {
ffc17438:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc1743c:	7c 08 02 a6 	mflr    r0                                     
  rtems_libio_t *iop;                                                 
  off_t          old_offset;                                          
  off_t          status;                                              
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc17440:	3d 20 00 00 	lis     r9,0                                   
off_t lseek(                                                          
  int     fd,                                                         
  off_t   offset,                                                     
  int     whence                                                      
)                                                                     
{                                                                     
ffc17444:	90 01 00 1c 	stw     r0,28(r1)                              
  rtems_libio_t *iop;                                                 
  off_t          old_offset;                                          
  off_t          status;                                              
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc17448:	80 09 26 4c 	lwz     r0,9804(r9)                            
off_t lseek(                                                          
  int     fd,                                                         
  off_t   offset,                                                     
  int     whence                                                      
)                                                                     
{                                                                     
ffc1744c:	93 a1 00 0c 	stw     r29,12(r1)                             
  rtems_libio_t *iop;                                                 
  off_t          old_offset;                                          
  off_t          status;                                              
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc17450:	7f 83 00 40 	cmplw   cr7,r3,r0                              
off_t lseek(                                                          
  int     fd,                                                         
  off_t   offset,                                                     
  int     whence                                                      
)                                                                     
{                                                                     
ffc17454:	93 c1 00 10 	stw     r30,16(r1)                             
ffc17458:	93 e1 00 14 	stw     r31,20(r1)                             
  rtems_libio_t *iop;                                                 
  off_t          old_offset;                                          
  off_t          status;                                              
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc1745c:	40 9c 01 4c 	bge-    cr7,ffc175a8 <lseek+0x170>             
  iop = rtems_libio_iop( fd );                                        
ffc17460:	3d 20 00 00 	lis     r9,0                                   
ffc17464:	83 a9 27 0c 	lwz     r29,9996(r9)                           
ffc17468:	54 63 30 32 	rlwinm  r3,r3,6,0,25                           
ffc1746c:	7f bd 1a 14 	add     r29,r29,r3                             
  rtems_libio_check_is_open(iop);                                     
ffc17470:	80 1d 00 18 	lwz     r0,24(r29)                             
ffc17474:	70 09 01 00 	andi.   r9,r0,256                              
ffc17478:	41 82 01 30 	beq-    ffc175a8 <lseek+0x170>                 
  /*                                                                  
   *  Now process the lseek().                                        
   */                                                                 
                                                                      
  old_offset = iop->offset;                                           
  switch ( whence ) {                                                 
ffc1747c:	2f 87 00 01 	cmpwi   cr7,r7,1                               
                                                                      
  /*                                                                  
   *  Now process the lseek().                                        
   */                                                                 
                                                                      
  old_offset = iop->offset;                                           
ffc17480:	83 dd 00 10 	lwz     r30,16(r29)                            
ffc17484:	83 fd 00 14 	lwz     r31,20(r29)                            
  switch ( whence ) {                                                 
ffc17488:	41 9e 00 d4 	beq-    cr7,ffc1755c <lseek+0x124>             
ffc1748c:	2f 87 00 02 	cmpwi   cr7,r7,2                               
ffc17490:	41 9e 00 5c 	beq-    cr7,ffc174ec <lseek+0xb4>              
ffc17494:	2f 87 00 00 	cmpwi   cr7,r7,0                               
ffc17498:	40 9e 00 d8 	bne-    cr7,ffc17570 <lseek+0x138>             
    case SEEK_SET:                                                    
      iop->offset = offset;                                           
ffc1749c:	90 bd 00 10 	stw     r5,16(r29)                             
ffc174a0:	90 dd 00 14 	stw     r6,20(r29)                             
  /*                                                                  
   *  At this time, handlers assume iop->offset has the desired       
   *  new offset.                                                     
   */                                                                 
                                                                      
  status = (*iop->pathinfo.handlers->lseek_h)( iop, offset, whence ); 
ffc174a4:	81 3d 00 24 	lwz     r9,36(r29)                             
ffc174a8:	7f a3 eb 78 	mr      r3,r29                                 
ffc174ac:	80 09 00 14 	lwz     r0,20(r9)                              
ffc174b0:	7c 09 03 a6 	mtctr   r0                                     
ffc174b4:	4e 80 04 21 	bctrl                                          
ffc174b8:	7c 69 1b 78 	mr      r9,r3                                  
  if ( status == (off_t) -1 )                                         
ffc174bc:	2f 89 ff ff 	cmpwi   cr7,r9,-1                              
  /*                                                                  
   *  At this time, handlers assume iop->offset has the desired       
   *  new offset.                                                     
   */                                                                 
                                                                      
  status = (*iop->pathinfo.handlers->lseek_h)( iop, offset, whence ); 
ffc174c0:	7c 8a 23 78 	mr      r10,r4                                 
  if ( status == (off_t) -1 )                                         
ffc174c4:	41 9e 00 64 	beq-    cr7,ffc17528 <lseek+0xf0>              
  /*                                                                  
   *  So if the operation failed, we have to restore iop->offset.     
   */                                                                 
                                                                      
  return status;                                                      
}                                                                     
ffc174c8:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc174cc:	7d 23 4b 78 	mr      r3,r9                                  
ffc174d0:	7d 44 53 78 	mr      r4,r10                                 
ffc174d4:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc174d8:	7c 08 03 a6 	mtlr    r0                                     
ffc174dc:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc174e0:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc174e4:	38 21 00 18 	addi    r1,r1,24                               
ffc174e8:	4e 80 00 20 	blr                                            
    case SEEK_CUR:                                                    
      iop->offset += offset;                                          
      break;                                                          
                                                                      
    case SEEK_END:                                                    
      iop->offset = iop->size + offset;                               
ffc174ec:	81 3d 00 08 	lwz     r9,8(r29)                              
  /*                                                                  
   *  At this time, handlers assume iop->offset has the desired       
   *  new offset.                                                     
   */                                                                 
                                                                      
  status = (*iop->pathinfo.handlers->lseek_h)( iop, offset, whence ); 
ffc174f0:	7f a3 eb 78 	mr      r3,r29                                 
    case SEEK_CUR:                                                    
      iop->offset += offset;                                          
      break;                                                          
                                                                      
    case SEEK_END:                                                    
      iop->offset = iop->size + offset;                               
ffc174f4:	81 5d 00 0c 	lwz     r10,12(r29)                            
ffc174f8:	7d 4a 30 14 	addc    r10,r10,r6                             
ffc174fc:	7d 29 29 14 	adde    r9,r9,r5                               
ffc17500:	91 3d 00 10 	stw     r9,16(r29)                             
  /*                                                                  
   *  At this time, handlers assume iop->offset has the desired       
   *  new offset.                                                     
   */                                                                 
                                                                      
  status = (*iop->pathinfo.handlers->lseek_h)( iop, offset, whence ); 
ffc17504:	81 3d 00 24 	lwz     r9,36(r29)                             
    case SEEK_CUR:                                                    
      iop->offset += offset;                                          
      break;                                                          
                                                                      
    case SEEK_END:                                                    
      iop->offset = iop->size + offset;                               
ffc17508:	91 5d 00 14 	stw     r10,20(r29)                            
  /*                                                                  
   *  At this time, handlers assume iop->offset has the desired       
   *  new offset.                                                     
   */                                                                 
                                                                      
  status = (*iop->pathinfo.handlers->lseek_h)( iop, offset, whence ); 
ffc1750c:	80 09 00 14 	lwz     r0,20(r9)                              
ffc17510:	7c 09 03 a6 	mtctr   r0                                     
ffc17514:	4e 80 04 21 	bctrl                                          
ffc17518:	7c 69 1b 78 	mr      r9,r3                                  
  if ( status == (off_t) -1 )                                         
ffc1751c:	2f 89 ff ff 	cmpwi   cr7,r9,-1                              
  /*                                                                  
   *  At this time, handlers assume iop->offset has the desired       
   *  new offset.                                                     
   */                                                                 
                                                                      
  status = (*iop->pathinfo.handlers->lseek_h)( iop, offset, whence ); 
ffc17520:	7c 8a 23 78 	mr      r10,r4                                 
  if ( status == (off_t) -1 )                                         
ffc17524:	40 9e ff a4 	bne+    cr7,ffc174c8 <lseek+0x90>              
ffc17528:	2f 84 ff ff 	cmpwi   cr7,r4,-1                              
ffc1752c:	40 9e ff 9c 	bne+    cr7,ffc174c8 <lseek+0x90>              <== NEVER TAKEN
  /*                                                                  
   *  So if the operation failed, we have to restore iop->offset.     
   */                                                                 
                                                                      
  return status;                                                      
}                                                                     
ffc17530:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc17534:	7d 23 4b 78 	mr      r3,r9                                  
   *  new offset.                                                     
   */                                                                 
                                                                      
  status = (*iop->pathinfo.handlers->lseek_h)( iop, offset, whence ); 
  if ( status == (off_t) -1 )                                         
    iop->offset = old_offset;                                         
ffc17538:	93 dd 00 10 	stw     r30,16(r29)                            
  /*                                                                  
   *  So if the operation failed, we have to restore iop->offset.     
   */                                                                 
                                                                      
  return status;                                                      
}                                                                     
ffc1753c:	7d 44 53 78 	mr      r4,r10                                 
ffc17540:	7c 08 03 a6 	mtlr    r0                                     
   *  new offset.                                                     
   */                                                                 
                                                                      
  status = (*iop->pathinfo.handlers->lseek_h)( iop, offset, whence ); 
  if ( status == (off_t) -1 )                                         
    iop->offset = old_offset;                                         
ffc17544:	93 fd 00 14 	stw     r31,20(r29)                            
  /*                                                                  
   *  So if the operation failed, we have to restore iop->offset.     
   */                                                                 
                                                                      
  return status;                                                      
}                                                                     
ffc17548:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc1754c:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc17550:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc17554:	38 21 00 18 	addi    r1,r1,24                               
ffc17558:	4e 80 00 20 	blr                                            
    case SEEK_SET:                                                    
      iop->offset = offset;                                           
      break;                                                          
                                                                      
    case SEEK_CUR:                                                    
      iop->offset += offset;                                          
ffc1755c:	7d 46 f8 14 	addc    r10,r6,r31                             
ffc17560:	7d 25 f1 14 	adde    r9,r5,r30                              
ffc17564:	91 3d 00 10 	stw     r9,16(r29)                             
ffc17568:	91 5d 00 14 	stw     r10,20(r29)                            
      break;                                                          
ffc1756c:	4b ff ff 38 	b       ffc174a4 <lseek+0x6c>                  
    case SEEK_END:                                                    
      iop->offset = iop->size + offset;                               
      break;                                                          
                                                                      
    default:                                                          
      rtems_set_errno_and_return_minus_one( EINVAL );                 
ffc17570:	4b ff ab d9 	bl      ffc12148 <__errno>                     
ffc17574:	38 00 00 16 	li      r0,22                                  
ffc17578:	90 03 00 00 	stw     r0,0(r3)                               
ffc1757c:	39 20 ff ff 	li      r9,-1                                  
ffc17580:	39 40 ff ff 	li      r10,-1                                 
  /*                                                                  
   *  So if the operation failed, we have to restore iop->offset.     
   */                                                                 
                                                                      
  return status;                                                      
}                                                                     
ffc17584:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc17588:	7d 23 4b 78 	mr      r3,r9                                  
ffc1758c:	7d 44 53 78 	mr      r4,r10                                 
ffc17590:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc17594:	7c 08 03 a6 	mtlr    r0                                     
ffc17598:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc1759c:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc175a0:	38 21 00 18 	addi    r1,r1,24                               
ffc175a4:	4e 80 00 20 	blr                                            
  off_t          old_offset;                                          
  off_t          status;                                              
                                                                      
  rtems_libio_check_fd( fd );                                         
  iop = rtems_libio_iop( fd );                                        
  rtems_libio_check_is_open(iop);                                     
ffc175a8:	4b ff ab a1 	bl      ffc12148 <__errno>                     
ffc175ac:	38 00 00 09 	li      r0,9                                   
ffc175b0:	90 03 00 00 	stw     r0,0(r3)                               
ffc175b4:	39 20 ff ff 	li      r9,-1                                  
ffc175b8:	39 40 ff ff 	li      r10,-1                                 
ffc175bc:	4b ff ff 0c 	b       ffc174c8 <lseek+0x90>                  
                                                                      

ffc05098 <malloc>: #include "malloc_p.h" void *malloc( size_t size ) {
ffc05098:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc0509c:	7c 08 02 a6 	mflr    r0                                     
  void        *return_this;                                           
                                                                      
  MSBUMP(malloc_calls, 1);                                            
ffc050a0:	3d 20 00 00 	lis     r9,0                                   
#include "malloc_p.h"                                                 
                                                                      
void *malloc(                                                         
  size_t  size                                                        
)                                                                     
{                                                                     
ffc050a4:	90 01 00 14 	stw     r0,20(r1)                              
  void        *return_this;                                           
                                                                      
  MSBUMP(malloc_calls, 1);                                            
ffc050a8:	39 29 2a 48 	addi    r9,r9,10824                            
ffc050ac:	81 69 00 04 	lwz     r11,4(r9)                              
#include "malloc_p.h"                                                 
                                                                      
void *malloc(                                                         
  size_t  size                                                        
)                                                                     
{                                                                     
ffc050b0:	93 c1 00 08 	stw     r30,8(r1)                              
                                                                      
  /*                                                                  
   * Validate the parameters                                          
   */                                                                 
  if ( !size )                                                        
    return (void *) 0;                                                
ffc050b4:	3b c0 00 00 	li      r30,0                                  
  size_t  size                                                        
)                                                                     
{                                                                     
  void        *return_this;                                           
                                                                      
  MSBUMP(malloc_calls, 1);                                            
ffc050b8:	39 6b 00 01 	addi    r11,r11,1                              
#include "malloc_p.h"                                                 
                                                                      
void *malloc(                                                         
  size_t  size                                                        
)                                                                     
{                                                                     
ffc050bc:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc050c0:	7c 7f 1b 78 	mr      r31,r3                                 
  void        *return_this;                                           
                                                                      
  MSBUMP(malloc_calls, 1);                                            
ffc050c4:	91 69 00 04 	stw     r11,4(r9)                              
                                                                      
  /*                                                                  
   *  If some free's have been deferred, then do them now.            
   */                                                                 
  malloc_deferred_frees_process();                                    
ffc050c8:	4b ff fe 49 	bl      ffc04f10 <malloc_deferred_frees_process>
                                                                      
  /*                                                                  
   * Validate the parameters                                          
   */                                                                 
  if ( !size )                                                        
ffc050cc:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc050d0:	41 9e 00 74 	beq-    cr7,ffc05144 <malloc+0xac>             
    return (void *) 0;                                                
                                                                      
  /*                                                                  
   *  Do not attempt to allocate memory if not in correct system state.
   */                                                                 
  if ( _System_state_Is_up(_System_state_Get()) &&                    
ffc050d4:	3d 20 00 00 	lis     r9,0                                   
ffc050d8:	80 09 27 74 	lwz     r0,10100(r9)                           
ffc050dc:	2f 80 00 03 	cmpwi   cr7,r0,3                               
ffc050e0:	41 9e 00 b0 	beq-    cr7,ffc05190 <malloc+0xf8>             
RTEMS_INLINE_ROUTINE void *_Protected_heap_Allocate(                  
  Heap_Control *heap,                                                 
  uintptr_t size                                                      
)                                                                     
{                                                                     
  return _Protected_heap_Allocate_aligned_with_boundary( heap, size, 0, 0 );
ffc050e4:	3d 20 00 00 	lis     r9,0                                   
ffc050e8:	80 69 26 5c 	lwz     r3,9820(r9)                            
ffc050ec:	7f e4 fb 78 	mr      r4,r31                                 
ffc050f0:	38 a0 00 00 	li      r5,0                                   
ffc050f4:	38 c0 00 00 	li      r6,0                                   
ffc050f8:	48 00 60 cd 	bl      ffc0b1c4 <_Protected_heap_Allocate_aligned_with_boundary>
   * If this fails then return a NULL pointer.                        
   */                                                                 
                                                                      
  return_this = _Protected_heap_Allocate( RTEMS_Malloc_Heap, size );  
                                                                      
  if ( !return_this ) {                                               
ffc050fc:	7c 7e 1b 79 	mr.     r30,r3                                 
ffc05100:	41 82 00 60 	beq-    ffc05160 <malloc+0xc8>                 
  }                                                                   
                                                                      
  /*                                                                  
   *  If the user wants us to dirty the allocated memory, then do it. 
   */                                                                 
  if ( rtems_malloc_dirty_helper )                                    
ffc05104:	3d 20 00 00 	lis     r9,0                                   
ffc05108:	80 09 26 d0 	lwz     r0,9936(r9)                            
ffc0510c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc05110:	41 9e 00 14 	beq-    cr7,ffc05124 <malloc+0x8c>             
    (*rtems_malloc_dirty_helper)( return_this, size );                
ffc05114:	7f c3 f3 78 	mr      r3,r30                                 
ffc05118:	7c 09 03 a6 	mtctr   r0                                     
ffc0511c:	7f e4 fb 78 	mr      r4,r31                                 
ffc05120:	4e 80 04 21 	bctrl                                          
                                                                      
  /*                                                                  
   *  If configured, update the statistics                            
   */                                                                 
  if ( rtems_malloc_statistics_helpers )                              
ffc05124:	3d 20 00 00 	lis     r9,0                                   
ffc05128:	81 29 26 c8 	lwz     r9,9928(r9)                            
ffc0512c:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc05130:	41 9e 00 14 	beq-    cr7,ffc05144 <malloc+0xac>             
    (*rtems_malloc_statistics_helpers->at_malloc)(return_this);       
ffc05134:	80 09 00 04 	lwz     r0,4(r9)                               
ffc05138:	7f c3 f3 78 	mr      r3,r30                                 
ffc0513c:	7c 09 03 a6 	mtctr   r0                                     
ffc05140:	4e 80 04 21 	bctrl                                          
                                                                      
  return return_this;                                                 
}                                                                     
ffc05144:	80 01 00 14 	lwz     r0,20(r1)                              
ffc05148:	7f c3 f3 78 	mr      r3,r30                                 
ffc0514c:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc05150:	7c 08 03 a6 	mtlr    r0                                     
ffc05154:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc05158:	38 21 00 10 	addi    r1,r1,16                               
ffc0515c:	4e 80 00 20 	blr                                            
   */                                                                 
                                                                      
  return_this = _Protected_heap_Allocate( RTEMS_Malloc_Heap, size );  
                                                                      
  if ( !return_this ) {                                               
    if (rtems_malloc_sbrk_helpers)                                    
ffc05160:	3d 20 00 00 	lis     r9,0                                   
ffc05164:	81 29 26 cc 	lwz     r9,9932(r9)                            
ffc05168:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0516c:	41 9e 00 34 	beq-    cr7,ffc051a0 <malloc+0x108>            
      return_this = (*rtems_malloc_sbrk_helpers->extend)( size );     
ffc05170:	80 09 00 04 	lwz     r0,4(r9)                               
ffc05174:	7f e3 fb 78 	mr      r3,r31                                 
ffc05178:	7c 09 03 a6 	mtctr   r0                                     
ffc0517c:	4e 80 04 21 	bctrl                                          
    if ( !return_this ) {                                             
ffc05180:	2c 03 00 00 	cmpwi   r3,0                                   
ffc05184:	41 82 00 1c 	beq-    ffc051a0 <malloc+0x108>                <== ALWAYS TAKEN
ffc05188:	7c 7e 1b 78 	mr      r30,r3                                 <== NOT EXECUTED
ffc0518c:	4b ff ff 78 	b       ffc05104 <malloc+0x6c>                 <== NOT EXECUTED
                                                                      
  /*                                                                  
   *  Do not attempt to allocate memory if not in correct system state.
   */                                                                 
  if ( _System_state_Is_up(_System_state_Get()) &&                    
       !malloc_is_system_state_OK() )                                 
ffc05190:	4b ff fd 39 	bl      ffc04ec8 <malloc_is_system_state_OK>   
    return (void *) 0;                                                
                                                                      
  /*                                                                  
   *  Do not attempt to allocate memory if not in correct system state.
   */                                                                 
  if ( _System_state_Is_up(_System_state_Get()) &&                    
ffc05194:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05198:	40 9e ff 4c 	bne+    cr7,ffc050e4 <malloc+0x4c>             <== ALWAYS TAKEN
ffc0519c:	4b ff ff a8 	b       ffc05144 <malloc+0xac>                 <== NOT EXECUTED
                                                                      
  if ( !return_this ) {                                               
    if (rtems_malloc_sbrk_helpers)                                    
      return_this = (*rtems_malloc_sbrk_helpers->extend)( size );     
    if ( !return_this ) {                                             
      errno = ENOMEM;                                                 
ffc051a0:	48 00 cf a9 	bl      ffc12148 <__errno>                     
ffc051a4:	38 00 00 0c 	li      r0,12                                  
ffc051a8:	90 03 00 00 	stw     r0,0(r3)                               
      return (void *) 0;                                              
ffc051ac:	4b ff ff 98 	b       ffc05144 <malloc+0xac>                 
                                                                      

ffc054c4 <malloc_sbrk_extend_and_allocate>: } void *malloc_sbrk_extend_and_allocate( size_t size ) {
ffc054c4:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc054c8:	7c 08 02 a6 	mflr    r0                                     
   *  Round to the "requested sbrk amount" so hopefully we won't have 
   *  to grow again for a while.  This effectively does sbrk() calls  
   *  in "page" amounts.                                              
   */                                                                 
                                                                      
  sbrk_amount = RTEMS_Malloc_Sbrk_amount;                             
ffc054cc:	3d 20 00 00 	lis     r9,0                                   
}                                                                     
                                                                      
void *malloc_sbrk_extend_and_allocate(                                
  size_t size                                                         
)                                                                     
{                                                                     
ffc054d0:	90 01 00 1c 	stw     r0,28(r1)                              
   *  Round to the "requested sbrk amount" so hopefully we won't have 
   *  to grow again for a while.  This effectively does sbrk() calls  
   *  in "page" amounts.                                              
   */                                                                 
                                                                      
  sbrk_amount = RTEMS_Malloc_Sbrk_amount;                             
ffc054d4:	80 09 27 20 	lwz     r0,10016(r9)                           
}                                                                     
                                                                      
void *malloc_sbrk_extend_and_allocate(                                
  size_t size                                                         
)                                                                     
{                                                                     
ffc054d8:	93 c1 00 10 	stw     r30,16(r1)                             
ffc054dc:	7c 7e 1b 78 	mr      r30,r3                                 
   *  in "page" amounts.                                              
   */                                                                 
                                                                      
  sbrk_amount = RTEMS_Malloc_Sbrk_amount;                             
                                                                      
  if ( sbrk_amount == 0 )                                             
ffc054e0:	2f 80 00 00 	cmpwi   cr7,r0,0                               
}                                                                     
                                                                      
void *malloc_sbrk_extend_and_allocate(                                
  size_t size                                                         
)                                                                     
{                                                                     
ffc054e4:	93 e1 00 14 	stw     r31,20(r1)                             
   */                                                                 
                                                                      
  sbrk_amount = RTEMS_Malloc_Sbrk_amount;                             
                                                                      
  if ( sbrk_amount == 0 )                                             
    return (void *) 0;                                                
ffc054e8:	3b e0 00 00 	li      r31,0                                  
}                                                                     
                                                                      
void *malloc_sbrk_extend_and_allocate(                                
  size_t size                                                         
)                                                                     
{                                                                     
ffc054ec:	93 81 00 08 	stw     r28,8(r1)                              
ffc054f0:	93 a1 00 0c 	stw     r29,12(r1)                             
   *  in "page" amounts.                                              
   */                                                                 
                                                                      
  sbrk_amount = RTEMS_Malloc_Sbrk_amount;                             
                                                                      
  if ( sbrk_amount == 0 )                                             
ffc054f4:	40 9e 00 28 	bne-    cr7,ffc0551c <malloc_sbrk_extend_and_allocate+0x58><== ALWAYS TAKEN
                                                                      
  MSBUMP(space_available, the_size);                                  
                                                                      
  return_this = _Protected_heap_Allocate( RTEMS_Malloc_Heap, size );  
  return return_this;                                                 
}                                                                     
ffc054f8:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc054fc:	7f e3 fb 78 	mr      r3,r31                                 
ffc05500:	83 81 00 08 	lwz     r28,8(r1)                              
ffc05504:	7c 08 03 a6 	mtlr    r0                                     
ffc05508:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0550c:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc05510:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc05514:	38 21 00 18 	addi    r1,r1,24                               
ffc05518:	4e 80 00 20 	blr                                            
  sbrk_amount = RTEMS_Malloc_Sbrk_amount;                             
                                                                      
  if ( sbrk_amount == 0 )                                             
    return (void *) 0;                                                
                                                                      
  the_size = ((size + sbrk_amount) / sbrk_amount * sbrk_amount);      
ffc0551c:	7f a3 02 14 	add     r29,r3,r0                              
ffc05520:	7f bd 03 96 	divwu   r29,r29,r0                             
ffc05524:	7f bd 01 d6 	mullw   r29,r29,r0                             
                                                                      
  starting_address = (void *) sbrk(the_size);                         
ffc05528:	7f a3 eb 78 	mr      r3,r29                                 
ffc0552c:	4b ff af 91 	bl      ffc004bc <sbrk>                        
  if ( starting_address == (void*) -1 )                               
ffc05530:	2f 83 ff ff 	cmpwi   cr7,r3,-1                              
  if ( sbrk_amount == 0 )                                             
    return (void *) 0;                                                
                                                                      
  the_size = ((size + sbrk_amount) / sbrk_amount * sbrk_amount);      
                                                                      
  starting_address = (void *) sbrk(the_size);                         
ffc05534:	7c 64 1b 78 	mr      r4,r3                                  
  if ( starting_address == (void*) -1 )                               
ffc05538:	41 be ff c0 	beq-    cr7,ffc054f8 <malloc_sbrk_extend_and_allocate+0x34>
    return (void *) 0;                                                
                                                                      
  if ( !_Protected_heap_Extend(                                       
ffc0553c:	3f 80 00 00 	lis     r28,0                                  
ffc05540:	80 7c 26 5c 	lwz     r3,9820(r28)                           
ffc05544:	7f a5 eb 78 	mr      r5,r29                                 
ffc05548:	48 00 61 35 	bl      ffc0b67c <_Protected_heap_Extend>      
ffc0554c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05550:	41 9e 00 30 	beq-    cr7,ffc05580 <malloc_sbrk_extend_and_allocate+0xbc>
    sbrk(-the_size);                                                  
    errno = ENOMEM;                                                   
    return (void *) 0;                                                
  }                                                                   
                                                                      
  MSBUMP(space_available, the_size);                                  
ffc05554:	3d 20 00 00 	lis     r9,0                                   
ffc05558:	80 7c 26 5c 	lwz     r3,9820(r28)                           
ffc0555c:	80 09 2b a8 	lwz     r0,11176(r9)                           
ffc05560:	7f c4 f3 78 	mr      r4,r30                                 
ffc05564:	38 a0 00 00 	li      r5,0                                   
ffc05568:	7c 1d 02 14 	add     r0,r29,r0                              
ffc0556c:	38 c0 00 00 	li      r6,0                                   
ffc05570:	90 09 2b a8 	stw     r0,11176(r9)                           
ffc05574:	48 00 60 9d 	bl      ffc0b610 <_Protected_heap_Allocate_aligned_with_boundary>
ffc05578:	7c 7f 1b 78 	mr      r31,r3                                 
                                                                      
  return_this = _Protected_heap_Allocate( RTEMS_Malloc_Heap, size );  
  return return_this;                                                 
ffc0557c:	4b ff ff 7c 	b       ffc054f8 <malloc_sbrk_extend_and_allocate+0x34>
  if ( starting_address == (void*) -1 )                               
    return (void *) 0;                                                
                                                                      
  if ( !_Protected_heap_Extend(                                       
          RTEMS_Malloc_Heap, starting_address, the_size) ) {          
    sbrk(-the_size);                                                  
ffc05580:	7c 7d 00 d0 	neg     r3,r29                                 
ffc05584:	4b ff af 39 	bl      ffc004bc <sbrk>                        
    errno = ENOMEM;                                                   
ffc05588:	48 00 d4 4d 	bl      ffc129d4 <__errno>                     
ffc0558c:	38 00 00 0c 	li      r0,12                                  
ffc05590:	90 03 00 00 	stw     r0,0(r3)                               
    return (void *) 0;                                                
ffc05594:	4b ff ff 64 	b       ffc054f8 <malloc_sbrk_extend_and_allocate+0x34>
                                                                      

ffc1093c <memfile_free_blocks_in_table>: */ void memfile_free_blocks_in_table( block_p **block_table, int entries ) {
ffc1093c:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc10940:	7c 08 02 a6 	mflr    r0                                     
ffc10944:	93 a1 00 14 	stw     r29,20(r1)                             
  /*                                                                  
   *  Now go through all the slots in the table and free the memory.  
   */                                                                 
  b = *block_table;                                                   
                                                                      
  for ( i=0 ; i<entries ; i++ ) {                                     
ffc10948:	7c 9d 23 79 	mr.     r29,r4                                 
 */                                                                   
void memfile_free_blocks_in_table(                                    
  block_p **block_table,                                              
  int       entries                                                   
)                                                                     
{                                                                     
ffc1094c:	90 01 00 24 	stw     r0,36(r1)                              
ffc10950:	93 61 00 0c 	stw     r27,12(r1)                             
ffc10954:	7c 7b 1b 78 	mr      r27,r3                                 
ffc10958:	93 81 00 10 	stw     r28,16(r1)                             
ffc1095c:	93 c1 00 18 	stw     r30,24(r1)                             
ffc10960:	93 e1 00 1c 	stw     r31,28(r1)                             
  IMFS_assert( block_table );                                         
                                                                      
  /*                                                                  
   *  Now go through all the slots in the table and free the memory.  
   */                                                                 
  b = *block_table;                                                   
ffc10964:	80 63 00 00 	lwz     r3,0(r3)                               
                                                                      
  for ( i=0 ; i<entries ; i++ ) {                                     
ffc10968:	40 81 00 34 	ble-    ffc1099c <memfile_free_blocks_in_table+0x60><== NEVER TAKEN
 *  memfile_free_blocks_in_table                                      
 *                                                                    
 *  This is a support routine for IMFS_memfile_remove.  It frees all the
 *  blocks in one of the indirection tables.                          
 */                                                                   
void memfile_free_blocks_in_table(                                    
ffc1096c:	3b c3 ff fc 	addi    r30,r3,-4                              
  /*                                                                  
   *  Now go through all the slots in the table and free the memory.  
   */                                                                 
  b = *block_table;                                                   
                                                                      
  for ( i=0 ; i<entries ; i++ ) {                                     
ffc10970:	3b e0 00 00 	li      r31,0                                  
    if ( b[i] ) {                                                     
      memfile_free_block( b[i] );                                     
      b[i] = 0;                                                       
ffc10974:	3b 80 00 00 	li      r28,0                                  
   *  Now go through all the slots in the table and free the memory.  
   */                                                                 
  b = *block_table;                                                   
                                                                      
  for ( i=0 ; i<entries ; i++ ) {                                     
    if ( b[i] ) {                                                     
ffc10978:	84 7e 00 04 	lwzu    r3,4(r30)                              
  /*                                                                  
   *  Now go through all the slots in the table and free the memory.  
   */                                                                 
  b = *block_table;                                                   
                                                                      
  for ( i=0 ; i<entries ; i++ ) {                                     
ffc1097c:	3b ff 00 01 	addi    r31,r31,1                              
    if ( b[i] ) {                                                     
ffc10980:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc10984:	41 9e 00 0c 	beq-    cr7,ffc10990 <memfile_free_blocks_in_table+0x54>
      memfile_free_block( b[i] );                                     
ffc10988:	4b ff ff 85 	bl      ffc1090c <memfile_free_block>          
      b[i] = 0;                                                       
ffc1098c:	93 9e 00 00 	stw     r28,0(r30)                             
  /*                                                                  
   *  Now go through all the slots in the table and free the memory.  
   */                                                                 
  b = *block_table;                                                   
                                                                      
  for ( i=0 ; i<entries ; i++ ) {                                     
ffc10990:	7f 9d f8 00 	cmpw    cr7,r29,r31                            
ffc10994:	41 9d ff e4 	bgt+    cr7,ffc10978 <memfile_free_blocks_in_table+0x3c>
ffc10998:	80 7b 00 00 	lwz     r3,0(r27)                              
                                                                      
  /*                                                                  
   *  Now that all the blocks in the block table are free, we can     
   *  free the block table itself.                                    
   */                                                                 
  memfile_free_block( *block_table );                                 
ffc1099c:	4b ff ff 71 	bl      ffc1090c <memfile_free_block>          
  *block_table = 0;                                                   
ffc109a0:	38 00 00 00 	li      r0,0                                   
ffc109a4:	90 1b 00 00 	stw     r0,0(r27)                              
}                                                                     
ffc109a8:	80 01 00 24 	lwz     r0,36(r1)                              
ffc109ac:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc109b0:	7c 08 03 a6 	mtlr    r0                                     
ffc109b4:	83 81 00 10 	lwz     r28,16(r1)                             
ffc109b8:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc109bc:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc109c0:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc109c4:	38 21 00 20 	addi    r1,r1,32                               
ffc109c8:	4e 80 00 20 	blr                                            
                                                                      

ffc1111c <memfile_ftruncate>: */ int memfile_ftruncate( rtems_libio_t *iop, rtems_off64_t length ) {
ffc1111c:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc11120:	7c 08 02 a6 	mflr    r0                                     
ffc11124:	7c 69 1b 78 	mr      r9,r3                                  
ffc11128:	90 01 00 24 	stw     r0,36(r1)                              
ffc1112c:	93 e1 00 1c 	stw     r31,28(r1)                             
  IMFS_jnode_t   *the_jnode;                                          
                                                                      
  the_jnode = iop->pathinfo.node_access;                              
ffc11130:	83 e3 00 1c 	lwz     r31,28(r3)                             
   *  POSIX 1003.1b does not specify what happens if you truncate a file
   *  and the new length is greater than the current size.  We treat this
   *  as an extend operation.                                         
   */                                                                 
                                                                      
  if ( length > the_jnode->info.file.size )                           
ffc11134:	80 1f 00 50 	lwz     r0,80(r31)                             
ffc11138:	7f 80 28 00 	cmpw    cr7,r0,r5                              
ffc1113c:	41 9c 00 50 	blt-    cr7,ffc1118c <memfile_ftruncate+0x70>  <== NEVER TAKEN
ffc11140:	41 9e 00 40 	beq-    cr7,ffc11180 <memfile_ftruncate+0x64>  <== ALWAYS TAKEN
  /*                                                                  
   *  The in-memory files do not currently reclaim memory until the file is
   *  deleted.  So we leave the previously allocated blocks in place for
   *  future use and just set the length.                             
   */                                                                 
  the_jnode->info.file.size = length;                                 
ffc11144:	90 bf 00 50 	stw     r5,80(r31)                             
  iop->size = the_jnode->info.file.size;                              
                                                                      
  IMFS_update_atime( the_jnode );                                     
ffc11148:	38 61 00 08 	addi    r3,r1,8                                
ffc1114c:	38 80 00 00 	li      r4,0                                   
  /*                                                                  
   *  The in-memory files do not currently reclaim memory until the file is
   *  deleted.  So we leave the previously allocated blocks in place for
   *  future use and just set the length.                             
   */                                                                 
  the_jnode->info.file.size = length;                                 
ffc11150:	90 df 00 54 	stw     r6,84(r31)                             
  iop->size = the_jnode->info.file.size;                              
ffc11154:	90 a9 00 08 	stw     r5,8(r9)                               
ffc11158:	90 c9 00 0c 	stw     r6,12(r9)                              
                                                                      
  IMFS_update_atime( the_jnode );                                     
ffc1115c:	4b ff 3b e9 	bl      ffc04d44 <gettimeofday>                
ffc11160:	80 01 00 08 	lwz     r0,8(r1)                               
                                                                      
  return 0;                                                           
ffc11164:	38 60 00 00 	li      r3,0                                   
   *  future use and just set the length.                             
   */                                                                 
  the_jnode->info.file.size = length;                                 
  iop->size = the_jnode->info.file.size;                              
                                                                      
  IMFS_update_atime( the_jnode );                                     
ffc11168:	90 1f 00 40 	stw     r0,64(r31)                             
                                                                      
  return 0;                                                           
}                                                                     
ffc1116c:	80 01 00 24 	lwz     r0,36(r1)                              
ffc11170:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc11174:	38 21 00 20 	addi    r1,r1,32                               
ffc11178:	7c 08 03 a6 	mtlr    r0                                     
ffc1117c:	4e 80 00 20 	blr                                            
   *  POSIX 1003.1b does not specify what happens if you truncate a file
   *  and the new length is greater than the current size.  We treat this
   *  as an extend operation.                                         
   */                                                                 
                                                                      
  if ( length > the_jnode->info.file.size )                           
ffc11180:	80 1f 00 54 	lwz     r0,84(r31)                             
ffc11184:	7f 80 30 40 	cmplw   cr7,r0,r6                              
ffc11188:	40 9c ff bc 	bge+    cr7,ffc11144 <memfile_ftruncate+0x28>  
    return IMFS_memfile_extend( the_jnode, length );                  
ffc1118c:	7f e3 fb 78 	mr      r3,r31                                 
ffc11190:	4b ff fa 25 	bl      ffc10bb4 <IMFS_memfile_extend>         
  iop->size = the_jnode->info.file.size;                              
                                                                      
  IMFS_update_atime( the_jnode );                                     
                                                                      
  return 0;                                                           
}                                                                     
ffc11194:	80 01 00 24 	lwz     r0,36(r1)                              
ffc11198:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc1119c:	38 21 00 20 	addi    r1,r1,32                               
ffc111a0:	7c 08 03 a6 	mtlr    r0                                     
ffc111a4:	4e 80 00 20 	blr                                            
                                                                      

ffc111a8 <memfile_lseek>: rtems_off64_t memfile_lseek( rtems_libio_t *iop, rtems_off64_t offset, int whence ) {
ffc111a8:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc111ac:	7c 08 02 a6 	mflr    r0                                     
ffc111b0:	90 01 00 14 	stw     r0,20(r1)                              
ffc111b4:	93 c1 00 08 	stw     r30,8(r1)                              
  IMFS_jnode_t   *the_jnode;                                          
                                                                      
  the_jnode = iop->pathinfo.node_access;                              
ffc111b8:	83 c3 00 1c 	lwz     r30,28(r3)                             
rtems_off64_t memfile_lseek(                                          
  rtems_libio_t   *iop,                                               
  rtems_off64_t    offset,                                            
  int              whence                                             
)                                                                     
{                                                                     
ffc111bc:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc111c0:	7c 7f 1b 78 	mr      r31,r3                                 
  IMFS_jnode_t   *the_jnode;                                          
                                                                      
  the_jnode = iop->pathinfo.node_access;                              
                                                                      
  if (the_jnode->type == IMFS_LINEAR_FILE) {                          
ffc111c4:	80 1e 00 4c 	lwz     r0,76(r30)                             
ffc111c8:	2f 80 00 06 	cmpwi   cr7,r0,6                               
ffc111cc:	41 9e 00 54 	beq-    cr7,ffc11220 <memfile_lseek+0x78>      
    if (iop->offset > the_jnode->info.linearfile.size)                
      iop->offset = the_jnode->info.linearfile.size;                  
  }                                                                   
  else {  /* Must be a block file (IMFS_MEMORY_FILE). */              
    if (IMFS_memfile_extend( the_jnode, iop->offset ))                
ffc111d0:	80 a3 00 10 	lwz     r5,16(r3)                              
ffc111d4:	80 c3 00 14 	lwz     r6,20(r3)                              
ffc111d8:	7f c3 f3 78 	mr      r3,r30                                 
ffc111dc:	4b ff f9 d9 	bl      ffc10bb4 <IMFS_memfile_extend>         
ffc111e0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc111e4:	40 9e 00 90 	bne-    cr7,ffc11274 <memfile_lseek+0xcc>      
      rtems_set_errno_and_return_minus_one( ENOSPC );                 
                                                                      
    iop->size = the_jnode->info.file.size;                            
ffc111e8:	81 7e 00 50 	lwz     r11,80(r30)                            
ffc111ec:	81 9e 00 54 	lwz     r12,84(r30)                            
ffc111f0:	81 3f 00 10 	lwz     r9,16(r31)                             
ffc111f4:	81 5f 00 14 	lwz     r10,20(r31)                            
ffc111f8:	91 7f 00 08 	stw     r11,8(r31)                             
ffc111fc:	91 9f 00 0c 	stw     r12,12(r31)                            
  }                                                                   
  return iop->offset;                                                 
}                                                                     
ffc11200:	80 01 00 14 	lwz     r0,20(r1)                              
ffc11204:	7d 23 4b 78 	mr      r3,r9                                  
ffc11208:	7d 44 53 78 	mr      r4,r10                                 
ffc1120c:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc11210:	7c 08 03 a6 	mtlr    r0                                     
ffc11214:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc11218:	38 21 00 10 	addi    r1,r1,16                               
ffc1121c:	4e 80 00 20 	blr                                            
  IMFS_jnode_t   *the_jnode;                                          
                                                                      
  the_jnode = iop->pathinfo.node_access;                              
                                                                      
  if (the_jnode->type == IMFS_LINEAR_FILE) {                          
    if (iop->offset > the_jnode->info.linearfile.size)                
ffc11220:	81 23 00 10 	lwz     r9,16(r3)                              
ffc11224:	80 1e 00 50 	lwz     r0,80(r30)                             
ffc11228:	81 43 00 14 	lwz     r10,20(r3)                             
ffc1122c:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc11230:	81 7e 00 54 	lwz     r11,84(r30)                            
ffc11234:	41 9d 00 10 	bgt-    cr7,ffc11244 <memfile_lseek+0x9c>      <== NEVER TAKEN
ffc11238:	40 be ff c8 	bne-    cr7,ffc11200 <memfile_lseek+0x58>      <== NEVER TAKEN
ffc1123c:	7f 8a 58 40 	cmplw   cr7,r10,r11                            
ffc11240:	40 bd ff c0 	ble-    cr7,ffc11200 <memfile_lseek+0x58>      <== ALWAYS TAKEN
      iop->offset = the_jnode->info.linearfile.size;                  
ffc11244:	7c 09 03 78 	mr      r9,r0                                  <== NOT EXECUTED
ffc11248:	90 1f 00 10 	stw     r0,16(r31)                             <== NOT EXECUTED
ffc1124c:	7d 6a 5b 78 	mr      r10,r11                                <== NOT EXECUTED
      rtems_set_errno_and_return_minus_one( ENOSPC );                 
                                                                      
    iop->size = the_jnode->info.file.size;                            
  }                                                                   
  return iop->offset;                                                 
}                                                                     
ffc11250:	80 01 00 14 	lwz     r0,20(r1)                              <== NOT EXECUTED
ffc11254:	7d 23 4b 78 	mr      r3,r9                                  <== NOT EXECUTED
                                                                      
  the_jnode = iop->pathinfo.node_access;                              
                                                                      
  if (the_jnode->type == IMFS_LINEAR_FILE) {                          
    if (iop->offset > the_jnode->info.linearfile.size)                
      iop->offset = the_jnode->info.linearfile.size;                  
ffc11258:	91 7f 00 14 	stw     r11,20(r31)                            <== NOT EXECUTED
      rtems_set_errno_and_return_minus_one( ENOSPC );                 
                                                                      
    iop->size = the_jnode->info.file.size;                            
  }                                                                   
  return iop->offset;                                                 
}                                                                     
ffc1125c:	7d 44 53 78 	mr      r4,r10                                 <== NOT EXECUTED
ffc11260:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc11264:	83 c1 00 08 	lwz     r30,8(r1)                              <== NOT EXECUTED
ffc11268:	83 e1 00 0c 	lwz     r31,12(r1)                             <== NOT EXECUTED
ffc1126c:	38 21 00 10 	addi    r1,r1,16                               <== NOT EXECUTED
ffc11270:	4e 80 00 20 	blr                                            <== NOT EXECUTED
    if (iop->offset > the_jnode->info.linearfile.size)                
      iop->offset = the_jnode->info.linearfile.size;                  
  }                                                                   
  else {  /* Must be a block file (IMFS_MEMORY_FILE). */              
    if (IMFS_memfile_extend( the_jnode, iop->offset ))                
      rtems_set_errno_and_return_minus_one( ENOSPC );                 
ffc11274:	48 00 0e d5 	bl      ffc12148 <__errno>                     
ffc11278:	38 00 00 1c 	li      r0,28                                  
ffc1127c:	90 03 00 00 	stw     r0,0(r3)                               
ffc11280:	39 20 ff ff 	li      r9,-1                                  
ffc11284:	39 40 ff ff 	li      r10,-1                                 
ffc11288:	4b ff ff 78 	b       ffc11200 <memfile_lseek+0x58>          
                                                                      

ffc1103c <memfile_open>: rtems_libio_t *iop, const char *pathname, uint32_t flag, uint32_t mode ) {
ffc1103c:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc11040:	7c 08 02 a6 	mflr    r0                                     
ffc11044:	90 01 00 14 	stw     r0,20(r1)                              
  the_jnode = iop->pathinfo.node_access;                              
                                                                      
  /*                                                                  
   * Perform 'copy on write' for linear files                         
   */                                                                 
  if ((iop->flags & (LIBIO_FLAGS_WRITE | LIBIO_FLAGS_APPEND))         
ffc11048:	80 03 00 18 	lwz     r0,24(r3)                              
  rtems_libio_t *iop,                                                 
  const char    *pathname,                                            
  uint32_t       flag,                                                
  uint32_t       mode                                                 
)                                                                     
{                                                                     
ffc1104c:	93 c1 00 08 	stw     r30,8(r1)                              
  the_jnode = iop->pathinfo.node_access;                              
                                                                      
  /*                                                                  
   * Perform 'copy on write' for linear files                         
   */                                                                 
  if ((iop->flags & (LIBIO_FLAGS_WRITE | LIBIO_FLAGS_APPEND))         
ffc11050:	70 09 02 04 	andi.   r9,r0,516                              
  rtems_libio_t *iop,                                                 
  const char    *pathname,                                            
  uint32_t       flag,                                                
  uint32_t       mode                                                 
)                                                                     
{                                                                     
ffc11054:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc11058:	7c 7f 1b 78 	mr      r31,r3                                 
  IMFS_jnode_t  *the_jnode;                                           
                                                                      
  the_jnode = iop->pathinfo.node_access;                              
ffc1105c:	83 c3 00 1c 	lwz     r30,28(r3)                             
                                                                      
  /*                                                                  
   * Perform 'copy on write' for linear files                         
   */                                                                 
  if ((iop->flags & (LIBIO_FLAGS_WRITE | LIBIO_FLAGS_APPEND))         
ffc11060:	41 82 00 10 	beq-    ffc11070 <memfile_open+0x34>           
   && (the_jnode->type == IMFS_LINEAR_FILE)) {                        
ffc11064:	81 3e 00 4c 	lwz     r9,76(r30)                             
ffc11068:	2f 89 00 06 	cmpwi   cr7,r9,6                               
ffc1106c:	41 9e 00 4c 	beq-    cr7,ffc110b8 <memfile_open+0x7c>       <== NEVER TAKEN
    the_jnode->info.file.size            = 0;                         
    the_jnode->info.file.indirect        = 0;                         
    the_jnode->info.file.doubly_indirect = 0;                         
    the_jnode->info.file.triply_indirect = 0;                         
    if ((count != 0)                                                  
     && (IMFS_memfile_write(the_jnode, 0, buffer, count) == -1))      
ffc11070:	81 3e 00 50 	lwz     r9,80(r30)                             
ffc11074:	81 5e 00 54 	lwz     r10,84(r30)                            
        return -1;                                                    
  }                                                                   
  if (iop->flags & LIBIO_FLAGS_APPEND)                                
ffc11078:	70 0b 02 00 	andi.   r11,r0,512                             
ffc1107c:	40 82 00 28 	bne-    ffc110a4 <memfile_open+0x68>           
    iop->offset = the_jnode->info.file.size;                          
                                                                      
  iop->size = the_jnode->info.file.size;                              
ffc11080:	91 3f 00 08 	stw     r9,8(r31)                              
  return 0;                                                           
ffc11084:	38 60 00 00 	li      r3,0                                   
        return -1;                                                    
  }                                                                   
  if (iop->flags & LIBIO_FLAGS_APPEND)                                
    iop->offset = the_jnode->info.file.size;                          
                                                                      
  iop->size = the_jnode->info.file.size;                              
ffc11088:	91 5f 00 0c 	stw     r10,12(r31)                            
  return 0;                                                           
}                                                                     
ffc1108c:	80 01 00 14 	lwz     r0,20(r1)                              
ffc11090:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc11094:	7c 08 03 a6 	mtlr    r0                                     
ffc11098:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc1109c:	38 21 00 10 	addi    r1,r1,16                               
ffc110a0:	4e 80 00 20 	blr                                            
    if ((count != 0)                                                  
     && (IMFS_memfile_write(the_jnode, 0, buffer, count) == -1))      
        return -1;                                                    
  }                                                                   
  if (iop->flags & LIBIO_FLAGS_APPEND)                                
    iop->offset = the_jnode->info.file.size;                          
ffc110a4:	91 3f 00 10 	stw     r9,16(r31)                             
ffc110a8:	91 5f 00 14 	stw     r10,20(r31)                            
ffc110ac:	81 3e 00 50 	lwz     r9,80(r30)                             
ffc110b0:	81 5e 00 54 	lwz     r10,84(r30)                            
ffc110b4:	4b ff ff cc 	b       ffc11080 <memfile_open+0x44>           
  /*                                                                  
   * Perform 'copy on write' for linear files                         
   */                                                                 
  if ((iop->flags & (LIBIO_FLAGS_WRITE | LIBIO_FLAGS_APPEND))         
   && (the_jnode->type == IMFS_LINEAR_FILE)) {                        
    uint32_t   count = the_jnode->info.linearfile.size;               
ffc110b8:	81 1e 00 54 	lwz     r8,84(r30)                             <== NOT EXECUTED
    const unsigned char *buffer = the_jnode->info.linearfile.direct;  
                                                                      
    the_jnode->type = IMFS_MEMORY_FILE;                               
ffc110bc:	39 20 00 05 	li      r9,5                                   <== NOT EXECUTED
    the_jnode->info.file.size            = 0;                         
    the_jnode->info.file.indirect        = 0;                         
ffc110c0:	38 00 00 00 	li      r0,0                                   <== NOT EXECUTED
  if ((iop->flags & (LIBIO_FLAGS_WRITE | LIBIO_FLAGS_APPEND))         
   && (the_jnode->type == IMFS_LINEAR_FILE)) {                        
    uint32_t   count = the_jnode->info.linearfile.size;               
    const unsigned char *buffer = the_jnode->info.linearfile.direct;  
                                                                      
    the_jnode->type = IMFS_MEMORY_FILE;                               
ffc110c4:	91 3e 00 4c 	stw     r9,76(r30)                             <== NOT EXECUTED
    the_jnode->info.file.size            = 0;                         
    the_jnode->info.file.indirect        = 0;                         
    the_jnode->info.file.doubly_indirect = 0;                         
    the_jnode->info.file.triply_indirect = 0;                         
    if ((count != 0)                                                  
ffc110c8:	2f 88 00 00 	cmpwi   cr7,r8,0                               <== NOT EXECUTED
   && (the_jnode->type == IMFS_LINEAR_FILE)) {                        
    uint32_t   count = the_jnode->info.linearfile.size;               
    const unsigned char *buffer = the_jnode->info.linearfile.direct;  
                                                                      
    the_jnode->type = IMFS_MEMORY_FILE;                               
    the_jnode->info.file.size            = 0;                         
ffc110cc:	39 20 00 00 	li      r9,0                                   <== NOT EXECUTED
   * Perform 'copy on write' for linear files                         
   */                                                                 
  if ((iop->flags & (LIBIO_FLAGS_WRITE | LIBIO_FLAGS_APPEND))         
   && (the_jnode->type == IMFS_LINEAR_FILE)) {                        
    uint32_t   count = the_jnode->info.linearfile.size;               
    const unsigned char *buffer = the_jnode->info.linearfile.direct;  
ffc110d0:	80 fe 00 58 	lwz     r7,88(r30)                             <== NOT EXECUTED
                                                                      
    the_jnode->type = IMFS_MEMORY_FILE;                               
    the_jnode->info.file.size            = 0;                         
ffc110d4:	39 40 00 00 	li      r10,0                                  <== NOT EXECUTED
ffc110d8:	91 3e 00 50 	stw     r9,80(r30)                             <== NOT EXECUTED
ffc110dc:	91 5e 00 54 	stw     r10,84(r30)                            <== NOT EXECUTED
    the_jnode->info.file.indirect        = 0;                         
ffc110e0:	90 1e 00 58 	stw     r0,88(r30)                             <== NOT EXECUTED
    the_jnode->info.file.doubly_indirect = 0;                         
ffc110e4:	90 1e 00 5c 	stw     r0,92(r30)                             <== NOT EXECUTED
    the_jnode->info.file.triply_indirect = 0;                         
ffc110e8:	90 1e 00 60 	stw     r0,96(r30)                             <== NOT EXECUTED
    if ((count != 0)                                                  
ffc110ec:	40 9e 00 0c 	bne-    cr7,ffc110f8 <memfile_open+0xbc>       <== NOT EXECUTED
ffc110f0:	80 03 00 18 	lwz     r0,24(r3)                              <== NOT EXECUTED
ffc110f4:	4b ff ff 84 	b       ffc11078 <memfile_open+0x3c>           <== NOT EXECUTED
     && (IMFS_memfile_write(the_jnode, 0, buffer, count) == -1))      
ffc110f8:	7f c3 f3 78 	mr      r3,r30                                 <== NOT EXECUTED
ffc110fc:	38 a0 00 00 	li      r5,0                                   <== NOT EXECUTED
ffc11100:	38 c0 00 00 	li      r6,0                                   <== NOT EXECUTED
ffc11104:	4b ff fc 85 	bl      ffc10d88 <IMFS_memfile_write>          <== NOT EXECUTED
ffc11108:	2f 83 ff ff 	cmpwi   cr7,r3,-1                              <== NOT EXECUTED
        return -1;                                                    
ffc1110c:	38 60 ff ff 	li      r3,-1                                  <== NOT EXECUTED
    the_jnode->info.file.size            = 0;                         
    the_jnode->info.file.indirect        = 0;                         
    the_jnode->info.file.doubly_indirect = 0;                         
    the_jnode->info.file.triply_indirect = 0;                         
    if ((count != 0)                                                  
     && (IMFS_memfile_write(the_jnode, 0, buffer, count) == -1))      
ffc11110:	41 be ff 7c 	beq-    cr7,ffc1108c <memfile_open+0x50>       <== NOT EXECUTED
ffc11114:	80 1f 00 18 	lwz     r0,24(r31)                             <== NOT EXECUTED
ffc11118:	4b ff ff 58 	b       ffc11070 <memfile_open+0x34>           <== NOT EXECUTED
                                                                      

ffc053ac <mount>: const char *target, const char *filesystemtype, rtems_filesystem_options_t options, const void *data ) {
ffc053ac:	7d 80 00 26 	mfcr    r12                                    
                                                                      
  /*                                                                  
   *  Are the file system options valid?                              
   */                                                                 
                                                                      
  if ( options != RTEMS_FILESYSTEM_READ_ONLY &&                       
ffc053b0:	2b 86 00 01 	cmplwi  cr7,r6,1                               
  const char                 *target,                                 
  const char                 *filesystemtype,                         
  rtems_filesystem_options_t options,                                 
  const void                 *data                                    
)                                                                     
{                                                                     
ffc053b4:	94 21 ff a0 	stwu    r1,-96(r1)                             
ffc053b8:	7c 08 02 a6 	mflr    r0                                     
ffc053bc:	93 01 00 40 	stw     r24,64(r1)                             
ffc053c0:	7c b8 2b 78 	mr      r24,r5                                 
ffc053c4:	93 41 00 48 	stw     r26,72(r1)                             
ffc053c8:	7c da 33 78 	mr      r26,r6                                 
ffc053cc:	93 61 00 4c 	stw     r27,76(r1)                             
ffc053d0:	7c 9b 23 78 	mr      r27,r4                                 
ffc053d4:	93 81 00 50 	stw     r28,80(r1)                             
ffc053d8:	7c 7c 1b 78 	mr      r28,r3                                 
ffc053dc:	93 c1 00 58 	stw     r30,88(r1)                             
ffc053e0:	7c fe 3b 78 	mr      r30,r7                                 
ffc053e4:	90 01 00 64 	stw     r0,100(r1)                             
ffc053e8:	92 61 00 2c 	stw     r19,44(r1)                             
ffc053ec:	92 81 00 30 	stw     r20,48(r1)                             
ffc053f0:	92 a1 00 34 	stw     r21,52(r1)                             
ffc053f4:	92 c1 00 38 	stw     r22,56(r1)                             
ffc053f8:	92 e1 00 3c 	stw     r23,60(r1)                             
ffc053fc:	93 21 00 44 	stw     r25,68(r1)                             
ffc05400:	93 a1 00 54 	stw     r29,84(r1)                             
ffc05404:	93 e1 00 5c 	stw     r31,92(r1)                             
ffc05408:	91 81 00 28 	stw     r12,40(r1)                             
                                                                      
  /*                                                                  
   *  Are the file system options valid?                              
   */                                                                 
                                                                      
  if ( options != RTEMS_FILESYSTEM_READ_ONLY &&                       
ffc0540c:	41 9d 02 a0 	bgt-    cr7,ffc056ac <mount+0x300>             
    rtems_set_errno_and_return_minus_one( EINVAL );                   
                                                                      
  /*                                                                  
   *  Get mount handler                                               
   */                                                                 
  mount_h = rtems_filesystem_get_mount_handler( filesystemtype );     
ffc05410:	7c a3 2b 78 	mr      r3,r5                                  
ffc05414:	48 00 9a c5 	bl      ffc0eed8 <rtems_filesystem_get_mount_handler>
  if ( !mount_h )                                                     
ffc05418:	7c 7d 1b 79 	mr.     r29,r3                                 
ffc0541c:	41 82 02 90 	beq-    ffc056ac <mount+0x300>                 
{                                                                     
  rtems_filesystem_fsmount_me_t mount_h = NULL;                       
  rtems_filesystem_location_info_t      loc;                          
  rtems_filesystem_mount_table_entry_t *mt_entry = NULL;              
  rtems_filesystem_location_info_t     *loc_to_free = NULL;           
  bool has_target = target != NULL;                                   
ffc05420:	7f 60 00 34 	cntlzw  r0,r27                                 
ffc05424:	54 00 d9 7e 	rlwinm  r0,r0,27,5,31                          
ffc05428:	68 00 00 01 	xori    r0,r0,1                                
  const char *target_or_null,                                         
  const char *filesystemtype,                                         
  size_t *target_length_ptr                                           
)                                                                     
{                                                                     
  const char *target = target_or_null != NULL ? target_or_null : "/"; 
ffc0542c:	2e 00 00 00 	cmpwi   cr4,r0,0                               
ffc05430:	41 92 02 68 	beq-    cr4,ffc05698 <mount+0x2ec>             
 * 	4) The mount point exists with the proper permissions to allow mounting
 *	5) The selected mount point already has a file system mounted to it
 *                                                                    
 */                                                                   
                                                                      
int mount(                                                            
ffc05434:	7f 63 db 78 	mr      r3,r27                                 
ffc05438:	48 00 df 99 	bl      ffc133d0 <strlen>                      
ffc0543c:	7f 73 db 78 	mr      r19,r27                                
ffc05440:	7c 74 1b 78 	mr      r20,r3                                 
ffc05444:	3a a3 00 01 	addi    r21,r3,1                               
  const char *filesystemtype,                                         
  size_t *target_length_ptr                                           
)                                                                     
{                                                                     
  const char *target = target_or_null != NULL ? target_or_null : "/"; 
  size_t filesystemtype_size = strlen( filesystemtype ) + 1;          
ffc05448:	7f 03 c3 78 	mr      r3,r24                                 
ffc0544c:	48 00 df 85 	bl      ffc133d0 <strlen>                      
  size_t source_size = source_or_null != NULL ?                       
    strlen( source_or_null ) + 1 : 0;                                 
ffc05450:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
  const char *filesystemtype,                                         
  size_t *target_length_ptr                                           
)                                                                     
{                                                                     
  const char *target = target_or_null != NULL ? target_or_null : "/"; 
  size_t filesystemtype_size = strlen( filesystemtype ) + 1;          
ffc05454:	3a e3 00 01 	addi    r23,r3,1                               
  size_t source_size = source_or_null != NULL ?                       
    strlen( source_or_null ) + 1 : 0;                                 
ffc05458:	3b 20 00 00 	li      r25,0                                  
ffc0545c:	41 9e 00 10 	beq-    cr7,ffc0546c <mount+0xc0>              
ffc05460:	7f 83 e3 78 	mr      r3,r28                                 
ffc05464:	48 00 df 6d 	bl      ffc133d0 <strlen>                      
ffc05468:	3b 23 00 01 	addi    r25,r3,1                               
  size_t target_size = strlen( target ) + 1;                          
  size_t size = sizeof( rtems_filesystem_mount_table_entry_t )        
    + filesystemtype_size + source_size + target_size;                
ffc0546c:	38 95 00 74 	addi    r4,r21,116                             
ffc05470:	7c 84 ba 14 	add     r4,r4,r23                              
  rtems_filesystem_mount_table_entry_t *mt_entry = calloc( 1, size ); 
ffc05474:	38 60 00 01 	li      r3,1                                   
ffc05478:	7c 84 ca 14 	add     r4,r4,r25                              
ffc0547c:	4b ff f5 55 	bl      ffc049d0 <calloc>                      
                                                                      
  if ( mt_entry != NULL ) {                                           
ffc05480:	7c 7f 1b 79 	mr.     r31,r3                                 
ffc05484:	41 82 02 00 	beq-    ffc05684 <mount+0x2d8>                 <== NEVER TAKEN
    char *str = (char *) mt_entry + sizeof( *mt_entry );              
ffc05488:	3a df 00 74 	addi    r22,r31,116                            
                                                                      
    memcpy( str, filesystemtype, filesystemtype_size );               
ffc0548c:	7e e5 bb 78 	mr      r5,r23                                 
ffc05490:	7f 04 c3 78 	mr      r4,r24                                 
ffc05494:	7e c3 b3 78 	mr      r3,r22                                 
ffc05498:	48 00 d9 11 	bl      ffc12da8 <memcpy>                      
    mt_entry->type = str;                                             
    str += filesystemtype_size;                                       
ffc0549c:	7e f6 ba 14 	add     r23,r22,r23                            
                                                                      
  if ( mt_entry != NULL ) {                                           
    char *str = (char *) mt_entry + sizeof( *mt_entry );              
                                                                      
    memcpy( str, filesystemtype, filesystemtype_size );               
    mt_entry->type = str;                                             
ffc054a0:	92 df 00 6c 	stw     r22,108(r31)                           
    str += filesystemtype_size;                                       
                                                                      
    memcpy( str, source_or_null, source_size );                       
ffc054a4:	7f 25 cb 78 	mr      r5,r25                                 
ffc054a8:	7f 84 e3 78 	mr      r4,r28                                 
ffc054ac:	7e e3 bb 78 	mr      r3,r23                                 
ffc054b0:	48 00 d8 f9 	bl      ffc12da8 <memcpy>                      
    mt_entry->dev = str;                                              
    str += source_size;                                               
ffc054b4:	7f 37 ca 14 	add     r25,r23,r25                            
    memcpy( str, filesystemtype, filesystemtype_size );               
    mt_entry->type = str;                                             
    str += filesystemtype_size;                                       
                                                                      
    memcpy( str, source_or_null, source_size );                       
    mt_entry->dev = str;                                              
ffc054b8:	92 ff 00 70 	stw     r23,112(r31)                           
    str += source_size;                                               
                                                                      
    memcpy( str, target, target_size );                               
ffc054bc:	7e 64 9b 78 	mr      r4,r19                                 
ffc054c0:	7e a5 ab 78 	mr      r5,r21                                 
ffc054c4:	7f 23 cb 78 	mr      r3,r25                                 
ffc054c8:	48 00 d8 e1 	bl      ffc12da8 <memcpy>                      
  if ( !mt_entry )                                                    
    rtems_set_errno_and_return_minus_one( ENOMEM );                   
                                                                      
  mt_entry->mt_fs_root.mt_entry = mt_entry;                           
  mt_entry->options = options;                                        
  mt_entry->pathconf_limits_and_options = rtems_filesystem_default_pathconf;
ffc054cc:	3c 80 ff c2 	lis     r4,-62                                 
    memcpy( str, source_or_null, source_size );                       
    mt_entry->dev = str;                                              
    str += source_size;                                               
                                                                      
    memcpy( str, target, target_size );                               
    mt_entry->target = str;                                           
ffc054d0:	93 3f 00 68 	stw     r25,104(r31)                           
  if ( !mt_entry )                                                    
    rtems_set_errno_and_return_minus_one( ENOMEM );                   
                                                                      
  mt_entry->mt_fs_root.mt_entry = mt_entry;                           
  mt_entry->options = options;                                        
  mt_entry->pathconf_limits_and_options = rtems_filesystem_default_pathconf;
ffc054d4:	38 7f 00 38 	addi    r3,r31,56                              
ffc054d8:	38 84 8c ec 	addi    r4,r4,-29460                           
    &target_length                                                    
  );                                                                  
  if ( !mt_entry )                                                    
    rtems_set_errno_and_return_minus_one( ENOMEM );                   
                                                                      
  mt_entry->mt_fs_root.mt_entry = mt_entry;                           
ffc054dc:	93 ff 00 2c 	stw     r31,44(r31)                            
  mt_entry->options = options;                                        
  mt_entry->pathconf_limits_and_options = rtems_filesystem_default_pathconf;
ffc054e0:	38 a0 00 30 	li      r5,48                                  
  );                                                                  
  if ( !mt_entry )                                                    
    rtems_set_errno_and_return_minus_one( ENOMEM );                   
                                                                      
  mt_entry->mt_fs_root.mt_entry = mt_entry;                           
  mt_entry->options = options;                                        
ffc054e4:	93 5f 00 30 	stw     r26,48(r31)                            
  mt_entry->pathconf_limits_and_options = rtems_filesystem_default_pathconf;
ffc054e8:	48 00 d8 c1 	bl      ffc12da8 <memcpy>                      
  /*                                                                  
   *  The mount_point should be a directory with read/write/execute   
   *  permissions in the existing tree.                               
   */                                                                 
                                                                      
  if ( has_target ) {                                                 
ffc054ec:	40 92 00 f0 	bne-    cr4,ffc055dc <mount+0x230>             
 */                                                                   
RTEMS_INLINE_ROUTINE bool _Chain_Is_empty(                            
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
  return (the_chain->first == _Chain_Tail(the_chain));                
ffc054f0:	3d 20 00 00 	lis     r9,0                                   
ffc054f4:	39 69 21 68 	addi    r11,r9,8552                            
    }                                                                 
  } else {                                                            
    /*                                                                
     * Do we already have a base file system ?                        
     */                                                               
    if ( !rtems_chain_is_empty( &mount_chain ) ) {                    
ffc054f8:	81 29 21 68 	lwz     r9,8552(r9)                            
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc054fc:	38 0b 00 04 	addi    r0,r11,4                               
ffc05500:	7f 89 00 00 	cmpw    cr7,r9,r0                              
)                                                                     
{                                                                     
  rtems_filesystem_fsmount_me_t mount_h = NULL;                       
  rtems_filesystem_location_info_t      loc;                          
  rtems_filesystem_mount_table_entry_t *mt_entry = NULL;              
  rtems_filesystem_location_info_t     *loc_to_free = NULL;           
ffc05504:	3b 80 00 00 	li      r28,0                                  
    }                                                                 
  } else {                                                            
    /*                                                                
     * Do we already have a base file system ?                        
     */                                                               
    if ( !rtems_chain_is_empty( &mount_chain ) ) {                    
ffc05508:	40 9e 01 b8 	bne-    cr7,ffc056c0 <mount+0x314>             <== NEVER TAKEN
     *  mt_point_node.node_access will be left to null to indicate that this
     *  is the root of the entire file system.                        
     */                                                               
  }                                                                   
                                                                      
  if ( (*mount_h)( mt_entry, data ) ) {                               
ffc0550c:	7f e3 fb 78 	mr      r3,r31                                 
ffc05510:	7f a9 03 a6 	mtctr   r29                                    
ffc05514:	7f c4 f3 78 	mr      r4,r30                                 
ffc05518:	4e 80 04 21 	bctrl                                          
ffc0551c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05520:	40 9e 01 bc 	bne-    cr7,ffc056dc <mount+0x330>             
rtems_status_code rtems_libio_set_private_env(void);                  
rtems_status_code rtems_libio_share_private_env(rtems_id task_id) ;   
                                                                      
static inline void rtems_libio_lock( void )                           
{                                                                     
  rtems_semaphore_obtain( rtems_libio_semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT );
ffc05524:	3f c0 00 00 	lis     r30,0                                  
ffc05528:	80 7e 27 14 	lwz     r3,10004(r30)                          
ffc0552c:	38 80 00 00 	li      r4,0                                   
ffc05530:	38 a0 00 00 	li      r5,0                                   
ffc05534:	48 00 39 4d 	bl      ffc08e80 <rtems_semaphore_obtain>      
                                                                      
  /*                                                                  
   *  Add the mount table entry to the mount table chain              
   */                                                                 
  rtems_libio_lock();                                                 
  rtems_chain_append( &mount_chain, &mt_entry->Node );                
ffc05538:	3c 60 00 00 	lis     r3,0                                   
ffc0553c:	38 63 21 68 	addi    r3,r3,8552                             
ffc05540:	7f e4 fb 78 	mr      r4,r31                                 
ffc05544:	48 00 47 11 	bl      ffc09c54 <_Chain_Append>               
}                                                                     
                                                                      
static inline void rtems_libio_unlock( void )                         
{                                                                     
  rtems_semaphore_release( rtems_libio_semaphore );                   
ffc05548:	80 7e 27 14 	lwz     r3,10004(r30)                          
ffc0554c:	48 00 3a bd 	bl      ffc09008 <rtems_semaphore_release>     
  rtems_libio_unlock();                                               
                                                                      
  if ( !has_target )                                                  
ffc05550:	41 92 00 54 	beq-    cr4,ffc055a4 <mount+0x1f8>             
    rtems_filesystem_root = mt_entry->mt_fs_root;                     
                                                                      
  return 0;                                                           
ffc05554:	38 60 00 00 	li      r3,0                                   
                                                                      
  if ( loc_to_free )                                                  
    rtems_filesystem_freenode( loc_to_free );                         
                                                                      
  return -1;                                                          
}                                                                     
ffc05558:	80 01 00 64 	lwz     r0,100(r1)                             
ffc0555c:	81 81 00 28 	lwz     r12,40(r1)                             
ffc05560:	7c 08 03 a6 	mtlr    r0                                     
ffc05564:	82 61 00 2c 	lwz     r19,44(r1)                             
ffc05568:	82 81 00 30 	lwz     r20,48(r1)                             
ffc0556c:	7d 80 81 20 	mtcrf   8,r12                                  
ffc05570:	82 a1 00 34 	lwz     r21,52(r1)                             
ffc05574:	82 c1 00 38 	lwz     r22,56(r1)                             
ffc05578:	82 e1 00 3c 	lwz     r23,60(r1)                             
ffc0557c:	83 01 00 40 	lwz     r24,64(r1)                             
ffc05580:	83 21 00 44 	lwz     r25,68(r1)                             
ffc05584:	83 41 00 48 	lwz     r26,72(r1)                             
ffc05588:	83 61 00 4c 	lwz     r27,76(r1)                             
ffc0558c:	83 81 00 50 	lwz     r28,80(r1)                             
ffc05590:	83 a1 00 54 	lwz     r29,84(r1)                             
ffc05594:	83 c1 00 58 	lwz     r30,88(r1)                             
ffc05598:	83 e1 00 5c 	lwz     r31,92(r1)                             
ffc0559c:	38 21 00 60 	addi    r1,r1,96                               
ffc055a0:	4e 80 00 20 	blr                                            
  rtems_libio_lock();                                                 
  rtems_chain_append( &mount_chain, &mt_entry->Node );                
  rtems_libio_unlock();                                               
                                                                      
  if ( !has_target )                                                  
    rtems_filesystem_root = mt_entry->mt_fs_root;                     
ffc055a4:	3d 20 00 00 	lis     r9,0                                   
ffc055a8:	80 ff 00 1c 	lwz     r7,28(r31)                             
ffc055ac:	81 29 26 9c 	lwz     r9,9884(r9)                            
                                                                      
  return 0;                                                           
ffc055b0:	38 60 00 00 	li      r3,0                                   
  rtems_libio_lock();                                                 
  rtems_chain_append( &mount_chain, &mt_entry->Node );                
  rtems_libio_unlock();                                               
                                                                      
  if ( !has_target )                                                  
    rtems_filesystem_root = mt_entry->mt_fs_root;                     
ffc055b4:	81 1f 00 20 	lwz     r8,32(r31)                             
ffc055b8:	81 5f 00 24 	lwz     r10,36(r31)                            
ffc055bc:	81 7f 00 28 	lwz     r11,40(r31)                            
ffc055c0:	80 1f 00 2c 	lwz     r0,44(r31)                             
ffc055c4:	90 e9 00 18 	stw     r7,24(r9)                              
ffc055c8:	91 09 00 1c 	stw     r8,28(r9)                              
ffc055cc:	91 49 00 20 	stw     r10,32(r9)                             
ffc055d0:	91 69 00 24 	stw     r11,36(r9)                             
ffc055d4:	90 09 00 28 	stw     r0,40(r9)                              
ffc055d8:	4b ff ff 80 	b       ffc05558 <mount+0x1ac>                 
   *  The mount_point should be a directory with read/write/execute   
   *  permissions in the existing tree.                               
   */                                                                 
                                                                      
  if ( has_target ) {                                                 
    if ( rtems_filesystem_evaluate_path(                              
ffc055dc:	3b 81 00 08 	addi    r28,r1,8                               
ffc055e0:	7f 63 db 78 	mr      r3,r27                                 
ffc055e4:	7e 84 a3 78 	mr      r4,r20                                 
ffc055e8:	38 a0 00 07 	li      r5,7                                   
ffc055ec:	7f 86 e3 78 	mr      r6,r28                                 
ffc055f0:	38 e0 00 01 	li      r7,1                                   
ffc055f4:	4b ff f5 01 	bl      ffc04af4 <rtems_filesystem_evaluate_path>
ffc055f8:	2f 83 ff ff 	cmpwi   cr7,r3,-1                              
ffc055fc:	41 9e 00 d0 	beq-    cr7,ffc056cc <mount+0x320>             <== NEVER TAKEN
                                                                      
    /*                                                                
     *  Test to see if it is a directory                              
     */                                                               
                                                                      
    if ( loc.ops->node_type_h( &loc ) != RTEMS_FILESYSTEM_DIRECTORY ) {
ffc05600:	81 21 00 14 	lwz     r9,20(r1)                              
ffc05604:	7f 83 e3 78 	mr      r3,r28                                 
ffc05608:	80 09 00 10 	lwz     r0,16(r9)                              
ffc0560c:	7c 09 03 a6 	mtctr   r0                                     
ffc05610:	4e 80 04 21 	bctrl                                          
ffc05614:	2f 83 00 01 	cmpwi   cr7,r3,1                               
ffc05618:	40 9e 00 f0 	bne-    cr7,ffc05708 <mount+0x35c>             
                                                                      
    /*                                                                
     *  You can only mount one file system onto a single mount point. 
     */                                                               
                                                                      
    if ( rtems_filesystem_mount_iterate( is_node_fs_root, loc.node_access ) ) {
ffc0561c:	80 81 00 08 	lwz     r4,8(r1)                               
ffc05620:	3c 60 ff c0 	lis     r3,-64                                 
ffc05624:	38 63 52 e0 	addi    r3,r3,21216                            
ffc05628:	4b ff fc cd 	bl      ffc052f4 <rtems_filesystem_mount_iterate>
ffc0562c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05630:	40 9e 00 e8 	bne-    cr7,ffc05718 <mount+0x36c>             
     *  may have been allocated in loc should not be sent to freenode 
     *  until the system is unmounted.  It may be needed to correctly 
     *  traverse the tree.                                            
     */                                                               
                                                                      
    mt_entry->mt_point_node.node_access = loc.node_access;            
ffc05634:	80 01 00 08 	lwz     r0,8(r1)                               
    /*                                                                
     *  This link to the parent is only done when we are dealing with system
     *  below the base file system                                    
     */                                                               
                                                                      
    if ( loc.ops->mount_h( mt_entry ) ) {                             
ffc05638:	7f e3 fb 78 	mr      r3,r31                                 
     *  traverse the tree.                                            
     */                                                               
                                                                      
    mt_entry->mt_point_node.node_access = loc.node_access;            
    mt_entry->mt_point_node.handlers = loc.handlers;                  
    mt_entry->mt_point_node.ops = loc.ops;                            
ffc0563c:	81 21 00 14 	lwz     r9,20(r1)                              
     *  may have been allocated in loc should not be sent to freenode 
     *  until the system is unmounted.  It may be needed to correctly 
     *  traverse the tree.                                            
     */                                                               
                                                                      
    mt_entry->mt_point_node.node_access = loc.node_access;            
ffc05640:	90 1f 00 08 	stw     r0,8(r31)                              
    mt_entry->mt_point_node.handlers = loc.handlers;                  
ffc05644:	80 01 00 10 	lwz     r0,16(r1)                              
    mt_entry->mt_point_node.ops = loc.ops;                            
ffc05648:	91 3f 00 14 	stw     r9,20(r31)                             
     *  until the system is unmounted.  It may be needed to correctly 
     *  traverse the tree.                                            
     */                                                               
                                                                      
    mt_entry->mt_point_node.node_access = loc.node_access;            
    mt_entry->mt_point_node.handlers = loc.handlers;                  
ffc0564c:	90 1f 00 10 	stw     r0,16(r31)                             
    mt_entry->mt_point_node.ops = loc.ops;                            
    mt_entry->mt_point_node.mt_entry = loc.mt_entry;                  
ffc05650:	80 01 00 18 	lwz     r0,24(r1)                              
ffc05654:	90 1f 00 18 	stw     r0,24(r31)                             
    /*                                                                
     *  This link to the parent is only done when we are dealing with system
     *  below the base file system                                    
     */                                                               
                                                                      
    if ( loc.ops->mount_h( mt_entry ) ) {                             
ffc05658:	80 09 00 20 	lwz     r0,32(r9)                              
ffc0565c:	7c 09 03 a6 	mtctr   r0                                     
ffc05660:	4e 80 04 21 	bctrl                                          
ffc05664:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05668:	41 9e fe a4 	beq+    cr7,ffc0550c <mount+0x160>             <== ALWAYS TAKEN
                                                                      
  return 0;                                                           
                                                                      
cleanup_and_bail:                                                     
                                                                      
  free( mt_entry );                                                   
ffc0566c:	7f e3 fb 78 	mr      r3,r31                                 
ffc05670:	4b ff f6 0d 	bl      ffc04c7c <free>                        
                                                                      
  if ( loc_to_free )                                                  
    rtems_filesystem_freenode( loc_to_free );                         
ffc05674:	7f 83 e3 78 	mr      r3,r28                                 
ffc05678:	4b ff f5 d9 	bl      ffc04c50 <rtems_filesystem_freenode>   
                                                                      
  return -1;                                                          
ffc0567c:	38 60 ff ff 	li      r3,-1                                  
ffc05680:	4b ff fe d8 	b       ffc05558 <mount+0x1ac>                 
    target,                                                           
    filesystemtype,                                                   
    &target_length                                                    
  );                                                                  
  if ( !mt_entry )                                                    
    rtems_set_errno_and_return_minus_one( ENOMEM );                   
ffc05684:	48 00 ca c5 	bl      ffc12148 <__errno>                     <== NOT EXECUTED
ffc05688:	38 00 00 0c 	li      r0,12                                  <== NOT EXECUTED
ffc0568c:	90 03 00 00 	stw     r0,0(r3)                               <== NOT EXECUTED
ffc05690:	38 60 ff ff 	li      r3,-1                                  <== NOT EXECUTED
ffc05694:	4b ff fe c4 	b       ffc05558 <mount+0x1ac>                 <== NOT EXECUTED
  const char *target_or_null,                                         
  const char *filesystemtype,                                         
  size_t *target_length_ptr                                           
)                                                                     
{                                                                     
  const char *target = target_or_null != NULL ? target_or_null : "/"; 
ffc05698:	3e 60 ff c2 	lis     r19,-62                                
ffc0569c:	3a a0 00 02 	li      r21,2                                  
ffc056a0:	3a 80 00 01 	li      r20,1                                  
ffc056a4:	3a 73 8c a8 	addi    r19,r19,-29528                         
ffc056a8:	4b ff fd a0 	b       ffc05448 <mount+0x9c>                  
  /*                                                                  
   *  Get mount handler                                               
   */                                                                 
  mount_h = rtems_filesystem_get_mount_handler( filesystemtype );     
  if ( !mount_h )                                                     
    rtems_set_errno_and_return_minus_one( EINVAL );                   
ffc056ac:	48 00 ca 9d 	bl      ffc12148 <__errno>                     
ffc056b0:	38 00 00 16 	li      r0,22                                  
ffc056b4:	90 03 00 00 	stw     r0,0(r3)                               
ffc056b8:	38 60 ff ff 	li      r3,-1                                  
ffc056bc:	4b ff fe 9c 	b       ffc05558 <mount+0x1ac>                 
  } else {                                                            
    /*                                                                
     * Do we already have a base file system ?                        
     */                                                               
    if ( !rtems_chain_is_empty( &mount_chain ) ) {                    
      errno = EINVAL;                                                 
ffc056c0:	48 00 ca 89 	bl      ffc12148 <__errno>                     <== NOT EXECUTED
ffc056c4:	38 00 00 16 	li      r0,22                                  <== NOT EXECUTED
ffc056c8:	90 03 00 00 	stw     r0,0(r3)                               <== NOT EXECUTED
                                                                      
  return 0;                                                           
                                                                      
cleanup_and_bail:                                                     
                                                                      
  free( mt_entry );                                                   
ffc056cc:	7f e3 fb 78 	mr      r3,r31                                 <== NOT EXECUTED
ffc056d0:	4b ff f5 ad 	bl      ffc04c7c <free>                        <== NOT EXECUTED
                                                                      
  if ( loc_to_free )                                                  
    rtems_filesystem_freenode( loc_to_free );                         
                                                                      
  return -1;                                                          
ffc056d4:	38 60 ff ff 	li      r3,-1                                  <== NOT EXECUTED
ffc056d8:	4b ff fe 80 	b       ffc05558 <mount+0x1ac>                 <== NOT EXECUTED
                                                                      
  if ( (*mount_h)( mt_entry, data ) ) {                               
    /*                                                                
     * Try to undo the mount operation                                
     */                                                               
    loc.ops->unmount_h( mt_entry );                                   
ffc056dc:	81 21 00 14 	lwz     r9,20(r1)                              
ffc056e0:	7f e3 fb 78 	mr      r3,r31                                 
ffc056e4:	80 09 00 28 	lwz     r0,40(r9)                              
ffc056e8:	7c 09 03 a6 	mtctr   r0                                     
ffc056ec:	4e 80 04 21 	bctrl                                          
                                                                      
  return 0;                                                           
                                                                      
cleanup_and_bail:                                                     
                                                                      
  free( mt_entry );                                                   
ffc056f0:	7f e3 fb 78 	mr      r3,r31                                 
ffc056f4:	4b ff f5 89 	bl      ffc04c7c <free>                        
                                                                      
  if ( loc_to_free )                                                  
ffc056f8:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
    rtems_filesystem_freenode( loc_to_free );                         
                                                                      
  return -1;                                                          
ffc056fc:	38 60 ff ff 	li      r3,-1                                  
                                                                      
cleanup_and_bail:                                                     
                                                                      
  free( mt_entry );                                                   
                                                                      
  if ( loc_to_free )                                                  
ffc05700:	41 9e fe 58 	beq+    cr7,ffc05558 <mount+0x1ac>             <== NEVER TAKEN
ffc05704:	4b ff ff 70 	b       ffc05674 <mount+0x2c8>                 
    /*                                                                
     *  Test to see if it is a directory                              
     */                                                               
                                                                      
    if ( loc.ops->node_type_h( &loc ) != RTEMS_FILESYSTEM_DIRECTORY ) {
      errno = ENOTDIR;                                                
ffc05708:	48 00 ca 41 	bl      ffc12148 <__errno>                     
ffc0570c:	38 00 00 14 	li      r0,20                                  
ffc05710:	90 03 00 00 	stw     r0,0(r3)                               
      goto cleanup_and_bail;                                          
ffc05714:	4b ff ff 58 	b       ffc0566c <mount+0x2c0>                 
    /*                                                                
     *  You can only mount one file system onto a single mount point. 
     */                                                               
                                                                      
    if ( rtems_filesystem_mount_iterate( is_node_fs_root, loc.node_access ) ) {
      errno = EBUSY;                                                  
ffc05718:	48 00 ca 31 	bl      ffc12148 <__errno>                     
ffc0571c:	38 00 00 10 	li      r0,16                                  
ffc05720:	90 03 00 00 	stw     r0,0(r3)                               
      goto cleanup_and_bail;                                          
ffc05724:	4b ff ff 48 	b       ffc0566c <mount+0x2c0>                 
                                                                      

ffc058f4 <mount_and_make_target_path>: const char *target, const char *filesystemtype, rtems_filesystem_options_t options, const void *data ) {
ffc058f4:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc058f8:	7c 08 02 a6 	mflr    r0                                     
ffc058fc:	93 e1 00 1c 	stw     r31,28(r1)                             
  int rv = -1;                                                        
                                                                      
  if (target != NULL) {                                               
ffc05900:	7c 9f 23 79 	mr.     r31,r4                                 
  const char *target,                                                 
  const char *filesystemtype,                                         
  rtems_filesystem_options_t options,                                 
  const void *data                                                    
)                                                                     
{                                                                     
ffc05904:	93 61 00 0c 	stw     r27,12(r1)                             
ffc05908:	7c bb 2b 78 	mr      r27,r5                                 
ffc0590c:	93 81 00 10 	stw     r28,16(r1)                             
ffc05910:	7c dc 33 78 	mr      r28,r6                                 
ffc05914:	93 a1 00 14 	stw     r29,20(r1)                             
ffc05918:	7c fd 3b 78 	mr      r29,r7                                 
ffc0591c:	93 c1 00 18 	stw     r30,24(r1)                             
ffc05920:	7c 7e 1b 78 	mr      r30,r3                                 
ffc05924:	90 01 00 24 	stw     r0,36(r1)                              
  int rv = -1;                                                        
                                                                      
  if (target != NULL) {                                               
ffc05928:	41 82 00 78 	beq-    ffc059a0 <mount_and_make_target_path+0xac>
    rv = rtems_mkdir(target, S_IRWXU | S_IRWXG | S_IRWXO);            
ffc0592c:	7f e3 fb 78 	mr      r3,r31                                 
ffc05930:	38 80 01 ff 	li      r4,511                                 
ffc05934:	48 00 0b e1 	bl      ffc06514 <rtems_mkdir>                 
    if (rv == 0) {                                                    
ffc05938:	2c 03 00 00 	cmpwi   r3,0                                   
ffc0593c:	41 82 00 28 	beq-    ffc05964 <mount_and_make_target_path+0x70><== ALWAYS TAKEN
  } else {                                                            
    errno = EINVAL;                                                   
  }                                                                   
                                                                      
  return rv;                                                          
}                                                                     
ffc05940:	80 01 00 24 	lwz     r0,36(r1)                              
ffc05944:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc05948:	7c 08 03 a6 	mtlr    r0                                     
ffc0594c:	83 81 00 10 	lwz     r28,16(r1)                             
ffc05950:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc05954:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc05958:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0595c:	38 21 00 20 	addi    r1,r1,32                               
ffc05960:	4e 80 00 20 	blr                                            
  int rv = -1;                                                        
                                                                      
  if (target != NULL) {                                               
    rv = rtems_mkdir(target, S_IRWXU | S_IRWXG | S_IRWXO);            
    if (rv == 0) {                                                    
      rv = mount(                                                     
ffc05964:	7f c3 f3 78 	mr      r3,r30                                 
ffc05968:	7f e4 fb 78 	mr      r4,r31                                 
ffc0596c:	7f 65 db 78 	mr      r5,r27                                 
ffc05970:	7f 86 e3 78 	mr      r6,r28                                 
ffc05974:	7f a7 eb 78 	mr      r7,r29                                 
ffc05978:	48 00 01 09 	bl      ffc05a80 <mount>                       
  } else {                                                            
    errno = EINVAL;                                                   
  }                                                                   
                                                                      
  return rv;                                                          
}                                                                     
ffc0597c:	80 01 00 24 	lwz     r0,36(r1)                              
ffc05980:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc05984:	7c 08 03 a6 	mtlr    r0                                     
ffc05988:	83 81 00 10 	lwz     r28,16(r1)                             
ffc0598c:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc05990:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc05994:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc05998:	38 21 00 20 	addi    r1,r1,32                               
ffc0599c:	4e 80 00 20 	blr                                            
        options,                                                      
        data                                                          
      );                                                              
    }                                                                 
  } else {                                                            
    errno = EINVAL;                                                   
ffc059a0:	48 00 cc 15 	bl      ffc125b4 <__errno>                     
ffc059a4:	38 00 00 16 	li      r0,22                                  
ffc059a8:	90 03 00 00 	stw     r0,0(r3)                               
  const char *filesystemtype,                                         
  rtems_filesystem_options_t options,                                 
  const void *data                                                    
)                                                                     
{                                                                     
  int rv = -1;                                                        
ffc059ac:	38 60 ff ff 	li      r3,-1                                  
ffc059b0:	4b ff ff 90 	b       ffc05940 <mount_and_make_target_path+0x4c>
                                                                      

ffc05998 <newlib_delete_hook>: void newlib_delete_hook( rtems_tcb *current_task, rtems_tcb *deleted_task ) {
ffc05998:	7d 80 00 26 	mfcr    r12                                    
                                                                      
  /*                                                                  
   * The reentrancy structure was allocated by newlib using malloc()  
   */                                                                 
                                                                      
  if (current_task == deleted_task) {                                 
ffc0599c:	7e 03 20 00 	cmpw    cr4,r3,r4                              
                                                                      
void newlib_delete_hook(                                              
  rtems_tcb *current_task,                                            
  rtems_tcb *deleted_task                                             
)                                                                     
{                                                                     
ffc059a0:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc059a4:	7c 08 02 a6 	mflr    r0                                     
ffc059a8:	93 c1 00 10 	stw     r30,16(r1)                             
ffc059ac:	7c 9e 23 78 	mr      r30,r4                                 
ffc059b0:	90 01 00 1c 	stw     r0,28(r1)                              
ffc059b4:	93 e1 00 14 	stw     r31,20(r1)                             
ffc059b8:	91 81 00 0c 	stw     r12,12(r1)                             
                                                                      
  /*                                                                  
   * The reentrancy structure was allocated by newlib using malloc()  
   */                                                                 
                                                                      
  if (current_task == deleted_task) {                                 
ffc059bc:	41 92 00 8c 	beq-    cr4,ffc05a48 <newlib_delete_hook+0xb0> 
    ptr = _REENT;                                                     
  } else {                                                            
    ptr = deleted_task->libc_reent;                                   
ffc059c0:	83 e4 01 3c 	lwz     r31,316(r4)                            
  }                                                                   
                                                                      
  if (ptr && ptr != _global_impure_ptr) {                             
ffc059c4:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc059c8:	41 9e 00 2c 	beq-    cr7,ffc059f4 <newlib_delete_hook+0x5c> <== NEVER TAKEN
ffc059cc:	3d 20 00 00 	lis     r9,0                                   
ffc059d0:	80 09 26 a8 	lwz     r0,9896(r9)                            
ffc059d4:	7f 9f 00 00 	cmpw    cr7,r31,r0                             
ffc059d8:	41 9e 00 1c 	beq-    cr7,ffc059f4 <newlib_delete_hook+0x5c> 
    _reclaim_reent(ptr);                                              
*/                                                                    
    /*                                                                
     *  Just in case there are some buffers lying around.             
     */                                                               
    _fwalk(ptr, newlib_free_buffers);                                 
ffc059dc:	3c 80 ff c0 	lis     r4,-64                                 
ffc059e0:	7f e3 fb 78 	mr      r3,r31                                 
ffc059e4:	38 84 57 2c 	addi    r4,r4,22316                            
ffc059e8:	48 00 d1 bd 	bl      ffc12ba4 <_fwalk>                      
#if REENT_MALLOCED                                                    
    free(ptr);                                                        
#else                                                                 
    _Workspace_Free(ptr);                                             
ffc059ec:	7f e3 fb 78 	mr      r3,r31                                 
ffc059f0:	48 00 7a bd 	bl      ffc0d4ac <_Workspace_Free>             
#endif                                                                
  }                                                                   
                                                                      
  deleted_task->libc_reent = NULL;                                    
ffc059f4:	38 00 00 00 	li      r0,0                                   
ffc059f8:	90 1e 01 3c 	stw     r0,316(r30)                            
                                                                      
  /*                                                                  
   * Require the switch back to another task to install its own       
   */                                                                 
                                                                      
  if ( current_task == deleted_task ) {                               
ffc059fc:	41 92 00 24 	beq-    cr4,ffc05a20 <newlib_delete_hook+0x88> 
    _REENT = 0;                                                       
  }                                                                   
}                                                                     
ffc05a00:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc05a04:	81 81 00 0c 	lwz     r12,12(r1)                             
ffc05a08:	7c 08 03 a6 	mtlr    r0                                     
ffc05a0c:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc05a10:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc05a14:	7d 80 81 20 	mtcrf   8,r12                                  
ffc05a18:	38 21 00 18 	addi    r1,r1,24                               
ffc05a1c:	4e 80 00 20 	blr                                            
  /*                                                                  
   * Require the switch back to another task to install its own       
   */                                                                 
                                                                      
  if ( current_task == deleted_task ) {                               
    _REENT = 0;                                                       
ffc05a20:	3d 20 00 00 	lis     r9,0                                   
  }                                                                   
}                                                                     
ffc05a24:	81 81 00 0c 	lwz     r12,12(r1)                             
  /*                                                                  
   * Require the switch back to another task to install its own       
   */                                                                 
                                                                      
  if ( current_task == deleted_task ) {                               
    _REENT = 0;                                                       
ffc05a28:	90 09 26 a4 	stw     r0,9892(r9)                            
  }                                                                   
}                                                                     
ffc05a2c:	7d 80 81 20 	mtcrf   8,r12                                  
ffc05a30:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc05a34:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc05a38:	7c 08 03 a6 	mtlr    r0                                     
ffc05a3c:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc05a40:	38 21 00 18 	addi    r1,r1,24                               
ffc05a44:	4e 80 00 20 	blr                                            
  /*                                                                  
   * The reentrancy structure was allocated by newlib using malloc()  
   */                                                                 
                                                                      
  if (current_task == deleted_task) {                                 
    ptr = _REENT;                                                     
ffc05a48:	3d 20 00 00 	lis     r9,0                                   
ffc05a4c:	83 e9 26 a4 	lwz     r31,9892(r9)                           
ffc05a50:	4b ff ff 74 	b       ffc059c4 <newlib_delete_hook+0x2c>     
                                                                      

ffc0572c <newlib_free_buffers>: */ int newlib_free_buffers( FILE *fp ) {
ffc0572c:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc05730:	7c 08 02 a6 	mflr    r0                                     
ffc05734:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc05738:	7c 7f 1b 78 	mr      r31,r3                                 
ffc0573c:	90 01 00 14 	stw     r0,20(r1)                              
  switch ( fileno(fp) ) {                                             
ffc05740:	48 00 ce ed 	bl      ffc1262c <fileno>                      
ffc05744:	2b 83 00 02 	cmplwi  cr7,r3,2                               
ffc05748:	40 9d 00 24 	ble-    cr7,ffc0576c <newlib_free_buffers+0x40><== ALWAYS TAKEN
        fp->_flags &= ~__SMBF;                                        
        fp->_bf._base = fp->_p = (unsigned char *) NULL;              
      }                                                               
      break;                                                          
    default:                                                          
     fclose(fp);                                                      
ffc0574c:	7f e3 fb 78 	mr      r3,r31                                 <== NOT EXECUTED
ffc05750:	48 00 cb 99 	bl      ffc122e8 <fclose>                      <== NOT EXECUTED
  }                                                                   
  return 0;                                                           
}                                                                     
ffc05754:	80 01 00 14 	lwz     r0,20(r1)                              
ffc05758:	38 60 00 00 	li      r3,0                                   
ffc0575c:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc05760:	38 21 00 10 	addi    r1,r1,16                               
ffc05764:	7c 08 03 a6 	mtlr    r0                                     
ffc05768:	4e 80 00 20 	blr                                            
{                                                                     
  switch ( fileno(fp) ) {                                             
    case 0:                                                           
    case 1:                                                           
    case 2:                                                           
      if (fp->_flags & __SMBF) {                                      
ffc0576c:	a0 1f 00 0c 	lhz     r0,12(r31)                             
ffc05770:	70 09 00 80 	andi.   r9,r0,128                              
ffc05774:	41 82 ff e0 	beq+    ffc05754 <newlib_free_buffers+0x28>    <== ALWAYS TAKEN
        free( fp->_bf._base );                                        
ffc05778:	80 7f 00 10 	lwz     r3,16(r31)                             <== NOT EXECUTED
ffc0577c:	4b ff f5 01 	bl      ffc04c7c <free>                        <== NOT EXECUTED
        fp->_flags &= ~__SMBF;                                        
        fp->_bf._base = fp->_p = (unsigned char *) NULL;              
ffc05780:	38 00 00 00 	li      r0,0                                   <== NOT EXECUTED
ffc05784:	90 1f 00 00 	stw     r0,0(r31)                              <== NOT EXECUTED
      break;                                                          
    default:                                                          
     fclose(fp);                                                      
  }                                                                   
  return 0;                                                           
}                                                                     
ffc05788:	38 60 00 00 	li      r3,0                                   <== NOT EXECUTED
    case 1:                                                           
    case 2:                                                           
      if (fp->_flags & __SMBF) {                                      
        free( fp->_bf._base );                                        
        fp->_flags &= ~__SMBF;                                        
        fp->_bf._base = fp->_p = (unsigned char *) NULL;              
ffc0578c:	90 1f 00 10 	stw     r0,16(r31)                             <== NOT EXECUTED
      break;                                                          
    default:                                                          
     fclose(fp);                                                      
  }                                                                   
  return 0;                                                           
}                                                                     
ffc05790:	80 01 00 14 	lwz     r0,20(r1)                              <== NOT EXECUTED
    case 0:                                                           
    case 1:                                                           
    case 2:                                                           
      if (fp->_flags & __SMBF) {                                      
        free( fp->_bf._base );                                        
        fp->_flags &= ~__SMBF;                                        
ffc05794:	a1 3f 00 0c 	lhz     r9,12(r31)                             <== NOT EXECUTED
      break;                                                          
    default:                                                          
     fclose(fp);                                                      
  }                                                                   
  return 0;                                                           
}                                                                     
ffc05798:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
    case 0:                                                           
    case 1:                                                           
    case 2:                                                           
      if (fp->_flags & __SMBF) {                                      
        free( fp->_bf._base );                                        
        fp->_flags &= ~__SMBF;                                        
ffc0579c:	55 29 06 6e 	rlwinm  r9,r9,0,25,23                          <== NOT EXECUTED
ffc057a0:	b1 3f 00 0c 	sth     r9,12(r31)                             <== NOT EXECUTED
      break;                                                          
    default:                                                          
     fclose(fp);                                                      
  }                                                                   
  return 0;                                                           
}                                                                     
ffc057a4:	83 e1 00 0c 	lwz     r31,12(r1)                             <== NOT EXECUTED
ffc057a8:	38 21 00 10 	addi    r1,r1,16                               <== NOT EXECUTED
ffc057ac:	4e 80 00 20 	blr                                            <== NOT EXECUTED
                                                                      

ffc05aec <open>: int open( const char *pathname, int flags, ... ) {
ffc05aec:	94 21 ff b0 	stwu    r1,-80(r1)                             
ffc05af0:	7c 08 02 a6 	mflr    r0                                     
ffc05af4:	7d 80 00 26 	mfcr    r12                                    
ffc05af8:	90 01 00 54 	stw     r0,84(r1)                              
                                                                      
  /*                                                                  
   * Set the Evaluation flags                                         
   */                                                                 
  eval_flags = 0;                                                     
  status = flags + 1;                                                 
ffc05afc:	38 04 00 01 	addi    r0,r4,1                                
  if ( ( status & _FREAD ) == _FREAD )                                
ffc05b00:	70 09 00 01 	andi.   r9,r0,1                                
int open(                                                             
  const char   *pathname,                                             
  int           flags,                                                
  ...                                                                 
)                                                                     
{                                                                     
ffc05b04:	93 41 00 38 	stw     r26,56(r1)                             
  int                                 eval_flags;                     
                                                                      
  /*                                                                  
   * Set the Evaluation flags                                         
   */                                                                 
  eval_flags = 0;                                                     
ffc05b08:	3b 40 00 00 	li      r26,0                                  
int open(                                                             
  const char   *pathname,                                             
  int           flags,                                                
  ...                                                                 
)                                                                     
{                                                                     
ffc05b0c:	93 a1 00 44 	stw     r29,68(r1)                             
ffc05b10:	7c 7d 1b 78 	mr      r29,r3                                 
ffc05b14:	93 c1 00 48 	stw     r30,72(r1)                             
ffc05b18:	7c 9e 23 78 	mr      r30,r4                                 
ffc05b1c:	93 21 00 34 	stw     r25,52(r1)                             
ffc05b20:	93 61 00 3c 	stw     r27,60(r1)                             
ffc05b24:	93 81 00 40 	stw     r28,64(r1)                             
ffc05b28:	93 e1 00 4c 	stw     r31,76(r1)                             
ffc05b2c:	91 81 00 30 	stw     r12,48(r1)                             
ffc05b30:	90 a1 00 28 	stw     r5,40(r1)                              
  /*                                                                  
   * Set the Evaluation flags                                         
   */                                                                 
  eval_flags = 0;                                                     
  status = flags + 1;                                                 
  if ( ( status & _FREAD ) == _FREAD )                                
ffc05b34:	41 82 00 08 	beq-    ffc05b3c <open+0x50>                   
    eval_flags |= RTEMS_LIBIO_PERMS_READ;                             
ffc05b38:	3b 40 00 04 	li      r26,4                                  
  if ( ( status & _FWRITE ) == _FWRITE )                              
ffc05b3c:	70 09 00 02 	andi.   r9,r0,2                                
ffc05b40:	41 82 00 08 	beq-    ffc05b48 <open+0x5c>                   
    eval_flags |= RTEMS_LIBIO_PERMS_WRITE;                            
ffc05b44:	63 5a 00 02 	ori     r26,r26,2                              
                                                                      
  va_start(ap, flags);                                                
ffc05b48:	38 01 00 58 	addi    r0,r1,88                               
ffc05b4c:	39 21 00 20 	addi    r9,r1,32                               
ffc05b50:	90 01 00 0c 	stw     r0,12(r1)                              
                                                                      
  mode = va_arg( ap, int );                                           
ffc05b54:	38 00 00 03 	li      r0,3                                   
  if ( ( status & _FREAD ) == _FREAD )                                
    eval_flags |= RTEMS_LIBIO_PERMS_READ;                             
  if ( ( status & _FWRITE ) == _FWRITE )                              
    eval_flags |= RTEMS_LIBIO_PERMS_WRITE;                            
                                                                      
  va_start(ap, flags);                                                
ffc05b58:	91 21 00 10 	stw     r9,16(r1)                              
                                                                      
  mode = va_arg( ap, int );                                           
ffc05b5c:	98 01 00 08 	stb     r0,8(r1)                               
ffc05b60:	83 69 00 08 	lwz     r27,8(r9)                              
   *             code does not require changes here since network file
   *             descriptors are obtained using socket(), not open(). 
   */                                                                 
                                                                      
  /* allocate a file control block */                                 
  iop = rtems_libio_allocate();                                       
ffc05b64:	48 00 8f 35 	bl      ffc0ea98 <rtems_libio_allocate>        
  if ( iop == 0 ) {                                                   
ffc05b68:	2e 03 00 00 	cmpwi   cr4,r3,0                               
ffc05b6c:	7c 7f 1b 78 	mr      r31,r3                                 
ffc05b70:	41 92 00 e8 	beq-    cr4,ffc05c58 <open+0x16c>              
  }                                                                   
                                                                      
  /*                                                                  
   *  See if the file exists.                                         
   */                                                                 
  status = rtems_filesystem_evaluate_path(                            
ffc05b74:	7f a3 eb 78 	mr      r3,r29                                 
ffc05b78:	48 00 d8 59 	bl      ffc133d0 <strlen>                      
ffc05b7c:	3b 81 00 14 	addi    r28,r1,20                              
ffc05b80:	7c 64 1b 78 	mr      r4,r3                                  
ffc05b84:	7f 45 d3 78 	mr      r5,r26                                 
ffc05b88:	7f a3 eb 78 	mr      r3,r29                                 
ffc05b8c:	7f 86 e3 78 	mr      r6,r28                                 
ffc05b90:	38 e0 00 01 	li      r7,1                                   
ffc05b94:	4b ff ef 61 	bl      ffc04af4 <rtems_filesystem_evaluate_path>
    pathname, strlen( pathname ), eval_flags, &loc, true );           
                                                                      
  if ( status == -1 ) {                                               
ffc05b98:	2f 83 ff ff 	cmpwi   cr7,r3,-1                              
ffc05b9c:	41 9e 01 14 	beq-    cr7,ffc05cb0 <open+0x1c4>              
    if ( status != 0 ) {   /* The file did not exist */               
      rc = EACCES;                                                    
      goto done;                                                      
    }                                                                 
                                                                      
  } else if ((flags & (O_EXCL|O_CREAT)) == (O_EXCL|O_CREAT)) {        
ffc05ba0:	73 c0 0a 00 	andi.   r0,r30,2560                            
ffc05ba4:	2f 80 0a 00 	cmpwi   cr7,r0,2560                            
ffc05ba8:	41 9e 00 c4 	beq-    cr7,ffc05c6c <open+0x180>              
                                                                      
  /*                                                                  
   *  Fill in the file control block based on the loc structure       
   *  returned by successful path evaluation.                         
   */                                                                 
  iop->flags     |= rtems_libio_fcntl_flags( flags );                 
ffc05bac:	7f c3 f3 78 	mr      r3,r30                                 
ffc05bb0:	83 5f 00 18 	lwz     r26,24(r31)                            
ffc05bb4:	48 00 8e 35 	bl      ffc0e9e8 <rtems_libio_fcntl_flags>     
  iop->pathinfo   = loc;                                              
ffc05bb8:	80 01 00 14 	lwz     r0,20(r1)                              
ffc05bbc:	81 21 00 1c 	lwz     r9,28(r1)                              
                                                                      
  /*                                                                  
   *  Fill in the file control block based on the loc structure       
   *  returned by successful path evaluation.                         
   */                                                                 
  iop->flags     |= rtems_libio_fcntl_flags( flags );                 
ffc05bc0:	7c 63 d3 78 	or      r3,r3,r26                              
  iop->pathinfo   = loc;                                              
ffc05bc4:	90 1f 00 1c 	stw     r0,28(r31)                             
                                                                      
  rc = (*iop->pathinfo.handlers->open_h)( iop, pathname, flags, mode );
ffc05bc8:	7f a4 eb 78 	mr      r4,r29                                 
ffc05bcc:	7f c5 f3 78 	mr      r5,r30                                 
  /*                                                                  
   *  Fill in the file control block based on the loc structure       
   *  returned by successful path evaluation.                         
   */                                                                 
  iop->flags     |= rtems_libio_fcntl_flags( flags );                 
  iop->pathinfo   = loc;                                              
ffc05bd0:	80 01 00 18 	lwz     r0,24(r1)                              
                                                                      
  rc = (*iop->pathinfo.handlers->open_h)( iop, pathname, flags, mode );
ffc05bd4:	7f 66 db 78 	mr      r6,r27                                 
                                                                      
  /*                                                                  
   *  Fill in the file control block based on the loc structure       
   *  returned by successful path evaluation.                         
   */                                                                 
  iop->flags     |= rtems_libio_fcntl_flags( flags );                 
ffc05bd8:	90 7f 00 18 	stw     r3,24(r31)                             
  iop->pathinfo   = loc;                                              
                                                                      
  rc = (*iop->pathinfo.handlers->open_h)( iop, pathname, flags, mode );
ffc05bdc:	7f e3 fb 78 	mr      r3,r31                                 
  /*                                                                  
   *  Fill in the file control block based on the loc structure       
   *  returned by successful path evaluation.                         
   */                                                                 
  iop->flags     |= rtems_libio_fcntl_flags( flags );                 
  iop->pathinfo   = loc;                                              
ffc05be0:	90 1f 00 20 	stw     r0,32(r31)                             
ffc05be4:	80 01 00 20 	lwz     r0,32(r1)                              
ffc05be8:	91 3f 00 24 	stw     r9,36(r31)                             
ffc05bec:	90 1f 00 28 	stw     r0,40(r31)                             
ffc05bf0:	80 01 00 24 	lwz     r0,36(r1)                              
ffc05bf4:	90 1f 00 2c 	stw     r0,44(r31)                             
                                                                      
  rc = (*iop->pathinfo.handlers->open_h)( iop, pathname, flags, mode );
ffc05bf8:	80 09 00 00 	lwz     r0,0(r9)                               
ffc05bfc:	7c 09 03 a6 	mtctr   r0                                     
ffc05c00:	4e 80 04 21 	bctrl                                          
  if ( rc ) {                                                         
ffc05c04:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05c08:	40 9e 00 8c 	bne-    cr7,ffc05c94 <open+0x1a8>              
  }                                                                   
                                                                      
  /*                                                                  
   *  Optionally truncate the file.                                   
   */                                                                 
  if ( (flags & O_TRUNC) == O_TRUNC ) {                               
ffc05c0c:	73 c0 04 00 	andi.   r0,r30,1024                            
ffc05c10:	3f c0 00 00 	lis     r30,0                                  
ffc05c14:	40 82 00 c0 	bne-    ffc05cd4 <open+0x1e8>                  
    if ( loc_to_free )                                                
      rtems_filesystem_freenode( loc_to_free );                       
    rtems_set_errno_and_return_minus_one( rc );                       
  }                                                                   
                                                                      
  return iop - rtems_libio_iops;                                      
ffc05c18:	80 7e 27 0c 	lwz     r3,9996(r30)                           
ffc05c1c:	7f e3 f8 50 	subf    r31,r3,r31                             
ffc05c20:	7f e3 36 70 	srawi   r3,r31,6                               
}                                                                     
ffc05c24:	80 01 00 54 	lwz     r0,84(r1)                              
ffc05c28:	81 81 00 30 	lwz     r12,48(r1)                             
ffc05c2c:	7c 08 03 a6 	mtlr    r0                                     
ffc05c30:	83 21 00 34 	lwz     r25,52(r1)                             
ffc05c34:	83 41 00 38 	lwz     r26,56(r1)                             
ffc05c38:	7d 80 81 20 	mtcrf   8,r12                                  
ffc05c3c:	83 61 00 3c 	lwz     r27,60(r1)                             
ffc05c40:	83 81 00 40 	lwz     r28,64(r1)                             
ffc05c44:	83 a1 00 44 	lwz     r29,68(r1)                             
ffc05c48:	83 c1 00 48 	lwz     r30,72(r1)                             
ffc05c4c:	83 e1 00 4c 	lwz     r31,76(r1)                             
ffc05c50:	38 21 00 50 	addi    r1,r1,80                               
ffc05c54:	4e 80 00 20 	blr                                            
   */                                                                 
                                                                      
  /* allocate a file control block */                                 
  iop = rtems_libio_allocate();                                       
  if ( iop == 0 ) {                                                   
    rc = ENFILE;                                                      
ffc05c58:	3b 20 00 17 	li      r25,23                                 
  if ( rc ) {                                                         
    if ( iop )                                                        
      rtems_libio_free( iop );                                        
    if ( loc_to_free )                                                
      rtems_filesystem_freenode( loc_to_free );                       
    rtems_set_errno_and_return_minus_one( rc );                       
ffc05c5c:	48 00 c4 ed 	bl      ffc12148 <__errno>                     
ffc05c60:	93 23 00 00 	stw     r25,0(r3)                              
ffc05c64:	38 60 ff ff 	li      r3,-1                                  
ffc05c68:	4b ff ff bc 	b       ffc05c24 <open+0x138>                  
    }                                                                 
                                                                      
  } else if ((flags & (O_EXCL|O_CREAT)) == (O_EXCL|O_CREAT)) {        
    /* We were trying to create a file that already exists */         
    rc = EEXIST;                                                      
    loc_to_free = &loc;                                               
ffc05c6c:	7f 9a e3 78 	mr      r26,r28                                
      goto done;                                                      
    }                                                                 
                                                                      
  } else if ((flags & (O_EXCL|O_CREAT)) == (O_EXCL|O_CREAT)) {        
    /* We were trying to create a file that already exists */         
    rc = EEXIST;                                                      
ffc05c70:	3b 20 00 11 	li      r25,17                                 
   */                                                                 
done:                                                                 
  va_end(ap);                                                         
                                                                      
  if ( rc ) {                                                         
    if ( iop )                                                        
ffc05c74:	41 92 00 0c 	beq-    cr4,ffc05c80 <open+0x194>              
      rtems_libio_free( iop );                                        
ffc05c78:	7f e3 fb 78 	mr      r3,r31                                 
ffc05c7c:	48 00 8e f1 	bl      ffc0eb6c <rtems_libio_free>            
    if ( loc_to_free )                                                
ffc05c80:	2f 9a 00 00 	cmpwi   cr7,r26,0                              
ffc05c84:	41 be ff d8 	beq-    cr7,ffc05c5c <open+0x170>              
      rtems_filesystem_freenode( loc_to_free );                       
ffc05c88:	7f 43 d3 78 	mr      r3,r26                                 
ffc05c8c:	4b ff ef c5 	bl      ffc04c50 <rtems_filesystem_freenode>   
ffc05c90:	4b ff ff cc 	b       ffc05c5c <open+0x170>                  
  iop->flags     |= rtems_libio_fcntl_flags( flags );                 
  iop->pathinfo   = loc;                                              
                                                                      
  rc = (*iop->pathinfo.handlers->open_h)( iop, pathname, flags, mode );
  if ( rc ) {                                                         
    rc = errno;                                                       
ffc05c94:	48 00 c4 b5 	bl      ffc12148 <__errno>                     
    rc = EEXIST;                                                      
    loc_to_free = &loc;                                               
    goto done;                                                        
  }                                                                   
                                                                      
  loc_to_free = &loc;                                                 
ffc05c98:	7f 9a e3 78 	mr      r26,r28                                
  iop->flags     |= rtems_libio_fcntl_flags( flags );                 
  iop->pathinfo   = loc;                                              
                                                                      
  rc = (*iop->pathinfo.handlers->open_h)( iop, pathname, flags, mode );
  if ( rc ) {                                                         
    rc = errno;                                                       
ffc05c9c:	83 23 00 00 	lwz     r25,0(r3)                              
ffc05ca0:	2e 19 00 00 	cmpwi   cr4,r25,0                              
   *  Single exit and clean up path.                                  
   */                                                                 
done:                                                                 
  va_end(ap);                                                         
                                                                      
  if ( rc ) {                                                         
ffc05ca4:	40 92 00 fc 	bne-    cr4,ffc05da0 <open+0x2b4>              <== ALWAYS TAKEN
ffc05ca8:	3f c0 00 00 	lis     r30,0                                  <== NOT EXECUTED
ffc05cac:	4b ff ff 6c 	b       ffc05c18 <open+0x12c>                  <== NOT EXECUTED
   */                                                                 
  status = rtems_filesystem_evaluate_path(                            
    pathname, strlen( pathname ), eval_flags, &loc, true );           
                                                                      
  if ( status == -1 ) {                                               
    if ( errno != ENOENT ) {                                          
ffc05cb0:	48 00 c4 99 	bl      ffc12148 <__errno>                     
ffc05cb4:	80 03 00 00 	lwz     r0,0(r3)                               
ffc05cb8:	2f 80 00 02 	cmpwi   cr7,r0,2                               
ffc05cbc:	41 9e 00 68 	beq-    cr7,ffc05d24 <open+0x238>              
      rc = errno;                                                     
ffc05cc0:	48 00 c4 89 	bl      ffc12148 <__errno>                     
  int                                 mode;                           
  int                                 rc;                             
  rtems_libio_t                      *iop = 0;                        
  int                                 status;                         
  rtems_filesystem_location_info_t    loc;                            
  rtems_filesystem_location_info_t   *loc_to_free = NULL;             
ffc05cc4:	3b 40 00 00 	li      r26,0                                  
  status = rtems_filesystem_evaluate_path(                            
    pathname, strlen( pathname ), eval_flags, &loc, true );           
                                                                      
  if ( status == -1 ) {                                               
    if ( errno != ENOENT ) {                                          
      rc = errno;                                                     
ffc05cc8:	83 23 00 00 	lwz     r25,0(r3)                              
ffc05ccc:	2e 19 00 00 	cmpwi   cr4,r25,0                              
      goto done;                                                      
ffc05cd0:	4b ff ff d4 	b       ffc05ca4 <open+0x1b8>                  
                                                                      
  /*                                                                  
   *  Optionally truncate the file.                                   
   */                                                                 
  if ( (flags & O_TRUNC) == O_TRUNC ) {                               
    rc = ftruncate( iop - rtems_libio_iops, 0 );                      
ffc05cd4:	80 7e 27 0c 	lwz     r3,9996(r30)                           
ffc05cd8:	38 a0 00 00 	li      r5,0                                   
ffc05cdc:	38 c0 00 00 	li      r6,0                                   
ffc05ce0:	7c 63 f8 50 	subf    r3,r3,r31                              
ffc05ce4:	7c 63 36 70 	srawi   r3,r3,6                                
ffc05ce8:	48 00 8b f5 	bl      ffc0e8dc <ftruncate>                   
    if ( rc ) {                                                       
ffc05cec:	2e 03 00 00 	cmpwi   cr4,r3,0                               
ffc05cf0:	7c 79 1b 78 	mr      r25,r3                                 
ffc05cf4:	41 92 ff 24 	beq+    cr4,ffc05c18 <open+0x12c>              
      if(errno) rc = errno;                                           
ffc05cf8:	48 00 c4 51 	bl      ffc12148 <__errno>                     
ffc05cfc:	80 03 00 00 	lwz     r0,0(r3)                               
ffc05d00:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc05d04:	40 9e 00 5c 	bne-    cr7,ffc05d60 <open+0x274>              <== ALWAYS TAKEN
      close( iop - rtems_libio_iops );                                
ffc05d08:	80 7e 27 0c 	lwz     r3,9996(r30)                           
      /* those are released by close(): */                            
      iop = 0;                                                        
      loc_to_free = NULL;                                             
ffc05d0c:	3b 40 00 00 	li      r26,0                                  
   */                                                                 
  if ( (flags & O_TRUNC) == O_TRUNC ) {                               
    rc = ftruncate( iop - rtems_libio_iops, 0 );                      
    if ( rc ) {                                                       
      if(errno) rc = errno;                                           
      close( iop - rtems_libio_iops );                                
ffc05d10:	7c 63 f8 50 	subf    r3,r3,r31                              
ffc05d14:	7c 63 36 70 	srawi   r3,r3,6                                
ffc05d18:	48 00 8b 25 	bl      ffc0e83c <close>                       
      /* those are released by close(): */                            
      iop = 0;                                                        
ffc05d1c:	3b e0 00 00 	li      r31,0                                  
ffc05d20:	4b ff ff 84 	b       ffc05ca4 <open+0x1b8>                  
      rc = errno;                                                     
      goto done;                                                      
    }                                                                 
                                                                      
    /* If the file does not exist and we are not trying to create it--> error */
    if ( !(flags & O_CREAT) ) {                                       
ffc05d24:	73 c0 02 00 	andi.   r0,r30,512                             
  int                                 mode;                           
  int                                 rc;                             
  rtems_libio_t                      *iop = 0;                        
  int                                 status;                         
  rtems_filesystem_location_info_t    loc;                            
  rtems_filesystem_location_info_t   *loc_to_free = NULL;             
ffc05d28:	3b 40 00 00 	li      r26,0                                  
      goto done;                                                      
    }                                                                 
                                                                      
    /* If the file does not exist and we are not trying to create it--> error */
    if ( !(flags & O_CREAT) ) {                                       
      rc = ENOENT;                                                    
ffc05d2c:	3b 20 00 02 	li      r25,2                                  
      rc = errno;                                                     
      goto done;                                                      
    }                                                                 
                                                                      
    /* If the file does not exist and we are not trying to create it--> error */
    if ( !(flags & O_CREAT) ) {                                       
ffc05d30:	41 82 ff 44 	beq+    ffc05c74 <open+0x188>                  
      rc = ENOENT;                                                    
      goto done;                                                      
    }                                                                 
                                                                      
    /* Create the node for the new regular file */                    
    rc = mknod( pathname, S_IFREG | mode, 0LL );                      
ffc05d34:	7f a3 eb 78 	mr      r3,r29                                 
ffc05d38:	63 64 80 00 	ori     r4,r27,32768                           
ffc05d3c:	38 a0 00 00 	li      r5,0                                   
ffc05d40:	38 c0 00 00 	li      r6,0                                   
ffc05d44:	4b ff f4 99 	bl      ffc051dc <mknod>                       
    if ( rc ) {                                                       
ffc05d48:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05d4c:	41 9e 00 24 	beq-    cr7,ffc05d70 <open+0x284>              <== ALWAYS TAKEN
      rc = errno;                                                     
ffc05d50:	48 00 c3 f9 	bl      ffc12148 <__errno>                     <== NOT EXECUTED
ffc05d54:	83 23 00 00 	lwz     r25,0(r3)                              <== NOT EXECUTED
ffc05d58:	2e 19 00 00 	cmpwi   cr4,r25,0                              <== NOT EXECUTED
      goto done;                                                      
ffc05d5c:	4b ff ff 48 	b       ffc05ca4 <open+0x1b8>                  <== NOT EXECUTED
   *  Optionally truncate the file.                                   
   */                                                                 
  if ( (flags & O_TRUNC) == O_TRUNC ) {                               
    rc = ftruncate( iop - rtems_libio_iops, 0 );                      
    if ( rc ) {                                                       
      if(errno) rc = errno;                                           
ffc05d60:	48 00 c3 e9 	bl      ffc12148 <__errno>                     
ffc05d64:	83 23 00 00 	lwz     r25,0(r3)                              
ffc05d68:	2e 19 00 00 	cmpwi   cr4,r25,0                              
ffc05d6c:	4b ff ff 9c 	b       ffc05d08 <open+0x21c>                  
    /*                                                                
     * After we do the mknod(), we have to evaluate the path to get the
     * "loc" structure needed to actually have the file itself open.  
     * So we created it, and then we need to have "look it up."       
     */                                                               
    status = rtems_filesystem_evaluate_path(                          
ffc05d70:	7f a3 eb 78 	mr      r3,r29                                 
ffc05d74:	48 00 d6 5d 	bl      ffc133d0 <strlen>                      
ffc05d78:	38 a0 00 00 	li      r5,0                                   
ffc05d7c:	7c 64 1b 78 	mr      r4,r3                                  
ffc05d80:	7f 86 e3 78 	mr      r6,r28                                 
ffc05d84:	7f a3 eb 78 	mr      r3,r29                                 
ffc05d88:	38 e0 00 01 	li      r7,1                                   
ffc05d8c:	4b ff ed 69 	bl      ffc04af4 <rtems_filesystem_evaluate_path>
      pathname, strlen( pathname ), 0x0, &loc, true );                
    if ( status != 0 ) {   /* The file did not exist */               
      rc = EACCES;                                                    
ffc05d90:	3b 20 00 0d 	li      r25,13                                 
     * "loc" structure needed to actually have the file itself open.  
     * So we created it, and then we need to have "look it up."       
     */                                                               
    status = rtems_filesystem_evaluate_path(                          
      pathname, strlen( pathname ), 0x0, &loc, true );                
    if ( status != 0 ) {   /* The file did not exist */               
ffc05d94:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05d98:	40 be fe dc 	bne-    cr7,ffc05c74 <open+0x188>              <== NEVER TAKEN
ffc05d9c:	4b ff fe 10 	b       ffc05bac <open+0xc0>                   
ffc05da0:	2e 1f 00 00 	cmpwi   cr4,r31,0                              
ffc05da4:	4b ff fe d0 	b       ffc05c74 <open+0x188>                  
                                                                      

ffc06cac <oproc>: /* * Handle output processing */ static void oproc (unsigned char c, struct rtems_termios_tty *tty) {
ffc06cac:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc06cb0:	7c 08 02 a6 	mflr    r0                                     
ffc06cb4:	90 01 00 1c 	stw     r0,28(r1)                              
  int  i;                                                             
                                                                      
  if (tty->termios.c_oflag & OPOST) {                                 
ffc06cb8:	80 04 00 34 	lwz     r0,52(r4)                              
/*                                                                    
 * Handle output processing                                           
 */                                                                   
static void                                                           
oproc (unsigned char c, struct rtems_termios_tty *tty)                
{                                                                     
ffc06cbc:	93 e1 00 14 	stw     r31,20(r1)                             
ffc06cc0:	7c 9f 23 78 	mr      r31,r4                                 
  int  i;                                                             
                                                                      
  if (tty->termios.c_oflag & OPOST) {                                 
ffc06cc4:	70 09 00 01 	andi.   r9,r0,1                                
/*                                                                    
 * Handle output processing                                           
 */                                                                   
static void                                                           
oproc (unsigned char c, struct rtems_termios_tty *tty)                
{                                                                     
ffc06cc8:	98 61 00 08 	stb     r3,8(r1)                               
  int  i;                                                             
                                                                      
  if (tty->termios.c_oflag & OPOST) {                                 
ffc06ccc:	41 82 00 50 	beq-    ffc06d1c <oproc+0x70>                  <== NEVER TAKEN
    switch (c) {                                                      
ffc06cd0:	2f 83 00 09 	cmpwi   cr7,r3,9                               
ffc06cd4:	41 9e 00 fc 	beq-    cr7,ffc06dd0 <oproc+0x124>             
ffc06cd8:	2b 83 00 09 	cmplwi  cr7,r3,9                               
ffc06cdc:	40 9d 00 64 	ble-    cr7,ffc06d40 <oproc+0x94>              <== NEVER TAKEN
ffc06ce0:	2f 83 00 0a 	cmpwi   cr7,r3,10                              
ffc06ce4:	41 9e 00 7c 	beq-    cr7,ffc06d60 <oproc+0xb4>              
ffc06ce8:	2f 83 00 0d 	cmpwi   cr7,r3,13                              
ffc06cec:	41 9e 00 ac 	beq-    cr7,ffc06d98 <oproc+0xec>              <== NEVER TAKEN
      if (tty->column > 0)                                            
        tty->column--;                                                
      break;                                                          
                                                                      
    default:                                                          
      if (tty->termios.c_oflag & OLCUC)                               
ffc06cf0:	70 09 00 02 	andi.   r9,r0,2                                
ffc06cf4:	40 82 01 00 	bne-    ffc06df4 <oproc+0x148>                 <== NEVER TAKEN
ffc06cf8:	3d 20 00 00 	lis     r9,0                                   
ffc06cfc:	80 09 26 a0 	lwz     r0,9888(r9)                            
        c = toupper(c);                                               
      if (!iscntrl(c))                                                
ffc06d00:	7c 60 1a 14 	add     r3,r0,r3                               
ffc06d04:	88 03 00 01 	lbz     r0,1(r3)                               
ffc06d08:	70 09 00 20 	andi.   r9,r0,32                               
ffc06d0c:	40 82 00 10 	bne-    ffc06d1c <oproc+0x70>                  <== NEVER TAKEN
        tty->column++;                                                
ffc06d10:	81 3f 00 28 	lwz     r9,40(r31)                             
ffc06d14:	38 09 00 01 	addi    r0,r9,1                                
ffc06d18:	90 1f 00 28 	stw     r0,40(r31)                             
      break;                                                          
    }                                                                 
  }                                                                   
  rtems_termios_puts (&c, 1, tty);                                    
ffc06d1c:	38 61 00 08 	addi    r3,r1,8                                
ffc06d20:	38 80 00 01 	li      r4,1                                   
ffc06d24:	7f e5 fb 78 	mr      r5,r31                                 
ffc06d28:	4b ff fd fd 	bl      ffc06b24 <rtems_termios_puts>          
}                                                                     
ffc06d2c:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc06d30:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc06d34:	38 21 00 18 	addi    r1,r1,24                               
ffc06d38:	7c 08 03 a6 	mtlr    r0                                     
ffc06d3c:	4e 80 00 20 	blr                                            
oproc (unsigned char c, struct rtems_termios_tty *tty)                
{                                                                     
  int  i;                                                             
                                                                      
  if (tty->termios.c_oflag & OPOST) {                                 
    switch (c) {                                                      
ffc06d40:	2f 83 00 08 	cmpwi   cr7,r3,8                               <== NOT EXECUTED
ffc06d44:	40 9e ff ac 	bne+    cr7,ffc06cf0 <oproc+0x44>              <== NOT EXECUTED
      }                                                               
      tty->column += i;                                               
      break;                                                          
                                                                      
    case '\b':                                                        
      if (tty->column > 0)                                            
ffc06d48:	81 24 00 28 	lwz     r9,40(r4)                              <== NOT EXECUTED
ffc06d4c:	2f 89 00 00 	cmpwi   cr7,r9,0                               <== NOT EXECUTED
ffc06d50:	40 bd ff cc 	ble-    cr7,ffc06d1c <oproc+0x70>              <== NOT EXECUTED
        tty->column--;                                                
ffc06d54:	39 29 ff ff 	addi    r9,r9,-1                               <== NOT EXECUTED
ffc06d58:	91 3f 00 28 	stw     r9,40(r31)                             <== NOT EXECUTED
ffc06d5c:	4b ff ff c0 	b       ffc06d1c <oproc+0x70>                  <== NOT EXECUTED
  int  i;                                                             
                                                                      
  if (tty->termios.c_oflag & OPOST) {                                 
    switch (c) {                                                      
    case '\n':                                                        
      if (tty->termios.c_oflag & ONLRET)                              
ffc06d60:	70 09 00 20 	andi.   r9,r0,32                               
ffc06d64:	41 82 00 0c 	beq-    ffc06d70 <oproc+0xc4>                  <== ALWAYS TAKEN
        tty->column = 0;                                              
ffc06d68:	39 20 00 00 	li      r9,0                                   <== NOT EXECUTED
ffc06d6c:	91 24 00 28 	stw     r9,40(r4)                              <== NOT EXECUTED
      if (tty->termios.c_oflag & ONLCR) {                             
ffc06d70:	70 09 00 04 	andi.   r9,r0,4                                
ffc06d74:	41 82 ff a8 	beq+    ffc06d1c <oproc+0x70>                  <== NEVER TAKEN
        rtems_termios_puts ("\r", 1, tty);                            
ffc06d78:	3c 60 ff c2 	lis     r3,-62                                 
ffc06d7c:	38 63 8d 20 	addi    r3,r3,-29408                           
ffc06d80:	38 80 00 01 	li      r4,1                                   
ffc06d84:	7f e5 fb 78 	mr      r5,r31                                 
ffc06d88:	4b ff fd 9d 	bl      ffc06b24 <rtems_termios_puts>          
        tty->column = 0;                                              
ffc06d8c:	38 00 00 00 	li      r0,0                                   
ffc06d90:	90 1f 00 28 	stw     r0,40(r31)                             
ffc06d94:	4b ff ff 88 	b       ffc06d1c <oproc+0x70>                  
      }                                                               
      break;                                                          
                                                                      
    case '\r':                                                        
      if ((tty->termios.c_oflag & ONOCR) && (tty->column == 0))       
ffc06d98:	70 09 00 10 	andi.   r9,r0,16                               <== NOT EXECUTED
ffc06d9c:	41 82 00 10 	beq-    ffc06dac <oproc+0x100>                 <== NOT EXECUTED
ffc06da0:	81 24 00 28 	lwz     r9,40(r4)                              <== NOT EXECUTED
ffc06da4:	2f 89 00 00 	cmpwi   cr7,r9,0                               <== NOT EXECUTED
ffc06da8:	41 be ff 84 	beq-    cr7,ffc06d2c <oproc+0x80>              <== NOT EXECUTED
        return;                                                       
      if (tty->termios.c_oflag & OCRNL) {                             
ffc06dac:	70 09 00 08 	andi.   r9,r0,8                                <== NOT EXECUTED
ffc06db0:	41 a2 ff a8 	beq-    ffc06d58 <oproc+0xac>                  <== NOT EXECUTED
        c = '\n';                                                     
        if (tty->termios.c_oflag & ONLRET)                            
ffc06db4:	70 09 00 20 	andi.   r9,r0,32                               <== NOT EXECUTED
                                                                      
    case '\r':                                                        
      if ((tty->termios.c_oflag & ONOCR) && (tty->column == 0))       
        return;                                                       
      if (tty->termios.c_oflag & OCRNL) {                             
        c = '\n';                                                     
ffc06db8:	38 00 00 0a 	li      r0,10                                  <== NOT EXECUTED
ffc06dbc:	98 01 00 08 	stb     r0,8(r1)                               <== NOT EXECUTED
        if (tty->termios.c_oflag & ONLRET)                            
ffc06dc0:	41 a2 ff 5c 	beq-    ffc06d1c <oproc+0x70>                  <== NOT EXECUTED
          tty->column = 0;                                            
ffc06dc4:	38 00 00 00 	li      r0,0                                   <== NOT EXECUTED
ffc06dc8:	90 1f 00 28 	stw     r0,40(r31)                             <== NOT EXECUTED
ffc06dcc:	4b ff ff 50 	b       ffc06d1c <oproc+0x70>                  <== NOT EXECUTED
      tty->column = 0;                                                
      break;                                                          
                                                                      
    case '\t':                                                        
      i = 8 - (tty->column & 7);                                      
      if ((tty->termios.c_oflag & TABDLY) == XTABS) {                 
ffc06dd0:	54 00 04 e8 	rlwinm  r0,r0,0,19,20                          
ffc06dd4:	2f 80 18 00 	cmpwi   cr7,r0,6144                            
      }                                                               
      tty->column = 0;                                                
      break;                                                          
                                                                      
    case '\t':                                                        
      i = 8 - (tty->column & 7);                                      
ffc06dd8:	80 04 00 28 	lwz     r0,40(r4)                              
ffc06ddc:	54 04 07 7e 	clrlwi  r4,r0,29                               
ffc06de0:	20 84 00 08 	subfic  r4,r4,8                                
      if ((tty->termios.c_oflag & TABDLY) == XTABS) {                 
ffc06de4:	41 9e 00 44 	beq-    cr7,ffc06e28 <oproc+0x17c>             <== ALWAYS TAKEN
        tty->column += i;                                             
        rtems_termios_puts ( "        ",  i, tty);                    
        return;                                                       
      }                                                               
      tty->column += i;                                               
ffc06de8:	7c 84 02 14 	add     r4,r4,r0                               <== NOT EXECUTED
ffc06dec:	90 9f 00 28 	stw     r4,40(r31)                             <== NOT EXECUTED
      break;                                                          
ffc06df0:	4b ff ff 2c 	b       ffc06d1c <oproc+0x70>                  <== NOT EXECUTED
        tty->column--;                                                
      break;                                                          
                                                                      
    default:                                                          
      if (tty->termios.c_oflag & OLCUC)                               
        c = toupper(c);                                               
ffc06df4:	3d 20 00 00 	lis     r9,0                                   <== NOT EXECUTED
ffc06df8:	80 09 26 a0 	lwz     r0,9888(r9)                            <== NOT EXECUTED
ffc06dfc:	7c 69 1b 78 	mr      r9,r3                                  <== NOT EXECUTED
ffc06e00:	7c 60 1a 14 	add     r3,r0,r3                               <== NOT EXECUTED
ffc06e04:	89 63 00 01 	lbz     r11,1(r3)                              <== NOT EXECUTED
ffc06e08:	55 6b 07 be 	clrlwi  r11,r11,30                             <== NOT EXECUTED
ffc06e0c:	2f 8b 00 02 	cmpwi   cr7,r11,2                              <== NOT EXECUTED
ffc06e10:	41 9e 00 10 	beq-    cr7,ffc06e20 <oproc+0x174>             <== NOT EXECUTED
ffc06e14:	55 23 06 3e 	clrlwi  r3,r9,24                               <== NOT EXECUTED
ffc06e18:	98 61 00 08 	stb     r3,8(r1)                               <== NOT EXECUTED
ffc06e1c:	4b ff fe e4 	b       ffc06d00 <oproc+0x54>                  <== NOT EXECUTED
ffc06e20:	39 29 ff e0 	addi    r9,r9,-32                              <== NOT EXECUTED
ffc06e24:	4b ff ff f0 	b       ffc06e14 <oproc+0x168>                 <== NOT EXECUTED
      break;                                                          
                                                                      
    case '\t':                                                        
      i = 8 - (tty->column & 7);                                      
      if ((tty->termios.c_oflag & TABDLY) == XTABS) {                 
        tty->column += i;                                             
ffc06e28:	7c 04 02 14 	add     r0,r4,r0                               
ffc06e2c:	90 1f 00 28 	stw     r0,40(r31)                             
        rtems_termios_puts ( "        ",  i, tty);                    
ffc06e30:	3c 60 ff c2 	lis     r3,-62                                 
ffc06e34:	38 63 8d 24 	addi    r3,r3,-29404                           
ffc06e38:	7f e5 fb 78 	mr      r5,r31                                 
ffc06e3c:	4b ff fc e9 	bl      ffc06b24 <rtems_termios_puts>          
        return;                                                       
ffc06e40:	4b ff fe ec 	b       ffc06d2c <oproc+0x80>                  
                                                                      

ffc10278 <pipe_create>: * Called by pipe() to create an anonymous pipe. */ int pipe_create( int filsdes[2] ) {
ffc10278:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc1027c:	7c 08 02 a6 	mflr    r0                                     
  rtems_libio_t *iop;                                                 
  int err = 0;                                                        
                                                                      
  if (rtems_mkdir("/tmp", S_IRWXU | S_IRWXG | S_IRWXO) != 0)          
ffc10280:	38 80 01 ff 	li      r4,511                                 
 * Called by pipe() to create an anonymous pipe.                      
 */                                                                   
int pipe_create(                                                      
  int filsdes[2]                                                      
)                                                                     
{                                                                     
ffc10284:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc10288:	7c 7d 1b 78 	mr      r29,r3                                 
  rtems_libio_t *iop;                                                 
  int err = 0;                                                        
                                                                      
  if (rtems_mkdir("/tmp", S_IRWXU | S_IRWXG | S_IRWXO) != 0)          
ffc1028c:	3c 60 ff c2 	lis     r3,-62                                 
ffc10290:	38 63 14 10 	addi    r3,r3,5136                             
 * Called by pipe() to create an anonymous pipe.                      
 */                                                                   
int pipe_create(                                                      
  int filsdes[2]                                                      
)                                                                     
{                                                                     
ffc10294:	93 e1 00 24 	stw     r31,36(r1)                             
  rtems_libio_t *iop;                                                 
  int err = 0;                                                        
                                                                      
  if (rtems_mkdir("/tmp", S_IRWXU | S_IRWXG | S_IRWXO) != 0)          
    return -1;                                                        
ffc10298:	3b e0 ff ff 	li      r31,-1                                 
 * Called by pipe() to create an anonymous pipe.                      
 */                                                                   
int pipe_create(                                                      
  int filsdes[2]                                                      
)                                                                     
{                                                                     
ffc1029c:	90 01 00 2c 	stw     r0,44(r1)                              
ffc102a0:	93 81 00 18 	stw     r28,24(r1)                             
ffc102a4:	93 c1 00 20 	stw     r30,32(r1)                             
  rtems_libio_t *iop;                                                 
  int err = 0;                                                        
                                                                      
  if (rtems_mkdir("/tmp", S_IRWXU | S_IRWXG | S_IRWXO) != 0)          
ffc102a8:	48 00 1d dd 	bl      ffc12084 <rtems_mkdir>                 
ffc102ac:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc102b0:	41 9e 00 28 	beq-    cr7,ffc102d8 <pipe_create+0x60>        <== ALWAYS TAKEN
  unlink(fifopath);                                                   
  }                                                                   
  if(err != 0)                                                        
    rtems_set_errno_and_return_minus_one(err);                        
  return 0;                                                           
}                                                                     
ffc102b4:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc102b8:	7f e3 fb 78 	mr      r3,r31                                 
ffc102bc:	83 81 00 18 	lwz     r28,24(r1)                             
ffc102c0:	7c 08 03 a6 	mtlr    r0                                     
ffc102c4:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc102c8:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc102cc:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc102d0:	38 21 00 28 	addi    r1,r1,40                               
ffc102d4:	4e 80 00 20 	blr                                            
    return -1;                                                        
                                                                      
  /* /tmp/.fifoXXXX */                                                
  char fifopath[15];                                                  
  memcpy(fifopath, "/tmp/.fifo", 10);                                 
  sprintf(fifopath + 10, "%04x", rtems_pipe_no ++);                   
ffc102d8:	3d 20 00 00 	lis     r9,0                                   
  if (rtems_mkdir("/tmp", S_IRWXU | S_IRWXG | S_IRWXO) != 0)          
    return -1;                                                        
                                                                      
  /* /tmp/.fifoXXXX */                                                
  char fifopath[15];                                                  
  memcpy(fifopath, "/tmp/.fifo", 10);                                 
ffc102dc:	3d 40 ff c2 	lis     r10,-62                                
  sprintf(fifopath + 10, "%04x", rtems_pipe_no ++);                   
ffc102e0:	a0 a9 28 fc 	lhz     r5,10492(r9)                           
  if (rtems_mkdir("/tmp", S_IRWXU | S_IRWXG | S_IRWXO) != 0)          
    return -1;                                                        
                                                                      
  /* /tmp/.fifoXXXX */                                                
  char fifopath[15];                                                  
  memcpy(fifopath, "/tmp/.fifo", 10);                                 
ffc102e4:	39 6a 14 18 	addi    r11,r10,5144                           
ffc102e8:	81 0a 14 18 	lwz     r8,5144(r10)                           
  sprintf(fifopath + 10, "%04x", rtems_pipe_no ++);                   
ffc102ec:	3c 80 ff c2 	lis     r4,-62                                 
  if (rtems_mkdir("/tmp", S_IRWXU | S_IRWXG | S_IRWXO) != 0)          
    return -1;                                                        
                                                                      
  /* /tmp/.fifoXXXX */                                                
  char fifopath[15];                                                  
  memcpy(fifopath, "/tmp/.fifo", 10);                                 
ffc102f0:	81 4b 00 04 	lwz     r10,4(r11)                             
ffc102f4:	a1 6b 00 08 	lhz     r11,8(r11)                             
  sprintf(fifopath + 10, "%04x", rtems_pipe_no ++);                   
ffc102f8:	38 05 00 01 	addi    r0,r5,1                                
ffc102fc:	38 84 14 24 	addi    r4,r4,5156                             
  if (rtems_mkdir("/tmp", S_IRWXU | S_IRWXG | S_IRWXO) != 0)          
    return -1;                                                        
                                                                      
  /* /tmp/.fifoXXXX */                                                
  char fifopath[15];                                                  
  memcpy(fifopath, "/tmp/.fifo", 10);                                 
ffc10300:	91 01 00 08 	stw     r8,8(r1)                               
  sprintf(fifopath + 10, "%04x", rtems_pipe_no ++);                   
ffc10304:	38 61 00 12 	addi    r3,r1,18                               
                                                                      
  /* Try creating FIFO file until find an available file name */      
  while (mkfifo(fifopath, S_IRUSR|S_IWUSR) != 0) {                    
ffc10308:	3b c1 00 08 	addi    r30,r1,8                               
  if (rtems_mkdir("/tmp", S_IRWXU | S_IRWXG | S_IRWXO) != 0)          
    return -1;                                                        
                                                                      
  /* /tmp/.fifoXXXX */                                                
  char fifopath[15];                                                  
  memcpy(fifopath, "/tmp/.fifo", 10);                                 
ffc1030c:	91 41 00 0c 	stw     r10,12(r1)                             
ffc10310:	b1 61 00 10 	sth     r11,16(r1)                             
  sprintf(fifopath + 10, "%04x", rtems_pipe_no ++);                   
ffc10314:	b0 09 28 fc 	sth     r0,10492(r9)                           
ffc10318:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc1031c:	48 00 4b 4d 	bl      ffc14e68 <sprintf>                     
                                                                      
  /* Try creating FIFO file until find an available file name */      
  while (mkfifo(fifopath, S_IRUSR|S_IWUSR) != 0) {                    
ffc10320:	7f c3 f3 78 	mr      r3,r30                                 
ffc10324:	38 80 01 80 	li      r4,384                                 
ffc10328:	48 00 19 75 	bl      ffc11c9c <mkfifo>                      
ffc1032c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc10330:	40 9e 00 c0 	bne-    cr7,ffc103f0 <pipe_create+0x178>       
    return -1;                                                        
    /* sprintf(fifopath + 10, "%04x", rtems_pipe_no ++); */           
  }                                                                   
                                                                      
  /* Non-blocking open to avoid waiting for writers */                
  filsdes[0] = open(fifopath, O_RDONLY | O_NONBLOCK);                 
ffc10334:	7f c3 f3 78 	mr      r3,r30                                 
ffc10338:	38 80 40 00 	li      r4,16384                               
ffc1033c:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc10340:	4b ff 72 55 	bl      ffc07594 <open>                        
  if (filsdes[0] < 0) {                                               
ffc10344:	2f 83 00 00 	cmpwi   cr7,r3,0                               
    return -1;                                                        
    /* sprintf(fifopath + 10, "%04x", rtems_pipe_no ++); */           
  }                                                                   
                                                                      
  /* Non-blocking open to avoid waiting for writers */                
  filsdes[0] = open(fifopath, O_RDONLY | O_NONBLOCK);                 
ffc10348:	90 7d 00 00 	stw     r3,0(r29)                              
  if (filsdes[0] < 0) {                                               
ffc1034c:	41 9c 00 7c 	blt-    cr7,ffc103c8 <pipe_create+0x150>       
     the file node will be deleted after it is closed by all. */      
    unlink(fifopath);                                                 
  }                                                                   
  else {                                                              
  /* Reset open file to blocking mode */                              
    iop = rtems_libio_iop(filsdes[0]);                                
ffc10350:	3d 20 00 00 	lis     r9,0                                   
ffc10354:	80 09 26 6c 	lwz     r0,9836(r9)                            
ffc10358:	39 20 00 00 	li      r9,0                                   
ffc1035c:	7f 83 00 40 	cmplw   cr7,r3,r0                              
ffc10360:	41 9c 00 54 	blt-    cr7,ffc103b4 <pipe_create+0x13c>       <== ALWAYS TAKEN
    iop->flags &= ~LIBIO_FLAGS_NO_DELAY;                              
ffc10364:	80 09 00 18 	lwz     r0,24(r9)                              
                                                                      
    filsdes[1] = open(fifopath, O_WRONLY);                            
ffc10368:	7f c3 f3 78 	mr      r3,r30                                 
ffc1036c:	38 80 00 01 	li      r4,1                                   
    unlink(fifopath);                                                 
  }                                                                   
  else {                                                              
  /* Reset open file to blocking mode */                              
    iop = rtems_libio_iop(filsdes[0]);                                
    iop->flags &= ~LIBIO_FLAGS_NO_DELAY;                              
ffc10370:	54 00 00 3c 	rlwinm  r0,r0,0,0,30                           
ffc10374:	90 09 00 18 	stw     r0,24(r9)                              
int pipe_create(                                                      
  int filsdes[2]                                                      
)                                                                     
{                                                                     
  rtems_libio_t *iop;                                                 
  int err = 0;                                                        
ffc10378:	3b 80 00 00 	li      r28,0                                  
  else {                                                              
  /* Reset open file to blocking mode */                              
    iop = rtems_libio_iop(filsdes[0]);                                
    iop->flags &= ~LIBIO_FLAGS_NO_DELAY;                              
                                                                      
    filsdes[1] = open(fifopath, O_WRONLY);                            
ffc1037c:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc10380:	4b ff 72 15 	bl      ffc07594 <open>                        
                                                                      
    if (filsdes[1] < 0) {                                             
ffc10384:	2f 83 00 00 	cmpwi   cr7,r3,0                               
  else {                                                              
  /* Reset open file to blocking mode */                              
    iop = rtems_libio_iop(filsdes[0]);                                
    iop->flags &= ~LIBIO_FLAGS_NO_DELAY;                              
                                                                      
    filsdes[1] = open(fifopath, O_WRONLY);                            
ffc10388:	90 7d 00 04 	stw     r3,4(r29)                              
                                                                      
    if (filsdes[1] < 0) {                                             
ffc1038c:	41 9c 00 50 	blt-    cr7,ffc103dc <pipe_create+0x164>       
    err = errno;                                                      
    close(filsdes[0]);                                                
    }                                                                 
  unlink(fifopath);                                                   
ffc10390:	7f c3 f3 78 	mr      r3,r30                                 
ffc10394:	4b ff 99 a1 	bl      ffc09d34 <unlink>                      
  }                                                                   
  if(err != 0)                                                        
ffc10398:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
    rtems_set_errno_and_return_minus_one(err);                        
  return 0;                                                           
ffc1039c:	3b e0 00 00 	li      r31,0                                  
    err = errno;                                                      
    close(filsdes[0]);                                                
    }                                                                 
  unlink(fifopath);                                                   
  }                                                                   
  if(err != 0)                                                        
ffc103a0:	41 9e ff 14 	beq+    cr7,ffc102b4 <pipe_create+0x3c>        
    rtems_set_errno_and_return_minus_one(err);                        
ffc103a4:	48 00 3b bd 	bl      ffc13f60 <__errno>                     
ffc103a8:	3b e0 ff ff 	li      r31,-1                                 
ffc103ac:	93 83 00 00 	stw     r28,0(r3)                              
ffc103b0:	4b ff ff 04 	b       ffc102b4 <pipe_create+0x3c>            
     the file node will be deleted after it is closed by all. */      
    unlink(fifopath);                                                 
  }                                                                   
  else {                                                              
  /* Reset open file to blocking mode */                              
    iop = rtems_libio_iop(filsdes[0]);                                
ffc103b4:	3d 20 00 00 	lis     r9,0                                   
ffc103b8:	81 29 27 2c 	lwz     r9,10028(r9)                           
ffc103bc:	54 63 30 32 	rlwinm  r3,r3,6,0,25                           
ffc103c0:	7d 29 1a 14 	add     r9,r9,r3                               
ffc103c4:	4b ff ff a0 	b       ffc10364 <pipe_create+0xec>            
  }                                                                   
                                                                      
  /* Non-blocking open to avoid waiting for writers */                
  filsdes[0] = open(fifopath, O_RDONLY | O_NONBLOCK);                 
  if (filsdes[0] < 0) {                                               
    err = errno;                                                      
ffc103c8:	48 00 3b 99 	bl      ffc13f60 <__errno>                     
ffc103cc:	83 83 00 00 	lwz     r28,0(r3)                              
    /* Delete file at errors, or else if pipe is successfully created 
     the file node will be deleted after it is closed by all. */      
    unlink(fifopath);                                                 
ffc103d0:	7f c3 f3 78 	mr      r3,r30                                 
ffc103d4:	4b ff 99 61 	bl      ffc09d34 <unlink>                      
ffc103d8:	4b ff ff c0 	b       ffc10398 <pipe_create+0x120>           
    iop->flags &= ~LIBIO_FLAGS_NO_DELAY;                              
                                                                      
    filsdes[1] = open(fifopath, O_WRONLY);                            
                                                                      
    if (filsdes[1] < 0) {                                             
    err = errno;                                                      
ffc103dc:	48 00 3b 85 	bl      ffc13f60 <__errno>                     
ffc103e0:	83 83 00 00 	lwz     r28,0(r3)                              
    close(filsdes[0]);                                                
ffc103e4:	80 7d 00 00 	lwz     r3,0(r29)                              
ffc103e8:	4b ff 5c a5 	bl      ffc0608c <close>                       
ffc103ec:	4b ff ff a4 	b       ffc10390 <pipe_create+0x118>           
  memcpy(fifopath, "/tmp/.fifo", 10);                                 
  sprintf(fifopath + 10, "%04x", rtems_pipe_no ++);                   
                                                                      
  /* Try creating FIFO file until find an available file name */      
  while (mkfifo(fifopath, S_IRUSR|S_IWUSR) != 0) {                    
    if (errno != EEXIST){                                             
ffc103f0:	48 00 3b 71 	bl      ffc13f60 <__errno>                     
ffc103f4:	4b ff fe c0 	b       ffc102b4 <pipe_create+0x3c>            
                                                                      

ffc11e20 <pipe_ioctl>: pipe_control_t *pipe, uint32_t cmd, void *buffer, rtems_libio_t *iop ) {
ffc11e20:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc11e24:	7c 08 02 a6 	mflr    r0                                     
ffc11e28:	90 01 00 14 	stw     r0,20(r1)                              
  if (cmd == FIONREAD) {                                              
ffc11e2c:	3c 00 40 04 	lis     r0,16388                               
ffc11e30:	60 00 66 7f 	ori     r0,r0,26239                            
ffc11e34:	7f 84 00 00 	cmpw    cr7,r4,r0                              
  pipe_control_t *pipe,                                               
  uint32_t        cmd,                                                
  void           *buffer,                                             
  rtems_libio_t  *iop                                                 
)                                                                     
{                                                                     
ffc11e38:	93 c1 00 08 	stw     r30,8(r1)                              
ffc11e3c:	7c 7e 1b 78 	mr      r30,r3                                 
ffc11e40:	93 e1 00 0c 	stw     r31,12(r1)                             
    *(unsigned int *)buffer = pipe->Length;                           
    PIPE_UNLOCK(pipe);                                                
    return 0;                                                         
  }                                                                   
                                                                      
  return -EINVAL;                                                     
ffc11e44:	38 60 ff ea 	li      r3,-22                                 
  pipe_control_t *pipe,                                               
  uint32_t        cmd,                                                
  void           *buffer,                                             
  rtems_libio_t  *iop                                                 
)                                                                     
{                                                                     
ffc11e48:	7c bf 2b 78 	mr      r31,r5                                 
  if (cmd == FIONREAD) {                                              
ffc11e4c:	41 9e 00 1c 	beq-    cr7,ffc11e68 <pipe_ioctl+0x48>         
    PIPE_UNLOCK(pipe);                                                
    return 0;                                                         
  }                                                                   
                                                                      
  return -EINVAL;                                                     
}                                                                     
ffc11e50:	80 01 00 14 	lwz     r0,20(r1)                              
ffc11e54:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc11e58:	7c 08 03 a6 	mtlr    r0                                     
ffc11e5c:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc11e60:	38 21 00 10 	addi    r1,r1,16                               
ffc11e64:	4e 80 00 20 	blr                                            
  void           *buffer,                                             
  rtems_libio_t  *iop                                                 
)                                                                     
{                                                                     
  if (cmd == FIONREAD) {                                              
    if (buffer == NULL)                                               
ffc11e68:	2f 85 00 00 	cmpwi   cr7,r5,0                               
      return -EFAULT;                                                 
ffc11e6c:	38 60 ff f2 	li      r3,-14                                 
  void           *buffer,                                             
  rtems_libio_t  *iop                                                 
)                                                                     
{                                                                     
  if (cmd == FIONREAD) {                                              
    if (buffer == NULL)                                               
ffc11e70:	41 9e ff e0 	beq+    cr7,ffc11e50 <pipe_ioctl+0x30>         
      return -EFAULT;                                                 
                                                                      
    if (! PIPE_LOCK(pipe))                                            
ffc11e74:	80 7e 00 28 	lwz     r3,40(r30)                             
ffc11e78:	38 80 00 00 	li      r4,0                                   
ffc11e7c:	38 a0 00 00 	li      r5,0                                   
ffc11e80:	4b ff 9a 55 	bl      ffc0b8d4 <rtems_semaphore_obtain>      
ffc11e84:	2f 83 00 00 	cmpwi   cr7,r3,0                               
      return -EINTR;                                                  
ffc11e88:	38 60 ff fc 	li      r3,-4                                  
{                                                                     
  if (cmd == FIONREAD) {                                              
    if (buffer == NULL)                                               
      return -EFAULT;                                                 
                                                                      
    if (! PIPE_LOCK(pipe))                                            
ffc11e8c:	40 9e ff c4 	bne+    cr7,ffc11e50 <pipe_ioctl+0x30>         <== NEVER TAKEN
      return -EINTR;                                                  
                                                                      
    /* Return length of pipe */                                       
    *(unsigned int *)buffer = pipe->Length;                           
ffc11e90:	80 1e 00 0c 	lwz     r0,12(r30)                             
    PIPE_UNLOCK(pipe);                                                
ffc11e94:	80 7e 00 28 	lwz     r3,40(r30)                             
                                                                      
    if (! PIPE_LOCK(pipe))                                            
      return -EINTR;                                                  
                                                                      
    /* Return length of pipe */                                       
    *(unsigned int *)buffer = pipe->Length;                           
ffc11e98:	90 1f 00 00 	stw     r0,0(r31)                              
    PIPE_UNLOCK(pipe);                                                
ffc11e9c:	4b ff 9b c1 	bl      ffc0ba5c <rtems_semaphore_release>     
    return 0;                                                         
ffc11ea0:	38 60 00 00 	li      r3,0                                   
ffc11ea4:	4b ff ff ac 	b       ffc11e50 <pipe_ioctl+0x30>             
                                                                      

ffc11958 <pipe_read>: pipe_control_t *pipe, void *buffer, size_t count, rtems_libio_t *iop ) {
ffc11958:	94 21 ff c0 	stwu    r1,-64(r1)                             
ffc1195c:	7c 08 02 a6 	mflr    r0                                     
ffc11960:	90 01 00 44 	stw     r0,68(r1)                              
ffc11964:	93 e1 00 3c 	stw     r31,60(r1)                             
ffc11968:	7c 7f 1b 78 	mr      r31,r3                                 
  int chunk, chunk1, read = 0, ret = 0;                               
                                                                      
  if (! PIPE_LOCK(pipe))                                              
ffc1196c:	80 63 00 28 	lwz     r3,40(r3)                              
  pipe_control_t *pipe,                                               
  void           *buffer,                                             
  size_t          count,                                              
  rtems_libio_t  *iop                                                 
)                                                                     
{                                                                     
ffc11970:	93 a1 00 34 	stw     r29,52(r1)                             
ffc11974:	7c 9d 23 78 	mr      r29,r4                                 
  int chunk, chunk1, read = 0, ret = 0;                               
                                                                      
  if (! PIPE_LOCK(pipe))                                              
ffc11978:	38 80 00 00 	li      r4,0                                   
  pipe_control_t *pipe,                                               
  void           *buffer,                                             
  size_t          count,                                              
  rtems_libio_t  *iop                                                 
)                                                                     
{                                                                     
ffc1197c:	93 c1 00 38 	stw     r30,56(r1)                             
ffc11980:	7c be 2b 78 	mr      r30,r5                                 
  int chunk, chunk1, read = 0, ret = 0;                               
                                                                      
  if (! PIPE_LOCK(pipe))                                              
ffc11984:	38 a0 00 00 	li      r5,0                                   
  pipe_control_t *pipe,                                               
  void           *buffer,                                             
  size_t          count,                                              
  rtems_libio_t  *iop                                                 
)                                                                     
{                                                                     
ffc11988:	93 41 00 28 	stw     r26,40(r1)                             
  int chunk, chunk1, read = 0, ret = 0;                               
                                                                      
  if (! PIPE_LOCK(pipe))                                              
    return -EINTR;                                                    
ffc1198c:	3b 40 ff fc 	li      r26,-4                                 
  pipe_control_t *pipe,                                               
  void           *buffer,                                             
  size_t          count,                                              
  rtems_libio_t  *iop                                                 
)                                                                     
{                                                                     
ffc11990:	93 61 00 2c 	stw     r27,44(r1)                             
ffc11994:	7c db 33 78 	mr      r27,r6                                 
ffc11998:	92 e1 00 1c 	stw     r23,28(r1)                             
ffc1199c:	93 01 00 20 	stw     r24,32(r1)                             
ffc119a0:	93 21 00 24 	stw     r25,36(r1)                             
ffc119a4:	93 81 00 30 	stw     r28,48(r1)                             
  int chunk, chunk1, read = 0, ret = 0;                               
                                                                      
  if (! PIPE_LOCK(pipe))                                              
ffc119a8:	4b ff 9f 2d 	bl      ffc0b8d4 <rtems_semaphore_obtain>      
ffc119ac:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc119b0:	40 9e 00 a8 	bne-    cr7,ffc11a58 <pipe_read+0x100>         <== NEVER TAKEN
    return -EINTR;                                                    
                                                                      
  while (read < count) {                                              
ffc119b4:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc119b8:	3b 20 00 00 	li      r25,0                                  
ffc119bc:	3b 40 00 00 	li      r26,0                                  
    /* For buffering optimization */                                  
    if (PIPE_EMPTY(pipe))                                             
      pipe->Start = 0;                                                
                                                                      
    if (pipe->waitingWriters > 0)                                     
      PIPE_WAKEUPWRITERS(pipe);                                       
ffc119c0:	3b 01 00 08 	addi    r24,r1,8                               
  int chunk, chunk1, read = 0, ret = 0;                               
                                                                      
  if (! PIPE_LOCK(pipe))                                              
    return -EINTR;                                                    
                                                                      
  while (read < count) {                                              
ffc119c4:	41 9e 01 90 	beq-    cr7,ffc11b54 <pipe_read+0x1fc>         <== NEVER TAKEN
    while (PIPE_EMPTY(pipe)) {                                        
ffc119c8:	83 9f 00 0c 	lwz     r28,12(r31)                            
ffc119cc:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
ffc119d0:	40 9e 00 fc 	bne-    cr7,ffc11acc <pipe_read+0x174>         
      /* Not an error */                                              
      if (pipe->Writers == 0)                                         
ffc119d4:	80 1f 00 14 	lwz     r0,20(r31)                             
ffc119d8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc119dc:	41 9e 01 78 	beq-    cr7,ffc11b54 <pipe_read+0x1fc>         
        goto out_locked;                                              
                                                                      
      if (LIBIO_NODELAY(iop)) {                                       
ffc119e0:	80 1b 00 18 	lwz     r0,24(r27)                             
ffc119e4:	70 09 00 01 	andi.   r9,r0,1                                
ffc119e8:	40 82 01 74 	bne-    ffc11b5c <pipe_read+0x204>             
        ret = -EAGAIN;                                                
        goto out_locked;                                              
      }                                                               
                                                                      
      /* Wait until pipe is no more empty or no writer exists */      
      pipe->waitingReaders ++;                                        
ffc119ec:	81 3f 00 18 	lwz     r9,24(r31)                             
      PIPE_UNLOCK(pipe);                                              
      if (! PIPE_READWAIT(pipe))                                      
        ret = -EINTR;                                                 
ffc119f0:	3b 80 ff fc 	li      r28,-4                                 
        goto out_locked;                                              
      }                                                               
                                                                      
      /* Wait until pipe is no more empty or no writer exists */      
      pipe->waitingReaders ++;                                        
      PIPE_UNLOCK(pipe);                                              
ffc119f4:	80 7f 00 28 	lwz     r3,40(r31)                             
        ret = -EAGAIN;                                                
        goto out_locked;                                              
      }                                                               
                                                                      
      /* Wait until pipe is no more empty or no writer exists */      
      pipe->waitingReaders ++;                                        
ffc119f8:	38 09 00 01 	addi    r0,r9,1                                
ffc119fc:	90 1f 00 18 	stw     r0,24(r31)                             
      PIPE_UNLOCK(pipe);                                              
ffc11a00:	4b ff a0 5d 	bl      ffc0ba5c <rtems_semaphore_release>     
      if (! PIPE_READWAIT(pipe))                                      
ffc11a04:	80 7f 00 2c 	lwz     r3,44(r31)                             
ffc11a08:	38 80 00 00 	li      r4,0                                   
ffc11a0c:	48 00 15 11 	bl      ffc12f1c <rtems_barrier_wait>          
ffc11a10:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc11a14:	40 9e 00 08 	bne-    cr7,ffc11a1c <pipe_read+0xc4>          <== NEVER TAKEN
ffc11a18:	3b 80 00 00 	li      r28,0                                  
        ret = -EINTR;                                                 
      if (! PIPE_LOCK(pipe)) {                                        
ffc11a1c:	80 7f 00 28 	lwz     r3,40(r31)                             
ffc11a20:	38 80 00 00 	li      r4,0                                   
ffc11a24:	38 a0 00 00 	li      r5,0                                   
ffc11a28:	4b ff 9e ad 	bl      ffc0b8d4 <rtems_semaphore_obtain>      
ffc11a2c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc11a30:	40 9e 01 34 	bne-    cr7,ffc11b64 <pipe_read+0x20c>         <== NEVER TAKEN
        /* WARN waitingReaders not restored! */                       
        ret = -EINTR;                                                 
        goto out_nolock;                                              
      }                                                               
      pipe->waitingReaders --;                                        
      if (ret != 0)                                                   
ffc11a34:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
      if (! PIPE_LOCK(pipe)) {                                        
        /* WARN waitingReaders not restored! */                       
        ret = -EINTR;                                                 
        goto out_nolock;                                              
      }                                                               
      pipe->waitingReaders --;                                        
ffc11a38:	81 3f 00 18 	lwz     r9,24(r31)                             
ffc11a3c:	38 09 ff ff 	addi    r0,r9,-1                               
ffc11a40:	90 1f 00 18 	stw     r0,24(r31)                             
      if (ret != 0)                                                   
ffc11a44:	41 9e ff 84 	beq+    cr7,ffc119c8 <pipe_read+0x70>          <== ALWAYS TAKEN
      PIPE_WAKEUPWRITERS(pipe);                                       
    read += chunk;                                                    
  }                                                                   
                                                                      
out_locked:                                                           
  PIPE_UNLOCK(pipe);                                                  
ffc11a48:	80 7f 00 28 	lwz     r3,40(r31)                             
ffc11a4c:	4b ff a0 11 	bl      ffc0ba5c <rtems_semaphore_release>     
                                                                      
out_nolock:                                                           
  if (read > 0)                                                       
ffc11a50:	2f 9a 00 00 	cmpwi   cr7,r26,0                              
ffc11a54:	40 9d 00 3c 	ble-    cr7,ffc11a90 <pipe_read+0x138>         
    return read;                                                      
  return ret;                                                         
}                                                                     
ffc11a58:	80 01 00 44 	lwz     r0,68(r1)                              
ffc11a5c:	7f 43 d3 78 	mr      r3,r26                                 
ffc11a60:	82 e1 00 1c 	lwz     r23,28(r1)                             
ffc11a64:	7c 08 03 a6 	mtlr    r0                                     
ffc11a68:	83 01 00 20 	lwz     r24,32(r1)                             
ffc11a6c:	83 21 00 24 	lwz     r25,36(r1)                             
ffc11a70:	83 41 00 28 	lwz     r26,40(r1)                             
ffc11a74:	83 61 00 2c 	lwz     r27,44(r1)                             
ffc11a78:	83 81 00 30 	lwz     r28,48(r1)                             
ffc11a7c:	83 a1 00 34 	lwz     r29,52(r1)                             
ffc11a80:	83 c1 00 38 	lwz     r30,56(r1)                             
ffc11a84:	83 e1 00 3c 	lwz     r31,60(r1)                             
ffc11a88:	38 21 00 40 	addi    r1,r1,64                               
ffc11a8c:	4e 80 00 20 	blr                                            
ffc11a90:	80 01 00 44 	lwz     r0,68(r1)                              
  PIPE_UNLOCK(pipe);                                                  
                                                                      
out_nolock:                                                           
  if (read > 0)                                                       
    return read;                                                      
  return ret;                                                         
ffc11a94:	7f 9a e3 78 	mr      r26,r28                                
}                                                                     
ffc11a98:	7f 43 d3 78 	mr      r3,r26                                 
ffc11a9c:	82 e1 00 1c 	lwz     r23,28(r1)                             
ffc11aa0:	7c 08 03 a6 	mtlr    r0                                     
ffc11aa4:	83 01 00 20 	lwz     r24,32(r1)                             
ffc11aa8:	83 21 00 24 	lwz     r25,36(r1)                             
ffc11aac:	83 41 00 28 	lwz     r26,40(r1)                             
ffc11ab0:	83 61 00 2c 	lwz     r27,44(r1)                             
ffc11ab4:	83 81 00 30 	lwz     r28,48(r1)                             
ffc11ab8:	83 a1 00 34 	lwz     r29,52(r1)                             
ffc11abc:	83 c1 00 38 	lwz     r30,56(r1)                             
ffc11ac0:	83 e1 00 3c 	lwz     r31,60(r1)                             
ffc11ac4:	38 21 00 40 	addi    r1,r1,64                               
ffc11ac8:	4e 80 00 20 	blr                                            
      if (ret != 0)                                                   
        goto out_locked;                                              
    }                                                                 
                                                                      
    /* Read chunk bytes */                                            
    chunk = MIN(count - read,  pipe->Length);                         
ffc11acc:	7c 19 f0 50 	subf    r0,r25,r30                             
ffc11ad0:	7f 9c 00 40 	cmplw   cr7,r28,r0                             
ffc11ad4:	40 9d 00 08 	ble-    cr7,ffc11adc <pipe_read+0x184>         
ffc11ad8:	7c 1c 03 78 	mr      r28,r0                                 
    chunk1 = pipe->Size - pipe->Start;                                
ffc11adc:	80 1f 00 08 	lwz     r0,8(r31)                              
ffc11ae0:	82 ff 00 04 	lwz     r23,4(r31)                             
ffc11ae4:	7e e0 b8 50 	subf    r23,r0,r23                             
    if (chunk > chunk1) {                                             
ffc11ae8:	7f 9c b8 00 	cmpw    cr7,r28,r23                            
ffc11aec:	41 9d 00 80 	bgt-    cr7,ffc11b6c <pipe_read+0x214>         
      memcpy(buffer + read, pipe->Buffer + pipe->Start, chunk1);      
      memcpy(buffer + read + chunk1, pipe->Buffer, chunk - chunk1);   
    }                                                                 
    else                                                              
      memcpy(buffer + read, pipe->Buffer + pipe->Start, chunk);       
ffc11af0:	80 9f 00 00 	lwz     r4,0(r31)                              
ffc11af4:	7c 7d ca 14 	add     r3,r29,r25                             
ffc11af8:	7f 85 e3 78 	mr      r5,r28                                 
ffc11afc:	7c 84 02 14 	add     r4,r4,r0                               
ffc11b00:	48 00 43 b1 	bl      ffc15eb0 <memcpy>                      
                                                                      
    pipe->Start += chunk;                                             
ffc11b04:	81 3f 00 08 	lwz     r9,8(r31)                              
    pipe->Start %= pipe->Size;                                        
ffc11b08:	81 7f 00 04 	lwz     r11,4(r31)                             
      memcpy(buffer + read + chunk1, pipe->Buffer, chunk - chunk1);   
    }                                                                 
    else                                                              
      memcpy(buffer + read, pipe->Buffer + pipe->Start, chunk);       
                                                                      
    pipe->Start += chunk;                                             
ffc11b0c:	7d 3c 4a 14 	add     r9,r28,r9                              
    pipe->Start %= pipe->Size;                                        
    pipe->Length -= chunk;                                            
ffc11b10:	80 1f 00 0c 	lwz     r0,12(r31)                             
    }                                                                 
    else                                                              
      memcpy(buffer + read, pipe->Buffer + pipe->Start, chunk);       
                                                                      
    pipe->Start += chunk;                                             
    pipe->Start %= pipe->Size;                                        
ffc11b14:	7d 49 5b 96 	divwu   r10,r9,r11                             
    pipe->Length -= chunk;                                            
ffc11b18:	7c 1c 00 50 	subf    r0,r28,r0                              
    /* For buffering optimization */                                  
    if (PIPE_EMPTY(pipe))                                             
ffc11b1c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
    else                                                              
      memcpy(buffer + read, pipe->Buffer + pipe->Start, chunk);       
                                                                      
    pipe->Start += chunk;                                             
    pipe->Start %= pipe->Size;                                        
    pipe->Length -= chunk;                                            
ffc11b20:	90 1f 00 0c 	stw     r0,12(r31)                             
    }                                                                 
    else                                                              
      memcpy(buffer + read, pipe->Buffer + pipe->Start, chunk);       
                                                                      
    pipe->Start += chunk;                                             
    pipe->Start %= pipe->Size;                                        
ffc11b24:	7d 6a 59 d6 	mullw   r11,r10,r11                            
ffc11b28:	7d 2b 48 50 	subf    r9,r11,r9                              
ffc11b2c:	91 3f 00 08 	stw     r9,8(r31)                              
    pipe->Length -= chunk;                                            
    /* For buffering optimization */                                  
    if (PIPE_EMPTY(pipe))                                             
ffc11b30:	40 9e 00 08 	bne-    cr7,ffc11b38 <pipe_read+0x1e0>         
      pipe->Start = 0;                                                
ffc11b34:	90 1f 00 08 	stw     r0,8(r31)                              
                                                                      
    if (pipe->waitingWriters > 0)                                     
ffc11b38:	80 1f 00 1c 	lwz     r0,28(r31)                             
ffc11b3c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc11b40:	40 9e 00 58 	bne-    cr7,ffc11b98 <pipe_read+0x240>         
      PIPE_WAKEUPWRITERS(pipe);                                       
    read += chunk;                                                    
ffc11b44:	7f 5a e2 14 	add     r26,r26,r28                            
  int chunk, chunk1, read = 0, ret = 0;                               
                                                                      
  if (! PIPE_LOCK(pipe))                                              
    return -EINTR;                                                    
                                                                      
  while (read < count) {                                              
ffc11b48:	7f 9a f0 40 	cmplw   cr7,r26,r30                            
ffc11b4c:	7f 59 d3 78 	mr      r25,r26                                
ffc11b50:	41 9c fe 78 	blt+    cr7,ffc119c8 <pipe_read+0x70>          <== NEVER TAKEN
    while (PIPE_EMPTY(pipe)) {                                        
      /* Not an error */                                              
      if (pipe->Writers == 0)                                         
ffc11b54:	3b 80 00 00 	li      r28,0                                  
ffc11b58:	4b ff fe f0 	b       ffc11a48 <pipe_read+0xf0>              
        goto out_locked;                                              
                                                                      
      if (LIBIO_NODELAY(iop)) {                                       
        ret = -EAGAIN;                                                
ffc11b5c:	3b 80 ff f5 	li      r28,-11                                
ffc11b60:	4b ff fe e8 	b       ffc11a48 <pipe_read+0xf0>              
      PIPE_UNLOCK(pipe);                                              
      if (! PIPE_READWAIT(pipe))                                      
        ret = -EINTR;                                                 
      if (! PIPE_LOCK(pipe)) {                                        
        /* WARN waitingReaders not restored! */                       
        ret = -EINTR;                                                 
ffc11b64:	3b 80 ff fc 	li      r28,-4                                 <== NOT EXECUTED
ffc11b68:	4b ff fe e8 	b       ffc11a50 <pipe_read+0xf8>              <== NOT EXECUTED
                                                                      
    /* Read chunk bytes */                                            
    chunk = MIN(count - read,  pipe->Length);                         
    chunk1 = pipe->Size - pipe->Start;                                
    if (chunk > chunk1) {                                             
      memcpy(buffer + read, pipe->Buffer + pipe->Start, chunk1);      
ffc11b6c:	80 9f 00 00 	lwz     r4,0(r31)                              
ffc11b70:	7e e5 bb 78 	mr      r5,r23                                 
ffc11b74:	7c 7d ca 14 	add     r3,r29,r25                             
ffc11b78:	7c 84 02 14 	add     r4,r4,r0                               
ffc11b7c:	48 00 43 35 	bl      ffc15eb0 <memcpy>                      
      memcpy(buffer + read + chunk1, pipe->Buffer, chunk - chunk1);   
ffc11b80:	7c 79 ba 14 	add     r3,r25,r23                             
ffc11b84:	80 9f 00 00 	lwz     r4,0(r31)                              
ffc11b88:	7c 7d 1a 14 	add     r3,r29,r3                              
ffc11b8c:	7c b7 e0 50 	subf    r5,r23,r28                             
ffc11b90:	48 00 43 21 	bl      ffc15eb0 <memcpy>                      
ffc11b94:	4b ff ff 70 	b       ffc11b04 <pipe_read+0x1ac>             
    /* For buffering optimization */                                  
    if (PIPE_EMPTY(pipe))                                             
      pipe->Start = 0;                                                
                                                                      
    if (pipe->waitingWriters > 0)                                     
      PIPE_WAKEUPWRITERS(pipe);                                       
ffc11b98:	80 7f 00 30 	lwz     r3,48(r31)                             
ffc11b9c:	7f 04 c3 78 	mr      r4,r24                                 
ffc11ba0:	48 00 12 e9 	bl      ffc12e88 <rtems_barrier_release>       
ffc11ba4:	4b ff ff a0 	b       ffc11b44 <pipe_read+0x1ec>             
                                                                      

ffc113cc <pipe_release>: */ void pipe_release( pipe_control_t **pipep, rtems_libio_t *iop ) {
ffc113cc:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc113d0:	7c 08 02 a6 	mflr    r0                                     
ffc113d4:	90 01 00 2c 	stw     r0,44(r1)                              
    /* WARN pipe not released! */                                     
    if (!PIPE_LOCK(pipe))                                             
      rtems_fatal_error_occurred(0xdeadbeef);                         
  #endif                                                              
                                                                      
  mode = LIBIO_ACCMODE(iop);                                          
ffc113d8:	80 04 00 18 	lwz     r0,24(r4)                              
 */                                                                   
void pipe_release(                                                    
  pipe_control_t **pipep,                                             
  rtems_libio_t *iop                                                  
)                                                                     
{                                                                     
ffc113dc:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc113e0:	7c 7d 1b 78 	mr      r29,r3                                 
    if (!PIPE_LOCK(pipe))                                             
      rtems_fatal_error_occurred(0xdeadbeef);                         
  #endif                                                              
                                                                      
  mode = LIBIO_ACCMODE(iop);                                          
  if (mode & LIBIO_FLAGS_READ)                                        
ffc113e4:	70 09 00 02 	andi.   r9,r0,2                                
 */                                                                   
void pipe_release(                                                    
  pipe_control_t **pipep,                                             
  rtems_libio_t *iop                                                  
)                                                                     
{                                                                     
ffc113e8:	93 c1 00 20 	stw     r30,32(r1)                             
    /* WARN pipe not released! */                                     
    if (!PIPE_LOCK(pipe))                                             
      rtems_fatal_error_occurred(0xdeadbeef);                         
  #endif                                                              
                                                                      
  mode = LIBIO_ACCMODE(iop);                                          
ffc113ec:	54 1e 07 7c 	rlwinm  r30,r0,0,29,30                         
 */                                                                   
void pipe_release(                                                    
  pipe_control_t **pipep,                                             
  rtems_libio_t *iop                                                  
)                                                                     
{                                                                     
ffc113f0:	93 e1 00 24 	stw     r31,36(r1)                             
ffc113f4:	93 81 00 18 	stw     r28,24(r1)                             
  pipe_control_t *pipe = *pipep;                                      
ffc113f8:	83 e3 00 00 	lwz     r31,0(r3)                              
    if (!PIPE_LOCK(pipe))                                             
      rtems_fatal_error_occurred(0xdeadbeef);                         
  #endif                                                              
                                                                      
  mode = LIBIO_ACCMODE(iop);                                          
  if (mode & LIBIO_FLAGS_READ)                                        
ffc113fc:	41 82 00 10 	beq-    ffc1140c <pipe_release+0x40>           
     pipe->Readers --;                                                
ffc11400:	81 3f 00 10 	lwz     r9,16(r31)                             
ffc11404:	38 09 ff ff 	addi    r0,r9,-1                               
ffc11408:	90 1f 00 10 	stw     r0,16(r31)                             
  if (mode & LIBIO_FLAGS_WRITE)                                       
ffc1140c:	73 c0 00 04 	andi.   r0,r30,4                               
ffc11410:	41 82 00 10 	beq-    ffc11420 <pipe_release+0x54>           
     pipe->Writers --;                                                
ffc11414:	81 3f 00 14 	lwz     r9,20(r31)                             
ffc11418:	38 09 ff ff 	addi    r0,r9,-1                               
ffc1141c:	90 1f 00 14 	stw     r0,20(r31)                             
                                                                      
  PIPE_UNLOCK(pipe);                                                  
ffc11420:	80 7f 00 28 	lwz     r3,40(r31)                             
ffc11424:	4b ff a6 39 	bl      ffc0ba5c <rtems_semaphore_release>     
                                                                      
  if (pipe->Readers == 0 && pipe->Writers == 0) {                     
ffc11428:	80 1f 00 10 	lwz     r0,16(r31)                             
ffc1142c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc11430:	41 9e 00 48 	beq-    cr7,ffc11478 <pipe_release+0xac>       
    *pipep = NULL;                                                    
  }                                                                   
  else if (pipe->Readers == 0 && mode != LIBIO_FLAGS_WRITE)           
    /* Notify waiting Writers that all their partners left */         
    PIPE_WAKEUPWRITERS(pipe);                                         
  else if (pipe->Writers == 0 && mode != LIBIO_FLAGS_READ)            
ffc11434:	80 1f 00 14 	lwz     r0,20(r31)                             
ffc11438:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc1143c:	40 9e 00 18 	bne-    cr7,ffc11454 <pipe_release+0x88>       <== NEVER TAKEN
ffc11440:	2f 9e 00 02 	cmpwi   cr7,r30,2                              
ffc11444:	41 9e 00 10 	beq-    cr7,ffc11454 <pipe_release+0x88>       <== NEVER TAKEN
    PIPE_WAKEUPREADERS(pipe);                                         
ffc11448:	80 7f 00 2c 	lwz     r3,44(r31)                             
ffc1144c:	38 81 00 08 	addi    r4,r1,8                                
ffc11450:	48 00 1a 39 	bl      ffc12e88 <rtems_barrier_release>       
                                                                      
  pipe_unlock();                                                      
ffc11454:	4b ff ff 51 	bl      ffc113a4 <pipe_unlock>                 
  iop->flags &= ~LIBIO_FLAGS_OPEN;                                    
  if(iop->pathinfo.ops->unlink_h(&iop->pathinfo))                     
    return;                                                           
#endif                                                                
                                                                      
}                                                                     
ffc11458:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc1145c:	83 81 00 18 	lwz     r28,24(r1)                             
ffc11460:	7c 08 03 a6 	mtlr    r0                                     
ffc11464:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc11468:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc1146c:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc11470:	38 21 00 28 	addi    r1,r1,40                               
ffc11474:	4e 80 00 20 	blr                                            
  if (mode & LIBIO_FLAGS_WRITE)                                       
     pipe->Writers --;                                                
                                                                      
  PIPE_UNLOCK(pipe);                                                  
                                                                      
  if (pipe->Readers == 0 && pipe->Writers == 0) {                     
ffc11478:	83 9f 00 14 	lwz     r28,20(r31)                            
ffc1147c:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
ffc11480:	41 9e 00 3c 	beq-    cr7,ffc114bc <pipe_release+0xf0>       
      delfile = TRUE;                                                 
#endif                                                                
    pipe_free(pipe);                                                  
    *pipep = NULL;                                                    
  }                                                                   
  else if (pipe->Readers == 0 && mode != LIBIO_FLAGS_WRITE)           
ffc11484:	2f 9e 00 04 	cmpwi   cr7,r30,4                              
ffc11488:	41 9e ff cc 	beq+    cr7,ffc11454 <pipe_release+0x88>       <== NEVER TAKEN
    /* Notify waiting Writers that all their partners left */         
    PIPE_WAKEUPWRITERS(pipe);                                         
ffc1148c:	80 7f 00 30 	lwz     r3,48(r31)                             
ffc11490:	38 81 00 08 	addi    r4,r1,8                                
ffc11494:	48 00 19 f5 	bl      ffc12e88 <rtems_barrier_release>       
  else if (pipe->Writers == 0 && mode != LIBIO_FLAGS_READ)            
    PIPE_WAKEUPREADERS(pipe);                                         
                                                                      
  pipe_unlock();                                                      
ffc11498:	4b ff ff 0d 	bl      ffc113a4 <pipe_unlock>                 
  iop->flags &= ~LIBIO_FLAGS_OPEN;                                    
  if(iop->pathinfo.ops->unlink_h(&iop->pathinfo))                     
    return;                                                           
#endif                                                                
                                                                      
}                                                                     
ffc1149c:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc114a0:	83 81 00 18 	lwz     r28,24(r1)                             
ffc114a4:	7c 08 03 a6 	mtlr    r0                                     
ffc114a8:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc114ac:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc114b0:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc114b4:	38 21 00 28 	addi    r1,r1,40                               
ffc114b8:	4e 80 00 20 	blr                                            
/* Called with pipe_semaphore held. */                                
static inline void pipe_free(                                         
  pipe_control_t *pipe                                                
)                                                                     
{                                                                     
  rtems_barrier_delete(pipe->readBarrier);                            
ffc114bc:	80 7f 00 2c 	lwz     r3,44(r31)                             
ffc114c0:	48 00 18 fd 	bl      ffc12dbc <rtems_barrier_delete>        
  rtems_barrier_delete(pipe->writeBarrier);                           
ffc114c4:	80 7f 00 30 	lwz     r3,48(r31)                             
ffc114c8:	48 00 18 f5 	bl      ffc12dbc <rtems_barrier_delete>        
  rtems_semaphore_delete(pipe->Semaphore);                            
ffc114cc:	80 7f 00 28 	lwz     r3,40(r31)                             
ffc114d0:	4b ff a3 29 	bl      ffc0b7f8 <rtems_semaphore_delete>      
  free(pipe->Buffer);                                                 
ffc114d4:	80 7f 00 00 	lwz     r3,0(r31)                              
ffc114d8:	4b ff 5a 89 	bl      ffc06f60 <free>                        
  free(pipe);                                                         
ffc114dc:	7f e3 fb 78 	mr      r3,r31                                 
ffc114e0:	4b ff 5a 81 	bl      ffc06f60 <free>                        
    /* To delete an anonymous pipe file when all users closed it */   
    if (pipe->Anonymous)                                              
      delfile = TRUE;                                                 
#endif                                                                
    pipe_free(pipe);                                                  
    *pipep = NULL;                                                    
ffc114e4:	93 9d 00 00 	stw     r28,0(r29)                             
    /* Notify waiting Writers that all their partners left */         
    PIPE_WAKEUPWRITERS(pipe);                                         
  else if (pipe->Writers == 0 && mode != LIBIO_FLAGS_READ)            
    PIPE_WAKEUPREADERS(pipe);                                         
                                                                      
  pipe_unlock();                                                      
ffc114e8:	4b ff fe bd 	bl      ffc113a4 <pipe_unlock>                 
  iop->flags &= ~LIBIO_FLAGS_OPEN;                                    
  if(iop->pathinfo.ops->unlink_h(&iop->pathinfo))                     
    return;                                                           
#endif                                                                
                                                                      
}                                                                     
ffc114ec:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc114f0:	83 81 00 18 	lwz     r28,24(r1)                             
ffc114f4:	7c 08 03 a6 	mtlr    r0                                     
ffc114f8:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc114fc:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc11500:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc11504:	38 21 00 28 	addi    r1,r1,40                               
ffc11508:	4e 80 00 20 	blr                                            
                                                                      

ffc11ba8 <pipe_write>: pipe_control_t *pipe, const void *buffer, size_t count, rtems_libio_t *iop ) {
ffc11ba8:	94 21 ff c0 	stwu    r1,-64(r1)                             
ffc11bac:	7c 08 02 a6 	mflr    r0                                     
ffc11bb0:	93 c1 00 38 	stw     r30,56(r1)                             
  int chunk, chunk1, written = 0, ret = 0;                            
                                                                      
  /* Write nothing */                                                 
  if (count == 0)                                                     
ffc11bb4:	7c be 2b 79 	mr.     r30,r5                                 
  pipe_control_t *pipe,                                               
  const void     *buffer,                                             
  size_t          count,                                              
  rtems_libio_t  *iop                                                 
)                                                                     
{                                                                     
ffc11bb8:	93 81 00 30 	stw     r28,48(r1)                             
  int chunk, chunk1, written = 0, ret = 0;                            
                                                                      
  /* Write nothing */                                                 
  if (count == 0)                                                     
    return 0;                                                         
ffc11bbc:	3b 80 00 00 	li      r28,0                                  
  pipe_control_t *pipe,                                               
  const void     *buffer,                                             
  size_t          count,                                              
  rtems_libio_t  *iop                                                 
)                                                                     
{                                                                     
ffc11bc0:	93 a1 00 34 	stw     r29,52(r1)                             
ffc11bc4:	7c 9d 23 78 	mr      r29,r4                                 
ffc11bc8:	93 e1 00 3c 	stw     r31,60(r1)                             
ffc11bcc:	7c 7f 1b 78 	mr      r31,r3                                 
ffc11bd0:	90 01 00 44 	stw     r0,68(r1)                              
ffc11bd4:	93 01 00 20 	stw     r24,32(r1)                             
ffc11bd8:	93 21 00 24 	stw     r25,36(r1)                             
ffc11bdc:	93 41 00 28 	stw     r26,40(r1)                             
ffc11be0:	93 61 00 2c 	stw     r27,44(r1)                             
  int chunk, chunk1, written = 0, ret = 0;                            
                                                                      
  /* Write nothing */                                                 
  if (count == 0)                                                     
ffc11be4:	40 82 00 38 	bne-    ffc11c1c <pipe_write+0x74>             <== ALWAYS TAKEN
#endif                                                                
                                                                      
  if (written > 0)                                                    
    return written;                                                   
  return ret;                                                         
}                                                                     
ffc11be8:	80 01 00 44 	lwz     r0,68(r1)                              
ffc11bec:	7f 83 e3 78 	mr      r3,r28                                 
ffc11bf0:	83 01 00 20 	lwz     r24,32(r1)                             
ffc11bf4:	7c 08 03 a6 	mtlr    r0                                     
ffc11bf8:	83 21 00 24 	lwz     r25,36(r1)                             
ffc11bfc:	83 41 00 28 	lwz     r26,40(r1)                             
ffc11c00:	83 61 00 2c 	lwz     r27,44(r1)                             
ffc11c04:	83 81 00 30 	lwz     r28,48(r1)                             
ffc11c08:	83 a1 00 34 	lwz     r29,52(r1)                             
ffc11c0c:	83 c1 00 38 	lwz     r30,56(r1)                             
ffc11c10:	83 e1 00 3c 	lwz     r31,60(r1)                             
ffc11c14:	38 21 00 40 	addi    r1,r1,64                               
ffc11c18:	4e 80 00 20 	blr                                            
                                                                      
  /* Write nothing */                                                 
  if (count == 0)                                                     
    return 0;                                                         
                                                                      
  if (! PIPE_LOCK(pipe))                                              
ffc11c1c:	80 63 00 28 	lwz     r3,40(r3)                              
ffc11c20:	38 80 00 00 	li      r4,0                                   
ffc11c24:	38 a0 00 00 	li      r5,0                                   
ffc11c28:	90 c1 00 18 	stw     r6,24(r1)                              
ffc11c2c:	4b ff 9c a9 	bl      ffc0b8d4 <rtems_semaphore_obtain>      
    return -EINTR;                                                    
ffc11c30:	3b 80 ff fc 	li      r28,-4                                 
                                                                      
  /* Write nothing */                                                 
  if (count == 0)                                                     
    return 0;                                                         
                                                                      
  if (! PIPE_LOCK(pipe))                                              
ffc11c34:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc11c38:	80 c1 00 18 	lwz     r6,24(r1)                              
ffc11c3c:	40 be ff ac 	bne-    cr7,ffc11be8 <pipe_write+0x40>         <== NEVER TAKEN
    return -EINTR;                                                    
                                                                      
  if (pipe->Readers == 0) {                                           
ffc11c40:	80 1f 00 10 	lwz     r0,16(r31)                             
ffc11c44:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc11c48:	41 9e 01 84 	beq-    cr7,ffc11dcc <pipe_write+0x224>        
    ret = -EPIPE;                                                     
    goto out_locked;                                                  
  }                                                                   
                                                                      
  /* Write of PIPE_BUF bytes or less shall not be interleaved */      
  chunk = count <= pipe->Size ? count : 1;                            
ffc11c4c:	81 3f 00 04 	lwz     r9,4(r31)                              
ffc11c50:	3b 40 00 01 	li      r26,1                                  
ffc11c54:	7f 9e 48 40 	cmplw   cr7,r30,r9                             
ffc11c58:	41 9d 00 08 	bgt-    cr7,ffc11c60 <pipe_write+0xb8>         <== NEVER TAKEN
ffc11c5c:	7f da f3 78 	mr      r26,r30                                
ffc11c60:	3b 20 00 00 	li      r25,0                                  
ffc11c64:	3b 80 00 00 	li      r28,0                                  
    else                                                              
      memcpy(pipe->Buffer + PIPE_WSTART(pipe), buffer + written, chunk);
                                                                      
    pipe->Length += chunk;                                            
    if (pipe->waitingReaders > 0)                                     
      PIPE_WAKEUPREADERS(pipe);                                       
ffc11c68:	3b 01 00 08 	addi    r24,r1,8                               
                                                                      
  /* Write of PIPE_BUF bytes or less shall not be interleaved */      
  chunk = count <= pipe->Size ? count : 1;                            
                                                                      
  while (written < count) {                                           
    while (PIPE_SPACE(pipe) < chunk) {                                
ffc11c6c:	80 1f 00 0c 	lwz     r0,12(r31)                             
ffc11c70:	7f 60 48 50 	subf    r27,r0,r9                              
ffc11c74:	7f 9b d0 40 	cmplw   cr7,r27,r26                            
ffc11c78:	40 9c 00 9c 	bge-    cr7,ffc11d14 <pipe_write+0x16c>        
      if (LIBIO_NODELAY(iop)) {                                       
ffc11c7c:	80 06 00 18 	lwz     r0,24(r6)                              
ffc11c80:	70 09 00 01 	andi.   r9,r0,1                                
ffc11c84:	40 82 01 54 	bne-    ffc11dd8 <pipe_write+0x230>            
        ret = -EAGAIN;                                                
        goto out_locked;                                              
      }                                                               
                                                                      
      /* Wait until there is chunk bytes space or no reader exists */ 
      pipe->waitingWriters ++;                                        
ffc11c88:	81 3f 00 1c 	lwz     r9,28(r31)                             
      PIPE_UNLOCK(pipe);                                              
      if (! PIPE_WRITEWAIT(pipe))                                     
        ret = -EINTR;                                                 
ffc11c8c:	3b 60 ff fc 	li      r27,-4                                 
        goto out_locked;                                              
      }                                                               
                                                                      
      /* Wait until there is chunk bytes space or no reader exists */ 
      pipe->waitingWriters ++;                                        
      PIPE_UNLOCK(pipe);                                              
ffc11c90:	80 7f 00 28 	lwz     r3,40(r31)                             
        ret = -EAGAIN;                                                
        goto out_locked;                                              
      }                                                               
                                                                      
      /* Wait until there is chunk bytes space or no reader exists */ 
      pipe->waitingWriters ++;                                        
ffc11c94:	38 09 00 01 	addi    r0,r9,1                                
ffc11c98:	90 1f 00 1c 	stw     r0,28(r31)                             
      PIPE_UNLOCK(pipe);                                              
ffc11c9c:	90 c1 00 18 	stw     r6,24(r1)                              
ffc11ca0:	4b ff 9d bd 	bl      ffc0ba5c <rtems_semaphore_release>     
      if (! PIPE_WRITEWAIT(pipe))                                     
ffc11ca4:	38 80 00 00 	li      r4,0                                   
ffc11ca8:	80 7f 00 30 	lwz     r3,48(r31)                             
ffc11cac:	48 00 12 71 	bl      ffc12f1c <rtems_barrier_wait>          
ffc11cb0:	80 c1 00 18 	lwz     r6,24(r1)                              
ffc11cb4:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc11cb8:	40 9e 00 08 	bne-    cr7,ffc11cc0 <pipe_write+0x118>        <== NEVER TAKEN
ffc11cbc:	3b 60 00 00 	li      r27,0                                  
        ret = -EINTR;                                                 
      if (! PIPE_LOCK(pipe)) {                                        
ffc11cc0:	80 7f 00 28 	lwz     r3,40(r31)                             
ffc11cc4:	38 80 00 00 	li      r4,0                                   
ffc11cc8:	38 a0 00 00 	li      r5,0                                   
ffc11ccc:	90 c1 00 18 	stw     r6,24(r1)                              
ffc11cd0:	4b ff 9c 05 	bl      ffc0b8d4 <rtems_semaphore_obtain>      
ffc11cd4:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc11cd8:	80 c1 00 18 	lwz     r6,24(r1)                              
ffc11cdc:	40 9e 01 04 	bne-    cr7,ffc11de0 <pipe_write+0x238>        <== NEVER TAKEN
        /* WARN waitingWriters not restored! */                       
        ret = -EINTR;                                                 
        goto out_nolock;                                              
      }                                                               
      pipe->waitingWriters --;                                        
      if (ret != 0)                                                   
ffc11ce0:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
      if (! PIPE_LOCK(pipe)) {                                        
        /* WARN waitingWriters not restored! */                       
        ret = -EINTR;                                                 
        goto out_nolock;                                              
      }                                                               
      pipe->waitingWriters --;                                        
ffc11ce4:	81 3f 00 1c 	lwz     r9,28(r31)                             
ffc11ce8:	38 09 ff ff 	addi    r0,r9,-1                               
ffc11cec:	90 1f 00 1c 	stw     r0,28(r31)                             
      if (ret != 0)                                                   
ffc11cf0:	40 9e 00 bc 	bne-    cr7,ffc11dac <pipe_write+0x204>        <== NEVER TAKEN
        goto out_locked;                                              
                                                                      
      if (pipe->Readers == 0) {                                       
ffc11cf4:	80 1f 00 10 	lwz     r0,16(r31)                             
ffc11cf8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc11cfc:	41 9e 00 c8 	beq-    cr7,ffc11dc4 <pipe_write+0x21c>        <== NEVER TAKEN
ffc11d00:	81 3f 00 04 	lwz     r9,4(r31)                              
                                                                      
  /* Write of PIPE_BUF bytes or less shall not be interleaved */      
  chunk = count <= pipe->Size ? count : 1;                            
                                                                      
  while (written < count) {                                           
    while (PIPE_SPACE(pipe) < chunk) {                                
ffc11d04:	80 1f 00 0c 	lwz     r0,12(r31)                             
ffc11d08:	7f 60 48 50 	subf    r27,r0,r9                              
ffc11d0c:	7f 9b d0 40 	cmplw   cr7,r27,r26                            
ffc11d10:	41 9c ff 6c 	blt+    cr7,ffc11c7c <pipe_write+0xd4>         <== NEVER TAKEN
        ret = -EPIPE;                                                 
        goto out_locked;                                              
      }                                                               
    }                                                                 
                                                                      
    chunk = MIN(count - written, PIPE_SPACE(pipe));                   
ffc11d14:	7d 79 f0 50 	subf    r11,r25,r30                            
ffc11d18:	7f 9b 58 40 	cmplw   cr7,r27,r11                            
ffc11d1c:	40 9d 00 08 	ble-    cr7,ffc11d24 <pipe_write+0x17c>        
ffc11d20:	7d 7b 5b 78 	mr      r27,r11                                
    chunk1 = pipe->Size - PIPE_WSTART(pipe);                          
ffc11d24:	81 7f 00 08 	lwz     r11,8(r31)                             
ffc11d28:	7c 00 5a 14 	add     r0,r0,r11                              
ffc11d2c:	7d 60 4b 96 	divwu   r11,r0,r9                              
ffc11d30:	7d 6b 49 d6 	mullw   r11,r11,r9                             
ffc11d34:	7c 0b 00 50 	subf    r0,r11,r0                              
ffc11d38:	7f 40 48 50 	subf    r26,r0,r9                              
    if (chunk > chunk1) {                                             
ffc11d3c:	7f 9b d0 00 	cmpw    cr7,r27,r26                            
ffc11d40:	40 9d 00 a8 	ble-    cr7,ffc11de8 <pipe_write+0x240>        
      memcpy(pipe->Buffer + PIPE_WSTART(pipe), buffer + written, chunk1);
ffc11d44:	80 7f 00 00 	lwz     r3,0(r31)                              
ffc11d48:	7c 9d ca 14 	add     r4,r29,r25                             
ffc11d4c:	7f 45 d3 78 	mr      r5,r26                                 
ffc11d50:	90 c1 00 18 	stw     r6,24(r1)                              
ffc11d54:	7c 63 02 14 	add     r3,r3,r0                               
ffc11d58:	48 00 41 59 	bl      ffc15eb0 <memcpy>                      
      memcpy(pipe->Buffer, buffer + written + chunk1, chunk - chunk1);
ffc11d5c:	7c 9a ca 14 	add     r4,r26,r25                             
ffc11d60:	80 7f 00 00 	lwz     r3,0(r31)                              
ffc11d64:	7c 9d 22 14 	add     r4,r29,r4                              
ffc11d68:	7c ba d8 50 	subf    r5,r26,r27                             
ffc11d6c:	48 00 41 45 	bl      ffc15eb0 <memcpy>                      
ffc11d70:	80 c1 00 18 	lwz     r6,24(r1)                              
    }                                                                 
    else                                                              
      memcpy(pipe->Buffer + PIPE_WSTART(pipe), buffer + written, chunk);
                                                                      
    pipe->Length += chunk;                                            
    if (pipe->waitingReaders > 0)                                     
ffc11d74:	81 3f 00 18 	lwz     r9,24(r31)                             
      memcpy(pipe->Buffer, buffer + written + chunk1, chunk - chunk1);
    }                                                                 
    else                                                              
      memcpy(pipe->Buffer + PIPE_WSTART(pipe), buffer + written, chunk);
                                                                      
    pipe->Length += chunk;                                            
ffc11d78:	80 1f 00 0c 	lwz     r0,12(r31)                             
    if (pipe->waitingReaders > 0)                                     
ffc11d7c:	2f 89 00 00 	cmpwi   cr7,r9,0                               
      memcpy(pipe->Buffer, buffer + written + chunk1, chunk - chunk1);
    }                                                                 
    else                                                              
      memcpy(pipe->Buffer + PIPE_WSTART(pipe), buffer + written, chunk);
                                                                      
    pipe->Length += chunk;                                            
ffc11d80:	7c 00 da 14 	add     r0,r0,r27                              
ffc11d84:	90 1f 00 0c 	stw     r0,12(r31)                             
    if (pipe->waitingReaders > 0)                                     
ffc11d88:	40 9e 00 80 	bne-    cr7,ffc11e08 <pipe_write+0x260>        
      PIPE_WAKEUPREADERS(pipe);                                       
    written += chunk;                                                 
ffc11d8c:	7f 9c da 14 	add     r28,r28,r27                            
  }                                                                   
                                                                      
  /* Write of PIPE_BUF bytes or less shall not be interleaved */      
  chunk = count <= pipe->Size ? count : 1;                            
                                                                      
  while (written < count) {                                           
ffc11d90:	7f 9e e0 40 	cmplw   cr7,r30,r28                            
ffc11d94:	7f 99 e3 78 	mr      r25,r28                                
ffc11d98:	40 9d 00 10 	ble-    cr7,ffc11da8 <pipe_write+0x200>        <== ALWAYS TAKEN
ffc11d9c:	81 3f 00 04 	lwz     r9,4(r31)                              <== NOT EXECUTED
    pipe->Length += chunk;                                            
    if (pipe->waitingReaders > 0)                                     
      PIPE_WAKEUPREADERS(pipe);                                       
    written += chunk;                                                 
    /* Write of more than PIPE_BUF bytes can be interleaved */        
    chunk = 1;                                                        
ffc11da0:	3b 40 00 01 	li      r26,1                                  <== NOT EXECUTED
ffc11da4:	4b ff fe c8 	b       ffc11c6c <pipe_write+0xc4>             <== NOT EXECUTED
  }                                                                   
                                                                      
  /* Write of PIPE_BUF bytes or less shall not be interleaved */      
  chunk = count <= pipe->Size ? count : 1;                            
                                                                      
  while (written < count) {                                           
ffc11da8:	3b 60 00 00 	li      r27,0                                  
    /* Write of more than PIPE_BUF bytes can be interleaved */        
    chunk = 1;                                                        
  }                                                                   
                                                                      
out_locked:                                                           
  PIPE_UNLOCK(pipe);                                                  
ffc11dac:	80 7f 00 28 	lwz     r3,40(r31)                             
ffc11db0:	4b ff 9c ad 	bl      ffc0ba5c <rtems_semaphore_release>     
  /* Signal SIGPIPE */                                                
  if (ret == -EPIPE)                                                  
    kill(getpid(), SIGPIPE);                                          
#endif                                                                
                                                                      
  if (written > 0)                                                    
ffc11db4:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
ffc11db8:	41 9d fe 30 	bgt+    cr7,ffc11be8 <pipe_write+0x40>         
    return written;                                                   
  return ret;                                                         
ffc11dbc:	7f 7c db 78 	mr      r28,r27                                
ffc11dc0:	4b ff fe 28 	b       ffc11be8 <pipe_write+0x40>             
      pipe->waitingWriters --;                                        
      if (ret != 0)                                                   
        goto out_locked;                                              
                                                                      
      if (pipe->Readers == 0) {                                       
        ret = -EPIPE;                                                 
ffc11dc4:	3b 60 ff e0 	li      r27,-32                                <== NOT EXECUTED
ffc11dc8:	4b ff ff e4 	b       ffc11dac <pipe_write+0x204>            <== NOT EXECUTED
                                                                      
  if (! PIPE_LOCK(pipe))                                              
    return -EINTR;                                                    
                                                                      
  if (pipe->Readers == 0) {                                           
    ret = -EPIPE;                                                     
ffc11dcc:	3b 60 ff e0 	li      r27,-32                                
  const void     *buffer,                                             
  size_t          count,                                              
  rtems_libio_t  *iop                                                 
)                                                                     
{                                                                     
  int chunk, chunk1, written = 0, ret = 0;                            
ffc11dd0:	3b 80 00 00 	li      r28,0                                  
ffc11dd4:	4b ff ff d8 	b       ffc11dac <pipe_write+0x204>            
  chunk = count <= pipe->Size ? count : 1;                            
                                                                      
  while (written < count) {                                           
    while (PIPE_SPACE(pipe) < chunk) {                                
      if (LIBIO_NODELAY(iop)) {                                       
        ret = -EAGAIN;                                                
ffc11dd8:	3b 60 ff f5 	li      r27,-11                                
ffc11ddc:	4b ff ff d0 	b       ffc11dac <pipe_write+0x204>            
      PIPE_UNLOCK(pipe);                                              
      if (! PIPE_WRITEWAIT(pipe))                                     
        ret = -EINTR;                                                 
      if (! PIPE_LOCK(pipe)) {                                        
        /* WARN waitingWriters not restored! */                       
        ret = -EINTR;                                                 
ffc11de0:	3b 60 ff fc 	li      r27,-4                                 <== NOT EXECUTED
ffc11de4:	4b ff ff d0 	b       ffc11db4 <pipe_write+0x20c>            <== NOT EXECUTED
    if (chunk > chunk1) {                                             
      memcpy(pipe->Buffer + PIPE_WSTART(pipe), buffer + written, chunk1);
      memcpy(pipe->Buffer, buffer + written + chunk1, chunk - chunk1);
    }                                                                 
    else                                                              
      memcpy(pipe->Buffer + PIPE_WSTART(pipe), buffer + written, chunk);
ffc11de8:	80 7f 00 00 	lwz     r3,0(r31)                              
ffc11dec:	7c 9d ca 14 	add     r4,r29,r25                             
ffc11df0:	7f 65 db 78 	mr      r5,r27                                 
ffc11df4:	90 c1 00 18 	stw     r6,24(r1)                              
ffc11df8:	7c 63 02 14 	add     r3,r3,r0                               
ffc11dfc:	48 00 40 b5 	bl      ffc15eb0 <memcpy>                      
ffc11e00:	80 c1 00 18 	lwz     r6,24(r1)                              
ffc11e04:	4b ff ff 70 	b       ffc11d74 <pipe_write+0x1cc>            
                                                                      
    pipe->Length += chunk;                                            
    if (pipe->waitingReaders > 0)                                     
      PIPE_WAKEUPREADERS(pipe);                                       
ffc11e08:	80 7f 00 2c 	lwz     r3,44(r31)                             
ffc11e0c:	7f 04 c3 78 	mr      r4,r24                                 
ffc11e10:	90 c1 00 18 	stw     r6,24(r1)                              
ffc11e14:	48 00 10 75 	bl      ffc12e88 <rtems_barrier_release>       
ffc11e18:	80 c1 00 18 	lwz     r6,24(r1)                              
ffc11e1c:	4b ff ff 70 	b       ffc11d8c <pipe_write+0x1e4>            
                                                                      

ffc09908 <posix_memalign>: int posix_memalign( void **pointer, size_t alignment, size_t size ) {
ffc09908:	7c 08 02 a6 	mflr    r0                                     
ffc0990c:	94 21 ff f8 	stwu    r1,-8(r1)                              
  /*                                                                  
   *  Update call statistics                                          
   */                                                                 
  MSBUMP(memalign_calls, 1);                                          
ffc09910:	3d 60 00 00 	lis     r11,0                                  
ffc09914:	39 6b 33 90 	addi    r11,r11,13200                          
int posix_memalign(                                                   
  void   **pointer,                                                   
  size_t   alignment,                                                 
  size_t   size                                                       
)                                                                     
{                                                                     
ffc09918:	90 01 00 0c 	stw     r0,12(r1)                              
  /*                                                                  
   *  Update call statistics                                          
   */                                                                 
  MSBUMP(memalign_calls, 1);                                          
                                                                      
  if (((alignment - 1) & alignment) != 0 || (alignment < sizeof(void *)))
ffc0991c:	38 04 ff ff 	addi    r0,r4,-1                               
)                                                                     
{                                                                     
  /*                                                                  
   *  Update call statistics                                          
   */                                                                 
  MSBUMP(memalign_calls, 1);                                          
ffc09920:	81 4b 00 08 	lwz     r10,8(r11)                             
                                                                      
  if (((alignment - 1) & alignment) != 0 || (alignment < sizeof(void *)))
ffc09924:	7c 08 20 39 	and.    r8,r0,r4                               
)                                                                     
{                                                                     
  /*                                                                  
   *  Update call statistics                                          
   */                                                                 
  MSBUMP(memalign_calls, 1);                                          
ffc09928:	38 0a 00 01 	addi    r0,r10,1                               
ffc0992c:	90 0b 00 08 	stw     r0,8(r11)                              
                                                                      
  if (((alignment - 1) & alignment) != 0 || (alignment < sizeof(void *)))
    return EINVAL;                                                    
ffc09930:	38 00 00 16 	li      r0,22                                  
  /*                                                                  
   *  Update call statistics                                          
   */                                                                 
  MSBUMP(memalign_calls, 1);                                          
                                                                      
  if (((alignment - 1) & alignment) != 0 || (alignment < sizeof(void *)))
ffc09934:	40 82 00 0c 	bne-    ffc09940 <posix_memalign+0x38>         <== NEVER TAKEN
ffc09938:	2b 84 00 03 	cmplwi  cr7,r4,3                               
ffc0993c:	41 9d 00 18 	bgt-    cr7,ffc09954 <posix_memalign+0x4c>     
  /*                                                                  
   *  rtems_memalign does all of the error checking work EXCEPT       
   *  for adding restrictionso on the alignment.                      
   */                                                                 
  return rtems_memalign( pointer, alignment, size );                  
}                                                                     
ffc09940:	7c 03 03 78 	mr      r3,r0                                  
ffc09944:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc09948:	38 21 00 08 	addi    r1,r1,8                                
ffc0994c:	7c 08 03 a6 	mtlr    r0                                     
ffc09950:	4e 80 00 20 	blr                                            
                                                                      
  /*                                                                  
   *  rtems_memalign does all of the error checking work EXCEPT       
   *  for adding restrictionso on the alignment.                      
   */                                                                 
  return rtems_memalign( pointer, alignment, size );                  
ffc09954:	48 00 03 31 	bl      ffc09c84 <rtems_memalign>              
ffc09958:	7c 60 1b 78 	mr      r0,r3                                  
}                                                                     
ffc0995c:	7c 03 03 78 	mr      r3,r0                                  
ffc09960:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc09964:	38 21 00 08 	addi    r1,r1,8                                
ffc09968:	7c 08 03 a6 	mtlr    r0                                     
ffc0996c:	4e 80 00 20 	blr                                            
                                                                      

ffc05dbc <printk>: * printk * * Kernel printf function requiring minimal infrastrure. */ void printk(const char *fmt, ...) {
ffc05dbc:	94 21 ff 88 	stwu    r1,-120(r1)                            
ffc05dc0:	7c 08 02 a6 	mflr    r0                                     
ffc05dc4:	90 81 00 1c 	stw     r4,28(r1)                              
ffc05dc8:	90 01 00 7c 	stw     r0,124(r1)                             
ffc05dcc:	90 a1 00 20 	stw     r5,32(r1)                              
ffc05dd0:	90 c1 00 24 	stw     r6,36(r1)                              
ffc05dd4:	90 e1 00 28 	stw     r7,40(r1)                              
ffc05dd8:	91 01 00 2c 	stw     r8,44(r1)                              
ffc05ddc:	91 21 00 30 	stw     r9,48(r1)                              
ffc05de0:	91 41 00 34 	stw     r10,52(r1)                             
ffc05de4:	40 86 00 24 	bne-    cr1,ffc05e08 <printk+0x4c>             <== ALWAYS TAKEN
ffc05de8:	d8 21 00 38 	stfd    f1,56(r1)                              <== NOT EXECUTED
ffc05dec:	d8 41 00 40 	stfd    f2,64(r1)                              <== NOT EXECUTED
ffc05df0:	d8 61 00 48 	stfd    f3,72(r1)                              <== NOT EXECUTED
ffc05df4:	d8 81 00 50 	stfd    f4,80(r1)                              <== NOT EXECUTED
ffc05df8:	d8 a1 00 58 	stfd    f5,88(r1)                              <== NOT EXECUTED
ffc05dfc:	d8 c1 00 60 	stfd    f6,96(r1)                              <== NOT EXECUTED
ffc05e00:	d8 e1 00 68 	stfd    f7,104(r1)                             <== NOT EXECUTED
ffc05e04:	d9 01 00 70 	stfd    f8,112(r1)                             <== NOT EXECUTED
  va_list  ap;       /* points to each unnamed argument in turn */    
                                                                      
  va_start(ap, fmt); /* make ap point to 1st unnamed arg */           
ffc05e08:	38 00 00 01 	li      r0,1                                   
ffc05e0c:	98 01 00 08 	stb     r0,8(r1)                               
ffc05e10:	38 00 00 00 	li      r0,0                                   
  vprintk(fmt, ap);                                                   
ffc05e14:	38 81 00 08 	addi    r4,r1,8                                
 */                                                                   
void printk(const char *fmt, ...)                                     
{                                                                     
  va_list  ap;       /* points to each unnamed argument in turn */    
                                                                      
  va_start(ap, fmt); /* make ap point to 1st unnamed arg */           
ffc05e18:	98 01 00 09 	stb     r0,9(r1)                               
ffc05e1c:	38 01 00 80 	addi    r0,r1,128                              
ffc05e20:	90 01 00 0c 	stw     r0,12(r1)                              
ffc05e24:	38 01 00 18 	addi    r0,r1,24                               
ffc05e28:	90 01 00 10 	stw     r0,16(r1)                              
  vprintk(fmt, ap);                                                   
ffc05e2c:	48 00 23 8d 	bl      ffc081b8 <vprintk>                     
  va_end(ap);        /* clean up when done */                         
}                                                                     
ffc05e30:	80 01 00 7c 	lwz     r0,124(r1)                             
ffc05e34:	38 21 00 78 	addi    r1,r1,120                              
ffc05e38:	7c 08 03 a6 	mtlr    r0                                     
ffc05e3c:	4e 80 00 20 	blr                                            
                                                                      

ffc07644 <printk_plugin>: int printk_plugin( void *ignored __attribute__((unused)), const char *format, ... ) {
ffc07644:	94 21 ff 90 	stwu    r1,-112(r1)                            
ffc07648:	7c 08 02 a6 	mflr    r0                                     
ffc0764c:	90 a1 00 18 	stw     r5,24(r1)                              
ffc07650:	90 01 00 74 	stw     r0,116(r1)                             
ffc07654:	90 c1 00 1c 	stw     r6,28(r1)                              
ffc07658:	90 e1 00 20 	stw     r7,32(r1)                              
ffc0765c:	91 01 00 24 	stw     r8,36(r1)                              
ffc07660:	91 21 00 28 	stw     r9,40(r1)                              
ffc07664:	91 41 00 2c 	stw     r10,44(r1)                             
ffc07668:	40 86 00 24 	bne-    cr1,ffc0768c <printk_plugin+0x48>      <== ALWAYS TAKEN
ffc0766c:	d8 21 00 30 	stfd    f1,48(r1)                              <== NOT EXECUTED
ffc07670:	d8 41 00 38 	stfd    f2,56(r1)                              <== NOT EXECUTED
ffc07674:	d8 61 00 40 	stfd    f3,64(r1)                              <== NOT EXECUTED
ffc07678:	d8 81 00 48 	stfd    f4,72(r1)                              <== NOT EXECUTED
ffc0767c:	d8 a1 00 50 	stfd    f5,80(r1)                              <== NOT EXECUTED
ffc07680:	d8 c1 00 58 	stfd    f6,88(r1)                              <== NOT EXECUTED
ffc07684:	d8 e1 00 60 	stfd    f7,96(r1)                              <== NOT EXECUTED
ffc07688:	d9 01 00 68 	stfd    f8,104(r1)                             <== NOT EXECUTED
  va_list arg_pointer;                                                
                                                                      
  va_start (arg_pointer, format);                                     
ffc0768c:	38 00 00 02 	li      r0,2                                   
ffc07690:	98 01 00 08 	stb     r0,8(r1)                               
ffc07694:	38 00 00 00 	li      r0,0                                   
                                                                      
  vprintk( format, arg_pointer );                                     
ffc07698:	7c 83 23 78 	mr      r3,r4                                  
  ...                                                                 
)                                                                     
{                                                                     
  va_list arg_pointer;                                                
                                                                      
  va_start (arg_pointer, format);                                     
ffc0769c:	98 01 00 09 	stb     r0,9(r1)                               
ffc076a0:	38 01 00 78 	addi    r0,r1,120                              
                                                                      
  vprintk( format, arg_pointer );                                     
ffc076a4:	38 81 00 08 	addi    r4,r1,8                                
  ...                                                                 
)                                                                     
{                                                                     
  va_list arg_pointer;                                                
                                                                      
  va_start (arg_pointer, format);                                     
ffc076a8:	90 01 00 0c 	stw     r0,12(r1)                              
ffc076ac:	38 01 00 10 	addi    r0,r1,16                               
ffc076b0:	90 01 00 10 	stw     r0,16(r1)                              
                                                                      
  vprintk( format, arg_pointer );                                     
ffc076b4:	48 00 23 91 	bl      ffc09a44 <vprintk>                     
                                                                      
  va_end(arg_pointer); /* clean up when done */                       
                                                                      
  return 0;                                                           
}                                                                     
ffc076b8:	38 60 00 00 	li      r3,0                                   
ffc076bc:	80 01 00 74 	lwz     r0,116(r1)                             
ffc076c0:	38 21 00 70 	addi    r1,r1,112                              
ffc076c4:	7c 08 03 a6 	mtlr    r0                                     
ffc076c8:	4e 80 00 20 	blr                                            
                                                                      

ffc176a4 <read>: ssize_t read( int fd, void *buffer, size_t count ) {
ffc176a4:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc176a8:	7c 08 02 a6 	mflr    r0                                     
  ssize_t      rc;                                                    
  rtems_libio_t *iop;                                                 
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc176ac:	3d 20 00 00 	lis     r9,0                                   
ssize_t read(                                                         
  int         fd,                                                     
  void       *buffer,                                                 
  size_t      count                                                   
)                                                                     
{                                                                     
ffc176b0:	90 01 00 14 	stw     r0,20(r1)                              
  ssize_t      rc;                                                    
  rtems_libio_t *iop;                                                 
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc176b4:	80 09 26 4c 	lwz     r0,9804(r9)                            
ssize_t read(                                                         
  int         fd,                                                     
  void       *buffer,                                                 
  size_t      count                                                   
)                                                                     
{                                                                     
ffc176b8:	93 e1 00 0c 	stw     r31,12(r1)                             
  ssize_t      rc;                                                    
  rtems_libio_t *iop;                                                 
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc176bc:	7f 83 00 40 	cmplw   cr7,r3,r0                              
ffc176c0:	40 9c 00 8c 	bge-    cr7,ffc1774c <read+0xa8>               <== NEVER TAKEN
  iop = rtems_libio_iop( fd );                                        
ffc176c4:	3d 60 00 00 	lis     r11,0                                  
ffc176c8:	83 eb 27 0c 	lwz     r31,9996(r11)                          
ffc176cc:	54 63 30 32 	rlwinm  r3,r3,6,0,25                           
ffc176d0:	7f ff 1a 14 	add     r31,r31,r3                             
  rtems_libio_check_is_open( iop );                                   
ffc176d4:	81 7f 00 18 	lwz     r11,24(r31)                            
ffc176d8:	71 6a 01 00 	andi.   r10,r11,256                            
ffc176dc:	41 82 00 70 	beq-    ffc1774c <read+0xa8>                   
  rtems_libio_check_buffer( buffer );                                 
ffc176e0:	2f 84 00 00 	cmpwi   cr7,r4,0                               
ffc176e4:	41 9e 00 7c 	beq-    cr7,ffc17760 <read+0xbc>               <== NEVER TAKEN
  rtems_libio_check_count( count );                                   
ffc176e8:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc176ec:	38 60 00 00 	li      r3,0                                   
ffc176f0:	41 9e 00 48 	beq-    cr7,ffc17738 <read+0x94>               
  rtems_libio_check_permissions( iop, LIBIO_FLAGS_READ );             
ffc176f4:	71 60 00 02 	andi.   r0,r11,2                               
ffc176f8:	41 82 00 68 	beq-    ffc17760 <read+0xbc>                   
                                                                      
  /*                                                                  
   *  Now process the read().                                         
   */                                                                 
  rc = (*iop->pathinfo.handlers->read_h)( iop, buffer, count );       
ffc176fc:	81 3f 00 24 	lwz     r9,36(r31)                             
ffc17700:	7f e3 fb 78 	mr      r3,r31                                 
ffc17704:	80 09 00 08 	lwz     r0,8(r9)                               
ffc17708:	7c 09 03 a6 	mtctr   r0                                     
ffc1770c:	4e 80 04 21 	bctrl                                          
                                                                      
  if ( rc > 0 )                                                       
ffc17710:	2c 03 00 00 	cmpwi   r3,0                                   
ffc17714:	40 81 00 24 	ble-    ffc17738 <read+0x94>                   
    iop->offset += rc;                                                
ffc17718:	81 7f 00 10 	lwz     r11,16(r31)                            
ffc1771c:	7c 6a 1b 78 	mr      r10,r3                                 
ffc17720:	81 9f 00 14 	lwz     r12,20(r31)                            
ffc17724:	7c 69 fe 70 	srawi   r9,r3,31                               
ffc17728:	7d 4a 60 14 	addc    r10,r10,r12                            
ffc1772c:	7d 29 59 14 	adde    r9,r9,r11                              
ffc17730:	91 3f 00 10 	stw     r9,16(r31)                             
ffc17734:	91 5f 00 14 	stw     r10,20(r31)                            
                                                                      
  return rc;                                                          
}                                                                     
ffc17738:	80 01 00 14 	lwz     r0,20(r1)                              
ffc1773c:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc17740:	38 21 00 10 	addi    r1,r1,16                               
ffc17744:	7c 08 03 a6 	mtlr    r0                                     
ffc17748:	4e 80 00 20 	blr                                            
  ssize_t      rc;                                                    
  rtems_libio_t *iop;                                                 
                                                                      
  rtems_libio_check_fd( fd );                                         
  iop = rtems_libio_iop( fd );                                        
  rtems_libio_check_is_open( iop );                                   
ffc1774c:	4b ff a9 fd 	bl      ffc12148 <__errno>                     
ffc17750:	38 00 00 09 	li      r0,9                                   
ffc17754:	90 03 00 00 	stw     r0,0(r3)                               
ffc17758:	38 60 ff ff 	li      r3,-1                                  
ffc1775c:	4b ff ff dc 	b       ffc17738 <read+0x94>                   
  rtems_libio_check_buffer( buffer );                                 
  rtems_libio_check_count( count );                                   
  rtems_libio_check_permissions( iop, LIBIO_FLAGS_READ );             
ffc17760:	4b ff a9 e9 	bl      ffc12148 <__errno>                     
ffc17764:	38 00 00 16 	li      r0,22                                  
ffc17768:	90 03 00 00 	stw     r0,0(r3)                               
ffc1776c:	38 60 ff ff 	li      r3,-1                                  
ffc17770:	4b ff ff c8 	b       ffc17738 <read+0x94>                   
                                                                      

ffc08c4c <readlink>: ssize_t readlink( const char *pathname, char *buf, size_t bufsize ) {
ffc08c4c:	94 21 ff c8 	stwu    r1,-56(r1)                             
ffc08c50:	7c 08 02 a6 	mflr    r0                                     
ffc08c54:	93 a1 00 2c 	stw     r29,44(r1)                             
  rtems_filesystem_location_info_t  loc;                              
  int                               result;                           
                                                                      
  if (!buf)                                                           
ffc08c58:	7c 9d 23 79 	mr.     r29,r4                                 
ssize_t readlink(                                                     
  const char *pathname,                                               
  char       *buf,                                                    
  size_t      bufsize                                                 
)                                                                     
{                                                                     
ffc08c5c:	93 81 00 28 	stw     r28,40(r1)                             
ffc08c60:	7c 7c 1b 78 	mr      r28,r3                                 
ffc08c64:	93 c1 00 30 	stw     r30,48(r1)                             
ffc08c68:	7c be 2b 78 	mr      r30,r5                                 
ffc08c6c:	90 01 00 3c 	stw     r0,60(r1)                              
ffc08c70:	93 e1 00 34 	stw     r31,52(r1)                             
  rtems_filesystem_location_info_t  loc;                              
  int                               result;                           
                                                                      
  if (!buf)                                                           
ffc08c74:	41 82 00 bc 	beq-    ffc08d30 <readlink+0xe4>               
    rtems_set_errno_and_return_minus_one( EFAULT );                   
                                                                      
  result = rtems_filesystem_evaluate_path( pathname, strlen( pathname ),
ffc08c78:	48 00 f0 5d 	bl      ffc17cd4 <strlen>                      
ffc08c7c:	3b e1 00 08 	addi    r31,r1,8                               
ffc08c80:	7c 64 1b 78 	mr      r4,r3                                  
ffc08c84:	38 a0 00 00 	li      r5,0                                   
ffc08c88:	7f 83 e3 78 	mr      r3,r28                                 
ffc08c8c:	7f e6 fb 78 	mr      r6,r31                                 
ffc08c90:	38 e0 00 00 	li      r7,0                                   
ffc08c94:	4b ff e9 41 	bl      ffc075d4 <rtems_filesystem_evaluate_path>
                                           0, &loc, false );          
  if ( result != 0 )                                                  
     return -1;                                                       
ffc08c98:	3b 80 ff ff 	li      r28,-1                                 
  if (!buf)                                                           
    rtems_set_errno_and_return_minus_one( EFAULT );                   
                                                                      
  result = rtems_filesystem_evaluate_path( pathname, strlen( pathname ),
                                           0, &loc, false );          
  if ( result != 0 )                                                  
ffc08c9c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc08ca0:	41 9e 00 28 	beq-    cr7,ffc08cc8 <readlink+0x7c>           <== ALWAYS TAKEN
  result =  (*loc.ops->readlink_h)( &loc, buf, bufsize );             
                                                                      
  rtems_filesystem_freenode( &loc );                                  
                                                                      
  return result;                                                      
}                                                                     
ffc08ca4:	80 01 00 3c 	lwz     r0,60(r1)                              
ffc08ca8:	7f 83 e3 78 	mr      r3,r28                                 
ffc08cac:	83 a1 00 2c 	lwz     r29,44(r1)                             
ffc08cb0:	7c 08 03 a6 	mtlr    r0                                     
ffc08cb4:	83 81 00 28 	lwz     r28,40(r1)                             
ffc08cb8:	83 c1 00 30 	lwz     r30,48(r1)                             
ffc08cbc:	83 e1 00 34 	lwz     r31,52(r1)                             
ffc08cc0:	38 21 00 38 	addi    r1,r1,56                               
ffc08cc4:	4e 80 00 20 	blr                                            
  result = rtems_filesystem_evaluate_path( pathname, strlen( pathname ),
                                           0, &loc, false );          
  if ( result != 0 )                                                  
     return -1;                                                       
                                                                      
  if (  (*loc.ops->node_type_h)( &loc ) != RTEMS_FILESYSTEM_SYM_LINK ){
ffc08cc8:	81 21 00 14 	lwz     r9,20(r1)                              
ffc08ccc:	7f e3 fb 78 	mr      r3,r31                                 
ffc08cd0:	80 09 00 10 	lwz     r0,16(r9)                              
ffc08cd4:	7c 09 03 a6 	mtctr   r0                                     
ffc08cd8:	4e 80 04 21 	bctrl                                          
ffc08cdc:	2f 83 00 04 	cmpwi   cr7,r3,4                               
ffc08ce0:	40 9e 00 84 	bne-    cr7,ffc08d64 <readlink+0x118>          
    rtems_filesystem_freenode( &loc );                                
    rtems_set_errno_and_return_minus_one( EINVAL );                   
  }                                                                   
                                                                      
  result =  (*loc.ops->readlink_h)( &loc, buf, bufsize );             
ffc08ce4:	81 21 00 14 	lwz     r9,20(r1)                              
ffc08ce8:	7f a4 eb 78 	mr      r4,r29                                 
ffc08cec:	7f c5 f3 78 	mr      r5,r30                                 
ffc08cf0:	80 09 00 3c 	lwz     r0,60(r9)                              
ffc08cf4:	7f e3 fb 78 	mr      r3,r31                                 
ffc08cf8:	7c 09 03 a6 	mtctr   r0                                     
ffc08cfc:	4e 80 04 21 	bctrl                                          
ffc08d00:	7c 7c 1b 78 	mr      r28,r3                                 
                                                                      
  rtems_filesystem_freenode( &loc );                                  
ffc08d04:	7f e3 fb 78 	mr      r3,r31                                 
ffc08d08:	4b ff ea 29 	bl      ffc07730 <rtems_filesystem_freenode>   
                                                                      
  return result;                                                      
}                                                                     
ffc08d0c:	80 01 00 3c 	lwz     r0,60(r1)                              
ffc08d10:	7f 83 e3 78 	mr      r3,r28                                 
ffc08d14:	83 a1 00 2c 	lwz     r29,44(r1)                             
ffc08d18:	7c 08 03 a6 	mtlr    r0                                     
ffc08d1c:	83 81 00 28 	lwz     r28,40(r1)                             
ffc08d20:	83 c1 00 30 	lwz     r30,48(r1)                             
ffc08d24:	83 e1 00 34 	lwz     r31,52(r1)                             
ffc08d28:	38 21 00 38 	addi    r1,r1,56                               
ffc08d2c:	4e 80 00 20 	blr                                            
{                                                                     
  rtems_filesystem_location_info_t  loc;                              
  int                               result;                           
                                                                      
  if (!buf)                                                           
    rtems_set_errno_and_return_minus_one( EFAULT );                   
ffc08d30:	48 00 d0 09 	bl      ffc15d38 <__errno>                     
ffc08d34:	38 00 00 0e 	li      r0,14                                  
ffc08d38:	90 03 00 00 	stw     r0,0(r3)                               
ffc08d3c:	3b 80 ff ff 	li      r28,-1                                 
  result =  (*loc.ops->readlink_h)( &loc, buf, bufsize );             
                                                                      
  rtems_filesystem_freenode( &loc );                                  
                                                                      
  return result;                                                      
}                                                                     
ffc08d40:	7f 83 e3 78 	mr      r3,r28                                 
ffc08d44:	80 01 00 3c 	lwz     r0,60(r1)                              
ffc08d48:	83 81 00 28 	lwz     r28,40(r1)                             
ffc08d4c:	7c 08 03 a6 	mtlr    r0                                     
ffc08d50:	83 a1 00 2c 	lwz     r29,44(r1)                             
ffc08d54:	83 c1 00 30 	lwz     r30,48(r1)                             
ffc08d58:	83 e1 00 34 	lwz     r31,52(r1)                             
ffc08d5c:	38 21 00 38 	addi    r1,r1,56                               
ffc08d60:	4e 80 00 20 	blr                                            
                                           0, &loc, false );          
  if ( result != 0 )                                                  
     return -1;                                                       
                                                                      
  if (  (*loc.ops->node_type_h)( &loc ) != RTEMS_FILESYSTEM_SYM_LINK ){
    rtems_filesystem_freenode( &loc );                                
ffc08d64:	7f e3 fb 78 	mr      r3,r31                                 
ffc08d68:	4b ff e9 c9 	bl      ffc07730 <rtems_filesystem_freenode>   
    rtems_set_errno_and_return_minus_one( EINVAL );                   
ffc08d6c:	48 00 cf cd 	bl      ffc15d38 <__errno>                     
ffc08d70:	38 00 00 16 	li      r0,22                                  
ffc08d74:	90 03 00 00 	stw     r0,0(r3)                               
ffc08d78:	4b ff ff 2c 	b       ffc08ca4 <readlink+0x58>               
                                                                      

ffc07384 <readv>: ssize_t readv( int fd, const struct iovec *iov, int iovcnt ) {
ffc07384:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc07388:	7c 08 02 a6 	mflr    r0                                     
  int            v;                                                   
  int            bytes;                                               
  rtems_libio_t *iop;                                                 
  bool           all_zeros;                                           
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc0738c:	3d 20 00 00 	lis     r9,0                                   
ssize_t readv(                                                        
  int                 fd,                                             
  const struct iovec *iov,                                            
  int                 iovcnt                                          
)                                                                     
{                                                                     
ffc07390:	90 01 00 2c 	stw     r0,44(r1)                              
  int            v;                                                   
  int            bytes;                                               
  rtems_libio_t *iop;                                                 
  bool           all_zeros;                                           
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc07394:	80 09 26 4c 	lwz     r0,9804(r9)                            
ssize_t readv(                                                        
  int                 fd,                                             
  const struct iovec *iov,                                            
  int                 iovcnt                                          
)                                                                     
{                                                                     
ffc07398:	93 41 00 10 	stw     r26,16(r1)                             
ffc0739c:	7c ba 2b 78 	mr      r26,r5                                 
  int            v;                                                   
  int            bytes;                                               
  rtems_libio_t *iop;                                                 
  bool           all_zeros;                                           
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc073a0:	7f 83 00 40 	cmplw   cr7,r3,r0                              
ssize_t readv(                                                        
  int                 fd,                                             
  const struct iovec *iov,                                            
  int                 iovcnt                                          
)                                                                     
{                                                                     
ffc073a4:	93 21 00 0c 	stw     r25,12(r1)                             
ffc073a8:	93 61 00 14 	stw     r27,20(r1)                             
ffc073ac:	93 81 00 18 	stw     r28,24(r1)                             
ffc073b0:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc073b4:	93 c1 00 20 	stw     r30,32(r1)                             
ffc073b8:	93 e1 00 24 	stw     r31,36(r1)                             
  int            v;                                                   
  int            bytes;                                               
  rtems_libio_t *iop;                                                 
  bool           all_zeros;                                           
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc073bc:	40 9c 01 4c 	bge-    cr7,ffc07508 <readv+0x184>             
  iop = rtems_libio_iop( fd );                                        
ffc073c0:	3d 20 00 00 	lis     r9,0                                   
ffc073c4:	83 89 27 0c 	lwz     r28,9996(r9)                           
ffc073c8:	54 63 30 32 	rlwinm  r3,r3,6,0,25                           
ffc073cc:	7f 9c 1a 14 	add     r28,r28,r3                             
  rtems_libio_check_is_open( iop );                                   
ffc073d0:	80 1c 00 18 	lwz     r0,24(r28)                             
ffc073d4:	70 09 01 00 	andi.   r9,r0,256                              
ffc073d8:	41 82 01 30 	beq-    ffc07508 <readv+0x184>                 
  rtems_libio_check_permissions( iop, LIBIO_FLAGS_READ );             
ffc073dc:	70 09 00 02 	andi.   r9,r0,2                                
ffc073e0:	41 82 00 e8 	beq-    ffc074c8 <readv+0x144>                 <== NEVER TAKEN
                                                                      
  /*                                                                  
   *  Argument validation on IO vector                                
   */                                                                 
  if ( !iov )                                                         
ffc073e4:	2f 84 00 00 	cmpwi   cr7,r4,0                               
ffc073e8:	41 9e 00 e0 	beq-    cr7,ffc074c8 <readv+0x144>             
    rtems_set_errno_and_return_minus_one( EINVAL );                   
                                                                      
  if ( iovcnt <= 0 )                                                  
ffc073ec:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc073f0:	40 9d 00 d8 	ble-    cr7,ffc074c8 <readv+0x144>             
    rtems_set_errno_and_return_minus_one( EINVAL );                   
                                                                      
  if ( iovcnt > IOV_MAX )                                             
ffc073f4:	2f 85 04 00 	cmpwi   cr7,r5,1024                            
ffc073f8:	41 9d 00 d0 	bgt-    cr7,ffc074c8 <readv+0x144>             <== NEVER TAKEN
ffc073fc:	7c a9 03 a6 	mtctr   r5                                     
    rtems_set_errno_and_return_minus_one( EINVAL );                   
ffc07400:	7c 9d 23 78 	mr      r29,r4                                 
    rtems_set_errno_and_return_minus_one( EINVAL );                   
                                                                      
  if ( iovcnt <= 0 )                                                  
    rtems_set_errno_and_return_minus_one( EINVAL );                   
                                                                      
  if ( iovcnt > IOV_MAX )                                             
ffc07404:	7c 89 23 78 	mr      r9,r4                                  
ffc07408:	39 00 00 01 	li      r8,1                                   
ffc0740c:	38 00 00 00 	li      r0,0                                   
                                                                      
    /*                                                                
     *  iov[v].iov_len cannot be less than 0 because size_t is unsigned.
     *  So we only check for zero.                                    
     */                                                               
    if ( iov[v].iov_base == 0 )                                       
ffc07410:	81 69 00 00 	lwz     r11,0(r9)                              
ffc07414:	2f 8b 00 00 	cmpwi   cr7,r11,0                              
ffc07418:	41 9e 00 b0 	beq-    cr7,ffc074c8 <readv+0x144>             
      rtems_set_errno_and_return_minus_one( EINVAL );                 
                                                                      
    /* check for wrap */                                              
    old    = total;                                                   
    total += iov[v].iov_len;                                          
ffc0741c:	81 49 00 04 	lwz     r10,4(r9)                              
   *  are obvious errors in the iovec.  So this extra loop ensures    
   *  that we do not do anything if there is an argument error.       
   */                                                                 
                                                                      
  all_zeros = true;                                                   
  for ( total=0, v=0 ; v < iovcnt ; v++ ) {                           
ffc07420:	39 29 00 08 	addi    r9,r9,8                                
    if ( iov[v].iov_base == 0 )                                       
      rtems_set_errno_and_return_minus_one( EINVAL );                 
                                                                      
    /* check for wrap */                                              
    old    = total;                                                   
    total += iov[v].iov_len;                                          
ffc07424:	7d 60 52 14 	add     r11,r0,r10                             
    if ( total < old )                                                
ffc07428:	7f 80 58 00 	cmpw    cr7,r0,r11                             
      rtems_set_errno_and_return_minus_one( EINVAL );                 
                                                                      
    if ( iov[v].iov_len )                                             
      all_zeros = false;                                              
ffc0742c:	31 4a ff ff 	addic   r10,r10,-1                             
ffc07430:	7d 4a 51 10 	subfe   r10,r10,r10                            
ffc07434:	7d 08 50 38 	and     r8,r8,r10                              
    if ( iov[v].iov_base == 0 )                                       
      rtems_set_errno_and_return_minus_one( EINVAL );                 
                                                                      
    /* check for wrap */                                              
    old    = total;                                                   
    total += iov[v].iov_len;                                          
ffc07438:	7d 60 5b 78 	mr      r0,r11                                 
    if ( total < old )                                                
ffc0743c:	41 9d 00 8c 	bgt-    cr7,ffc074c8 <readv+0x144>             
   *  are obvious errors in the iovec.  So this extra loop ensures    
   *  that we do not do anything if there is an argument error.       
   */                                                                 
                                                                      
  all_zeros = true;                                                   
  for ( total=0, v=0 ; v < iovcnt ; v++ ) {                           
ffc07440:	42 00 ff d0 	bdnz+   ffc07410 <readv+0x8c>                  
  /*                                                                  
   *  A readv with all zeros logically has no effect.  Even though    
   *  OpenGroup didn't address this case as they did with writev(),   
   *  we will handle it the same way for symmetry.                    
   */                                                                 
  if ( all_zeros == true ) {                                          
ffc07444:	2f 88 00 00 	cmpwi   cr7,r8,0                               
    return 0;                                                         
ffc07448:	3b 20 00 00 	li      r25,0                                  
  /*                                                                  
   *  A readv with all zeros logically has no effect.  Even though    
   *  OpenGroup didn't address this case as they did with writev(),   
   *  we will handle it the same way for symmetry.                    
   */                                                                 
  if ( all_zeros == true ) {                                          
ffc0744c:	40 9e 00 8c 	bne-    cr7,ffc074d8 <readv+0x154>             
ffc07450:	3b 60 00 00 	li      r27,0                                  
ffc07454:	48 00 00 40 	b       ffc07494 <readv+0x110>                 
    );                                                                
                                                                      
    if ( bytes < 0 )                                                  
      return -1;                                                      
                                                                      
    if ( bytes > 0 ) {                                                
ffc07458:	41 82 00 28 	beq-    ffc07480 <readv+0xfc>                  <== NEVER TAKEN
      iop->offset += bytes;                                           
ffc0745c:	81 3c 00 10 	lwz     r9,16(r28)                             
ffc07460:	7c 7f 1b 78 	mr      r31,r3                                 
ffc07464:	81 5c 00 14 	lwz     r10,20(r28)                            
ffc07468:	7c 7e fe 70 	srawi   r30,r3,31                              
      total       += bytes;                                           
ffc0746c:	7f 39 1a 14 	add     r25,r25,r3                             
                                                                      
    if ( bytes < 0 )                                                  
      return -1;                                                      
                                                                      
    if ( bytes > 0 ) {                                                
      iop->offset += bytes;                                           
ffc07470:	7d 4a f8 14 	addc    r10,r10,r31                            
ffc07474:	7d 29 f1 14 	adde    r9,r9,r30                              
ffc07478:	91 3c 00 10 	stw     r9,16(r28)                             
ffc0747c:	91 5c 00 14 	stw     r10,20(r28)                            
      total       += bytes;                                           
    }                                                                 
                                                                      
    if (bytes != iov[ v ].iov_len)                                    
ffc07480:	80 1d 00 04 	lwz     r0,4(r29)                              
  }                                                                   
                                                                      
  /*                                                                  
   *  Now process the readv().                                        
   */                                                                 
  for ( total=0, v=0 ; v < iovcnt ; v++ ) {                           
ffc07484:	3b bd 00 08 	addi    r29,r29,8                              
    if ( bytes > 0 ) {                                                
      iop->offset += bytes;                                           
      total       += bytes;                                           
    }                                                                 
                                                                      
    if (bytes != iov[ v ].iov_len)                                    
ffc07488:	7f 03 00 00 	cmpw    cr6,r3,r0                              
ffc0748c:	40 9a 00 4c 	bne-    cr6,ffc074d8 <readv+0x154>             <== NEVER TAKEN
  }                                                                   
                                                                      
  /*                                                                  
   *  Now process the readv().                                        
   */                                                                 
  for ( total=0, v=0 ; v < iovcnt ; v++ ) {                           
ffc07490:	40 9d 00 48 	ble-    cr7,ffc074d8 <readv+0x154>             
    bytes = (*iop->pathinfo.handlers->read_h)(                        
ffc07494:	81 3c 00 24 	lwz     r9,36(r28)                             
ffc07498:	7f 83 e3 78 	mr      r3,r28                                 
ffc0749c:	80 9d 00 00 	lwz     r4,0(r29)                              
  }                                                                   
                                                                      
  /*                                                                  
   *  Now process the readv().                                        
   */                                                                 
  for ( total=0, v=0 ; v < iovcnt ; v++ ) {                           
ffc074a0:	3b 7b 00 01 	addi    r27,r27,1                              
    bytes = (*iop->pathinfo.handlers->read_h)(                        
ffc074a4:	80 09 00 08 	lwz     r0,8(r9)                               
ffc074a8:	80 bd 00 04 	lwz     r5,4(r29)                              
ffc074ac:	7c 09 03 a6 	mtctr   r0                                     
ffc074b0:	4e 80 04 21 	bctrl                                          
  }                                                                   
                                                                      
  /*                                                                  
   *  Now process the readv().                                        
   */                                                                 
  for ( total=0, v=0 ; v < iovcnt ; v++ ) {                           
ffc074b4:	7f 9a d8 00 	cmpw    cr7,r26,r27                            
      iop,                                                            
      iov[v].iov_base,                                                
      iov[v].iov_len                                                  
    );                                                                
                                                                      
    if ( bytes < 0 )                                                  
ffc074b8:	2c 03 00 00 	cmpwi   r3,0                                   
ffc074bc:	40 80 ff 9c 	bge+    ffc07458 <readv+0xd4>                  <== ALWAYS TAKEN
      return -1;                                                      
ffc074c0:	3b 20 ff ff 	li      r25,-1                                 <== NOT EXECUTED
ffc074c4:	48 00 00 14 	b       ffc074d8 <readv+0x154>                 <== NOT EXECUTED
                                                                      
    /* check for wrap */                                              
    old    = total;                                                   
    total += iov[v].iov_len;                                          
    if ( total < old )                                                
      rtems_set_errno_and_return_minus_one( EINVAL );                 
ffc074c8:	48 00 c0 9d 	bl      ffc13564 <__errno>                     
ffc074cc:	38 00 00 16 	li      r0,22                                  
ffc074d0:	90 03 00 00 	stw     r0,0(r3)                               
ffc074d4:	3b 20 ff ff 	li      r25,-1                                 
    if (bytes != iov[ v ].iov_len)                                    
      break;                                                          
  }                                                                   
                                                                      
  return total;                                                       
}                                                                     
ffc074d8:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc074dc:	7f 23 cb 78 	mr      r3,r25                                 
ffc074e0:	83 41 00 10 	lwz     r26,16(r1)                             
ffc074e4:	7c 08 03 a6 	mtlr    r0                                     
ffc074e8:	83 21 00 0c 	lwz     r25,12(r1)                             
ffc074ec:	83 61 00 14 	lwz     r27,20(r1)                             
ffc074f0:	83 81 00 18 	lwz     r28,24(r1)                             
ffc074f4:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc074f8:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc074fc:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc07500:	38 21 00 28 	addi    r1,r1,40                               
ffc07504:	4e 80 00 20 	blr                                            
  rtems_libio_t *iop;                                                 
  bool           all_zeros;                                           
                                                                      
  rtems_libio_check_fd( fd );                                         
  iop = rtems_libio_iop( fd );                                        
  rtems_libio_check_is_open( iop );                                   
ffc07508:	48 00 c0 5d 	bl      ffc13564 <__errno>                     
ffc0750c:	38 00 00 09 	li      r0,9                                   
ffc07510:	90 03 00 00 	stw     r0,0(r3)                               
ffc07514:	3b 20 ff ff 	li      r25,-1                                 
ffc07518:	4b ff ff c0 	b       ffc074d8 <readv+0x154>                 
                                                                      

ffc1781c <realloc>: void *realloc( void *ptr, size_t size ) {
ffc1781c:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc17820:	7c 08 02 a6 	mflr    r0                                     
                                                                      
  /*                                                                  
   *  Do not attempt to allocate memory if in a critical section or ISR.
   */                                                                 
                                                                      
  if (_System_state_Is_up(_System_state_Get())) {                     
ffc17824:	3d 20 00 00 	lis     r9,0                                   
                                                                      
void *realloc(                                                        
  void *ptr,                                                          
  size_t size                                                         
)                                                                     
{                                                                     
ffc17828:	90 01 00 2c 	stw     r0,44(r1)                              
                                                                      
  /*                                                                  
   *  Do not attempt to allocate memory if in a critical section or ISR.
   */                                                                 
                                                                      
  if (_System_state_Is_up(_System_state_Get())) {                     
ffc1782c:	80 09 27 74 	lwz     r0,10100(r9)                           
                                                                      
void *realloc(                                                        
  void *ptr,                                                          
  size_t size                                                         
)                                                                     
{                                                                     
ffc17830:	93 c1 00 20 	stw     r30,32(r1)                             
  uintptr_t old_size;                                                 
  char    *new_area;                                                  
                                                                      
  MSBUMP(realloc_calls, 1);                                           
ffc17834:	3f c0 00 00 	lis     r30,0                                  
                                                                      
  /*                                                                  
   *  Do not attempt to allocate memory if in a critical section or ISR.
   */                                                                 
                                                                      
  if (_System_state_Is_up(_System_state_Get())) {                     
ffc17838:	2f 80 00 03 	cmpwi   cr7,r0,3                               
)                                                                     
{                                                                     
  uintptr_t old_size;                                                 
  char    *new_area;                                                  
                                                                      
  MSBUMP(realloc_calls, 1);                                           
ffc1783c:	3b de 2a 48 	addi    r30,r30,10824                          
                                                                      
void *realloc(                                                        
  void *ptr,                                                          
  size_t size                                                         
)                                                                     
{                                                                     
ffc17840:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc17844:	7c 9d 23 78 	mr      r29,r4                                 
  uintptr_t old_size;                                                 
  char    *new_area;                                                  
                                                                      
  MSBUMP(realloc_calls, 1);                                           
ffc17848:	81 3e 00 10 	lwz     r9,16(r30)                             
                                                                      
void *realloc(                                                        
  void *ptr,                                                          
  size_t size                                                         
)                                                                     
{                                                                     
ffc1784c:	93 e1 00 24 	stw     r31,36(r1)                             
ffc17850:	7c 7f 1b 78 	mr      r31,r3                                 
  uintptr_t old_size;                                                 
  char    *new_area;                                                  
                                                                      
  MSBUMP(realloc_calls, 1);                                           
ffc17854:	39 29 00 01 	addi    r9,r9,1                                
                                                                      
void *realloc(                                                        
  void *ptr,                                                          
  size_t size                                                         
)                                                                     
{                                                                     
ffc17858:	93 81 00 18 	stw     r28,24(r1)                             
  uintptr_t old_size;                                                 
  char    *new_area;                                                  
                                                                      
  MSBUMP(realloc_calls, 1);                                           
ffc1785c:	91 3e 00 10 	stw     r9,16(r30)                             
                                                                      
  /*                                                                  
   *  Do not attempt to allocate memory if in a critical section or ISR.
   */                                                                 
                                                                      
  if (_System_state_Is_up(_System_state_Get())) {                     
ffc17860:	41 9e 00 a0 	beq-    cr7,ffc17900 <realloc+0xe4>            <== ALWAYS TAKEN
  }                                                                   
                                                                      
  /*                                                                  
   * Continue with realloc().                                         
   */                                                                 
  if ( !ptr )                                                         
ffc17864:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc17868:	41 9e 00 88 	beq-    cr7,ffc178f0 <realloc+0xd4>            
    return malloc( size );                                            
                                                                      
  if ( !size ) {                                                      
ffc1786c:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
ffc17870:	41 9e 00 5c 	beq-    cr7,ffc178cc <realloc+0xb0>            <== NEVER TAKEN
    free( ptr );                                                      
    return (void *) 0;                                                
  }                                                                   
                                                                      
  if ( !_Protected_heap_Get_block_size(RTEMS_Malloc_Heap, ptr, &old_size) ) {
ffc17874:	3f 80 00 00 	lis     r28,0                                  
ffc17878:	80 7c 26 5c 	lwz     r3,9820(r28)                           
ffc1787c:	7f e4 fb 78 	mr      r4,r31                                 
ffc17880:	38 a1 00 08 	addi    r5,r1,8                                
ffc17884:	48 00 01 c9 	bl      ffc17a4c <_Protected_heap_Get_block_size>
ffc17888:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc1788c:	41 9e 00 50 	beq-    cr7,ffc178dc <realloc+0xc0>            
  }                                                                   
                                                                      
  /*                                                                  
   *  Now resize it.                                                  
   */                                                                 
  if ( _Protected_heap_Resize_block( RTEMS_Malloc_Heap, ptr, size ) ) {
ffc17890:	80 7c 26 5c 	lwz     r3,9820(r28)                           
ffc17894:	7f e4 fb 78 	mr      r4,r31                                 
ffc17898:	7f a5 eb 78 	mr      r5,r29                                 
ffc1789c:	48 00 02 15 	bl      ffc17ab0 <_Protected_heap_Resize_block>
ffc178a0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc178a4:	41 9e 00 8c 	beq-    cr7,ffc17930 <realloc+0x114>           
  memcpy( new_area, ptr, (size < old_size) ? size : old_size );       
  free( ptr );                                                        
                                                                      
  return new_area;                                                    
                                                                      
}                                                                     
ffc178a8:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc178ac:	7f e3 fb 78 	mr      r3,r31                                 
ffc178b0:	83 81 00 18 	lwz     r28,24(r1)                             
ffc178b4:	7c 08 03 a6 	mtlr    r0                                     
ffc178b8:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc178bc:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc178c0:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc178c4:	38 21 00 28 	addi    r1,r1,40                               
ffc178c8:	4e 80 00 20 	blr                                            
   */                                                                 
  if ( !ptr )                                                         
    return malloc( size );                                            
                                                                      
  if ( !size ) {                                                      
    free( ptr );                                                      
ffc178cc:	7f e3 fb 78 	mr      r3,r31                                 <== NOT EXECUTED
ffc178d0:	4b fe d3 ad 	bl      ffc04c7c <free>                        <== NOT EXECUTED
    return (void *) 0;                                                
ffc178d4:	3b e0 00 00 	li      r31,0                                  <== NOT EXECUTED
ffc178d8:	4b ff ff d0 	b       ffc178a8 <realloc+0x8c>                <== NOT EXECUTED
  }                                                                   
                                                                      
  if ( !_Protected_heap_Get_block_size(RTEMS_Malloc_Heap, ptr, &old_size) ) {
    errno = EINVAL;                                                   
ffc178dc:	4b ff a8 6d 	bl      ffc12148 <__errno>                     
ffc178e0:	38 00 00 16 	li      r0,22                                  
ffc178e4:	90 03 00 00 	stw     r0,0(r3)                               
    return (void *) 0;                                                
ffc178e8:	3b e0 00 00 	li      r31,0                                  
ffc178ec:	4b ff ff bc 	b       ffc178a8 <realloc+0x8c>                
                                                                      
  /*                                                                  
   * Continue with realloc().                                         
   */                                                                 
  if ( !ptr )                                                         
    return malloc( size );                                            
ffc178f0:	7f a3 eb 78 	mr      r3,r29                                 
ffc178f4:	4b fe d7 a5 	bl      ffc05098 <malloc>                      
ffc178f8:	7c 7f 1b 78 	mr      r31,r3                                 
ffc178fc:	4b ff ff ac 	b       ffc178a8 <realloc+0x8c>                
  /*                                                                  
   *  Do not attempt to allocate memory if in a critical section or ISR.
   */                                                                 
                                                                      
  if (_System_state_Is_up(_System_state_Get())) {                     
    if (_Thread_Dispatch_disable_level > 0)                           
ffc17900:	3d 20 00 00 	lis     r9,0                                   
ffc17904:	80 09 27 2c 	lwz     r0,10028(r9)                           
ffc17908:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc1790c:	41 9e 00 0c 	beq-    cr7,ffc17918 <realloc+0xfc>            <== ALWAYS TAKEN
  new_area = malloc( size );                                          
                                                                      
  MSBUMP(malloc_calls, (uint32_t) -1);   /* subtract off the malloc */
                                                                      
  if ( !new_area ) {                                                  
    return (void *) 0;                                                
ffc17910:	3b e0 00 00 	li      r31,0                                  
ffc17914:	4b ff ff 94 	b       ffc178a8 <realloc+0x8c>                
                                                                      
  if (_System_state_Is_up(_System_state_Get())) {                     
    if (_Thread_Dispatch_disable_level > 0)                           
      return (void *) 0;                                              
                                                                      
    if (_ISR_Nest_level > 0)                                          
ffc17918:	3d 20 00 00 	lis     r9,0                                   
ffc1791c:	80 09 2d 6c 	lwz     r0,11628(r9)                           
ffc17920:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc17924:	41 9e ff 40 	beq+    cr7,ffc17864 <realloc+0x48>            <== ALWAYS TAKEN
  new_area = malloc( size );                                          
                                                                      
  MSBUMP(malloc_calls, (uint32_t) -1);   /* subtract off the malloc */
                                                                      
  if ( !new_area ) {                                                  
    return (void *) 0;                                                
ffc17928:	3b e0 00 00 	li      r31,0                                  <== NOT EXECUTED
ffc1792c:	4b ff ff 7c 	b       ffc178a8 <realloc+0x8c>                <== NOT EXECUTED
   *  There used to be a free on this error case but it is wrong to   
   *  free the memory per OpenGroup Single UNIX Specification V2      
   *  and the C Standard.                                             
   */                                                                 
                                                                      
  new_area = malloc( size );                                          
ffc17930:	7f a3 eb 78 	mr      r3,r29                                 
ffc17934:	4b fe d7 65 	bl      ffc05098 <malloc>                      
                                                                      
  MSBUMP(malloc_calls, (uint32_t) -1);   /* subtract off the malloc */
ffc17938:	81 3e 00 04 	lwz     r9,4(r30)                              
                                                                      
  if ( !new_area ) {                                                  
ffc1793c:	7c 7c 1b 79 	mr.     r28,r3                                 
   *  and the C Standard.                                             
   */                                                                 
                                                                      
  new_area = malloc( size );                                          
                                                                      
  MSBUMP(malloc_calls, (uint32_t) -1);   /* subtract off the malloc */
ffc17940:	38 09 ff ff 	addi    r0,r9,-1                               
ffc17944:	90 1e 00 04 	stw     r0,4(r30)                              
                                                                      
  if ( !new_area ) {                                                  
ffc17948:	41 a2 ff c8 	beq-    ffc17910 <realloc+0xf4>                
    return (void *) 0;                                                
  }                                                                   
                                                                      
  memcpy( new_area, ptr, (size < old_size) ? size : old_size );       
ffc1794c:	80 01 00 08 	lwz     r0,8(r1)                               
ffc17950:	7f a5 eb 78 	mr      r5,r29                                 
ffc17954:	7f 9d 00 40 	cmplw   cr7,r29,r0                             
ffc17958:	40 9d 00 08 	ble-    cr7,ffc17960 <realloc+0x144>           <== NEVER TAKEN
ffc1795c:	7c 05 03 78 	mr      r5,r0                                  
ffc17960:	7f e4 fb 78 	mr      r4,r31                                 
ffc17964:	7f 83 e3 78 	mr      r3,r28                                 
ffc17968:	4b ff b4 41 	bl      ffc12da8 <memcpy>                      
  free( ptr );                                                        
ffc1796c:	7f e3 fb 78 	mr      r3,r31                                 
ffc17970:	4b fe d3 0d 	bl      ffc04c7c <free>                        
                                                                      
  return new_area;                                                    
ffc17974:	7f 9f e3 78 	mr      r31,r28                                
ffc17978:	4b ff ff 30 	b       ffc178a8 <realloc+0x8c>                
                                                                      

ffc06458 <rmdir>: #include <rtems/seterr.h> int rmdir( const char *pathname ) {
ffc06458:	94 21 ff b0 	stwu    r1,-80(r1)                             
ffc0645c:	7c 08 02 a6 	mflr    r0                                     
ffc06460:	93 e1 00 4c 	stw     r31,76(r1)                             
ffc06464:	7c 7f 1b 78 	mr      r31,r3                                 
ffc06468:	90 01 00 54 	stw     r0,84(r1)                              
ffc0646c:	93 61 00 3c 	stw     r27,60(r1)                             
ffc06470:	93 81 00 40 	stw     r28,64(r1)                             
ffc06474:	93 a1 00 44 	stw     r29,68(r1)                             
ffc06478:	93 c1 00 48 	stw     r30,72(r1)                             
                                                                      
  /*                                                                  
   *  Get the parent node of the node we wish to remove. Find the parent path.
   */                                                                 
                                                                      
  parentpathlen = rtems_filesystem_dirname ( pathname );              
ffc0647c:	4b ff ed 0d 	bl      ffc05188 <rtems_filesystem_dirname>    
                                                                      
  if ( parentpathlen == 0 )                                           
ffc06480:	2c 03 00 00 	cmpwi   r3,0                                   
ffc06484:	40 82 01 68 	bne-    ffc065ec <rmdir+0x194>                 
    rtems_filesystem_get_start_loc( pathname, &i, &parentloc );       
ffc06488:	3b c1 00 0c 	addi    r30,r1,12                              
ffc0648c:	7f e3 fb 78 	mr      r3,r31                                 
ffc06490:	38 81 00 08 	addi    r4,r1,8                                
ffc06494:	7f c5 f3 78 	mr      r5,r30                                 
ffc06498:	48 00 01 89 	bl      ffc06620 <rtems_filesystem_get_start_loc>
ffc0649c:	3b a0 00 00 	li      r29,0                                  
  const char                       *name;                             
  rtems_filesystem_location_info_t  parentloc;                        
  rtems_filesystem_location_info_t  loc;                              
  int                               i;                                
  int                               result;                           
  bool                              free_parentloc = false;           
ffc064a0:	3b 80 00 00 	li      r28,0                                  
                                                                      
  /*                                                                  
   * Start from the parent to find the node that should be under it.  
   */                                                                 
                                                                      
  loc = parentloc;                                                    
ffc064a4:	80 01 00 0c 	lwz     r0,12(r1)                              
  name = pathname + parentpathlen;                                    
ffc064a8:	7f bf ea 14 	add     r29,r31,r29                            
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
ffc064ac:	7f a3 eb 78 	mr      r3,r29                                 
                                                                      
  /*                                                                  
   * Start from the parent to find the node that should be under it.  
   */                                                                 
                                                                      
  loc = parentloc;                                                    
ffc064b0:	90 01 00 20 	stw     r0,32(r1)                              
  name = pathname + parentpathlen;                                    
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
                                                                      
  result = rtems_filesystem_evaluate_relative_path( name , strlen( name ),
ffc064b4:	3b e1 00 20 	addi    r31,r1,32                              
                                                                      
  /*                                                                  
   * Start from the parent to find the node that should be under it.  
   */                                                                 
                                                                      
  loc = parentloc;                                                    
ffc064b8:	80 01 00 10 	lwz     r0,16(r1)                              
ffc064bc:	90 01 00 24 	stw     r0,36(r1)                              
ffc064c0:	80 01 00 14 	lwz     r0,20(r1)                              
ffc064c4:	90 01 00 28 	stw     r0,40(r1)                              
ffc064c8:	80 01 00 18 	lwz     r0,24(r1)                              
ffc064cc:	90 01 00 2c 	stw     r0,44(r1)                              
ffc064d0:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc064d4:	90 01 00 30 	stw     r0,48(r1)                              
  name = pathname + parentpathlen;                                    
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
ffc064d8:	48 00 da fd 	bl      ffc13fd4 <strlen>                      
ffc064dc:	7c 64 1b 78 	mr      r4,r3                                  
ffc064e0:	7f a3 eb 78 	mr      r3,r29                                 
ffc064e4:	4b ff ed 05 	bl      ffc051e8 <rtems_filesystem_prefix_separators>
ffc064e8:	7f bd 1a 14 	add     r29,r29,r3                             
                                                                      
  result = rtems_filesystem_evaluate_relative_path( name , strlen( name ),
ffc064ec:	7f a3 eb 78 	mr      r3,r29                                 
ffc064f0:	48 00 da e5 	bl      ffc13fd4 <strlen>                      
ffc064f4:	38 a0 00 00 	li      r5,0                                   
ffc064f8:	7c 64 1b 78 	mr      r4,r3                                  
ffc064fc:	7f e6 fb 78 	mr      r6,r31                                 
ffc06500:	7f a3 eb 78 	mr      r3,r29                                 
ffc06504:	38 e0 00 00 	li      r7,0                                   
ffc06508:	4b ff eb 59 	bl      ffc05060 <rtems_filesystem_evaluate_relative_path>
                                                    0, &loc, false ); 
  if ( result != 0 ) {                                                
ffc0650c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc06510:	40 9e 00 74 	bne-    cr7,ffc06584 <rmdir+0x12c>             
  }                                                                   
                                                                      
  /*                                                                  
   * Verify you can remove this node as a directory.                  
   */                                                                 
  if ( (*loc.ops->node_type_h)( &loc ) != RTEMS_FILESYSTEM_DIRECTORY ) {
ffc06514:	81 21 00 2c 	lwz     r9,44(r1)                              
ffc06518:	7f e3 fb 78 	mr      r3,r31                                 
ffc0651c:	80 09 00 10 	lwz     r0,16(r9)                              
ffc06520:	7c 09 03 a6 	mtctr   r0                                     
ffc06524:	4e 80 04 21 	bctrl                                          
ffc06528:	2f 83 00 01 	cmpwi   cr7,r3,1                               
ffc0652c:	40 9e 00 94 	bne-    cr7,ffc065c0 <rmdir+0x168>             
                                                                      
  /*                                                                  
   * Use the filesystems rmnod to remove the node.                    
   */                                                                 
                                                                      
  result =  (*loc.handlers->rmnod_h)( &parentloc, &loc );             
ffc06530:	81 21 00 28 	lwz     r9,40(r1)                              
ffc06534:	7f e4 fb 78 	mr      r4,r31                                 
ffc06538:	7f c3 f3 78 	mr      r3,r30                                 
ffc0653c:	80 09 00 34 	lwz     r0,52(r9)                              
ffc06540:	7c 09 03 a6 	mtctr   r0                                     
ffc06544:	4e 80 04 21 	bctrl                                          
ffc06548:	7c 7b 1b 78 	mr      r27,r3                                 
                                                                      
  rtems_filesystem_freenode( &loc );                                  
ffc0654c:	7f e3 fb 78 	mr      r3,r31                                 
ffc06550:	4b ff ed 19 	bl      ffc05268 <rtems_filesystem_freenode>   
  if ( free_parentloc )                                               
ffc06554:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
ffc06558:	40 9e 00 38 	bne-    cr7,ffc06590 <rmdir+0x138>             
    rtems_filesystem_freenode( &parentloc );                          
                                                                      
  return result;                                                      
}                                                                     
ffc0655c:	80 01 00 54 	lwz     r0,84(r1)                              
ffc06560:	7f 63 db 78 	mr      r3,r27                                 
ffc06564:	83 81 00 40 	lwz     r28,64(r1)                             
ffc06568:	7c 08 03 a6 	mtlr    r0                                     
ffc0656c:	83 61 00 3c 	lwz     r27,60(r1)                             
ffc06570:	83 a1 00 44 	lwz     r29,68(r1)                             
ffc06574:	83 c1 00 48 	lwz     r30,72(r1)                             
ffc06578:	83 e1 00 4c 	lwz     r31,76(r1)                             
ffc0657c:	38 21 00 50 	addi    r1,r1,80                               
ffc06580:	4e 80 00 20 	blr                                            
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
                                                                      
  result = rtems_filesystem_evaluate_relative_path( name , strlen( name ),
                                                    0, &loc, false ); 
  if ( result != 0 ) {                                                
    if ( free_parentloc )                                             
ffc06584:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
      rtems_filesystem_freenode( &parentloc );                        
    return -1;                                                        
ffc06588:	3b 60 ff ff 	li      r27,-1                                 
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
                                                                      
  result = rtems_filesystem_evaluate_relative_path( name , strlen( name ),
                                                    0, &loc, false ); 
  if ( result != 0 ) {                                                
    if ( free_parentloc )                                             
ffc0658c:	41 9e ff d0 	beq+    cr7,ffc0655c <rmdir+0x104>             
                                                                      
  result =  (*loc.handlers->rmnod_h)( &parentloc, &loc );             
                                                                      
  rtems_filesystem_freenode( &loc );                                  
  if ( free_parentloc )                                               
    rtems_filesystem_freenode( &parentloc );                          
ffc06590:	7f c3 f3 78 	mr      r3,r30                                 
ffc06594:	4b ff ec d5 	bl      ffc05268 <rtems_filesystem_freenode>   
                                                                      
  return result;                                                      
}                                                                     
ffc06598:	80 01 00 54 	lwz     r0,84(r1)                              
ffc0659c:	7f 63 db 78 	mr      r3,r27                                 
ffc065a0:	83 81 00 40 	lwz     r28,64(r1)                             
ffc065a4:	7c 08 03 a6 	mtlr    r0                                     
ffc065a8:	83 61 00 3c 	lwz     r27,60(r1)                             
ffc065ac:	83 a1 00 44 	lwz     r29,68(r1)                             
ffc065b0:	83 c1 00 48 	lwz     r30,72(r1)                             
ffc065b4:	83 e1 00 4c 	lwz     r31,76(r1)                             
ffc065b8:	38 21 00 50 	addi    r1,r1,80                               
ffc065bc:	4e 80 00 20 	blr                                            
                                                                      
  /*                                                                  
   * Verify you can remove this node as a directory.                  
   */                                                                 
  if ( (*loc.ops->node_type_h)( &loc ) != RTEMS_FILESYSTEM_DIRECTORY ) {
    rtems_filesystem_freenode( &loc );                                
ffc065c0:	7f e3 fb 78 	mr      r3,r31                                 
ffc065c4:	4b ff ec a5 	bl      ffc05268 <rtems_filesystem_freenode>   
    if ( free_parentloc )                                             
ffc065c8:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
ffc065cc:	41 be 00 0c 	beq+    cr7,ffc065d8 <rmdir+0x180>             <== NEVER TAKEN
      rtems_filesystem_freenode( &parentloc );                        
ffc065d0:	7f c3 f3 78 	mr      r3,r30                                 
ffc065d4:	4b ff ec 95 	bl      ffc05268 <rtems_filesystem_freenode>   
    rtems_set_errno_and_return_minus_one( ENOTDIR );                  
ffc065d8:	48 00 c8 5d 	bl      ffc12e34 <__errno>                     
ffc065dc:	38 00 00 14 	li      r0,20                                  
ffc065e0:	90 03 00 00 	stw     r0,0(r3)                               
ffc065e4:	3b 60 ff ff 	li      r27,-1                                 
ffc065e8:	4b ff ff 74 	b       ffc0655c <rmdir+0x104>                 
  parentpathlen = rtems_filesystem_dirname ( pathname );              
                                                                      
  if ( parentpathlen == 0 )                                           
    rtems_filesystem_get_start_loc( pathname, &i, &parentloc );       
  else {                                                              
    result = rtems_filesystem_evaluate_path(pathname, parentpathlen,  
ffc065ec:	7c 7d 1b 78 	mr      r29,r3                                 
ffc065f0:	3b c1 00 0c 	addi    r30,r1,12                              
ffc065f4:	7f e3 fb 78 	mr      r3,r31                                 
ffc065f8:	7f a4 eb 78 	mr      r4,r29                                 
ffc065fc:	38 a0 00 02 	li      r5,2                                   
ffc06600:	7f c6 f3 78 	mr      r6,r30                                 
ffc06604:	38 e0 00 00 	li      r7,0                                   
ffc06608:	4b ff eb 05 	bl      ffc0510c <rtems_filesystem_evaluate_path>
                                            RTEMS_LIBIO_PERMS_WRITE,  
                                            &parentloc,               
                                            false );                  
    if ( result != 0 )                                                
      return -1;                                                      
ffc0660c:	3b 60 ff ff 	li      r27,-1                                 
  else {                                                              
    result = rtems_filesystem_evaluate_path(pathname, parentpathlen,  
                                            RTEMS_LIBIO_PERMS_WRITE,  
                                            &parentloc,               
                                            false );                  
    if ( result != 0 )                                                
ffc06610:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc06614:	40 be ff 48 	bne-    cr7,ffc0655c <rmdir+0x104>             <== NEVER TAKEN
      return -1;                                                      
                                                                      
    free_parentloc = true;                                            
ffc06618:	3b 80 00 01 	li      r28,1                                  
ffc0661c:	4b ff fe 88 	b       ffc064a4 <rmdir+0x4c>                  
                                                                      

ffc119d4 <rtems_assoc_local_by_remote_bitfield>: uint32_t rtems_assoc_local_by_remote_bitfield( const rtems_assoc_t *ap, uint32_t remote_value ) {
ffc119d4:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc119d8:	7c 08 02 a6 	mflr    r0                                     
ffc119dc:	90 01 00 24 	stw     r0,36(r1)                              
ffc119e0:	38 00 00 20 	li      r0,32                                  
ffc119e4:	93 81 00 10 	stw     r28,16(r1)                             
ffc119e8:	7c 7c 1b 78 	mr      r28,r3                                 
ffc119ec:	93 a1 00 14 	stw     r29,20(r1)                             
  uint32_t   b;                                                       
  uint32_t   local_value = 0;                                         
ffc119f0:	3b a0 00 00 	li      r29,0                                  
                                                                      
uint32_t   rtems_assoc_local_by_remote_bitfield(                      
    const rtems_assoc_t *ap,                                          
    uint32_t       remote_value                                       
)                                                                     
{                                                                     
ffc119f4:	93 c1 00 18 	stw     r30,24(r1)                             
ffc119f8:	7c 9e 23 78 	mr      r30,r4                                 
ffc119fc:	93 e1 00 1c 	stw     r31,28(r1)                             
  uint32_t   b;                                                       
  uint32_t   local_value = 0;                                         
                                                                      
  for (b = 1; b; b <<= 1) {                                           
ffc11a00:	3b e0 00 01 	li      r31,1                                  
                                                                      
uint32_t   rtems_assoc_local_by_remote_bitfield(                      
    const rtems_assoc_t *ap,                                          
    uint32_t       remote_value                                       
)                                                                     
{                                                                     
ffc11a04:	90 01 00 08 	stw     r0,8(r1)                               
ffc11a08:	48 00 00 18 	b       ffc11a20 <rtems_assoc_local_by_remote_bitfield+0x4c>
  uint32_t   b;                                                       
  uint32_t   local_value = 0;                                         
                                                                      
  for (b = 1; b; b <<= 1) {                                           
ffc11a0c:	80 01 00 08 	lwz     r0,8(r1)                               
ffc11a10:	57 ff 08 3c 	rlwinm  r31,r31,1,0,30                         
ffc11a14:	35 20 ff ff 	addic.  r9,r0,-1                               
ffc11a18:	91 21 00 08 	stw     r9,8(r1)                               
ffc11a1c:	41 82 00 30 	beq-    ffc11a4c <rtems_assoc_local_by_remote_bitfield+0x78>
    if (b & remote_value)                                             
ffc11a20:	7f e9 f0 39 	and.    r9,r31,r30                             
ffc11a24:	41 82 ff e8 	beq+    ffc11a0c <rtems_assoc_local_by_remote_bitfield+0x38>
      local_value |= rtems_assoc_local_by_remote(ap, b);              
ffc11a28:	7f e4 fb 78 	mr      r4,r31                                 
ffc11a2c:	7f 83 e3 78 	mr      r3,r28                                 
ffc11a30:	48 00 00 41 	bl      ffc11a70 <rtems_assoc_local_by_remote> 
)                                                                     
{                                                                     
  uint32_t   b;                                                       
  uint32_t   local_value = 0;                                         
                                                                      
  for (b = 1; b; b <<= 1) {                                           
ffc11a34:	80 01 00 08 	lwz     r0,8(r1)                               
    if (b & remote_value)                                             
      local_value |= rtems_assoc_local_by_remote(ap, b);              
ffc11a38:	7f bd 1b 78 	or      r29,r29,r3                             
)                                                                     
{                                                                     
  uint32_t   b;                                                       
  uint32_t   local_value = 0;                                         
                                                                      
  for (b = 1; b; b <<= 1) {                                           
ffc11a3c:	35 20 ff ff 	addic.  r9,r0,-1                               
ffc11a40:	57 ff 08 3c 	rlwinm  r31,r31,1,0,30                         
ffc11a44:	91 21 00 08 	stw     r9,8(r1)                               
ffc11a48:	40 82 ff d8 	bne+    ffc11a20 <rtems_assoc_local_by_remote_bitfield+0x4c><== ALWAYS TAKEN
    if (b & remote_value)                                             
      local_value |= rtems_assoc_local_by_remote(ap, b);              
  }                                                                   
                                                                      
  return local_value;                                                 
}                                                                     
ffc11a4c:	80 01 00 24 	lwz     r0,36(r1)                              
ffc11a50:	7f a3 eb 78 	mr      r3,r29                                 
ffc11a54:	83 81 00 10 	lwz     r28,16(r1)                             
ffc11a58:	7c 08 03 a6 	mtlr    r0                                     
ffc11a5c:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc11a60:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc11a64:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc11a68:	38 21 00 20 	addi    r1,r1,32                               
ffc11a6c:	4e 80 00 20 	blr                                            
                                                                      

ffc159dc <rtems_assoc_ptr_by_local>: const rtems_assoc_t *rtems_assoc_ptr_by_local( const rtems_assoc_t *ap, uint32_t local_value ) {
ffc159dc:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc159e0:	7c 08 02 a6 	mflr    r0                                     
ffc159e4:	90 01 00 14 	stw     r0,20(r1)                              
ffc159e8:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc159ec:	7c 7f 1b 78 	mr      r31,r3                                 
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
ffc159f0:	80 63 00 00 	lwz     r3,0(r3)                               
                                                                      
const rtems_assoc_t *rtems_assoc_ptr_by_local(                        
  const rtems_assoc_t *ap,                                            
  uint32_t             local_value                                    
)                                                                     
{                                                                     
ffc159f4:	93 c1 00 08 	stw     r30,8(r1)                              
ffc159f8:	7c 9e 23 78 	mr      r30,r4                                 
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
ffc159fc:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc15a00:	41 9e 00 94 	beq-    cr7,ffc15a94 <rtems_assoc_ptr_by_local+0xb8>
ffc15a04:	3c 80 ff c3 	lis     r4,-61                                 
ffc15a08:	38 84 9d d8 	addi    r4,r4,-25128                           
ffc15a0c:	48 00 50 89 	bl      ffc1aa94 <strcmp>                      
const rtems_assoc_t *rtems_assoc_ptr_by_local(                        
  const rtems_assoc_t *ap,                                            
  uint32_t             local_value                                    
)                                                                     
{                                                                     
  const rtems_assoc_t *default_ap = 0;                                
ffc15a10:	39 20 00 00 	li      r9,0                                   
                                                                      
  if (rtems_assoc_is_default(ap))                                     
ffc15a14:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc15a18:	40 9e 00 34 	bne-    cr7,ffc15a4c <rtems_assoc_ptr_by_local+0x70>
    default_ap = ap++;                                                
                                                                      
  for ( ; ap->name; ap++)                                             
ffc15a1c:	81 3f 00 0c 	lwz     r9,12(r31)                             
)                                                                     
{                                                                     
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
    default_ap = ap++;                                                
ffc15a20:	38 1f 00 0c 	addi    r0,r31,12                              
                                                                      
  for ( ; ap->name; ap++)                                             
ffc15a24:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc15a28:	41 9e 00 30 	beq-    cr7,ffc15a58 <rtems_assoc_ptr_by_local+0x7c><== NEVER TAKEN
ffc15a2c:	7f e9 fb 78 	mr      r9,r31                                 
ffc15a30:	7c 1f 03 78 	mr      r31,r0                                 
    if (ap->local_value == local_value)                               
ffc15a34:	80 1f 00 04 	lwz     r0,4(r31)                              
ffc15a38:	7f 80 f0 00 	cmpw    cr7,r0,r30                             
ffc15a3c:	41 9e 00 1c 	beq-    cr7,ffc15a58 <rtems_assoc_ptr_by_local+0x7c><== NEVER TAKEN
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
    default_ap = ap++;                                                
                                                                      
  for ( ; ap->name; ap++)                                             
ffc15a40:	84 1f 00 0c 	lwzu    r0,12(r31)                             
ffc15a44:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc15a48:	41 9e 00 2c 	beq-    cr7,ffc15a74 <rtems_assoc_ptr_by_local+0x98>
    if (ap->local_value == local_value)                               
ffc15a4c:	80 1f 00 04 	lwz     r0,4(r31)                              
ffc15a50:	7f 80 f0 00 	cmpw    cr7,r0,r30                             
ffc15a54:	40 9e ff ec 	bne+    cr7,ffc15a40 <rtems_assoc_ptr_by_local+0x64>
      return ap;                                                      
                                                                      
  return default_ap;                                                  
}                                                                     
ffc15a58:	80 01 00 14 	lwz     r0,20(r1)                              
ffc15a5c:	7f e3 fb 78 	mr      r3,r31                                 
ffc15a60:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc15a64:	7c 08 03 a6 	mtlr    r0                                     
ffc15a68:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc15a6c:	38 21 00 10 	addi    r1,r1,16                               
ffc15a70:	4e 80 00 20 	blr                                            
ffc15a74:	80 01 00 14 	lwz     r0,20(r1)                              
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
    default_ap = ap++;                                                
                                                                      
  for ( ; ap->name; ap++)                                             
ffc15a78:	7d 3f 4b 78 	mr      r31,r9                                 
    if (ap->local_value == local_value)                               
      return ap;                                                      
                                                                      
  return default_ap;                                                  
}                                                                     
ffc15a7c:	7f e3 fb 78 	mr      r3,r31                                 
ffc15a80:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc15a84:	7c 08 03 a6 	mtlr    r0                                     
ffc15a88:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc15a8c:	38 21 00 10 	addi    r1,r1,16                               
ffc15a90:	4e 80 00 20 	blr                                            
ffc15a94:	80 01 00 14 	lwz     r0,20(r1)                              
const rtems_assoc_t *rtems_assoc_ptr_by_local(                        
  const rtems_assoc_t *ap,                                            
  uint32_t             local_value                                    
)                                                                     
{                                                                     
  const rtems_assoc_t *default_ap = 0;                                
ffc15a98:	3b e0 00 00 	li      r31,0                                  
  for ( ; ap->name; ap++)                                             
    if (ap->local_value == local_value)                               
      return ap;                                                      
                                                                      
  return default_ap;                                                  
}                                                                     
ffc15a9c:	7f e3 fb 78 	mr      r3,r31                                 
ffc15aa0:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc15aa4:	7c 08 03 a6 	mtlr    r0                                     
ffc15aa8:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc15aac:	38 21 00 10 	addi    r1,r1,16                               
ffc15ab0:	4e 80 00 20 	blr                                            
                                                                      

ffc05970 <rtems_assoc_ptr_by_name>: const rtems_assoc_t *rtems_assoc_ptr_by_name( const rtems_assoc_t *ap, const char *name ) {
ffc05970:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc05974:	7c 08 02 a6 	mflr    r0                                     
ffc05978:	90 01 00 1c 	stw     r0,28(r1)                              
ffc0597c:	93 e1 00 14 	stw     r31,20(r1)                             
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
ffc05980:	83 e3 00 00 	lwz     r31,0(r3)                              
                                                                      
const rtems_assoc_t *rtems_assoc_ptr_by_name(                         
  const rtems_assoc_t *ap,                                            
  const char          *name                                           
)                                                                     
{                                                                     
ffc05984:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc05988:	7c 9d 23 78 	mr      r29,r4                                 
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
ffc0598c:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
                                                                      
const rtems_assoc_t *rtems_assoc_ptr_by_name(                         
  const rtems_assoc_t *ap,                                            
  const char          *name                                           
)                                                                     
{                                                                     
ffc05990:	93 c1 00 10 	stw     r30,16(r1)                             
ffc05994:	7c 7e 1b 78 	mr      r30,r3                                 
ffc05998:	93 81 00 08 	stw     r28,8(r1)                              
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
ffc0599c:	41 9e 00 b8 	beq-    cr7,ffc05a54 <rtems_assoc_ptr_by_name+0xe4>
ffc059a0:	3c 80 ff c2 	lis     r4,-62                                 
ffc059a4:	7f e3 fb 78 	mr      r3,r31                                 
ffc059a8:	38 84 9b 28 	addi    r4,r4,-25816                           
ffc059ac:	48 00 ea 41 	bl      ffc143ec <strcmp>                      
const rtems_assoc_t *rtems_assoc_ptr_by_name(                         
  const rtems_assoc_t *ap,                                            
  const char          *name                                           
)                                                                     
{                                                                     
  const rtems_assoc_t *default_ap = 0;                                
ffc059b0:	3b 80 00 00 	li      r28,0                                  
                                                                      
  if (rtems_assoc_is_default(ap))                                     
ffc059b4:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc059b8:	40 9e 00 3c 	bne-    cr7,ffc059f4 <rtems_assoc_ptr_by_name+0x84>
    default_ap = ap++;                                                
                                                                      
  for ( ; ap->name; ap++)                                             
ffc059bc:	83 fe 00 0c 	lwz     r31,12(r30)                            
)                                                                     
{                                                                     
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
    default_ap = ap++;                                                
ffc059c0:	38 1e 00 0c 	addi    r0,r30,12                              
                                                                      
  for ( ; ap->name; ap++)                                             
ffc059c4:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc059c8:	41 9e 00 40 	beq-    cr7,ffc05a08 <rtems_assoc_ptr_by_name+0x98><== NEVER TAKEN
    if (strcmp(ap->name, name) == 0)                                  
ffc059cc:	7f e3 fb 78 	mr      r3,r31                                 
ffc059d0:	7f a4 eb 78 	mr      r4,r29                                 
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
    default_ap = ap++;                                                
                                                                      
  for ( ; ap->name; ap++)                                             
ffc059d4:	7f dc f3 78 	mr      r28,r30                                
ffc059d8:	7c 1e 03 78 	mr      r30,r0                                 
    if (strcmp(ap->name, name) == 0)                                  
ffc059dc:	48 00 ea 11 	bl      ffc143ec <strcmp>                      
ffc059e0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc059e4:	41 9e 00 24 	beq-    cr7,ffc05a08 <rtems_assoc_ptr_by_name+0x98><== NEVER TAKEN
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
    default_ap = ap++;                                                
                                                                      
  for ( ; ap->name; ap++)                                             
ffc059e8:	87 fe 00 0c 	lwzu    r31,12(r30)                            
ffc059ec:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc059f0:	41 9e 00 3c 	beq-    cr7,ffc05a2c <rtems_assoc_ptr_by_name+0xbc>
    if (strcmp(ap->name, name) == 0)                                  
ffc059f4:	7f e3 fb 78 	mr      r3,r31                                 
ffc059f8:	7f a4 eb 78 	mr      r4,r29                                 
ffc059fc:	48 00 e9 f1 	bl      ffc143ec <strcmp>                      
ffc05a00:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05a04:	40 9e ff e4 	bne+    cr7,ffc059e8 <rtems_assoc_ptr_by_name+0x78>
	return ap;                                                           
                                                                      
  return default_ap;                                                  
}                                                                     
ffc05a08:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc05a0c:	7f c3 f3 78 	mr      r3,r30                                 
ffc05a10:	83 81 00 08 	lwz     r28,8(r1)                              
ffc05a14:	7c 08 03 a6 	mtlr    r0                                     
ffc05a18:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc05a1c:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc05a20:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc05a24:	38 21 00 18 	addi    r1,r1,24                               
ffc05a28:	4e 80 00 20 	blr                                            
ffc05a2c:	80 01 00 1c 	lwz     r0,28(r1)                              
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
    default_ap = ap++;                                                
                                                                      
  for ( ; ap->name; ap++)                                             
ffc05a30:	7f 9e e3 78 	mr      r30,r28                                
    if (strcmp(ap->name, name) == 0)                                  
	return ap;                                                           
                                                                      
  return default_ap;                                                  
}                                                                     
ffc05a34:	7f c3 f3 78 	mr      r3,r30                                 
ffc05a38:	83 81 00 08 	lwz     r28,8(r1)                              
ffc05a3c:	7c 08 03 a6 	mtlr    r0                                     
ffc05a40:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc05a44:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc05a48:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc05a4c:	38 21 00 18 	addi    r1,r1,24                               
ffc05a50:	4e 80 00 20 	blr                                            
ffc05a54:	80 01 00 1c 	lwz     r0,28(r1)                              
const rtems_assoc_t *rtems_assoc_ptr_by_name(                         
  const rtems_assoc_t *ap,                                            
  const char          *name                                           
)                                                                     
{                                                                     
  const rtems_assoc_t *default_ap = 0;                                
ffc05a58:	3b c0 00 00 	li      r30,0                                  
  for ( ; ap->name; ap++)                                             
    if (strcmp(ap->name, name) == 0)                                  
	return ap;                                                           
                                                                      
  return default_ap;                                                  
}                                                                     
ffc05a5c:	7f c3 f3 78 	mr      r3,r30                                 
ffc05a60:	83 81 00 08 	lwz     r28,8(r1)                              
ffc05a64:	7c 08 03 a6 	mtlr    r0                                     
ffc05a68:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc05a6c:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc05a70:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc05a74:	38 21 00 18 	addi    r1,r1,24                               
ffc05a78:	4e 80 00 20 	blr                                            
                                                                      

ffc11aa0 <rtems_assoc_ptr_by_remote>: const rtems_assoc_t *rtems_assoc_ptr_by_remote( const rtems_assoc_t *ap, uint32_t remote_value ) {
ffc11aa0:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc11aa4:	7c 08 02 a6 	mflr    r0                                     
ffc11aa8:	90 01 00 14 	stw     r0,20(r1)                              
ffc11aac:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc11ab0:	7c 7f 1b 78 	mr      r31,r3                                 
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
ffc11ab4:	80 63 00 00 	lwz     r3,0(r3)                               
                                                                      
const rtems_assoc_t *rtems_assoc_ptr_by_remote(                       
  const rtems_assoc_t *ap,                                            
  uint32_t       remote_value                                         
)                                                                     
{                                                                     
ffc11ab8:	93 c1 00 08 	stw     r30,8(r1)                              
ffc11abc:	7c 9e 23 78 	mr      r30,r4                                 
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
ffc11ac0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc11ac4:	41 9e 00 94 	beq-    cr7,ffc11b58 <rtems_assoc_ptr_by_remote+0xb8>
ffc11ac8:	3c 80 ff c2 	lis     r4,-62                                 
ffc11acc:	38 84 90 28 	addi    r4,r4,-28632                           
ffc11ad0:	48 00 17 3d 	bl      ffc1320c <strcmp>                      
const rtems_assoc_t *rtems_assoc_ptr_by_remote(                       
  const rtems_assoc_t *ap,                                            
  uint32_t       remote_value                                         
)                                                                     
{                                                                     
  const rtems_assoc_t *default_ap = 0;                                
ffc11ad4:	39 20 00 00 	li      r9,0                                   
                                                                      
  if (rtems_assoc_is_default(ap))                                     
ffc11ad8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc11adc:	40 9e 00 34 	bne-    cr7,ffc11b10 <rtems_assoc_ptr_by_remote+0x70>
    default_ap = ap++;                                                
                                                                      
  for ( ; ap->name; ap++)                                             
ffc11ae0:	81 3f 00 0c 	lwz     r9,12(r31)                             
)                                                                     
{                                                                     
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
    default_ap = ap++;                                                
ffc11ae4:	38 1f 00 0c 	addi    r0,r31,12                              
                                                                      
  for ( ; ap->name; ap++)                                             
ffc11ae8:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc11aec:	41 9e 00 30 	beq-    cr7,ffc11b1c <rtems_assoc_ptr_by_remote+0x7c><== NEVER TAKEN
ffc11af0:	7f e9 fb 78 	mr      r9,r31                                 
ffc11af4:	7c 1f 03 78 	mr      r31,r0                                 
    if (ap->remote_value == remote_value)                             
ffc11af8:	80 1f 00 08 	lwz     r0,8(r31)                              
ffc11afc:	7f 80 f0 00 	cmpw    cr7,r0,r30                             
ffc11b00:	41 9e 00 1c 	beq-    cr7,ffc11b1c <rtems_assoc_ptr_by_remote+0x7c><== NEVER TAKEN
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
    default_ap = ap++;                                                
                                                                      
  for ( ; ap->name; ap++)                                             
ffc11b04:	84 1f 00 0c 	lwzu    r0,12(r31)                             
ffc11b08:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc11b0c:	41 9e 00 2c 	beq-    cr7,ffc11b38 <rtems_assoc_ptr_by_remote+0x98>
    if (ap->remote_value == remote_value)                             
ffc11b10:	80 1f 00 08 	lwz     r0,8(r31)                              
ffc11b14:	7f 80 f0 00 	cmpw    cr7,r0,r30                             
ffc11b18:	40 9e ff ec 	bne+    cr7,ffc11b04 <rtems_assoc_ptr_by_remote+0x64>
      return ap;                                                      
                                                                      
  return default_ap;                                                  
}                                                                     
ffc11b1c:	80 01 00 14 	lwz     r0,20(r1)                              
ffc11b20:	7f e3 fb 78 	mr      r3,r31                                 
ffc11b24:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc11b28:	7c 08 03 a6 	mtlr    r0                                     
ffc11b2c:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc11b30:	38 21 00 10 	addi    r1,r1,16                               
ffc11b34:	4e 80 00 20 	blr                                            
ffc11b38:	80 01 00 14 	lwz     r0,20(r1)                              
  const rtems_assoc_t *default_ap = 0;                                
                                                                      
  if (rtems_assoc_is_default(ap))                                     
    default_ap = ap++;                                                
                                                                      
  for ( ; ap->name; ap++)                                             
ffc11b3c:	7d 3f 4b 78 	mr      r31,r9                                 
    if (ap->remote_value == remote_value)                             
      return ap;                                                      
                                                                      
  return default_ap;                                                  
}                                                                     
ffc11b40:	7f e3 fb 78 	mr      r3,r31                                 
ffc11b44:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc11b48:	7c 08 03 a6 	mtlr    r0                                     
ffc11b4c:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc11b50:	38 21 00 10 	addi    r1,r1,16                               
ffc11b54:	4e 80 00 20 	blr                                            
ffc11b58:	80 01 00 14 	lwz     r0,20(r1)                              
const rtems_assoc_t *rtems_assoc_ptr_by_remote(                       
  const rtems_assoc_t *ap,                                            
  uint32_t       remote_value                                         
)                                                                     
{                                                                     
  const rtems_assoc_t *default_ap = 0;                                
ffc11b5c:	3b e0 00 00 	li      r31,0                                  
  for ( ; ap->name; ap++)                                             
    if (ap->remote_value == remote_value)                             
      return ap;                                                      
                                                                      
  return default_ap;                                                  
}                                                                     
ffc11b60:	7f e3 fb 78 	mr      r3,r31                                 
ffc11b64:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc11b68:	7c 08 03 a6 	mtlr    r0                                     
ffc11b6c:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc11b70:	38 21 00 10 	addi    r1,r1,16                               
ffc11b74:	4e 80 00 20 	blr                                            
                                                                      

ffc05b54 <rtems_assoc_remote_by_local_bitfield>: uint32_t rtems_assoc_remote_by_local_bitfield( const rtems_assoc_t *ap, uint32_t local_value ) {
ffc05b54:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc05b58:	7c 08 02 a6 	mflr    r0                                     
ffc05b5c:	90 01 00 24 	stw     r0,36(r1)                              
ffc05b60:	38 00 00 20 	li      r0,32                                  
ffc05b64:	93 81 00 10 	stw     r28,16(r1)                             
ffc05b68:	7c 7c 1b 78 	mr      r28,r3                                 
ffc05b6c:	93 a1 00 14 	stw     r29,20(r1)                             
  uint32_t   b;                                                       
  uint32_t   remote_value = 0;                                        
ffc05b70:	3b a0 00 00 	li      r29,0                                  
                                                                      
uint32_t   rtems_assoc_remote_by_local_bitfield(                      
    const rtems_assoc_t *ap,                                          
    uint32_t             local_value                                  
)                                                                     
{                                                                     
ffc05b74:	93 c1 00 18 	stw     r30,24(r1)                             
ffc05b78:	7c 9e 23 78 	mr      r30,r4                                 
ffc05b7c:	93 e1 00 1c 	stw     r31,28(r1)                             
  uint32_t   b;                                                       
  uint32_t   remote_value = 0;                                        
                                                                      
  for (b = 1; b; b <<= 1)                                             
ffc05b80:	3b e0 00 01 	li      r31,1                                  
                                                                      
uint32_t   rtems_assoc_remote_by_local_bitfield(                      
    const rtems_assoc_t *ap,                                          
    uint32_t             local_value                                  
)                                                                     
{                                                                     
ffc05b84:	90 01 00 08 	stw     r0,8(r1)                               
ffc05b88:	48 00 00 18 	b       ffc05ba0 <rtems_assoc_remote_by_local_bitfield+0x4c>
  uint32_t   b;                                                       
  uint32_t   remote_value = 0;                                        
                                                                      
  for (b = 1; b; b <<= 1)                                             
ffc05b8c:	80 01 00 08 	lwz     r0,8(r1)                               
ffc05b90:	57 ff 08 3c 	rlwinm  r31,r31,1,0,30                         
ffc05b94:	35 20 ff ff 	addic.  r9,r0,-1                               
ffc05b98:	91 21 00 08 	stw     r9,8(r1)                               
ffc05b9c:	41 82 00 30 	beq-    ffc05bcc <rtems_assoc_remote_by_local_bitfield+0x78>
    if (b & local_value)                                              
ffc05ba0:	7f e9 f0 39 	and.    r9,r31,r30                             
ffc05ba4:	41 82 ff e8 	beq+    ffc05b8c <rtems_assoc_remote_by_local_bitfield+0x38>
      remote_value |= rtems_assoc_remote_by_local(ap, b);             
ffc05ba8:	7f e4 fb 78 	mr      r4,r31                                 
ffc05bac:	7f 83 e3 78 	mr      r3,r28                                 
ffc05bb0:	48 00 00 41 	bl      ffc05bf0 <rtems_assoc_remote_by_local> 
)                                                                     
{                                                                     
  uint32_t   b;                                                       
  uint32_t   remote_value = 0;                                        
                                                                      
  for (b = 1; b; b <<= 1)                                             
ffc05bb4:	80 01 00 08 	lwz     r0,8(r1)                               
    if (b & local_value)                                              
      remote_value |= rtems_assoc_remote_by_local(ap, b);             
ffc05bb8:	7f bd 1b 78 	or      r29,r29,r3                             
)                                                                     
{                                                                     
  uint32_t   b;                                                       
  uint32_t   remote_value = 0;                                        
                                                                      
  for (b = 1; b; b <<= 1)                                             
ffc05bbc:	35 20 ff ff 	addic.  r9,r0,-1                               
ffc05bc0:	57 ff 08 3c 	rlwinm  r31,r31,1,0,30                         
ffc05bc4:	91 21 00 08 	stw     r9,8(r1)                               
ffc05bc8:	40 82 ff d8 	bne+    ffc05ba0 <rtems_assoc_remote_by_local_bitfield+0x4c><== ALWAYS TAKEN
    if (b & local_value)                                              
      remote_value |= rtems_assoc_remote_by_local(ap, b);             
                                                                      
  return remote_value;                                                
}                                                                     
ffc05bcc:	80 01 00 24 	lwz     r0,36(r1)                              
ffc05bd0:	7f a3 eb 78 	mr      r3,r29                                 
ffc05bd4:	83 81 00 10 	lwz     r28,16(r1)                             
ffc05bd8:	7c 08 03 a6 	mtlr    r0                                     
ffc05bdc:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc05be0:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc05be4:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc05be8:	38 21 00 20 	addi    r1,r1,32                               
ffc05bec:	4e 80 00 20 	blr                                            
                                                                      

ffc12c80 <rtems_barrier_create>: rtems_name name, rtems_attribute attribute_set, uint32_t maximum_waiters, rtems_id *id ) {
ffc12c80:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc12c84:	7c 08 02 a6 	mflr    r0                                     
ffc12c88:	93 e1 00 2c 	stw     r31,44(r1)                             
  Barrier_Control         *the_barrier;                               
  CORE_barrier_Attributes  the_attributes;                            
                                                                      
  if ( !rtems_is_name_valid( name ) )                                 
ffc12c8c:	7c 7f 1b 79 	mr.     r31,r3                                 
    return RTEMS_INVALID_NAME;                                        
ffc12c90:	38 60 00 03 	li      r3,3                                   
  rtems_name           name,                                          
  rtems_attribute      attribute_set,                                 
  uint32_t             maximum_waiters,                               
  rtems_id            *id                                             
)                                                                     
{                                                                     
ffc12c94:	93 a1 00 24 	stw     r29,36(r1)                             
ffc12c98:	7c dd 33 78 	mr      r29,r6                                 
ffc12c9c:	90 01 00 34 	stw     r0,52(r1)                              
ffc12ca0:	93 81 00 20 	stw     r28,32(r1)                             
ffc12ca4:	93 c1 00 28 	stw     r30,40(r1)                             
  Barrier_Control         *the_barrier;                               
  CORE_barrier_Attributes  the_attributes;                            
                                                                      
  if ( !rtems_is_name_valid( name ) )                                 
ffc12ca8:	41 82 00 90 	beq-    ffc12d38 <rtems_barrier_create+0xb8>   
    return RTEMS_INVALID_NAME;                                        
                                                                      
  if ( !id )                                                          
ffc12cac:	2f 86 00 00 	cmpwi   cr7,r6,0                               
    return RTEMS_INVALID_ADDRESS;                                     
ffc12cb0:	38 60 00 09 	li      r3,9                                   
  CORE_barrier_Attributes  the_attributes;                            
                                                                      
  if ( !rtems_is_name_valid( name ) )                                 
    return RTEMS_INVALID_NAME;                                        
                                                                      
  if ( !id )                                                          
ffc12cb4:	41 9e 00 84 	beq-    cr7,ffc12d38 <rtems_barrier_create+0xb8>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  /* Initialize core barrier attributes */                            
  if ( _Attributes_Is_barrier_automatic( attribute_set ) ) {          
ffc12cb8:	70 80 00 10 	andi.   r0,r4,16                               
ffc12cbc:	41 82 00 9c 	beq-    ffc12d58 <rtems_barrier_create+0xd8>   
    the_attributes.discipline = CORE_BARRIER_AUTOMATIC_RELEASE;       
    if ( maximum_waiters == 0 )                                       
ffc12cc0:	2f 85 00 00 	cmpwi   cr7,r5,0                               
  if ( !id )                                                          
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  /* Initialize core barrier attributes */                            
  if ( _Attributes_Is_barrier_automatic( attribute_set ) ) {          
    the_attributes.discipline = CORE_BARRIER_AUTOMATIC_RELEASE;       
ffc12cc4:	38 00 00 00 	li      r0,0                                   
ffc12cc8:	90 01 00 08 	stw     r0,8(r1)                               
    if ( maximum_waiters == 0 )                                       
      return RTEMS_INVALID_NUMBER;                                    
ffc12ccc:	38 60 00 0a 	li      r3,10                                  
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  /* Initialize core barrier attributes */                            
  if ( _Attributes_Is_barrier_automatic( attribute_set ) ) {          
    the_attributes.discipline = CORE_BARRIER_AUTOMATIC_RELEASE;       
    if ( maximum_waiters == 0 )                                       
ffc12cd0:	41 9e 00 68 	beq-    cr7,ffc12d38 <rtems_barrier_create+0xb8>
ffc12cd4:	3d 20 00 00 	lis     r9,0                                   
      return RTEMS_INVALID_NUMBER;                                    
  } else                                                              
    the_attributes.discipline = CORE_BARRIER_MANUAL_RELEASE;          
  the_attributes.maximum_count = maximum_waiters;                     
ffc12cd8:	90 a1 00 0c 	stw     r5,12(r1)                              
ffc12cdc:	81 69 27 4c 	lwz     r11,10060(r9)                          
ffc12ce0:	38 0b 00 01 	addi    r0,r11,1                               
ffc12ce4:	90 09 27 4c 	stw     r0,10060(r9)                           
 *  This function allocates a barrier control block from              
 *  the inactive chain of free barrier control blocks.                
 */                                                                   
RTEMS_INLINE_ROUTINE Barrier_Control *_Barrier_Allocate( void )       
{                                                                     
  return (Barrier_Control *) _Objects_Allocate( &_Barrier_Information );
ffc12ce8:	3f 80 00 00 	lis     r28,0                                  
ffc12cec:	90 81 00 18 	stw     r4,24(r1)                              
ffc12cf0:	3b 9c 2d a0 	addi    r28,r28,11680                          
ffc12cf4:	7f 83 e3 78 	mr      r3,r28                                 
ffc12cf8:	4b ff a5 b9 	bl      ffc0d2b0 <_Objects_Allocate>           
                                                                      
  _Thread_Disable_dispatch();             /* prevents deletion */     
                                                                      
  the_barrier = _Barrier_Allocate();                                  
                                                                      
  if ( !the_barrier ) {                                               
ffc12cfc:	80 81 00 18 	lwz     r4,24(r1)                              
ffc12d00:	7c 7e 1b 79 	mr.     r30,r3                                 
ffc12d04:	41 82 00 90 	beq-    ffc12d94 <rtems_barrier_create+0x114>  <== NEVER TAKEN
    _Thread_Enable_dispatch();                                        
    return RTEMS_TOO_MANY;                                            
  }                                                                   
                                                                      
  the_barrier->attribute_set = attribute_set;                         
ffc12d08:	90 9e 00 10 	stw     r4,16(r30)                             
                                                                      
  _CORE_barrier_Initialize( &the_barrier->Barrier, &the_attributes ); 
ffc12d0c:	38 7e 00 14 	addi    r3,r30,20                              
ffc12d10:	38 81 00 08 	addi    r4,r1,8                                
ffc12d14:	48 00 0a cd 	bl      ffc137e0 <_CORE_barrier_Initialize>    
  Objects_Name         name                                           
)                                                                     
{                                                                     
  _Objects_Set_local_object(                                          
    information,                                                      
    _Objects_Get_index( the_object->id ),                             
ffc12d18:	80 1e 00 08 	lwz     r0,8(r30)                              
  #if defined(RTEMS_DEBUG)                                            
    if ( index > information->maximum )                               
      return;                                                         
  #endif                                                              
                                                                      
  information->local_table[ index ] = the_object;                     
ffc12d1c:	81 7c 00 1c 	lwz     r11,28(r28)                            
ffc12d20:	54 09 13 ba 	rlwinm  r9,r0,2,14,29                          
ffc12d24:	7f cb 49 2e 	stwx    r30,r11,r9                             
    information,                                                      
    _Objects_Get_index( the_object->id ),                             
    the_object                                                        
  );                                                                  
                                                                      
  the_object->name = name;                                            
ffc12d28:	93 fe 00 0c 	stw     r31,12(r30)                            
    &_Barrier_Information,                                            
    &the_barrier->Object,                                             
    (Objects_Name) name                                               
  );                                                                  
                                                                      
  *id = the_barrier->Object.id;                                       
ffc12d2c:	90 1d 00 00 	stw     r0,0(r29)                              
                                                                      
  _Thread_Enable_dispatch();                                          
ffc12d30:	4b ff b7 49 	bl      ffc0e478 <_Thread_Enable_dispatch>     
  return RTEMS_SUCCESSFUL;                                            
ffc12d34:	38 60 00 00 	li      r3,0                                   
}                                                                     
ffc12d38:	80 01 00 34 	lwz     r0,52(r1)                              
ffc12d3c:	83 81 00 20 	lwz     r28,32(r1)                             
ffc12d40:	7c 08 03 a6 	mtlr    r0                                     
ffc12d44:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc12d48:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc12d4c:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc12d50:	38 21 00 30 	addi    r1,r1,48                               
ffc12d54:	4e 80 00 20 	blr                                            
ffc12d58:	3d 20 00 00 	lis     r9,0                                   
    the_attributes.discipline = CORE_BARRIER_AUTOMATIC_RELEASE;       
    if ( maximum_waiters == 0 )                                       
      return RTEMS_INVALID_NUMBER;                                    
  } else                                                              
    the_attributes.discipline = CORE_BARRIER_MANUAL_RELEASE;          
  the_attributes.maximum_count = maximum_waiters;                     
ffc12d5c:	90 a1 00 0c 	stw     r5,12(r1)                              
  if ( _Attributes_Is_barrier_automatic( attribute_set ) ) {          
    the_attributes.discipline = CORE_BARRIER_AUTOMATIC_RELEASE;       
    if ( maximum_waiters == 0 )                                       
      return RTEMS_INVALID_NUMBER;                                    
  } else                                                              
    the_attributes.discipline = CORE_BARRIER_MANUAL_RELEASE;          
ffc12d60:	38 00 00 01 	li      r0,1                                   
ffc12d64:	81 69 27 4c 	lwz     r11,10060(r9)                          
ffc12d68:	90 01 00 08 	stw     r0,8(r1)                               
ffc12d6c:	38 0b 00 01 	addi    r0,r11,1                               
ffc12d70:	90 09 27 4c 	stw     r0,10060(r9)                           
ffc12d74:	3f 80 00 00 	lis     r28,0                                  
ffc12d78:	90 81 00 18 	stw     r4,24(r1)                              
ffc12d7c:	3b 9c 2d a0 	addi    r28,r28,11680                          
ffc12d80:	7f 83 e3 78 	mr      r3,r28                                 
ffc12d84:	4b ff a5 2d 	bl      ffc0d2b0 <_Objects_Allocate>           
                                                                      
  _Thread_Disable_dispatch();             /* prevents deletion */     
                                                                      
  the_barrier = _Barrier_Allocate();                                  
                                                                      
  if ( !the_barrier ) {                                               
ffc12d88:	80 81 00 18 	lwz     r4,24(r1)                              
ffc12d8c:	7c 7e 1b 79 	mr.     r30,r3                                 
ffc12d90:	40 82 ff 78 	bne+    ffc12d08 <rtems_barrier_create+0x88>   
    _Thread_Enable_dispatch();                                        
ffc12d94:	4b ff b6 e5 	bl      ffc0e478 <_Thread_Enable_dispatch>     
                                                                      
  *id = the_barrier->Object.id;                                       
                                                                      
  _Thread_Enable_dispatch();                                          
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
ffc12d98:	80 01 00 34 	lwz     r0,52(r1)                              
                                                                      
  the_barrier = _Barrier_Allocate();                                  
                                                                      
  if ( !the_barrier ) {                                               
    _Thread_Enable_dispatch();                                        
    return RTEMS_TOO_MANY;                                            
ffc12d9c:	38 60 00 05 	li      r3,5                                   
                                                                      
  *id = the_barrier->Object.id;                                       
                                                                      
  _Thread_Enable_dispatch();                                          
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
ffc12da0:	83 81 00 20 	lwz     r28,32(r1)                             
ffc12da4:	7c 08 03 a6 	mtlr    r0                                     
ffc12da8:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc12dac:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc12db0:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc12db4:	38 21 00 30 	addi    r1,r1,48                               
ffc12db8:	4e 80 00 20 	blr                                            
                                                                      

ffc0436c <rtems_bsp_cmdline_get_param>: size_t length ) { const char *p; if ( !name )
ffc0436c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
const char *rtems_bsp_cmdline_get_param(                              
  const char *name,                                                   
  char       *value,                                                  
  size_t      length                                                  
)                                                                     
{                                                                     
ffc04370:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc04374:	7c 08 02 a6 	mflr    r0                                     
ffc04378:	90 01 00 14 	stw     r0,20(r1)                              
  const char *p;                                                      
                                                                      
  if ( !name )                                                        
ffc0437c:	40 9e 00 1c 	bne-    cr7,ffc04398 <rtems_bsp_cmdline_get_param+0x2c>
  value[0] = '\0';                                                    
                                                                      
  p = rtems_bsp_cmdline_get_param_raw( name );                        
                                                                      
  if ( !p )                                                           
    return NULL;                                                      
ffc04380:	38 80 00 00 	li      r4,0                                   
                                                                      
  copy_string( p, value, length );                                    
                                                                      
  return value;                                                       
}                                                                     
ffc04384:	80 01 00 14 	lwz     r0,20(r1)                              
ffc04388:	7c 83 23 78 	mr      r3,r4                                  
ffc0438c:	38 21 00 10 	addi    r1,r1,16                               
ffc04390:	7c 08 03 a6 	mtlr    r0                                     
ffc04394:	4e 80 00 20 	blr                                            
  const char *p;                                                      
                                                                      
  if ( !name )                                                        
    return NULL;                                                      
                                                                      
  if ( !value )                                                       
ffc04398:	2f 84 00 00 	cmpwi   cr7,r4,0                               
ffc0439c:	41 9e ff e8 	beq+    cr7,ffc04384 <rtems_bsp_cmdline_get_param+0x18>
    return NULL;                                                      
                                                                      
  if ( !length )                                                      
ffc043a0:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc043a4:	41 9e ff dc 	beq+    cr7,ffc04380 <rtems_bsp_cmdline_get_param+0x14>
    return NULL;                                                      
                                                                      
  value[0] = '\0';                                                    
ffc043a8:	38 00 00 00 	li      r0,0                                   
ffc043ac:	98 04 00 00 	stb     r0,0(r4)                               
                                                                      
  p = rtems_bsp_cmdline_get_param_raw( name );                        
ffc043b0:	90 81 00 08 	stw     r4,8(r1)                               
ffc043b4:	90 a1 00 0c 	stw     r5,12(r1)                              
ffc043b8:	48 00 00 81 	bl      ffc04438 <rtems_bsp_cmdline_get_param_raw>
                                                                      
  if ( !p )                                                           
ffc043bc:	2c 03 00 00 	cmpwi   r3,0                                   
ffc043c0:	80 81 00 08 	lwz     r4,8(r1)                               
ffc043c4:	80 a1 00 0c 	lwz     r5,12(r1)                              
ffc043c8:	41 a2 ff b8 	beq-    ffc04380 <rtems_bsp_cmdline_get_param+0x14>
  int         i;                                                      
  int         quotes;                                                 
  const char *p = start;                                              
                                                                      
  quotes=0;                                                           
  for (i=0 ; *p && i<length-1; ) {                                    
ffc043cc:	88 03 00 00 	lbz     r0,0(r3)                               
ffc043d0:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc043d4:	41 be ff b0 	beq-    cr7,ffc04384 <rtems_bsp_cmdline_get_param+0x18><== NEVER TAKEN
ffc043d8:	34 a5 ff ff 	addic.  r5,r5,-1                               
ffc043dc:	41 a2 ff a8 	beq-    ffc04384 <rtems_bsp_cmdline_get_param+0x18><== NEVER TAKEN
ffc043e0:	39 60 00 00 	li      r11,0                                  
    if ( *p == '\"' ) {                                               
      quotes++;                                                       
    } else if ( ((quotes % 2) == 0) && *p == ' ' )                    
      break;                                                          
    value[i++] = *p++;                                                
    value[i] = '\0';                                                  
ffc043e4:	7c a9 03 a6 	mtctr   r5                                     
  int         i;                                                      
  int         quotes;                                                 
  const char *p = start;                                              
                                                                      
  quotes=0;                                                           
  for (i=0 ; *p && i<length-1; ) {                                    
ffc043e8:	39 20 00 00 	li      r9,0                                   
ffc043ec:	39 40 00 00 	li      r10,0                                  
    if ( *p == '\"' ) {                                               
      quotes++;                                                       
    } else if ( ((quotes % 2) == 0) && *p == ' ' )                    
      break;                                                          
    value[i++] = *p++;                                                
    value[i] = '\0';                                                  
ffc043f0:	39 00 00 00 	li      r8,0                                   
ffc043f4:	48 00 00 30 	b       ffc04424 <rtems_bsp_cmdline_get_param+0xb8>
                                                                      
  quotes=0;                                                           
  for (i=0 ; *p && i<length-1; ) {                                    
    if ( *p == '\"' ) {                                               
      quotes++;                                                       
    } else if ( ((quotes % 2) == 0) && *p == ' ' )                    
ffc043f8:	2f 80 00 20 	cmpwi   cr7,r0,32                              
ffc043fc:	40 82 00 08 	bne-    ffc04404 <rtems_bsp_cmdline_get_param+0x98>
ffc04400:	41 be ff 84 	beq-    cr7,ffc04384 <rtems_bsp_cmdline_get_param+0x18>
      break;                                                          
    value[i++] = *p++;                                                
ffc04404:	39 29 00 01 	addi    r9,r9,1                                
ffc04408:	7c 04 59 ae 	stbx    r0,r4,r11                              
ffc0440c:	7d 2b 4b 78 	mr      r11,r9                                 
    value[i] = '\0';                                                  
ffc04410:	7d 04 49 ae 	stbx    r8,r4,r9                               
  int         i;                                                      
  int         quotes;                                                 
  const char *p = start;                                              
                                                                      
  quotes=0;                                                           
  for (i=0 ; *p && i<length-1; ) {                                    
ffc04414:	7c 03 48 ae 	lbzx    r0,r3,r9                               
ffc04418:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0441c:	41 be ff 68 	beq-    cr7,ffc04384 <rtems_bsp_cmdline_get_param+0x18>
ffc04420:	42 40 ff 64 	bdz+    ffc04384 <rtems_bsp_cmdline_get_param+0x18>
    if ( *p == '\"' ) {                                               
ffc04424:	2f 80 00 22 	cmpwi   cr7,r0,34                              
      quotes++;                                                       
    } else if ( ((quotes % 2) == 0) && *p == ' ' )                    
ffc04428:	71 47 00 01 	andi.   r7,r10,1                               
  int         quotes;                                                 
  const char *p = start;                                              
                                                                      
  quotes=0;                                                           
  for (i=0 ; *p && i<length-1; ) {                                    
    if ( *p == '\"' ) {                                               
ffc0442c:	40 9e ff cc 	bne+    cr7,ffc043f8 <rtems_bsp_cmdline_get_param+0x8c>
      quotes++;                                                       
ffc04430:	39 4a 00 01 	addi    r10,r10,1                              
ffc04434:	4b ff ff d0 	b       ffc04404 <rtems_bsp_cmdline_get_param+0x98>
                                                                      

ffc09d74 <rtems_chain_append_with_notification>: rtems_chain_control *chain, rtems_chain_node *node, rtems_id task, rtems_event_set events ) {
ffc09d74:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc09d78:	7c 08 02 a6 	mflr    r0                                     
ffc09d7c:	93 c1 00 08 	stw     r30,8(r1)                              
ffc09d80:	7c de 33 78 	mr      r30,r6                                 
ffc09d84:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc09d88:	7c bf 2b 78 	mr      r31,r5                                 
ffc09d8c:	90 01 00 14 	stw     r0,20(r1)                              
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 );               
ffc09d90:	48 00 07 59 	bl      ffc0a4e8 <_Chain_Append_with_empty_check>
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
  bool was_empty = rtems_chain_append_with_empty_check( chain, node );
                                                                      
  if ( was_empty ) {                                                  
ffc09d94:	2f 83 00 00 	cmpwi   cr7,r3,0                               
  rtems_chain_node *node,                                             
  rtems_id task,                                                      
  rtems_event_set events                                              
)                                                                     
{                                                                     
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
ffc09d98:	38 60 00 00 	li      r3,0                                   
  bool was_empty = rtems_chain_append_with_empty_check( chain, node );
                                                                      
  if ( was_empty ) {                                                  
ffc09d9c:	41 be 00 10 	beq+    cr7,ffc09dac <rtems_chain_append_with_notification+0x38><== NEVER TAKEN
    sc = rtems_event_send( task, events );                            
ffc09da0:	7f e3 fb 78 	mr      r3,r31                                 
ffc09da4:	7f c4 f3 78 	mr      r4,r30                                 
ffc09da8:	4b ff f2 11 	bl      ffc08fb8 <rtems_event_send>            
  }                                                                   
                                                                      
  return sc;                                                          
}                                                                     
ffc09dac:	80 01 00 14 	lwz     r0,20(r1)                              
ffc09db0:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc09db4:	7c 08 03 a6 	mtlr    r0                                     
ffc09db8:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc09dbc:	38 21 00 10 	addi    r1,r1,16                               
ffc09dc0:	4e 80 00 20 	blr                                            
                                                                      

ffc09dc4 <rtems_chain_get_with_notification>: rtems_chain_control *chain, rtems_id task, rtems_event_set events, rtems_chain_node **node ) {
ffc09dc4:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc09dc8:	7c 08 02 a6 	mflr    r0                                     
ffc09dcc:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc09dd0:	7c 9f 23 78 	mr      r31,r4                                 
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 );                  
ffc09dd4:	7c c4 33 78 	mr      r4,r6                                  
ffc09dd8:	93 c1 00 08 	stw     r30,8(r1)                              
ffc09ddc:	7c be 2b 78 	mr      r30,r5                                 
ffc09de0:	90 01 00 14 	stw     r0,20(r1)                              
ffc09de4:	48 00 07 a1 	bl      ffc0a584 <_Chain_Get_with_empty_check> 
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
  bool is_empty = rtems_chain_get_with_empty_check( chain, node );    
                                                                      
  if ( is_empty ) {                                                   
ffc09de8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
  rtems_id task,                                                      
  rtems_event_set events,                                             
  rtems_chain_node **node                                             
)                                                                     
{                                                                     
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
ffc09dec:	38 60 00 00 	li      r3,0                                   
  bool is_empty = rtems_chain_get_with_empty_check( chain, node );    
                                                                      
  if ( is_empty ) {                                                   
ffc09df0:	41 be 00 10 	beq+    cr7,ffc09e00 <rtems_chain_get_with_notification+0x3c><== NEVER TAKEN
    sc = rtems_event_send( task, events );                            
ffc09df4:	7f e3 fb 78 	mr      r3,r31                                 
ffc09df8:	7f c4 f3 78 	mr      r4,r30                                 
ffc09dfc:	4b ff f1 bd 	bl      ffc08fb8 <rtems_event_send>            
  }                                                                   
                                                                      
  return sc;                                                          
}                                                                     
ffc09e00:	80 01 00 14 	lwz     r0,20(r1)                              
ffc09e04:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc09e08:	7c 08 03 a6 	mtlr    r0                                     
ffc09e0c:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc09e10:	38 21 00 10 	addi    r1,r1,16                               
ffc09e14:	4e 80 00 20 	blr                                            
                                                                      

ffc09e18 <rtems_chain_get_with_wait>: rtems_chain_control *chain, rtems_event_set events, rtems_interval timeout, rtems_chain_node **node_ptr ) {
ffc09e18:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc09e1c:	7c 08 02 a6 	mflr    r0                                     
ffc09e20:	93 e1 00 2c 	stw     r31,44(r1)                             
ffc09e24:	90 01 00 34 	stw     r0,52(r1)                              
ffc09e28:	93 41 00 18 	stw     r26,24(r1)                             
ffc09e2c:	7c da 33 78 	mr      r26,r6                                 
ffc09e30:	93 61 00 1c 	stw     r27,28(r1)                             
ffc09e34:	7c 7b 1b 78 	mr      r27,r3                                 
ffc09e38:	93 81 00 20 	stw     r28,32(r1)                             
ffc09e3c:	7c 9c 23 78 	mr      r28,r4                                 
ffc09e40:	93 a1 00 24 	stw     r29,36(r1)                             
ffc09e44:	7c bd 2b 78 	mr      r29,r5                                 
ffc09e48:	93 c1 00 28 	stw     r30,40(r1)                             
  while (                                                             
    sc == RTEMS_SUCCESSFUL                                            
      && (node = rtems_chain_get( chain )) == NULL                    
  ) {                                                                 
    rtems_event_set out;                                              
    sc = rtems_event_receive(                                         
ffc09e4c:	3b c1 00 08 	addi    r30,r1,8                               
 */                                                                   
RTEMS_INLINE_ROUTINE rtems_chain_node *rtems_chain_get(               
  rtems_chain_control *the_chain                                      
)                                                                     
{                                                                     
  return _Chain_Get( the_chain );                                     
ffc09e50:	7f 63 db 78 	mr      r3,r27                                 
ffc09e54:	48 00 07 8d 	bl      ffc0a5e0 <_Chain_Get>                  
ffc09e58:	38 80 00 00 	li      r4,0                                   
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
  rtems_chain_node *node = NULL;                                      
                                                                      
  while (                                                             
    sc == RTEMS_SUCCESSFUL                                            
      && (node = rtems_chain_get( chain )) == NULL                    
ffc09e5c:	7c 7f 1b 79 	mr.     r31,r3                                 
  ) {                                                                 
    rtems_event_set out;                                              
    sc = rtems_event_receive(                                         
ffc09e60:	7f a5 eb 78 	mr      r5,r29                                 
ffc09e64:	7f c6 f3 78 	mr      r6,r30                                 
ffc09e68:	7f 83 e3 78 	mr      r3,r28                                 
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
  rtems_chain_node *node = NULL;                                      
                                                                      
  while (                                                             
    sc == RTEMS_SUCCESSFUL                                            
      && (node = rtems_chain_get( chain )) == NULL                    
ffc09e6c:	40 82 00 3c 	bne-    ffc09ea8 <rtems_chain_get_with_wait+0x90>
  ) {                                                                 
    rtems_event_set out;                                              
    sc = rtems_event_receive(                                         
ffc09e70:	4b ff ef 45 	bl      ffc08db4 <rtems_event_receive>         
)                                                                     
{                                                                     
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
  rtems_chain_node *node = NULL;                                      
                                                                      
  while (                                                             
ffc09e74:	2c 03 00 00 	cmpwi   r3,0                                   
ffc09e78:	41 82 ff d8 	beq+    ffc09e50 <rtems_chain_get_with_wait+0x38><== NEVER TAKEN
  }                                                                   
                                                                      
  *node_ptr = node;                                                   
                                                                      
  return sc;                                                          
}                                                                     
ffc09e7c:	80 01 00 34 	lwz     r0,52(r1)                              
      timeout,                                                        
      &out                                                            
    );                                                                
  }                                                                   
                                                                      
  *node_ptr = node;                                                   
ffc09e80:	93 fa 00 00 	stw     r31,0(r26)                             
                                                                      
  return sc;                                                          
}                                                                     
ffc09e84:	7c 08 03 a6 	mtlr    r0                                     
ffc09e88:	83 41 00 18 	lwz     r26,24(r1)                             
ffc09e8c:	83 61 00 1c 	lwz     r27,28(r1)                             
ffc09e90:	83 81 00 20 	lwz     r28,32(r1)                             
ffc09e94:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc09e98:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc09e9c:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc09ea0:	38 21 00 30 	addi    r1,r1,48                               
ffc09ea4:	4e 80 00 20 	blr                                            
ffc09ea8:	80 01 00 34 	lwz     r0,52(r1)                              
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
  rtems_chain_node *node = NULL;                                      
                                                                      
  while (                                                             
    sc == RTEMS_SUCCESSFUL                                            
      && (node = rtems_chain_get( chain )) == NULL                    
ffc09eac:	38 60 00 00 	li      r3,0                                   
      timeout,                                                        
      &out                                                            
    );                                                                
  }                                                                   
                                                                      
  *node_ptr = node;                                                   
ffc09eb0:	93 fa 00 00 	stw     r31,0(r26)                             
                                                                      
  return sc;                                                          
}                                                                     
ffc09eb4:	7c 08 03 a6 	mtlr    r0                                     
ffc09eb8:	83 41 00 18 	lwz     r26,24(r1)                             
ffc09ebc:	83 61 00 1c 	lwz     r27,28(r1)                             
ffc09ec0:	83 81 00 20 	lwz     r28,32(r1)                             
ffc09ec4:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc09ec8:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc09ecc:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc09ed0:	38 21 00 30 	addi    r1,r1,48                               
ffc09ed4:	4e 80 00 20 	blr                                            
                                                                      

ffc09ed8 <rtems_chain_prepend_with_notification>: rtems_chain_control *chain, rtems_chain_node *node, rtems_id task, rtems_event_set events ) {
ffc09ed8:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc09edc:	7c 08 02 a6 	mflr    r0                                     
ffc09ee0:	93 c1 00 08 	stw     r30,8(r1)                              
ffc09ee4:	7c de 33 78 	mr      r30,r6                                 
ffc09ee8:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc09eec:	7c bf 2b 78 	mr      r31,r5                                 
ffc09ef0:	90 01 00 14 	stw     r0,20(r1)                              
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 );              
ffc09ef4:	48 00 07 5d 	bl      ffc0a650 <_Chain_Prepend_with_empty_check>
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
  bool was_empty = rtems_chain_prepend_with_empty_check( chain, node );
                                                                      
  if (was_empty) {                                                    
ffc09ef8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
  rtems_chain_node *node,                                             
  rtems_id task,                                                      
  rtems_event_set events                                              
)                                                                     
{                                                                     
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
ffc09efc:	38 60 00 00 	li      r3,0                                   
  bool was_empty = rtems_chain_prepend_with_empty_check( chain, node );
                                                                      
  if (was_empty) {                                                    
ffc09f00:	41 be 00 10 	beq+    cr7,ffc09f10 <rtems_chain_prepend_with_notification+0x38><== NEVER TAKEN
    sc = rtems_event_send( task, events );                            
ffc09f04:	7f e3 fb 78 	mr      r3,r31                                 
ffc09f08:	7f c4 f3 78 	mr      r4,r30                                 
ffc09f0c:	4b ff f0 ad 	bl      ffc08fb8 <rtems_event_send>            
  }                                                                   
                                                                      
  return sc;                                                          
}                                                                     
ffc09f10:	80 01 00 14 	lwz     r0,20(r1)                              
ffc09f14:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc09f18:	7c 08 03 a6 	mtlr    r0                                     
ffc09f1c:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc09f20:	38 21 00 10 	addi    r1,r1,16                               
ffc09f24:	4e 80 00 20 	blr                                            
                                                                      

ffc05104 <rtems_cpu_usage_report_with_plugin>: void rtems_cpu_usage_report_with_plugin( void *context, rtems_printk_plugin_t print ) {
ffc05104:	94 21 ff 68 	stwu    r1,-152(r1)                            
ffc05108:	7c 08 02 a6 	mflr    r0                                     
ffc0510c:	90 01 00 9c 	stw     r0,156(r1)                             
    Timestamp_Control  uptime, total, ran;                            
  #else                                                               
    uint32_t           total_units = 0;                               
  #endif                                                              
                                                                      
  if ( !print )                                                       
ffc05110:	7c 80 23 79 	mr.     r0,r4                                  
                                                                      
void rtems_cpu_usage_report_with_plugin(                              
  void                  *context,                                     
  rtems_printk_plugin_t  print                                        
)                                                                     
{                                                                     
ffc05114:	93 81 00 88 	stw     r28,136(r1)                            
ffc05118:	7c 7c 1b 78 	mr      r28,r3                                 
ffc0511c:	91 c1 00 50 	stw     r14,80(r1)                             
ffc05120:	91 e1 00 54 	stw     r15,84(r1)                             
ffc05124:	92 01 00 58 	stw     r16,88(r1)                             
ffc05128:	92 21 00 5c 	stw     r17,92(r1)                             
ffc0512c:	92 41 00 60 	stw     r18,96(r1)                             
ffc05130:	92 61 00 64 	stw     r19,100(r1)                            
ffc05134:	92 81 00 68 	stw     r20,104(r1)                            
ffc05138:	92 a1 00 6c 	stw     r21,108(r1)                            
ffc0513c:	92 c1 00 70 	stw     r22,112(r1)                            
ffc05140:	92 e1 00 74 	stw     r23,116(r1)                            
ffc05144:	93 01 00 78 	stw     r24,120(r1)                            
ffc05148:	93 21 00 7c 	stw     r25,124(r1)                            
ffc0514c:	93 41 00 80 	stw     r26,128(r1)                            
ffc05150:	93 61 00 84 	stw     r27,132(r1)                            
ffc05154:	93 a1 00 8c 	stw     r29,140(r1)                            
ffc05158:	93 c1 00 90 	stw     r30,144(r1)                            
ffc0515c:	93 e1 00 94 	stw     r31,148(r1)                            
    Timestamp_Control  uptime, total, ran;                            
  #else                                                               
    uint32_t           total_units = 0;                               
  #endif                                                              
                                                                      
  if ( !print )                                                       
ffc05160:	90 01 00 48 	stw     r0,72(r1)                              
ffc05164:	41 82 01 cc 	beq-    ffc05330 <rtems_cpu_usage_report_with_plugin+0x22c><== NEVER TAKEN
   *  When not using nanosecond CPU usage resolution, we have to count
   *  the number of "ticks" we gave credit for to give the user a rough
   *  guideline as to what each number means proportionally.          
   */                                                                 
  #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                          
    _TOD_Get_uptime( &uptime );                                       
ffc05168:	3a 41 00 10 	addi    r18,r1,16                              
ffc0516c:	7e 43 93 78 	mr      r3,r18                                 
ffc05170:	48 00 70 d1 	bl      ffc0c240 <_TOD_Get_uptime>             
    _Timestamp_Subtract( &CPU_usage_Uptime_at_last_reset, &uptime, &total );
ffc05174:	3b 61 00 18 	addi    r27,r1,24                              
ffc05178:	3c 60 00 00 	lis     r3,0                                   
ffc0517c:	38 63 28 48 	addi    r3,r3,10312                            
ffc05180:	7e 44 93 78 	mr      r4,r18                                 
ffc05184:	7f 65 db 78 	mr      r5,r27                                 
ffc05188:	48 00 9e 9d 	bl      ffc0f024 <_Timespec_Subtract>          
        }                                                             
      }                                                               
    }                                                                 
  #endif                                                              
                                                                      
  (*print)(                                                           
ffc0518c:	80 01 00 48 	lwz     r0,72(r1)                              
ffc05190:	3c 80 ff c2 	lis     r4,-62                                 
ffc05194:	7f 83 e3 78 	mr      r3,r28                                 
ffc05198:	7c 09 03 a6 	mtctr   r0                                     
ffc0519c:	38 84 0e bc 	addi    r4,r4,3772                             
ffc051a0:	3e 80 00 01 	lis     r20,1                                  
ffc051a4:	3a 94 a9 80 	addi    r20,r20,-22144                         
        if ( !the_thread )                                            
          continue;                                                   
                                                                      
        rtems_object_get_name( the_thread->Object.id, sizeof(name), name );
                                                                      
        (*print)(                                                     
ffc051a8:	3e e0 ff c2 	lis     r23,-62                                
                                                                      
          /*                                                          
           * Print the information                                    
           */                                                         
                                                                      
          (*print)( context,                                          
ffc051ac:	3f 20 ff c2 	lis     r25,-62                                
        }                                                             
      }                                                               
    }                                                                 
  #endif                                                              
                                                                      
  (*print)(                                                           
ffc051b0:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc051b4:	4e 80 04 21 	bctrl                                          
                                                                      
          /*                                                          
           * Print the information                                    
           */                                                         
                                                                      
          (*print)( context,                                          
ffc051b8:	3f 40 10 62 	lis     r26,4194                               
           * since the last context switch.                           
           */                                                         
          ran = the_thread->cpu_time_used;                            
          if ( _Thread_Executing->Object.id == the_thread->Object.id ) {
            Timestamp_Control used;                                   
            _Timestamp_Subtract(                                      
ffc051bc:	3e 00 00 00 	lis     r16,0                                  
        the_thread = (Thread_Control *)information->local_table[ i ]; 
                                                                      
        if ( !the_thread )                                            
          continue;                                                   
                                                                      
        rtems_object_get_name( the_thread->Object.id, sizeof(name), name );
ffc051c0:	3b a1 00 30 	addi    r29,r1,48                              
          /*                                                          
           * If this is the currently executing thread, account for time
           * since the last context switch.                           
           */                                                         
          ran = the_thread->cpu_time_used;                            
          if ( _Thread_Executing->Object.id == the_thread->Object.id ) {
ffc051c4:	3e a0 00 01 	lis     r21,1                                  
            _Timestamp_Subtract(                                      
              &_Thread_Time_of_last_context_switch, &uptime, &used    
            );                                                        
            _Timestamp_Add_to( &ran, &used );                         
          };                                                          
          _Timestamp_Divide( &ran, &total, &ival, &fval );            
ffc051c8:	3a c1 00 0c 	addi    r22,r1,12                              
/*PAGE                                                                
 *                                                                    
 *  rtems_cpu_usage_report                                            
 */                                                                   
                                                                      
void rtems_cpu_usage_report_with_plugin(                              
ffc051cc:	3a 34 00 0c 	addi    r17,r20,12                             
        if ( !the_thread )                                            
          continue;                                                   
                                                                      
        rtems_object_get_name( the_thread->Object.id, sizeof(name), name );
                                                                      
        (*print)(                                                     
ffc051d0:	3a f7 10 30 	addi    r23,r23,4144                           
            _Timestamp_Subtract(                                      
              &_Thread_Time_of_last_context_switch, &uptime, &used    
            );                                                        
            _Timestamp_Add_to( &ran, &used );                         
          };                                                          
          _Timestamp_Divide( &ran, &total, &ival, &fval );            
ffc051d4:	3b 01 00 08 	addi    r24,r1,8                               
                                                                      
          /*                                                          
           * Print the information                                    
           */                                                         
                                                                      
          (*print)( context,                                          
ffc051d8:	3b 39 10 44 	addi    r25,r25,4164                           
ffc051dc:	63 5a 4d d3 	ori     r26,r26,19923                          
           * since the last context switch.                           
           */                                                         
          ran = the_thread->cpu_time_used;                            
          if ( _Thread_Executing->Object.id == the_thread->Object.id ) {
            Timestamp_Control used;                                   
            _Timestamp_Subtract(                                      
ffc051e0:	3a 10 28 2c 	addi    r16,r16,10284                          
ffc051e4:	3a 61 00 28 	addi    r19,r1,40                              
    #if defined(RTEMS_DEBUG)                                          
      if ( !_Objects_Information_table[ api_index ] )                 
	continue;                                                            
    #endif                                                            
                                                                      
    information = _Objects_Information_table[ api_index ][ 1 ];       
ffc051e8:	85 34 00 04 	lwzu    r9,4(r20)                              
ffc051ec:	83 c9 00 04 	lwz     r30,4(r9)                              
    if ( information ) {                                              
ffc051f0:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc051f4:	41 9e 01 00 	beq-    cr7,ffc052f4 <rtems_cpu_usage_report_with_plugin+0x1f0>
      for ( i=1 ; i <= information->maximum ; i++ ) {                 
ffc051f8:	a1 7e 00 10 	lhz     r11,16(r30)                            
ffc051fc:	71 60 ff ff 	andi.   r0,r11,65535                           
ffc05200:	41 82 00 f4 	beq-    ffc052f4 <rtems_cpu_usage_report_with_plugin+0x1f0><== NEVER TAKEN
ffc05204:	3b e0 00 01 	li      r31,1                                  
ffc05208:	48 00 00 58 	b       ffc05260 <rtems_cpu_usage_report_with_plugin+0x15c>
            _Timestamp_Subtract(                                      
              &_Thread_Time_of_last_context_switch, &uptime, &used    
            );                                                        
            _Timestamp_Add_to( &ran, &used );                         
          };                                                          
          _Timestamp_Divide( &ran, &total, &ival, &fval );            
ffc0520c:	7d c3 73 78 	mr      r3,r14                                 
ffc05210:	7f 64 db 78 	mr      r4,r27                                 
ffc05214:	7f 05 c3 78 	mr      r5,r24                                 
ffc05218:	7e c6 b3 78 	mr      r6,r22                                 
ffc0521c:	48 00 9c fd 	bl      ffc0ef18 <_Timespec_Divide>            
                                                                      
          /*                                                          
           * Print the information                                    
           */                                                         
                                                                      
          (*print)( context,                                          
ffc05220:	80 c1 00 24 	lwz     r6,36(r1)                              
ffc05224:	80 01 00 48 	lwz     r0,72(r1)                              
ffc05228:	7f 83 e3 78 	mr      r3,r28                                 
ffc0522c:	7c c6 d0 16 	mulhwu  r6,r6,r26                              
ffc05230:	80 a1 00 20 	lwz     r5,32(r1)                              
ffc05234:	80 e1 00 08 	lwz     r7,8(r1)                               
ffc05238:	7c 09 03 a6 	mtctr   r0                                     
ffc0523c:	7f 24 cb 78 	mr      r4,r25                                 
ffc05240:	81 01 00 0c 	lwz     r8,12(r1)                              
ffc05244:	54 c6 d1 be 	rlwinm  r6,r6,26,6,31                          
ffc05248:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0524c:	4e 80 04 21 	bctrl                                          
ffc05250:	a1 7e 00 10 	lhz     r11,16(r30)                            
	continue;                                                            
    #endif                                                            
                                                                      
    information = _Objects_Information_table[ api_index ][ 1 ];       
    if ( information ) {                                              
      for ( i=1 ; i <= information->maximum ; i++ ) {                 
ffc05254:	55 60 04 3e 	clrlwi  r0,r11,16                              
ffc05258:	7f 80 f8 40 	cmplw   cr7,r0,r31                             
ffc0525c:	41 9c 00 98 	blt-    cr7,ffc052f4 <rtems_cpu_usage_report_with_plugin+0x1f0>
        the_thread = (Thread_Control *)information->local_table[ i ]; 
ffc05260:	81 3e 00 1c 	lwz     r9,28(r30)                             
ffc05264:	57 e0 10 3a 	rlwinm  r0,r31,2,0,29                          
                                                                      
        if ( !the_thread )                                            
          continue;                                                   
                                                                      
        rtems_object_get_name( the_thread->Object.id, sizeof(name), name );
ffc05268:	7f a5 eb 78 	mr      r5,r29                                 
    #endif                                                            
                                                                      
    information = _Objects_Information_table[ api_index ][ 1 ];       
    if ( information ) {                                              
      for ( i=1 ; i <= information->maximum ; i++ ) {                 
        the_thread = (Thread_Control *)information->local_table[ i ]; 
ffc0526c:	7d e9 00 2e 	lwzx    r15,r9,r0                              
                                                                      
        if ( !the_thread )                                            
          continue;                                                   
                                                                      
        rtems_object_get_name( the_thread->Object.id, sizeof(name), name );
ffc05270:	38 80 00 0d 	li      r4,13                                  
	continue;                                                            
    #endif                                                            
                                                                      
    information = _Objects_Information_table[ api_index ][ 1 ];       
    if ( information ) {                                              
      for ( i=1 ; i <= information->maximum ; i++ ) {                 
ffc05274:	3b ff 00 01 	addi    r31,r31,1                              
        the_thread = (Thread_Control *)information->local_table[ i ]; 
                                                                      
        if ( !the_thread )                                            
ffc05278:	2f 8f 00 00 	cmpwi   cr7,r15,0                              
ffc0527c:	39 c1 00 20 	addi    r14,r1,32                              
ffc05280:	41 be ff d4 	beq-    cr7,ffc05254 <rtems_cpu_usage_report_with_plugin+0x150><== NEVER TAKEN
          continue;                                                   
                                                                      
        rtems_object_get_name( the_thread->Object.id, sizeof(name), name );
ffc05284:	80 6f 00 08 	lwz     r3,8(r15)                              
ffc05288:	48 00 54 8d 	bl      ffc0a714 <rtems_object_get_name>       
                                                                      
        (*print)(                                                     
ffc0528c:	80 01 00 48 	lwz     r0,72(r1)                              
ffc05290:	7f 83 e3 78 	mr      r3,r28                                 
ffc05294:	80 af 00 08 	lwz     r5,8(r15)                              
ffc05298:	7c 09 03 a6 	mtctr   r0                                     
ffc0529c:	7e e4 bb 78 	mr      r4,r23                                 
ffc052a0:	7f a6 eb 78 	mr      r6,r29                                 
ffc052a4:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc052a8:	4e 80 04 21 	bctrl                                          
          /*                                                          
           * If this is the currently executing thread, account for time
           * since the last context switch.                           
           */                                                         
          ran = the_thread->cpu_time_used;                            
          if ( _Thread_Executing->Object.id == the_thread->Object.id ) {
ffc052ac:	39 35 ab e4 	addi    r9,r21,-21532                          
ffc052b0:	81 29 00 0c 	lwz     r9,12(r9)                              
ffc052b4:	80 0f 00 08 	lwz     r0,8(r15)                              
ffc052b8:	81 69 00 08 	lwz     r11,8(r9)                              
        #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                    
          /*                                                          
           * If this is the currently executing thread, account for time
           * since the last context switch.                           
           */                                                         
          ran = the_thread->cpu_time_used;                            
ffc052bc:	81 4f 00 88 	lwz     r10,136(r15)                           
          if ( _Thread_Executing->Object.id == the_thread->Object.id ) {
ffc052c0:	7f 8b 00 00 	cmpw    cr7,r11,r0                             
        #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                    
          /*                                                          
           * If this is the currently executing thread, account for time
           * since the last context switch.                           
           */                                                         
          ran = the_thread->cpu_time_used;                            
ffc052c4:	81 2f 00 84 	lwz     r9,132(r15)                            
ffc052c8:	91 41 00 24 	stw     r10,36(r1)                             
ffc052cc:	91 21 00 20 	stw     r9,32(r1)                              
          if ( _Thread_Executing->Object.id == the_thread->Object.id ) {
ffc052d0:	40 9e ff 3c 	bne+    cr7,ffc0520c <rtems_cpu_usage_report_with_plugin+0x108>
            Timestamp_Control used;                                   
            _Timestamp_Subtract(                                      
ffc052d4:	7e 03 83 78 	mr      r3,r16                                 
ffc052d8:	7e 44 93 78 	mr      r4,r18                                 
ffc052dc:	7e 65 9b 78 	mr      r5,r19                                 
ffc052e0:	48 00 9d 45 	bl      ffc0f024 <_Timespec_Subtract>          
              &_Thread_Time_of_last_context_switch, &uptime, &used    
            );                                                        
            _Timestamp_Add_to( &ran, &used );                         
ffc052e4:	7d c3 73 78 	mr      r3,r14                                 
ffc052e8:	7e 64 9b 78 	mr      r4,r19                                 
ffc052ec:	48 00 9b d1 	bl      ffc0eebc <_Timespec_Add_to>            
ffc052f0:	4b ff ff 1c 	b       ffc0520c <rtems_cpu_usage_report_with_plugin+0x108>
       " ID         | NAME                                   | TICKS         | PERCENT\n"
     #endif                                                           
     "------------+----------------------------------------+---------------+---------\n"
  );                                                                  
                                                                      
  for ( api_index = 1 ; api_index <= OBJECTS_APIS_LAST ; api_index++ ) {
ffc052f4:	7f 94 88 00 	cmpw    cr7,r20,r17                            
ffc052f8:	40 9e fe f0 	bne+    cr7,ffc051e8 <rtems_cpu_usage_report_with_plugin+0xe4>
      }                                                               
    }                                                                 
  }                                                                   
                                                                      
  #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                          
    (*print)(                                                         
ffc052fc:	3c 00 10 62 	lis     r0,4194                                
ffc05300:	80 c1 00 1c 	lwz     r6,28(r1)                              
ffc05304:	60 00 4d d3 	ori     r0,r0,19923                            
ffc05308:	80 a1 00 18 	lwz     r5,24(r1)                              
ffc0530c:	7c c6 00 16 	mulhwu  r6,r6,r0                               
ffc05310:	80 01 00 48 	lwz     r0,72(r1)                              
ffc05314:	3c 80 ff c2 	lis     r4,-62                                 
ffc05318:	7c 09 03 a6 	mtctr   r0                                     
ffc0531c:	7f 83 e3 78 	mr      r3,r28                                 
ffc05320:	38 84 10 5c 	addi    r4,r4,4188                             
ffc05324:	54 c6 d1 be 	rlwinm  r6,r6,26,6,31                          
ffc05328:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0532c:	4e 80 04 21 	bctrl                                          
       "-------------------------------------------------------------------------------\n",
       _Watchdog_Ticks_since_boot - CPU_usage_Ticks_at_last_reset,    
       total_units                                                    
    );                                                                
  #endif                                                              
}                                                                     
ffc05330:	80 01 00 9c 	lwz     r0,156(r1)                             
ffc05334:	81 c1 00 50 	lwz     r14,80(r1)                             
ffc05338:	7c 08 03 a6 	mtlr    r0                                     
ffc0533c:	81 e1 00 54 	lwz     r15,84(r1)                             
ffc05340:	82 01 00 58 	lwz     r16,88(r1)                             
ffc05344:	82 21 00 5c 	lwz     r17,92(r1)                             
ffc05348:	82 41 00 60 	lwz     r18,96(r1)                             
ffc0534c:	82 61 00 64 	lwz     r19,100(r1)                            
ffc05350:	82 81 00 68 	lwz     r20,104(r1)                            
ffc05354:	82 a1 00 6c 	lwz     r21,108(r1)                            
ffc05358:	82 c1 00 70 	lwz     r22,112(r1)                            
ffc0535c:	82 e1 00 74 	lwz     r23,116(r1)                            
ffc05360:	83 01 00 78 	lwz     r24,120(r1)                            
ffc05364:	83 21 00 7c 	lwz     r25,124(r1)                            
ffc05368:	83 41 00 80 	lwz     r26,128(r1)                            
ffc0536c:	83 61 00 84 	lwz     r27,132(r1)                            
ffc05370:	83 81 00 88 	lwz     r28,136(r1)                            
ffc05374:	83 a1 00 8c 	lwz     r29,140(r1)                            
ffc05378:	83 c1 00 90 	lwz     r30,144(r1)                            
ffc0537c:	83 e1 00 94 	lwz     r31,148(r1)                            
ffc05380:	38 21 00 98 	addi    r1,r1,152                              
ffc05384:	4e 80 00 20 	blr                                            
                                                                      

ffc120ec <rtems_deviceio_errno>: [RTEMS_IO_ERROR] = EIO, [RTEMS_PROXY_BLOCKING] = EIO }; int rtems_deviceio_errno(rtems_status_code sc) {
ffc120ec:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc120f0:	7c 08 02 a6 	mflr    r0                                     
ffc120f4:	90 01 00 14 	stw     r0,20(r1)                              
  if (sc == RTEMS_SUCCESSFUL) {                                       
ffc120f8:	7c 60 1b 79 	mr.     r0,r3                                  
    return 0;                                                         
ffc120fc:	38 60 00 00 	li      r3,0                                   
  [RTEMS_IO_ERROR]                 = EIO,                             
  [RTEMS_PROXY_BLOCKING]           = EIO                              
};                                                                    
                                                                      
int rtems_deviceio_errno(rtems_status_code sc)                        
{                                                                     
ffc12100:	93 e1 00 0c 	stw     r31,12(r1)                             
  if (sc == RTEMS_SUCCESSFUL) {                                       
ffc12104:	40 82 00 18 	bne-    ffc1211c <rtems_deviceio_errno+0x30>   
                                                                      
    errno = eno;                                                      
                                                                      
    return -1;                                                        
  }                                                                   
}                                                                     
ffc12108:	80 01 00 14 	lwz     r0,20(r1)                              
ffc1210c:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc12110:	38 21 00 10 	addi    r1,r1,16                               
ffc12114:	7c 08 03 a6 	mtlr    r0                                     
ffc12118:	4e 80 00 20 	blr                                            
  if (sc == RTEMS_SUCCESSFUL) {                                       
    return 0;                                                         
  } else {                                                            
    int eno = EINVAL;                                                 
                                                                      
    if ((unsigned) sc <= RTEMS_STATUS_CODES_LAST) {                   
ffc1211c:	2b 80 00 1c 	cmplwi  cr7,r0,28                              
int rtems_deviceio_errno(rtems_status_code sc)                        
{                                                                     
  if (sc == RTEMS_SUCCESSFUL) {                                       
    return 0;                                                         
  } else {                                                            
    int eno = EINVAL;                                                 
ffc12120:	3b e0 00 16 	li      r31,22                                 
                                                                      
    if ((unsigned) sc <= RTEMS_STATUS_CODES_LAST) {                   
ffc12124:	41 9d 00 14 	bgt-    cr7,ffc12138 <rtems_deviceio_errno+0x4c><== NEVER TAKEN
      eno = status_code_to_errno [sc];                                
ffc12128:	3d 20 ff c2 	lis     r9,-62                                 
ffc1212c:	54 00 10 3a 	rlwinm  r0,r0,2,0,29                           
ffc12130:	39 29 90 34 	addi    r9,r9,-28620                           
ffc12134:	7f e9 00 2e 	lwzx    r31,r9,r0                              
    }                                                                 
                                                                      
    errno = eno;                                                      
ffc12138:	48 00 00 11 	bl      ffc12148 <__errno>                     
ffc1213c:	93 e3 00 00 	stw     r31,0(r3)                              
                                                                      
    return -1;                                                        
ffc12140:	38 60 ff ff 	li      r3,-1                                  
ffc12144:	4b ff ff c4 	b       ffc12108 <rtems_deviceio_errno+0x1c>   
                                                                      

ffc0aee8 <rtems_error>: int rtems_error( rtems_error_code_t error_flag, const char *printf_format, ... ) {
ffc0aee8:	94 21 ff 88 	stwu    r1,-120(r1)                            
ffc0aeec:	7c 08 02 a6 	mflr    r0                                     
ffc0aef0:	93 e1 00 74 	stw     r31,116(r1)                            
ffc0aef4:	7c 7f 1b 78 	mr      r31,r3                                 
ffc0aef8:	90 01 00 7c 	stw     r0,124(r1)                             
ffc0aefc:	90 a1 00 18 	stw     r5,24(r1)                              
ffc0af00:	90 c1 00 1c 	stw     r6,28(r1)                              
ffc0af04:	90 e1 00 20 	stw     r7,32(r1)                              
ffc0af08:	91 01 00 24 	stw     r8,36(r1)                              
ffc0af0c:	91 21 00 28 	stw     r9,40(r1)                              
ffc0af10:	91 41 00 2c 	stw     r10,44(r1)                             
ffc0af14:	40 86 00 24 	bne-    cr1,ffc0af38 <rtems_error+0x50>        <== ALWAYS TAKEN
ffc0af18:	d8 21 00 30 	stfd    f1,48(r1)                              <== NOT EXECUTED
ffc0af1c:	d8 41 00 38 	stfd    f2,56(r1)                              <== NOT EXECUTED
ffc0af20:	d8 61 00 40 	stfd    f3,64(r1)                              <== NOT EXECUTED
ffc0af24:	d8 81 00 48 	stfd    f4,72(r1)                              <== NOT EXECUTED
ffc0af28:	d8 a1 00 50 	stfd    f5,80(r1)                              <== NOT EXECUTED
ffc0af2c:	d8 c1 00 58 	stfd    f6,88(r1)                              <== NOT EXECUTED
ffc0af30:	d8 e1 00 60 	stfd    f7,96(r1)                              <== NOT EXECUTED
ffc0af34:	d9 01 00 68 	stfd    f8,104(r1)                             <== NOT EXECUTED
  va_list arglist;                                                    
  int chars_written;                                                  
                                                                      
  va_start(arglist, printf_format);                                   
ffc0af38:	38 00 00 02 	li      r0,2                                   
ffc0af3c:	98 01 00 08 	stb     r0,8(r1)                               
ffc0af40:	38 00 00 00 	li      r0,0                                   
  chars_written = rtems_verror(error_flag, printf_format, arglist);   
ffc0af44:	7f e3 fb 78 	mr      r3,r31                                 
)                                                                     
{                                                                     
  va_list arglist;                                                    
  int chars_written;                                                  
                                                                      
  va_start(arglist, printf_format);                                   
ffc0af48:	98 01 00 09 	stb     r0,9(r1)                               
ffc0af4c:	38 01 00 80 	addi    r0,r1,128                              
  chars_written = rtems_verror(error_flag, printf_format, arglist);   
ffc0af50:	38 a1 00 08 	addi    r5,r1,8                                
)                                                                     
{                                                                     
  va_list arglist;                                                    
  int chars_written;                                                  
                                                                      
  va_start(arglist, printf_format);                                   
ffc0af54:	90 01 00 0c 	stw     r0,12(r1)                              
ffc0af58:	38 01 00 10 	addi    r0,r1,16                               
ffc0af5c:	90 01 00 10 	stw     r0,16(r1)                              
  chars_written = rtems_verror(error_flag, printf_format, arglist);   
ffc0af60:	4b ff fd d5 	bl      ffc0ad34 <rtems_verror>                
  va_end(arglist);                                                    
                                                                      
  if (error_flag & RTEMS_ERROR_PANIC) {                               
ffc0af64:	77 e0 20 00 	andis.  r0,r31,8192                            
ffc0af68:	40 82 00 20 	bne-    ffc0af88 <rtems_error+0xa0>            
    rtems_error(0, "fatal error, exiting");                           
    _exit(errno);                                                     
  }                                                                   
  if (error_flag & RTEMS_ERROR_ABORT) {                               
ffc0af6c:	77 e0 10 00 	andis.  r0,r31,4096                            
ffc0af70:	40 82 00 38 	bne-    ffc0afa8 <rtems_error+0xc0>            
    rtems_error(0, "fatal error, aborting");                          
    abort();                                                          
  }                                                                   
                                                                      
  return chars_written;                                               
}                                                                     
ffc0af74:	80 01 00 7c 	lwz     r0,124(r1)                             
ffc0af78:	83 e1 00 74 	lwz     r31,116(r1)                            
ffc0af7c:	38 21 00 78 	addi    r1,r1,120                              
ffc0af80:	7c 08 03 a6 	mtlr    r0                                     
ffc0af84:	4e 80 00 20 	blr                                            
  va_start(arglist, printf_format);                                   
  chars_written = rtems_verror(error_flag, printf_format, arglist);   
  va_end(arglist);                                                    
                                                                      
  if (error_flag & RTEMS_ERROR_PANIC) {                               
    rtems_error(0, "fatal error, exiting");                           
ffc0af88:	3c 80 ff c3 	lis     r4,-61                                 
ffc0af8c:	38 84 97 f8 	addi    r4,r4,-26632                           
ffc0af90:	38 60 00 00 	li      r3,0                                   
ffc0af94:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0af98:	4b ff ff 51 	bl      ffc0aee8 <rtems_error>                 
    _exit(errno);                                                     
ffc0af9c:	48 00 e3 f9 	bl      ffc19394 <__errno>                     
ffc0afa0:	80 63 00 00 	lwz     r3,0(r3)                               
ffc0afa4:	48 00 0e 31 	bl      ffc0bdd4 <_exit>                       
  }                                                                   
  if (error_flag & RTEMS_ERROR_ABORT) {                               
    rtems_error(0, "fatal error, aborting");                          
ffc0afa8:	3c 80 ff c3 	lis     r4,-61                                 
ffc0afac:	38 84 98 10 	addi    r4,r4,-26608                           
ffc0afb0:	38 60 00 00 	li      r3,0                                   
ffc0afb4:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0afb8:	4b ff ff 31 	bl      ffc0aee8 <rtems_error>                 
    abort();                                                          
ffc0afbc:	48 00 e3 bd 	bl      ffc19378 <abort>                       
                                                                      

ffc04b70 <rtems_filesystem_dirname>: int rtems_filesystem_dirname( const char *pathname ) {
ffc04b70:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc04b74:	7c 08 02 a6 	mflr    r0                                     
ffc04b78:	93 c1 00 08 	stw     r30,8(r1)                              
ffc04b7c:	7c 7e 1b 78 	mr      r30,r3                                 
ffc04b80:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc04b84:	90 01 00 14 	stw     r0,20(r1)                              
  int len = strlen( pathname );                                       
ffc04b88:	48 00 e8 49 	bl      ffc133d0 <strlen>                      
                                                                      
  while ( len ) {                                                     
ffc04b8c:	7c 7f 1b 79 	mr.     r31,r3                                 
ffc04b90:	40 a2 00 0c 	bne+    ffc04b9c <rtems_filesystem_dirname+0x2c><== ALWAYS TAKEN
ffc04b94:	48 00 00 20 	b       ffc04bb4 <rtems_filesystem_dirname+0x44><== NOT EXECUTED
ffc04b98:	41 9a 00 1c 	beq-    cr6,ffc04bb4 <rtems_filesystem_dirname+0x44>
    len--;                                                            
ffc04b9c:	3b ff ff ff 	addi    r31,r31,-1                             
    if ( rtems_filesystem_is_separator( pathname[len] ) )             
ffc04ba0:	7c 7e f8 ae 	lbzx    r3,r30,r31                             
ffc04ba4:	48 00 13 65 	bl      ffc05f08 <rtems_filesystem_is_separator>
  const char  *pathname                                               
)                                                                     
{                                                                     
  int len = strlen( pathname );                                       
                                                                      
  while ( len ) {                                                     
ffc04ba8:	2f 1f 00 00 	cmpwi   cr6,r31,0                              
    len--;                                                            
    if ( rtems_filesystem_is_separator( pathname[len] ) )             
ffc04bac:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc04bb0:	41 9e ff e8 	beq+    cr7,ffc04b98 <rtems_filesystem_dirname+0x28>
      break;                                                          
  }                                                                   
                                                                      
  return len;                                                         
}                                                                     
ffc04bb4:	80 01 00 14 	lwz     r0,20(r1)                              
ffc04bb8:	7f e3 fb 78 	mr      r3,r31                                 
ffc04bbc:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc04bc0:	7c 08 03 a6 	mtlr    r0                                     
ffc04bc4:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc04bc8:	38 21 00 10 	addi    r1,r1,16                               
ffc04bcc:	4e 80 00 20 	blr                                            
                                                                      

ffc0eed8 <rtems_filesystem_get_mount_handler>: find_arg fa = { .type = type, .mount_h = NULL }; if ( type != NULL ) {
ffc0eed8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
                                                                      
rtems_filesystem_fsmount_me_t                                         
rtems_filesystem_get_mount_handler(                                   
  const char *type                                                    
)                                                                     
{                                                                     
ffc0eedc:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0eee0:	7c 08 02 a6 	mflr    r0                                     
  find_arg fa = {                                                     
ffc0eee4:	90 61 00 08 	stw     r3,8(r1)                               
    .type = type,                                                     
    .mount_h = NULL                                                   
  };                                                                  
                                                                      
  if ( type != NULL ) {                                               
ffc0eee8:	38 60 00 00 	li      r3,0                                   
                                                                      
rtems_filesystem_fsmount_me_t                                         
rtems_filesystem_get_mount_handler(                                   
  const char *type                                                    
)                                                                     
{                                                                     
ffc0eeec:	90 01 00 1c 	stw     r0,28(r1)                              
  find_arg fa = {                                                     
ffc0eef0:	38 00 00 00 	li      r0,0                                   
ffc0eef4:	90 01 00 0c 	stw     r0,12(r1)                              
    .type = type,                                                     
    .mount_h = NULL                                                   
  };                                                                  
                                                                      
  if ( type != NULL ) {                                               
ffc0eef8:	41 9e 00 18 	beq-    cr7,ffc0ef10 <rtems_filesystem_get_mount_handler+0x38><== NEVER TAKEN
    rtems_filesystem_iterate( find_handler, &fa );                    
ffc0eefc:	3c 60 ff c1 	lis     r3,-63                                 
ffc0ef00:	38 63 ed 7c 	addi    r3,r3,-4740                            
ffc0ef04:	38 81 00 08 	addi    r4,r1,8                                
ffc0ef08:	4b ff fe cd 	bl      ffc0edd4 <rtems_filesystem_iterate>    
ffc0ef0c:	80 61 00 0c 	lwz     r3,12(r1)                              
  }                                                                   
                                                                      
  return fa.mount_h;                                                  
}                                                                     
ffc0ef10:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0ef14:	38 21 00 18 	addi    r1,r1,24                               
ffc0ef18:	7c 08 03 a6 	mtlr    r0                                     
ffc0ef1c:	4e 80 00 20 	blr                                            
                                                                      

ffc04878 <rtems_filesystem_initialize>: * configuration is a single instantiation of the IMFS or miniIMFS with * a single "/dev" directory in it. */ void rtems_filesystem_initialize( void ) {
ffc04878:	94 21 ff c8 	stwu    r1,-56(r1)                             
ffc0487c:	7c 08 02 a6 	mflr    r0                                     
  rtems_filesystem_umask = 022;                                       
                                                                      
  /*                                                                  
   *  mount the first filesystem.                                     
   */                                                                 
  if ( rtems_filesystem_mount_table_size == 0 )                       
ffc04880:	3d 20 00 00 	lis     r9,0                                   
 *  configuration is a single instantiation of the IMFS or miniIMFS with
 *  a single "/dev" directory in it.                                  
 */                                                                   
                                                                      
void rtems_filesystem_initialize( void )                              
{                                                                     
ffc04884:	90 01 00 3c 	stw     r0,60(r1)                              
  rtems_filesystem_umask = 022;                                       
                                                                      
  /*                                                                  
   *  mount the first filesystem.                                     
   */                                                                 
  if ( rtems_filesystem_mount_table_size == 0 )                       
ffc04888:	80 09 26 58 	lwz     r0,9816(r9)                            
 *  configuration is a single instantiation of the IMFS or miniIMFS with
 *  a single "/dev" directory in it.                                  
 */                                                                   
                                                                      
void rtems_filesystem_initialize( void )                              
{                                                                     
ffc0488c:	93 e1 00 34 	stw     r31,52(r1)                             
                                                                      
  /*                                                                  
   *  Set the default umask to "022".                                 
   */                                                                 
                                                                      
  rtems_filesystem_umask = 022;                                       
ffc04890:	3f e0 00 00 	lis     r31,0                                  
                                                                      
  /*                                                                  
   *  mount the first filesystem.                                     
   */                                                                 
  if ( rtems_filesystem_mount_table_size == 0 )                       
ffc04894:	2f 80 00 00 	cmpwi   cr7,r0,0                               
                                                                      
  /*                                                                  
   *  Set the default umask to "022".                                 
   */                                                                 
                                                                      
  rtems_filesystem_umask = 022;                                       
ffc04898:	81 3f 26 9c 	lwz     r9,9884(r31)                           
ffc0489c:	38 00 00 12 	li      r0,18                                  
 *  configuration is a single instantiation of the IMFS or miniIMFS with
 *  a single "/dev" directory in it.                                  
 */                                                                   
                                                                      
void rtems_filesystem_initialize( void )                              
{                                                                     
ffc048a0:	93 a1 00 2c 	stw     r29,44(r1)                             
ffc048a4:	93 c1 00 30 	stw     r30,48(r1)                             
                                                                      
  /*                                                                  
   *  Set the default umask to "022".                                 
   */                                                                 
                                                                      
  rtems_filesystem_umask = 022;                                       
ffc048a8:	90 09 00 2c 	stw     r0,44(r9)                              
                                                                      
  /*                                                                  
   *  mount the first filesystem.                                     
   */                                                                 
  if ( rtems_filesystem_mount_table_size == 0 )                       
ffc048ac:	41 9e 01 00 	beq-    cr7,ffc049ac <rtems_filesystem_initialize+0x134><== NEVER TAKEN
    rtems_fatal_error_occurred( 0xABCD0001 );                         
                                                                      
  mt = &rtems_filesystem_mount_table[0];                              
ffc048b0:	3d 20 00 00 	lis     r9,0                                   
ffc048b4:	81 29 26 54 	lwz     r9,9812(r9)                            
                                                                      
  status = mount( mt->device, mt->mount_point, mt->type, mt->fsoptions, NULL );
ffc048b8:	38 e0 00 00 	li      r7,0                                   
ffc048bc:	80 69 00 08 	lwz     r3,8(r9)                               
ffc048c0:	80 89 00 0c 	lwz     r4,12(r9)                              
ffc048c4:	80 a9 00 00 	lwz     r5,0(r9)                               
ffc048c8:	80 c9 00 04 	lwz     r6,4(r9)                               
ffc048cc:	48 00 0a e1 	bl      ffc053ac <mount>                       
  if ( status == -1 )                                                 
ffc048d0:	2f 83 ff ff 	cmpwi   cr7,r3,-1                              
ffc048d4:	41 9e 00 f0 	beq-    cr7,ffc049c4 <rtems_filesystem_initialize+0x14c><== NEVER TAKEN
    rtems_fatal_error_occurred( 0xABCD0002 );                         
                                                                      
  rtems_filesystem_link_counts = 0;                                   
ffc048d8:	81 3f 26 9c 	lwz     r9,9884(r31)                           
ffc048dc:	38 00 00 00 	li      r0,0                                   
   *       gonna hit performance.                                     
   *                                                                  
   *       Till Straumann, 10/25/2002                                 
   */                                                                 
  /* Clone the root pathloc */                                        
  rtems_filesystem_evaluate_path("/", 1, 0, &loc, 0);                 
ffc048e0:	3f c0 ff c2 	lis     r30,-62                                
                                                                      
  status = mount( mt->device, mt->mount_point, mt->type, mt->fsoptions, NULL );
  if ( status == -1 )                                                 
    rtems_fatal_error_occurred( 0xABCD0002 );                         
                                                                      
  rtems_filesystem_link_counts = 0;                                   
ffc048e4:	b0 09 00 30 	sth     r0,48(r9)                              
   *       gonna hit performance.                                     
   *                                                                  
   *       Till Straumann, 10/25/2002                                 
   */                                                                 
  /* Clone the root pathloc */                                        
  rtems_filesystem_evaluate_path("/", 1, 0, &loc, 0);                 
ffc048e8:	3b de 8c a8 	addi    r30,r30,-29528                         
ffc048ec:	3b a1 00 08 	addi    r29,r1,8                               
ffc048f0:	38 80 00 01 	li      r4,1                                   
ffc048f4:	38 a0 00 00 	li      r5,0                                   
ffc048f8:	7f a6 eb 78 	mr      r6,r29                                 
ffc048fc:	38 e0 00 00 	li      r7,0                                   
ffc04900:	7f c3 f3 78 	mr      r3,r30                                 
ffc04904:	48 00 01 f1 	bl      ffc04af4 <rtems_filesystem_evaluate_path>
  rtems_filesystem_root        = loc;                                 
ffc04908:	81 3f 26 9c 	lwz     r9,9884(r31)                           
ffc0490c:	80 01 00 08 	lwz     r0,8(r1)                               
  /* One more clone for the current node */                           
  rtems_filesystem_evaluate_path("/", 1, 0, &loc, 0);                 
ffc04910:	38 80 00 01 	li      r4,1                                   
ffc04914:	38 a0 00 00 	li      r5,0                                   
   *                                                                  
   *       Till Straumann, 10/25/2002                                 
   */                                                                 
  /* Clone the root pathloc */                                        
  rtems_filesystem_evaluate_path("/", 1, 0, &loc, 0);                 
  rtems_filesystem_root        = loc;                                 
ffc04918:	90 09 00 18 	stw     r0,24(r9)                              
  /* One more clone for the current node */                           
  rtems_filesystem_evaluate_path("/", 1, 0, &loc, 0);                 
ffc0491c:	7f a6 eb 78 	mr      r6,r29                                 
ffc04920:	38 e0 00 00 	li      r7,0                                   
   *                                                                  
   *       Till Straumann, 10/25/2002                                 
   */                                                                 
  /* Clone the root pathloc */                                        
  rtems_filesystem_evaluate_path("/", 1, 0, &loc, 0);                 
  rtems_filesystem_root        = loc;                                 
ffc04924:	80 01 00 0c 	lwz     r0,12(r1)                              
  /* One more clone for the current node */                           
  rtems_filesystem_evaluate_path("/", 1, 0, &loc, 0);                 
ffc04928:	7f c3 f3 78 	mr      r3,r30                                 
   *                                                                  
   *       Till Straumann, 10/25/2002                                 
   */                                                                 
  /* Clone the root pathloc */                                        
  rtems_filesystem_evaluate_path("/", 1, 0, &loc, 0);                 
  rtems_filesystem_root        = loc;                                 
ffc0492c:	90 09 00 1c 	stw     r0,28(r9)                              
ffc04930:	80 01 00 10 	lwz     r0,16(r1)                              
ffc04934:	90 09 00 20 	stw     r0,32(r9)                              
ffc04938:	80 01 00 14 	lwz     r0,20(r1)                              
ffc0493c:	90 09 00 24 	stw     r0,36(r9)                              
ffc04940:	80 01 00 18 	lwz     r0,24(r1)                              
ffc04944:	90 09 00 28 	stw     r0,40(r9)                              
  /* One more clone for the current node */                           
  rtems_filesystem_evaluate_path("/", 1, 0, &loc, 0);                 
ffc04948:	48 00 01 ad 	bl      ffc04af4 <rtems_filesystem_evaluate_path>
  rtems_filesystem_current     = loc;                                 
ffc0494c:	81 3f 26 9c 	lwz     r9,9884(r31)                           
ffc04950:	80 01 00 08 	lwz     r0,8(r1)                               
   *                                                                  
   *  NOTE: UNIX root is 755 and owned by root/root (0/0).  It is actually
   *        created that way by the IMFS.                             
   */                                                                 
                                                                      
  status = mkdir( "/dev", 0777);                                      
ffc04954:	3c 60 ff c2 	lis     r3,-62                                 
ffc04958:	38 63 8c ac 	addi    r3,r3,-29524                           
  /* Clone the root pathloc */                                        
  rtems_filesystem_evaluate_path("/", 1, 0, &loc, 0);                 
  rtems_filesystem_root        = loc;                                 
  /* One more clone for the current node */                           
  rtems_filesystem_evaluate_path("/", 1, 0, &loc, 0);                 
  rtems_filesystem_current     = loc;                                 
ffc0495c:	90 09 00 04 	stw     r0,4(r9)                               
   *                                                                  
   *  NOTE: UNIX root is 755 and owned by root/root (0/0).  It is actually
   *        created that way by the IMFS.                             
   */                                                                 
                                                                      
  status = mkdir( "/dev", 0777);                                      
ffc04960:	38 80 01 ff 	li      r4,511                                 
  /* Clone the root pathloc */                                        
  rtems_filesystem_evaluate_path("/", 1, 0, &loc, 0);                 
  rtems_filesystem_root        = loc;                                 
  /* One more clone for the current node */                           
  rtems_filesystem_evaluate_path("/", 1, 0, &loc, 0);                 
  rtems_filesystem_current     = loc;                                 
ffc04964:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc04968:	90 09 00 08 	stw     r0,8(r9)                               
ffc0496c:	80 01 00 10 	lwz     r0,16(r1)                              
ffc04970:	90 09 00 0c 	stw     r0,12(r9)                              
ffc04974:	80 01 00 14 	lwz     r0,20(r1)                              
ffc04978:	90 09 00 10 	stw     r0,16(r9)                              
ffc0497c:	80 01 00 18 	lwz     r0,24(r1)                              
ffc04980:	90 09 00 14 	stw     r0,20(r9)                              
   *                                                                  
   *  NOTE: UNIX root is 755 and owned by root/root (0/0).  It is actually
   *        created that way by the IMFS.                             
   */                                                                 
                                                                      
  status = mkdir( "/dev", 0777);                                      
ffc04984:	48 00 08 2d 	bl      ffc051b0 <mkdir>                       
  if ( status != 0 )                                                  
ffc04988:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0498c:	40 9e 00 2c 	bne-    cr7,ffc049b8 <rtems_filesystem_initialize+0x140><== NEVER TAKEN
   *  it will be mounted onto is created.  Moreover, if it is going to
   *  use a device, then it is REALLY unfair to attempt this          
   *  before device drivers are initialized.  So we return via a base 
   *  filesystem image and nothing auto-mounted at this point.        
   */                                                                 
}                                                                     
ffc04990:	80 01 00 3c 	lwz     r0,60(r1)                              
ffc04994:	83 a1 00 2c 	lwz     r29,44(r1)                             
ffc04998:	7c 08 03 a6 	mtlr    r0                                     
ffc0499c:	83 c1 00 30 	lwz     r30,48(r1)                             
ffc049a0:	83 e1 00 34 	lwz     r31,52(r1)                             
ffc049a4:	38 21 00 38 	addi    r1,r1,56                               
ffc049a8:	4e 80 00 20 	blr                                            
                                                                      
  /*                                                                  
   *  mount the first filesystem.                                     
   */                                                                 
  if ( rtems_filesystem_mount_table_size == 0 )                       
    rtems_fatal_error_occurred( 0xABCD0001 );                         
ffc049ac:	3c 60 ab cd 	lis     r3,-21555                              <== NOT EXECUTED
ffc049b0:	60 63 00 01 	ori     r3,r3,1                                <== NOT EXECUTED
ffc049b4:	48 00 4e 41 	bl      ffc097f4 <rtems_fatal_error_occurred>  <== NOT EXECUTED
   *        created that way by the IMFS.                             
   */                                                                 
                                                                      
  status = mkdir( "/dev", 0777);                                      
  if ( status != 0 )                                                  
    rtems_fatal_error_occurred( 0xABCD0003 );                         
ffc049b8:	3c 60 ab cd 	lis     r3,-21555                              <== NOT EXECUTED
ffc049bc:	60 63 00 03 	ori     r3,r3,3                                <== NOT EXECUTED
ffc049c0:	48 00 4e 35 	bl      ffc097f4 <rtems_fatal_error_occurred>  <== NOT EXECUTED
                                                                      
  mt = &rtems_filesystem_mount_table[0];                              
                                                                      
  status = mount( mt->device, mt->mount_point, mt->type, mt->fsoptions, NULL );
  if ( status == -1 )                                                 
    rtems_fatal_error_occurred( 0xABCD0002 );                         
ffc049c4:	3c 60 ab cd 	lis     r3,-21555                              <== NOT EXECUTED
ffc049c8:	60 63 00 02 	ori     r3,r3,2                                <== NOT EXECUTED
ffc049cc:	48 00 4e 29 	bl      ffc097f4 <rtems_fatal_error_occurred>  <== NOT EXECUTED
                                                                      

ffc0edd4 <rtems_filesystem_iterate>: bool rtems_filesystem_iterate( rtems_per_filesystem_routine routine, void *routine_arg ) {
ffc0edd4:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc0edd8:	7c 08 02 a6 	mflr    r0                                     
ffc0eddc:	93 c1 00 20 	stw     r30,32(r1)                             
  const rtems_filesystem_table_t *table_entry = &rtems_filesystem_table [0];
  rtems_chain_node *node = NULL;                                      
  bool stop = false;                                                  
                                                                      
  while ( table_entry->type && !stop ) {                              
ffc0ede0:	3f c0 ff c2 	lis     r30,-62                                
                                                                      
bool rtems_filesystem_iterate(                                        
  rtems_per_filesystem_routine routine,                               
  void *routine_arg                                                   
)                                                                     
{                                                                     
ffc0ede4:	90 01 00 2c 	stw     r0,44(r1)                              
  const rtems_filesystem_table_t *table_entry = &rtems_filesystem_table [0];
  rtems_chain_node *node = NULL;                                      
  bool stop = false;                                                  
                                                                      
  while ( table_entry->type && !stop ) {                              
ffc0ede8:	80 1e 81 54 	lwz     r0,-32428(r30)                         
ffc0edec:	3b de 81 54 	addi    r30,r30,-32428                         
                                                                      
bool rtems_filesystem_iterate(                                        
  rtems_per_filesystem_routine routine,                               
  void *routine_arg                                                   
)                                                                     
{                                                                     
ffc0edf0:	93 e1 00 24 	stw     r31,36(r1)                             
ffc0edf4:	7c 9f 23 78 	mr      r31,r4                                 
  const rtems_filesystem_table_t *table_entry = &rtems_filesystem_table [0];
  rtems_chain_node *node = NULL;                                      
  bool stop = false;                                                  
                                                                      
  while ( table_entry->type && !stop ) {                              
ffc0edf8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
                                                                      
bool rtems_filesystem_iterate(                                        
  rtems_per_filesystem_routine routine,                               
  void *routine_arg                                                   
)                                                                     
{                                                                     
ffc0edfc:	93 61 00 14 	stw     r27,20(r1)                             
ffc0ee00:	93 81 00 18 	stw     r28,24(r1)                             
ffc0ee04:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc0ee08:	90 61 00 08 	stw     r3,8(r1)                               
  const rtems_filesystem_table_t *table_entry = &rtems_filesystem_table [0];
  rtems_chain_node *node = NULL;                                      
  bool stop = false;                                                  
                                                                      
  while ( table_entry->type && !stop ) {                              
ffc0ee0c:	40 be 00 0c 	bne+    cr7,ffc0ee18 <rtems_filesystem_iterate+0x44><== ALWAYS TAKEN
ffc0ee10:	48 00 00 38 	b       ffc0ee48 <rtems_filesystem_iterate+0x74><== NOT EXECUTED
ffc0ee14:	40 9a 00 9c 	bne-    cr6,ffc0eeb0 <rtems_filesystem_iterate+0xdc>
    stop = (*routine)( table_entry, routine_arg );                    
ffc0ee18:	80 01 00 08 	lwz     r0,8(r1)                               
ffc0ee1c:	7f c3 f3 78 	mr      r3,r30                                 
ffc0ee20:	7f e4 fb 78 	mr      r4,r31                                 
ffc0ee24:	7c 09 03 a6 	mtctr   r0                                     
ffc0ee28:	4e 80 04 21 	bctrl                                          
{                                                                     
  const rtems_filesystem_table_t *table_entry = &rtems_filesystem_table [0];
  rtems_chain_node *node = NULL;                                      
  bool stop = false;                                                  
                                                                      
  while ( table_entry->type && !stop ) {                              
ffc0ee2c:	84 1e 00 08 	lwzu    r0,8(r30)                              
    stop = (*routine)( table_entry, routine_arg );                    
ffc0ee30:	7c 7b 1b 78 	mr      r27,r3                                 
{                                                                     
  const rtems_filesystem_table_t *table_entry = &rtems_filesystem_table [0];
  rtems_chain_node *node = NULL;                                      
  bool stop = false;                                                  
                                                                      
  while ( table_entry->type && !stop ) {                              
ffc0ee34:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0ee38:	2f 03 00 00 	cmpwi   cr6,r3,0                               
ffc0ee3c:	40 9e ff d8 	bne+    cr7,ffc0ee14 <rtems_filesystem_iterate+0x40>
    stop = (*routine)( table_entry, routine_arg );                    
    ++table_entry;                                                    
  }                                                                   
                                                                      
  if ( !stop ) {                                                      
ffc0ee40:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0ee44:	40 9e 00 6c 	bne-    cr7,ffc0eeb0 <rtems_filesystem_iterate+0xdc>
rtems_status_code rtems_libio_set_private_env(void);                  
rtems_status_code rtems_libio_share_private_env(rtems_id task_id) ;   
                                                                      
static inline void rtems_libio_lock( void )                           
{                                                                     
  rtems_semaphore_obtain( rtems_libio_semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT );
ffc0ee48:	3f c0 00 00 	lis     r30,0                                  
ffc0ee4c:	80 7e 27 14 	lwz     r3,10004(r30)                          
ffc0ee50:	38 80 00 00 	li      r4,0                                   
ffc0ee54:	38 a0 00 00 	li      r5,0                                   
ffc0ee58:	4b ff a0 29 	bl      ffc08e80 <rtems_semaphore_obtain>      
    }                                                                 
  }                                                                   
  rtems_libio_unlock();                                               
                                                                      
  rtems_set_errno_and_return_minus_one( ENOENT );                     
}                                                                     
ffc0ee5c:	3d 20 00 00 	lis     r9,0                                   
ffc0ee60:	3b 89 21 84 	addi    r28,r9,8580                            
ffc0ee64:	83 a9 21 84 	lwz     r29,8580(r9)                           
ffc0ee68:	3b 9c 00 04 	addi    r28,r28,4                              
    ++table_entry;                                                    
  }                                                                   
                                                                      
  if ( !stop ) {                                                      
    rtems_libio_lock();                                               
    for (                                                             
ffc0ee6c:	7f 9d e0 00 	cmpw    cr7,r29,r28                            
ffc0ee70:	3b 60 00 00 	li      r27,0                                  
ffc0ee74:	40 be 00 0c 	bne+    cr7,ffc0ee80 <rtems_filesystem_iterate+0xac>
ffc0ee78:	48 00 00 30 	b       ffc0eea8 <rtems_filesystem_iterate+0xd4>
      node = rtems_chain_first( &filesystem_chain );                  
      !rtems_chain_is_tail( &filesystem_chain, node ) && !stop;       
ffc0ee7c:	40 9a 00 2c 	bne-    cr6,ffc0eea8 <rtems_filesystem_iterate+0xd4><== NEVER TAKEN
      node = rtems_chain_next( node )                                 
    ) {                                                               
      const filesystem_node *fsn = (filesystem_node *) node;          
                                                                      
      stop = (*routine)( &fsn->entry, routine_arg );                  
ffc0ee80:	80 01 00 08 	lwz     r0,8(r1)                               
ffc0ee84:	38 7d 00 08 	addi    r3,r29,8                               
ffc0ee88:	7f e4 fb 78 	mr      r4,r31                                 
ffc0ee8c:	7c 09 03 a6 	mtctr   r0                                     
ffc0ee90:	4e 80 04 21 	bctrl                                          
    }                                                                 
  }                                                                   
  rtems_libio_unlock();                                               
                                                                      
  rtems_set_errno_and_return_minus_one( ENOENT );                     
}                                                                     
ffc0ee94:	83 bd 00 00 	lwz     r29,0(r29)                             
      !rtems_chain_is_tail( &filesystem_chain, node ) && !stop;       
      node = rtems_chain_next( node )                                 
    ) {                                                               
      const filesystem_node *fsn = (filesystem_node *) node;          
                                                                      
      stop = (*routine)( &fsn->entry, routine_arg );                  
ffc0ee98:	7c 7b 1b 78 	mr      r27,r3                                 
    ++table_entry;                                                    
  }                                                                   
                                                                      
  if ( !stop ) {                                                      
    rtems_libio_lock();                                               
    for (                                                             
ffc0ee9c:	7f 9d e0 00 	cmpw    cr7,r29,r28                            
      node = rtems_chain_first( &filesystem_chain );                  
      !rtems_chain_is_tail( &filesystem_chain, node ) && !stop;       
ffc0eea0:	2f 03 00 00 	cmpwi   cr6,r3,0                               
    ++table_entry;                                                    
  }                                                                   
                                                                      
  if ( !stop ) {                                                      
    rtems_libio_lock();                                               
    for (                                                             
ffc0eea4:	40 9e ff d8 	bne+    cr7,ffc0ee7c <rtems_filesystem_iterate+0xa8>
}                                                                     
                                                                      
static inline void rtems_libio_unlock( void )                         
{                                                                     
  rtems_semaphore_release( rtems_libio_semaphore );                   
ffc0eea8:	80 7e 27 14 	lwz     r3,10004(r30)                          
ffc0eeac:	4b ff a1 5d 	bl      ffc09008 <rtems_semaphore_release>     
    }                                                                 
    rtems_libio_unlock();                                             
  }                                                                   
                                                                      
  return stop;                                                        
}                                                                     
ffc0eeb0:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc0eeb4:	7f 63 db 78 	mr      r3,r27                                 
ffc0eeb8:	83 81 00 18 	lwz     r28,24(r1)                             
ffc0eebc:	7c 08 03 a6 	mtlr    r0                                     
ffc0eec0:	83 61 00 14 	lwz     r27,20(r1)                             
ffc0eec4:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc0eec8:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc0eecc:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc0eed0:	38 21 00 28 	addi    r1,r1,40                               
ffc0eed4:	4e 80 00 20 	blr                                            
                                                                      

ffc052f4 <rtems_filesystem_mount_iterate>: bool rtems_filesystem_mount_iterate( rtems_per_filesystem_mount_routine routine, void *routine_arg ) {
ffc052f4:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc052f8:	7c 08 02 a6 	mflr    r0                                     
rtems_status_code rtems_libio_set_private_env(void);                  
rtems_status_code rtems_libio_share_private_env(rtems_id task_id) ;   
                                                                      
static inline void rtems_libio_lock( void )                           
{                                                                     
  rtems_semaphore_obtain( rtems_libio_semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT );
ffc052fc:	38 a0 00 00 	li      r5,0                                   
ffc05300:	93 c1 00 20 	stw     r30,32(r1)                             
ffc05304:	3f c0 00 00 	lis     r30,0                                  
ffc05308:	90 61 00 08 	stw     r3,8(r1)                               
ffc0530c:	80 7e 27 14 	lwz     r3,10004(r30)                          
ffc05310:	93 e1 00 24 	stw     r31,36(r1)                             
ffc05314:	7c 9f 23 78 	mr      r31,r4                                 
ffc05318:	38 80 00 00 	li      r4,0                                   
ffc0531c:	93 61 00 14 	stw     r27,20(r1)                             
  rtems_chain_node *node = NULL;                                      
  bool stop = false;                                                  
ffc05320:	3b 60 00 00 	li      r27,0                                  
                                                                      
bool rtems_filesystem_mount_iterate(                                  
  rtems_per_filesystem_mount_routine routine,                         
  void *routine_arg                                                   
)                                                                     
{                                                                     
ffc05324:	93 81 00 18 	stw     r28,24(r1)                             
ffc05328:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc0532c:	90 01 00 2c 	stw     r0,44(r1)                              
ffc05330:	48 00 3b 51 	bl      ffc08e80 <rtems_semaphore_obtain>      
    stop = (*routine)( mt_entry, routine_arg );                       
  }                                                                   
  rtems_libio_unlock();                                               
                                                                      
  return stop;                                                        
}                                                                     
ffc05334:	3d 20 00 00 	lis     r9,0                                   
ffc05338:	3b 89 21 68 	addi    r28,r9,8552                            
ffc0533c:	83 a9 21 68 	lwz     r29,8552(r9)                           
 */                                                                   
RTEMS_INLINE_ROUTINE Chain_Node *_Chain_Tail(                         
  Chain_Control *the_chain                                            
)                                                                     
{                                                                     
   return (Chain_Node *) &the_chain->permanent_null;                  
ffc05340:	3b 9c 00 04 	addi    r28,r28,4                              
{                                                                     
  rtems_chain_node *node = NULL;                                      
  bool stop = false;                                                  
                                                                      
  rtems_libio_lock();                                                 
  for (                                                               
ffc05344:	7f 9d e0 00 	cmpw    cr7,r29,r28                            
ffc05348:	40 be 00 0c 	bne+    cr7,ffc05354 <rtems_filesystem_mount_iterate+0x60><== ALWAYS TAKEN
ffc0534c:	48 00 00 30 	b       ffc0537c <rtems_filesystem_mount_iterate+0x88><== NOT EXECUTED
    node = rtems_chain_first( &mount_chain );                         
    !rtems_chain_is_tail( &mount_chain, node ) && !stop;              
ffc05350:	40 9a 00 2c 	bne-    cr6,ffc0537c <rtems_filesystem_mount_iterate+0x88><== NEVER TAKEN
    node = rtems_chain_next( node )                                   
  ) {                                                                 
    const rtems_filesystem_mount_table_entry_t *mt_entry =            
      (rtems_filesystem_mount_table_entry_t *) node;                  
                                                                      
    stop = (*routine)( mt_entry, routine_arg );                       
ffc05354:	80 01 00 08 	lwz     r0,8(r1)                               
ffc05358:	7f a3 eb 78 	mr      r3,r29                                 
ffc0535c:	7f e4 fb 78 	mr      r4,r31                                 
ffc05360:	7c 09 03 a6 	mtctr   r0                                     
ffc05364:	4e 80 04 21 	bctrl                                          
  }                                                                   
  rtems_libio_unlock();                                               
                                                                      
  return stop;                                                        
}                                                                     
ffc05368:	83 bd 00 00 	lwz     r29,0(r29)                             
    node = rtems_chain_next( node )                                   
  ) {                                                                 
    const rtems_filesystem_mount_table_entry_t *mt_entry =            
      (rtems_filesystem_mount_table_entry_t *) node;                  
                                                                      
    stop = (*routine)( mt_entry, routine_arg );                       
ffc0536c:	7c 7b 1b 78 	mr      r27,r3                                 
{                                                                     
  rtems_chain_node *node = NULL;                                      
  bool stop = false;                                                  
                                                                      
  rtems_libio_lock();                                                 
  for (                                                               
ffc05370:	7f 9d e0 00 	cmpw    cr7,r29,r28                            
    node = rtems_chain_first( &mount_chain );                         
    !rtems_chain_is_tail( &mount_chain, node ) && !stop;              
ffc05374:	2f 03 00 00 	cmpwi   cr6,r3,0                               
{                                                                     
  rtems_chain_node *node = NULL;                                      
  bool stop = false;                                                  
                                                                      
  rtems_libio_lock();                                                 
  for (                                                               
ffc05378:	40 9e ff d8 	bne+    cr7,ffc05350 <rtems_filesystem_mount_iterate+0x5c>
}                                                                     
                                                                      
static inline void rtems_libio_unlock( void )                         
{                                                                     
  rtems_semaphore_release( rtems_libio_semaphore );                   
ffc0537c:	80 7e 27 14 	lwz     r3,10004(r30)                          
ffc05380:	48 00 3c 89 	bl      ffc09008 <rtems_semaphore_release>     
    stop = (*routine)( mt_entry, routine_arg );                       
  }                                                                   
  rtems_libio_unlock();                                               
                                                                      
  return stop;                                                        
}                                                                     
ffc05384:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc05388:	7f 63 db 78 	mr      r3,r27                                 
ffc0538c:	83 81 00 18 	lwz     r28,24(r1)                             
ffc05390:	7c 08 03 a6 	mtlr    r0                                     
ffc05394:	83 61 00 14 	lwz     r27,20(r1)                             
ffc05398:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc0539c:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc053a0:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc053a4:	38 21 00 28 	addi    r1,r1,40                               
ffc053a8:	4e 80 00 20 	blr                                            
                                                                      

ffc04bd0 <rtems_filesystem_prefix_separators>: int rtems_filesystem_prefix_separators( const char *pathname, int pathnamelen ) {
ffc04bd0:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc04bd4:	7c 08 02 a6 	mflr    r0                                     
ffc04bd8:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc04bdc:	7c 9d 23 78 	mr      r29,r4                                 
ffc04be0:	93 c1 00 10 	stw     r30,16(r1)                             
  /*                                                                  
   * Eat any separators at start of the path.                         
   */                                                                 
  int stripped = 0;                                                   
ffc04be4:	3b c0 00 00 	li      r30,0                                  
                                                                      
int rtems_filesystem_prefix_separators(                               
  const char  *pathname,                                              
  int          pathnamelen                                            
)                                                                     
{                                                                     
ffc04be8:	93 e1 00 14 	stw     r31,20(r1)                             
ffc04bec:	7c 7f 1b 78 	mr      r31,r3                                 
ffc04bf0:	90 01 00 1c 	stw     r0,28(r1)                              
  /*                                                                  
   * Eat any separators at start of the path.                         
   */                                                                 
  int stripped = 0;                                                   
  while ( *pathname && pathnamelen && rtems_filesystem_is_separator( *pathname ) )
ffc04bf4:	88 63 00 00 	lbz     r3,0(r3)                               
ffc04bf8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc04bfc:	41 9e 00 34 	beq-    cr7,ffc04c30 <rtems_filesystem_prefix_separators+0x60><== NEVER TAKEN
ffc04c00:	2f 84 00 00 	cmpwi   cr7,r4,0                               
ffc04c04:	40 be 00 20 	bne+    cr7,ffc04c24 <rtems_filesystem_prefix_separators+0x54><== ALWAYS TAKEN
ffc04c08:	48 00 00 28 	b       ffc04c30 <rtems_filesystem_prefix_separators+0x60><== NOT EXECUTED
  {                                                                   
    pathname++;                                                       
    pathnamelen--;                                                    
    stripped++;                                                       
ffc04c0c:	3b de 00 01 	addi    r30,r30,1                              
{                                                                     
  /*                                                                  
   * Eat any separators at start of the path.                         
   */                                                                 
  int stripped = 0;                                                   
  while ( *pathname && pathnamelen && rtems_filesystem_is_separator( *pathname ) )
ffc04c10:	7c 7f f0 ae 	lbzx    r3,r31,r30                             
ffc04c14:	7f 1d f0 00 	cmpw    cr6,r29,r30                            
ffc04c18:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc04c1c:	41 9e 00 14 	beq-    cr7,ffc04c30 <rtems_filesystem_prefix_separators+0x60><== NEVER TAKEN
ffc04c20:	41 9a 00 10 	beq-    cr6,ffc04c30 <rtems_filesystem_prefix_separators+0x60><== NEVER TAKEN
ffc04c24:	48 00 12 e5 	bl      ffc05f08 <rtems_filesystem_is_separator>
ffc04c28:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc04c2c:	40 9e ff e0 	bne+    cr7,ffc04c0c <rtems_filesystem_prefix_separators+0x3c>
    pathname++;                                                       
    pathnamelen--;                                                    
    stripped++;                                                       
  }                                                                   
  return stripped;                                                    
}                                                                     
ffc04c30:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc04c34:	7f c3 f3 78 	mr      r3,r30                                 
ffc04c38:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc04c3c:	7c 08 03 a6 	mtlr    r0                                     
ffc04c40:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc04c44:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc04c48:	38 21 00 18 	addi    r1,r1,24                               
ffc04c4c:	4e 80 00 20 	blr                                            
                                                                      

ffc0f03c <rtems_filesystem_unregister>: int rtems_filesystem_unregister( const char *type ) {
ffc0f03c:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0f040:	7c 08 02 a6 	mflr    r0                                     
ffc0f044:	93 e1 00 14 	stw     r31,20(r1)                             
  rtems_chain_node *node = NULL;                                      
                                                                      
  if ( type == NULL ) {                                               
ffc0f048:	7c 7f 1b 79 	mr.     r31,r3                                 
                                                                      
int                                                                   
rtems_filesystem_unregister(                                          
  const char *type                                                    
)                                                                     
{                                                                     
ffc0f04c:	90 01 00 1c 	stw     r0,28(r1)                              
ffc0f050:	93 81 00 08 	stw     r28,8(r1)                              
ffc0f054:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0f058:	93 c1 00 10 	stw     r30,16(r1)                             
  rtems_chain_node *node = NULL;                                      
                                                                      
  if ( type == NULL ) {                                               
ffc0f05c:	41 82 00 c8 	beq-    ffc0f124 <rtems_filesystem_unregister+0xe8>
rtems_status_code rtems_libio_set_private_env(void);                  
rtems_status_code rtems_libio_share_private_env(rtems_id task_id) ;   
                                                                      
static inline void rtems_libio_lock( void )                           
{                                                                     
  rtems_semaphore_obtain( rtems_libio_semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT );
ffc0f060:	3f c0 00 00 	lis     r30,0                                  
ffc0f064:	80 7e 27 14 	lwz     r3,10004(r30)                          
ffc0f068:	38 80 00 00 	li      r4,0                                   
ffc0f06c:	38 a0 00 00 	li      r5,0                                   
ffc0f070:	4b ff 9e 11 	bl      ffc08e80 <rtems_semaphore_obtain>      
    }                                                                 
  }                                                                   
  rtems_libio_unlock();                                               
                                                                      
  rtems_set_errno_and_return_minus_one( ENOENT );                     
}                                                                     
ffc0f074:	3d 20 00 00 	lis     r9,0                                   
ffc0f078:	3b 89 21 84 	addi    r28,r9,8580                            
ffc0f07c:	83 a9 21 84 	lwz     r29,8580(r9)                           
ffc0f080:	3b 9c 00 04 	addi    r28,r28,4                              
  if ( type == NULL ) {                                               
    rtems_set_errno_and_return_minus_one( EINVAL );                   
  }                                                                   
                                                                      
  rtems_libio_lock();                                                 
  for (                                                               
ffc0f084:	7f 9d e0 00 	cmpw    cr7,r29,r28                            
ffc0f088:	40 be 00 14 	bne+    cr7,ffc0f09c <rtems_filesystem_unregister+0x60>
ffc0f08c:	48 00 00 60 	b       ffc0f0ec <rtems_filesystem_unregister+0xb0>
    }                                                                 
  }                                                                   
  rtems_libio_unlock();                                               
                                                                      
  rtems_set_errno_and_return_minus_one( ENOENT );                     
}                                                                     
ffc0f090:	83 bd 00 00 	lwz     r29,0(r29)                             
  if ( type == NULL ) {                                               
    rtems_set_errno_and_return_minus_one( EINVAL );                   
  }                                                                   
                                                                      
  rtems_libio_lock();                                                 
  for (                                                               
ffc0f094:	7f 9d e0 00 	cmpw    cr7,r29,r28                            
ffc0f098:	41 9e 00 54 	beq-    cr7,ffc0f0ec <rtems_filesystem_unregister+0xb0><== ALWAYS TAKEN
    !rtems_chain_is_tail( &filesystem_chain, node );                  
    node = rtems_chain_next( node )                                   
  ) {                                                                 
    filesystem_node *fsn = (filesystem_node *) node;                  
                                                                      
    if ( strcmp( fsn->entry.type, type ) == 0 ) {                     
ffc0f09c:	80 7d 00 08 	lwz     r3,8(r29)                              
ffc0f0a0:	7f e4 fb 78 	mr      r4,r31                                 
ffc0f0a4:	48 00 41 69 	bl      ffc1320c <strcmp>                      
ffc0f0a8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0f0ac:	40 9e ff e4 	bne+    cr7,ffc0f090 <rtems_filesystem_unregister+0x54>
 */                                                                   
RTEMS_INLINE_ROUTINE void rtems_chain_extract(                        
  rtems_chain_node *the_node                                          
)                                                                     
{                                                                     
  _Chain_Extract( the_node );                                         
ffc0f0b0:	7f a3 eb 78 	mr      r3,r29                                 
ffc0f0b4:	4b ff ab d1 	bl      ffc09c84 <_Chain_Extract>              
      rtems_chain_extract( node );                                    
      free( fsn );                                                    
ffc0f0b8:	7f a3 eb 78 	mr      r3,r29                                 
ffc0f0bc:	4b ff 5b c1 	bl      ffc04c7c <free>                        
}                                                                     
                                                                      
static inline void rtems_libio_unlock( void )                         
{                                                                     
  rtems_semaphore_release( rtems_libio_semaphore );                   
ffc0f0c0:	80 7e 27 14 	lwz     r3,10004(r30)                          
ffc0f0c4:	4b ff 9f 45 	bl      ffc09008 <rtems_semaphore_release>     
    }                                                                 
  }                                                                   
  rtems_libio_unlock();                                               
                                                                      
  rtems_set_errno_and_return_minus_one( ENOENT );                     
}                                                                     
ffc0f0c8:	80 01 00 1c 	lwz     r0,28(r1)                              
    if ( strcmp( fsn->entry.type, type ) == 0 ) {                     
      rtems_chain_extract( node );                                    
      free( fsn );                                                    
      rtems_libio_unlock();                                           
                                                                      
      return 0;                                                       
ffc0f0cc:	38 60 00 00 	li      r3,0                                   
    }                                                                 
  }                                                                   
  rtems_libio_unlock();                                               
                                                                      
  rtems_set_errno_and_return_minus_one( ENOENT );                     
}                                                                     
ffc0f0d0:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0f0d4:	7c 08 03 a6 	mtlr    r0                                     
ffc0f0d8:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0f0dc:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0f0e0:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0f0e4:	38 21 00 18 	addi    r1,r1,24                               
ffc0f0e8:	4e 80 00 20 	blr                                            
ffc0f0ec:	80 7e 27 14 	lwz     r3,10004(r30)                          
ffc0f0f0:	4b ff 9f 19 	bl      ffc09008 <rtems_semaphore_release>     
      return 0;                                                       
    }                                                                 
  }                                                                   
  rtems_libio_unlock();                                               
                                                                      
  rtems_set_errno_and_return_minus_one( ENOENT );                     
ffc0f0f4:	48 00 30 55 	bl      ffc12148 <__errno>                     
ffc0f0f8:	38 00 00 02 	li      r0,2                                   
ffc0f0fc:	90 03 00 00 	stw     r0,0(r3)                               
ffc0f100:	38 60 ff ff 	li      r3,-1                                  
}                                                                     
ffc0f104:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0f108:	83 81 00 08 	lwz     r28,8(r1)                              
ffc0f10c:	7c 08 03 a6 	mtlr    r0                                     
ffc0f110:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0f114:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0f118:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0f11c:	38 21 00 18 	addi    r1,r1,24                               
ffc0f120:	4e 80 00 20 	blr                                            
)                                                                     
{                                                                     
  rtems_chain_node *node = NULL;                                      
                                                                      
  if ( type == NULL ) {                                               
    rtems_set_errno_and_return_minus_one( EINVAL );                   
ffc0f124:	48 00 30 25 	bl      ffc12148 <__errno>                     
ffc0f128:	38 00 00 16 	li      r0,22                                  
ffc0f12c:	90 03 00 00 	stw     r0,0(r3)                               
ffc0f130:	38 60 ff ff 	li      r3,-1                                  
ffc0f134:	4b ff ff d0 	b       ffc0f104 <rtems_filesystem_unregister+0xc8>
                                                                      

ffc05a04 <rtems_gxx_key_create>: int rtems_gxx_key_create (__gthread_key_t *key, void (*dtor) (void *)) {
ffc05a04:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc05a08:	7c 08 02 a6 	mflr    r0                                     
ffc05a0c:	93 c1 00 08 	stw     r30,8(r1)                              
ffc05a10:	7c 7e 1b 78 	mr      r30,r3                                 
   * pointer to the buffer that will hold the value of the key itself.
   * We have to to this, because the others functions on this interface
   * deal with the value of the key, as used with the POSIX API.      
   */                                                                 
   /* Do not pull your hair, trust me this works. :-) */              
  __gthread_key_t new_key = (__gthread_key_t) malloc( sizeof( *new_key ) );
ffc05a14:	38 60 00 08 	li      r3,8                                   
  }                                                                   
  return 0;                                                           
}                                                                     
                                                                      
int rtems_gxx_key_create (__gthread_key_t *key, void (*dtor) (void *))
{                                                                     
ffc05a18:	90 01 00 14 	stw     r0,20(r1)                              
ffc05a1c:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc05a20:	7c 9f 23 78 	mr      r31,r4                                 
   * pointer to the buffer that will hold the value of the key itself.
   * We have to to this, because the others functions on this interface
   * deal with the value of the key, as used with the POSIX API.      
   */                                                                 
   /* Do not pull your hair, trust me this works. :-) */              
  __gthread_key_t new_key = (__gthread_key_t) malloc( sizeof( *new_key ) );
ffc05a24:	48 00 05 8d 	bl      ffc05fb0 <malloc>                      
  *key = new_key;                                                     
  new_key->val  = NULL;                                               
ffc05a28:	38 00 00 00 	li      r0,0                                   
   * pointer to the buffer that will hold the value of the key itself.
   * We have to to this, because the others functions on this interface
   * deal with the value of the key, as used with the POSIX API.      
   */                                                                 
   /* Do not pull your hair, trust me this works. :-) */              
  __gthread_key_t new_key = (__gthread_key_t) malloc( sizeof( *new_key ) );
ffc05a2c:	7c 69 1b 78 	mr      r9,r3                                  
  *key = new_key;                                                     
ffc05a30:	90 7e 00 00 	stw     r3,0(r30)                              
      "gxx_wrappers: create key=%x, dtor=%x, new_key=%x\n", key, dtor, new_key
    );                                                                
  #endif                                                              
                                                                      
  /* register with RTEMS the buffer that will hold the key values */  
  status = rtems_task_variable_add( RTEMS_SELF, (void **)new_key, dtor );
ffc05a34:	7d 24 4b 78 	mr      r4,r9                                  
ffc05a38:	38 60 00 00 	li      r3,0                                   
   * deal with the value of the key, as used with the POSIX API.      
   */                                                                 
   /* Do not pull your hair, trust me this works. :-) */              
  __gthread_key_t new_key = (__gthread_key_t) malloc( sizeof( *new_key ) );
  *key = new_key;                                                     
  new_key->val  = NULL;                                               
ffc05a3c:	90 09 00 00 	stw     r0,0(r9)                               
      "gxx_wrappers: create key=%x, dtor=%x, new_key=%x\n", key, dtor, new_key
    );                                                                
  #endif                                                              
                                                                      
  /* register with RTEMS the buffer that will hold the key values */  
  status = rtems_task_variable_add( RTEMS_SELF, (void **)new_key, dtor );
ffc05a40:	7f e5 fb 78 	mr      r5,r31                                 
   */                                                                 
   /* Do not pull your hair, trust me this works. :-) */              
  __gthread_key_t new_key = (__gthread_key_t) malloc( sizeof( *new_key ) );
  *key = new_key;                                                     
  new_key->val  = NULL;                                               
  new_key->dtor = dtor;                                               
ffc05a44:	93 e9 00 04 	stw     r31,4(r9)                              
      "gxx_wrappers: create key=%x, dtor=%x, new_key=%x\n", key, dtor, new_key
    );                                                                
  #endif                                                              
                                                                      
  /* register with RTEMS the buffer that will hold the key values */  
  status = rtems_task_variable_add( RTEMS_SELF, (void **)new_key, dtor );
ffc05a48:	48 00 4c b1 	bl      ffc0a6f8 <rtems_task_variable_add>     
  if ( status == RTEMS_SUCCESSFUL )                                   
ffc05a4c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
    return 0;                                                         
  return -1;                                                          
ffc05a50:	38 60 ff ff 	li      r3,-1                                  
    );                                                                
  #endif                                                              
                                                                      
  /* register with RTEMS the buffer that will hold the key values */  
  status = rtems_task_variable_add( RTEMS_SELF, (void **)new_key, dtor );
  if ( status == RTEMS_SUCCESSFUL )                                   
ffc05a54:	40 9e 00 08 	bne-    cr7,ffc05a5c <rtems_gxx_key_create+0x58><== NEVER TAKEN
    return 0;                                                         
ffc05a58:	38 60 00 00 	li      r3,0                                   
  return -1;                                                          
}                                                                     
ffc05a5c:	80 01 00 14 	lwz     r0,20(r1)                              
ffc05a60:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc05a64:	7c 08 03 a6 	mtlr    r0                                     
ffc05a68:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc05a6c:	38 21 00 10 	addi    r1,r1,16                               
ffc05a70:	4e 80 00 20 	blr                                            
                                                                      

ffc05a84 <rtems_gxx_key_delete>: int rtems_gxx_key_delete (__gthread_key_t key) {
ffc05a84:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc05a88:	7c 08 02 a6 	mflr    r0                                     
  #ifdef DEBUG_GXX_WRAPPERS                                           
    printk( "gxx_wrappers: delete key=%x\n", key );                   
  #endif                                                              
                                                                      
  /* register with RTEMS the buffer that will hold the key values */  
  status = rtems_task_variable_delete( RTEMS_SELF, (void **)key );    
ffc05a8c:	7c 64 1b 78 	mr      r4,r3                                  
  key->val  = 0;                                                      
  return 0;                                                           
}                                                                     
                                                                      
int rtems_gxx_key_delete (__gthread_key_t key)                        
{                                                                     
ffc05a90:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc05a94:	7c 7f 1b 78 	mr      r31,r3                                 
  #ifdef DEBUG_GXX_WRAPPERS                                           
    printk( "gxx_wrappers: delete key=%x\n", key );                   
  #endif                                                              
                                                                      
  /* register with RTEMS the buffer that will hold the key values */  
  status = rtems_task_variable_delete( RTEMS_SELF, (void **)key );    
ffc05a98:	38 60 00 00 	li      r3,0                                   
  key->val  = 0;                                                      
  return 0;                                                           
}                                                                     
                                                                      
int rtems_gxx_key_delete (__gthread_key_t key)                        
{                                                                     
ffc05a9c:	90 01 00 14 	stw     r0,20(r1)                              
  #ifdef DEBUG_GXX_WRAPPERS                                           
    printk( "gxx_wrappers: delete key=%x\n", key );                   
  #endif                                                              
                                                                      
  /* register with RTEMS the buffer that will hold the key values */  
  status = rtems_task_variable_delete( RTEMS_SELF, (void **)key );    
ffc05aa0:	48 00 4d 6d 	bl      ffc0a80c <rtems_task_variable_delete>  
  if ( status == RTEMS_SUCCESSFUL ) {                                 
ffc05aa4:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05aa8:	40 9e 00 14 	bne-    cr7,ffc05abc <rtems_gxx_key_delete+0x38><== NEVER TAKEN
    /* Hmm - hopefully all tasks using this key have gone away... */  
    if ( key ) free( *(void **)key );                                 
ffc05aac:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc05ab0:	41 9e 00 0c 	beq-    cr7,ffc05abc <rtems_gxx_key_delete+0x38><== NEVER TAKEN
ffc05ab4:	80 7f 00 00 	lwz     r3,0(r31)                              
ffc05ab8:	4b ff fd 09 	bl      ffc057c0 <free>                        
    return 0;                                                         
  }                                                                   
  key = NULL;                                                         
  return 0;                                                           
}                                                                     
ffc05abc:	80 01 00 14 	lwz     r0,20(r1)                              
ffc05ac0:	38 60 00 00 	li      r3,0                                   
ffc05ac4:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc05ac8:	38 21 00 10 	addi    r1,r1,16                               
ffc05acc:	7c 08 03 a6 	mtlr    r0                                     
ffc05ad0:	4e 80 00 20 	blr                                            
                                                                      

ffc05c0c <rtems_gxx_mutex_lock>: printk( "gxx_wrappers: mutex init complete =%X\n", *mutex ); #endif } int rtems_gxx_mutex_lock (__gthread_mutex_t *mutex) {
ffc05c0c:	94 21 ff f8 	stwu    r1,-8(r1)                              
ffc05c10:	7c 08 02 a6 	mflr    r0                                     
                                                                      
  #ifdef DEBUG_GXX_WRAPPERS                                           
    printk( "gxx_wrappers: lock mutex=%X\n", *mutex );                
  #endif                                                              
                                                                      
  status = rtems_semaphore_obtain(                                    
ffc05c14:	38 80 00 00 	li      r4,0                                   
    printk( "gxx_wrappers: mutex init complete =%X\n", *mutex );      
  #endif                                                              
}                                                                     
                                                                      
int rtems_gxx_mutex_lock (__gthread_mutex_t *mutex)                   
{                                                                     
ffc05c18:	90 01 00 0c 	stw     r0,12(r1)                              
                                                                      
  #ifdef DEBUG_GXX_WRAPPERS                                           
    printk( "gxx_wrappers: lock mutex=%X\n", *mutex );                
  #endif                                                              
                                                                      
  status = rtems_semaphore_obtain(                                    
ffc05c1c:	38 a0 00 00 	li      r5,0                                   
ffc05c20:	80 63 00 00 	lwz     r3,0(r3)                               
ffc05c24:	48 00 41 75 	bl      ffc09d98 <rtems_semaphore_obtain>      
    *(rtems_id *)mutex,                                               
    RTEMS_WAIT,                                                       
    RTEMS_NO_TIMEOUT                                                  
  );                                                                  
  if ( status == RTEMS_SUCCESSFUL )                                   
ffc05c28:	2f 83 00 00 	cmpwi   cr7,r3,0                               
    return 0;                                                         
  return -1;                                                          
ffc05c2c:	38 60 ff ff 	li      r3,-1                                  
  status = rtems_semaphore_obtain(                                    
    *(rtems_id *)mutex,                                               
    RTEMS_WAIT,                                                       
    RTEMS_NO_TIMEOUT                                                  
  );                                                                  
  if ( status == RTEMS_SUCCESSFUL )                                   
ffc05c30:	40 9e 00 08 	bne-    cr7,ffc05c38 <rtems_gxx_mutex_lock+0x2c><== NEVER TAKEN
    return 0;                                                         
ffc05c34:	38 60 00 00 	li      r3,0                                   
  return -1;                                                          
}                                                                     
ffc05c38:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc05c3c:	38 21 00 08 	addi    r1,r1,8                                
ffc05c40:	7c 08 03 a6 	mtlr    r0                                     
ffc05c44:	4e 80 00 20 	blr                                            
                                                                      

ffc05c7c <rtems_gxx_mutex_trylock>: int rtems_gxx_mutex_trylock (__gthread_mutex_t *mutex) {
ffc05c7c:	94 21 ff f8 	stwu    r1,-8(r1)                              
ffc05c80:	7c 08 02 a6 	mflr    r0                                     
                                                                      
  #ifdef DEBUG_GXX_WRAPPERS                                           
    printk( "gxx_wrappers: trylock mutex=%X\n", *mutex );             
  #endif                                                              
                                                                      
  status = rtems_semaphore_obtain (*(rtems_id *)mutex, RTEMS_NO_WAIT, 0);
ffc05c84:	38 80 00 01 	li      r4,1                                   
    return 0;                                                         
  return -1;                                                          
}                                                                     
                                                                      
int rtems_gxx_mutex_trylock (__gthread_mutex_t *mutex)                
{                                                                     
ffc05c88:	90 01 00 0c 	stw     r0,12(r1)                              
                                                                      
  #ifdef DEBUG_GXX_WRAPPERS                                           
    printk( "gxx_wrappers: trylock mutex=%X\n", *mutex );             
  #endif                                                              
                                                                      
  status = rtems_semaphore_obtain (*(rtems_id *)mutex, RTEMS_NO_WAIT, 0);
ffc05c8c:	38 a0 00 00 	li      r5,0                                   
ffc05c90:	80 63 00 00 	lwz     r3,0(r3)                               
ffc05c94:	48 00 41 05 	bl      ffc09d98 <rtems_semaphore_obtain>      
  if ( status == RTEMS_SUCCESSFUL )                                   
ffc05c98:	2f 83 00 00 	cmpwi   cr7,r3,0                               
    return 0;                                                         
  return -1;                                                          
ffc05c9c:	38 60 ff ff 	li      r3,-1                                  
  #ifdef DEBUG_GXX_WRAPPERS                                           
    printk( "gxx_wrappers: trylock mutex=%X\n", *mutex );             
  #endif                                                              
                                                                      
  status = rtems_semaphore_obtain (*(rtems_id *)mutex, RTEMS_NO_WAIT, 0);
  if ( status == RTEMS_SUCCESSFUL )                                   
ffc05ca0:	40 9e 00 08 	bne-    cr7,ffc05ca8 <rtems_gxx_mutex_trylock+0x2c><== NEVER TAKEN
    return 0;                                                         
ffc05ca4:	38 60 00 00 	li      r3,0                                   
  return -1;                                                          
}                                                                     
ffc05ca8:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc05cac:	38 21 00 08 	addi    r1,r1,8                                
ffc05cb0:	7c 08 03 a6 	mtlr    r0                                     
ffc05cb4:	4e 80 00 20 	blr                                            
                                                                      

ffc05cb8 <rtems_gxx_mutex_unlock>: int rtems_gxx_mutex_unlock (__gthread_mutex_t *mutex) {
ffc05cb8:	94 21 ff f8 	stwu    r1,-8(r1)                              
ffc05cbc:	7c 08 02 a6 	mflr    r0                                     
ffc05cc0:	90 01 00 0c 	stw     r0,12(r1)                              
                                                                      
  #ifdef DEBUG_GXX_WRAPPERS                                           
    printk( "gxx_wrappers: unlock mutex=%X\n", *mutex );              
  #endif                                                              
                                                                      
  status = rtems_semaphore_release( *(rtems_id *)mutex );             
ffc05cc4:	80 63 00 00 	lwz     r3,0(r3)                               
ffc05cc8:	48 00 42 59 	bl      ffc09f20 <rtems_semaphore_release>     
  if ( status == RTEMS_SUCCESSFUL )                                   
ffc05ccc:	2f 83 00 00 	cmpwi   cr7,r3,0                               
    return 0;                                                         
  return -1;                                                          
ffc05cd0:	38 60 ff ff 	li      r3,-1                                  
  #ifdef DEBUG_GXX_WRAPPERS                                           
    printk( "gxx_wrappers: unlock mutex=%X\n", *mutex );              
  #endif                                                              
                                                                      
  status = rtems_semaphore_release( *(rtems_id *)mutex );             
  if ( status == RTEMS_SUCCESSFUL )                                   
ffc05cd4:	40 9e 00 08 	bne-    cr7,ffc05cdc <rtems_gxx_mutex_unlock+0x24><== NEVER TAKEN
    return 0;                                                         
ffc05cd8:	38 60 00 00 	li      r3,0                                   
  return -1;                                                          
}                                                                     
ffc05cdc:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc05ce0:	38 21 00 08 	addi    r1,r1,8                                
ffc05ce4:	7c 08 03 a6 	mtlr    r0                                     
ffc05ce8:	4e 80 00 20 	blr                                            
                                                                      

ffc05928 <rtems_gxx_once>: /* uncomment this if you need to debug this interface */ /*#define DEBUG_GXX_WRAPPERS 1*/ int rtems_gxx_once(__gthread_once_t *once, void (*func) (void)) {
ffc05928:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc0592c:	7c 08 02 a6 	mflr    r0                                     
ffc05930:	90 01 00 2c 	stw     r0,44(r1)                              
  #ifdef DEBUG_GXX_WRAPPERS                                           
    printk( "gxx_wrappers: once=%x, func=%x\n", *once, func );        
  #endif                                                              
                                                                      
  if ( *(volatile __gthread_once_t *)once == 0 ) {                    
ffc05934:	80 03 00 00 	lwz     r0,0(r3)                               
                                                                      
/* uncomment this if you need to debug this interface */              
/*#define DEBUG_GXX_WRAPPERS 1*/                                      
                                                                      
int rtems_gxx_once(__gthread_once_t *once, void (*func) (void))       
{                                                                     
ffc05938:	93 c1 00 20 	stw     r30,32(r1)                             
ffc0593c:	7c 9e 23 78 	mr      r30,r4                                 
  #ifdef DEBUG_GXX_WRAPPERS                                           
    printk( "gxx_wrappers: once=%x, func=%x\n", *once, func );        
  #endif                                                              
                                                                      
  if ( *(volatile __gthread_once_t *)once == 0 ) {                    
ffc05940:	2f 80 00 00 	cmpwi   cr7,r0,0                               
                                                                      
/* uncomment this if you need to debug this interface */              
/*#define DEBUG_GXX_WRAPPERS 1*/                                      
                                                                      
int rtems_gxx_once(__gthread_once_t *once, void (*func) (void))       
{                                                                     
ffc05944:	93 e1 00 24 	stw     r31,36(r1)                             
ffc05948:	7c 7f 1b 78 	mr      r31,r3                                 
ffc0594c:	93 a1 00 1c 	stw     r29,28(r1)                             
  #ifdef DEBUG_GXX_WRAPPERS                                           
    printk( "gxx_wrappers: once=%x, func=%x\n", *once, func );        
  #endif                                                              
                                                                      
  if ( *(volatile __gthread_once_t *)once == 0 ) {                    
ffc05950:	41 9e 00 24 	beq-    cr7,ffc05974 <rtems_gxx_once+0x4c>     
    rtems_task_mode(saveMode, RTEMS_PREEMPT_MASK, &saveMode);         
    if ( o == 0 )                                                     
      (*func)();                                                      
  }                                                                   
  return 0;                                                           
}                                                                     
ffc05954:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc05958:	38 60 00 00 	li      r3,0                                   
ffc0595c:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc05960:	7c 08 03 a6 	mtlr    r0                                     
ffc05964:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc05968:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc0596c:	38 21 00 28 	addi    r1,r1,40                               
ffc05970:	4e 80 00 20 	blr                                            
                                                                      
  if ( *(volatile __gthread_once_t *)once == 0 ) {                    
    rtems_mode saveMode;                                              
    __gthread_once_t o;                                               
                                                                      
    rtems_task_mode(RTEMS_NO_PREEMPT, RTEMS_PREEMPT_MASK, &saveMode); 
ffc05974:	3b a1 00 08 	addi    r29,r1,8                               
ffc05978:	38 60 01 00 	li      r3,256                                 
ffc0597c:	38 80 01 00 	li      r4,256                                 
ffc05980:	7f a5 eb 78 	mr      r5,r29                                 
ffc05984:	48 00 4a 39 	bl      ffc0a3bc <rtems_task_mode>             
    if ( (o = *(volatile __gthread_once_t *)once) == 0 ) {            
ffc05988:	80 1f 00 00 	lwz     r0,0(r31)                              
ffc0598c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc05990:	40 9e 00 44 	bne-    cr7,ffc059d4 <rtems_gxx_once+0xac>     <== NEVER TAKEN
      *(volatile __gthread_once_t *)once = 1;                         
ffc05994:	38 00 00 01 	li      r0,1                                   
    }                                                                 
    rtems_task_mode(saveMode, RTEMS_PREEMPT_MASK, &saveMode);         
ffc05998:	80 61 00 08 	lwz     r3,8(r1)                               
    rtems_mode saveMode;                                              
    __gthread_once_t o;                                               
                                                                      
    rtems_task_mode(RTEMS_NO_PREEMPT, RTEMS_PREEMPT_MASK, &saveMode); 
    if ( (o = *(volatile __gthread_once_t *)once) == 0 ) {            
      *(volatile __gthread_once_t *)once = 1;                         
ffc0599c:	90 1f 00 00 	stw     r0,0(r31)                              
    }                                                                 
    rtems_task_mode(saveMode, RTEMS_PREEMPT_MASK, &saveMode);         
ffc059a0:	7f a5 eb 78 	mr      r5,r29                                 
ffc059a4:	38 80 01 00 	li      r4,256                                 
ffc059a8:	48 00 4a 15 	bl      ffc0a3bc <rtems_task_mode>             
    if ( o == 0 )                                                     
      (*func)();                                                      
ffc059ac:	7f c9 03 a6 	mtctr   r30                                    
ffc059b0:	4e 80 04 21 	bctrl                                          
  }                                                                   
  return 0;                                                           
}                                                                     
ffc059b4:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc059b8:	38 60 00 00 	li      r3,0                                   
ffc059bc:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc059c0:	7c 08 03 a6 	mtlr    r0                                     
ffc059c4:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc059c8:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc059cc:	38 21 00 28 	addi    r1,r1,40                               
ffc059d0:	4e 80 00 20 	blr                                            
                                                                      
    rtems_task_mode(RTEMS_NO_PREEMPT, RTEMS_PREEMPT_MASK, &saveMode); 
    if ( (o = *(volatile __gthread_once_t *)once) == 0 ) {            
      *(volatile __gthread_once_t *)once = 1;                         
    }                                                                 
    rtems_task_mode(saveMode, RTEMS_PREEMPT_MASK, &saveMode);         
ffc059d4:	80 61 00 08 	lwz     r3,8(r1)                               <== NOT EXECUTED
ffc059d8:	7f a5 eb 78 	mr      r5,r29                                 <== NOT EXECUTED
ffc059dc:	38 80 01 00 	li      r4,256                                 <== NOT EXECUTED
ffc059e0:	48 00 49 dd 	bl      ffc0a3bc <rtems_task_mode>             <== NOT EXECUTED
    if ( o == 0 )                                                     
      (*func)();                                                      
  }                                                                   
  return 0;                                                           
}                                                                     
ffc059e4:	80 01 00 2c 	lwz     r0,44(r1)                              <== NOT EXECUTED
ffc059e8:	38 60 00 00 	li      r3,0                                   <== NOT EXECUTED
ffc059ec:	83 a1 00 1c 	lwz     r29,28(r1)                             <== NOT EXECUTED
ffc059f0:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc059f4:	83 c1 00 20 	lwz     r30,32(r1)                             <== NOT EXECUTED
ffc059f8:	83 e1 00 24 	lwz     r31,36(r1)                             <== NOT EXECUTED
ffc059fc:	38 21 00 28 	addi    r1,r1,40                               <== NOT EXECUTED
ffc05a00:	4e 80 00 20 	blr                                            <== NOT EXECUTED
                                                                      

ffc05b64 <rtems_gxx_setspecific>: #endif return p; } int rtems_gxx_setspecific(__gthread_key_t key, const void *ptr) {
ffc05b64:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc05b68:	7c 08 02 a6 	mflr    r0                                     
ffc05b6c:	90 01 00 14 	stw     r0,20(r1)                              
ffc05b70:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc05b74:	7c 7f 1b 78 	mr      r31,r3                                 
      rtems_task_self()                                               
      );                                                              
  #endif                                                              
                                                                      
  /* register with RTEMS the buffer that will hold the key values */  
  status = rtems_task_variable_add( RTEMS_SELF, (void **)key, key->dtor );
ffc05b78:	80 a3 00 04 	lwz     r5,4(r3)                               
ffc05b7c:	38 60 00 00 	li      r3,0                                   
  #endif                                                              
  return p;                                                           
}                                                                     
                                                                      
int rtems_gxx_setspecific(__gthread_key_t key, const void *ptr)       
{                                                                     
ffc05b80:	93 c1 00 08 	stw     r30,8(r1)                              
ffc05b84:	7c 9e 23 78 	mr      r30,r4                                 
      rtems_task_self()                                               
      );                                                              
  #endif                                                              
                                                                      
  /* register with RTEMS the buffer that will hold the key values */  
  status = rtems_task_variable_add( RTEMS_SELF, (void **)key, key->dtor );
ffc05b88:	7f e4 fb 78 	mr      r4,r31                                 
ffc05b8c:	48 00 4b 6d 	bl      ffc0a6f8 <rtems_task_variable_add>     
  if ( status == RTEMS_SUCCESSFUL ) {                                 
ffc05b90:	2f 83 00 00 	cmpwi   cr7,r3,0                               
    /* now let's set the proper value */                              
    key->val =  (void *)ptr;                                          
    return 0;                                                         
  }                                                                   
  return -1;                                                          
ffc05b94:	38 60 ff ff 	li      r3,-1                                  
      );                                                              
  #endif                                                              
                                                                      
  /* register with RTEMS the buffer that will hold the key values */  
  status = rtems_task_variable_add( RTEMS_SELF, (void **)key, key->dtor );
  if ( status == RTEMS_SUCCESSFUL ) {                                 
ffc05b98:	40 9e 00 0c 	bne-    cr7,ffc05ba4 <rtems_gxx_setspecific+0x40><== NEVER TAKEN
    /* now let's set the proper value */                              
    key->val =  (void *)ptr;                                          
ffc05b9c:	93 df 00 00 	stw     r30,0(r31)                             
    return 0;                                                         
ffc05ba0:	38 60 00 00 	li      r3,0                                   
  }                                                                   
  return -1;                                                          
}                                                                     
ffc05ba4:	80 01 00 14 	lwz     r0,20(r1)                              
ffc05ba8:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc05bac:	7c 08 03 a6 	mtlr    r0                                     
ffc05bb0:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc05bb4:	38 21 00 10 	addi    r1,r1,16                               
ffc05bb8:	4e 80 00 20 	blr                                            
                                                                      

ffc09c04 <rtems_heap_allocate_aligned_with_boundary>: void *rtems_heap_allocate_aligned_with_boundary( size_t size, uintptr_t alignment, uintptr_t boundary ) {
ffc09c04:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc09c08:	7c 08 02 a6 	mflr    r0                                     
  if (                                                                
ffc09c0c:	3d 20 00 00 	lis     r9,0                                   
void *rtems_heap_allocate_aligned_with_boundary(                      
  size_t size,                                                        
  uintptr_t alignment,                                                
  uintptr_t boundary                                                  
)                                                                     
{                                                                     
ffc09c10:	90 01 00 1c 	stw     r0,28(r1)                              
  if (                                                                
ffc09c14:	80 09 28 14 	lwz     r0,10260(r9)                           
void *rtems_heap_allocate_aligned_with_boundary(                      
  size_t size,                                                        
  uintptr_t alignment,                                                
  uintptr_t boundary                                                  
)                                                                     
{                                                                     
ffc09c18:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc09c1c:	7c 7d 1b 78 	mr      r29,r3                                 
  if (                                                                
ffc09c20:	2f 80 00 03 	cmpwi   cr7,r0,3                               
void *rtems_heap_allocate_aligned_with_boundary(                      
  size_t size,                                                        
  uintptr_t alignment,                                                
  uintptr_t boundary                                                  
)                                                                     
{                                                                     
ffc09c24:	93 c1 00 10 	stw     r30,16(r1)                             
ffc09c28:	7c 9e 23 78 	mr      r30,r4                                 
ffc09c2c:	93 e1 00 14 	stw     r31,20(r1)                             
ffc09c30:	7c bf 2b 78 	mr      r31,r5                                 
  if (                                                                
ffc09c34:	41 9e 00 3c 	beq-    cr7,ffc09c70 <rtems_heap_allocate_aligned_with_boundary+0x6c><== ALWAYS TAKEN
      && !malloc_is_system_state_OK()                                 
  ) {                                                                 
    return NULL;                                                      
  }                                                                   
                                                                      
  malloc_deferred_frees_process();                                    
ffc09c38:	4b ff ea 2d 	bl      ffc08664 <malloc_deferred_frees_process>
                                                                      
  /* FIXME: Statistics, boundary checks */                            
                                                                      
  return _Protected_heap_Allocate_aligned_with_boundary(              
ffc09c3c:	3d 20 00 00 	lis     r9,0                                   
ffc09c40:	80 69 26 dc 	lwz     r3,9948(r9)                            
ffc09c44:	7f a4 eb 78 	mr      r4,r29                                 
ffc09c48:	7f c5 f3 78 	mr      r5,r30                                 
ffc09c4c:	7f e6 fb 78 	mr      r6,r31                                 
ffc09c50:	48 00 65 a9 	bl      ffc101f8 <_Protected_heap_Allocate_aligned_with_boundary>
    RTEMS_Malloc_Heap,                                                
    size,                                                             
    alignment,                                                        
    boundary                                                          
  );                                                                  
}                                                                     
ffc09c54:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc09c58:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc09c5c:	7c 08 03 a6 	mtlr    r0                                     
ffc09c60:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc09c64:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc09c68:	38 21 00 18 	addi    r1,r1,24                               
ffc09c6c:	4e 80 00 20 	blr                                            
  uintptr_t boundary                                                  
)                                                                     
{                                                                     
  if (                                                                
    _System_state_Is_up( _System_state_Get() )                        
      && !malloc_is_system_state_OK()                                 
ffc09c70:	4b ff e9 ad 	bl      ffc0861c <malloc_is_system_state_OK>   
ffc09c74:	2f 83 00 00 	cmpwi   cr7,r3,0                               
  ) {                                                                 
    return NULL;                                                      
ffc09c78:	38 60 00 00 	li      r3,0                                   
  uintptr_t boundary                                                  
)                                                                     
{                                                                     
  if (                                                                
    _System_state_Is_up( _System_state_Get() )                        
      && !malloc_is_system_state_OK()                                 
ffc09c7c:	40 9e ff bc 	bne+    cr7,ffc09c38 <rtems_heap_allocate_aligned_with_boundary+0x34>
ffc09c80:	4b ff ff d4 	b       ffc09c54 <rtems_heap_allocate_aligned_with_boundary+0x50>
                                                                      

ffc04750 <rtems_io_lookup_name>: rtems_status_code rtems_io_lookup_name( const char *name, rtems_driver_name_t *device_info ) {
ffc04750:	94 21 ff c0 	stwu    r1,-64(r1)                             
ffc04754:	7c 08 02 a6 	mflr    r0                                     
ffc04758:	93 61 00 2c 	stw     r27,44(r1)                             
ffc0475c:	90 01 00 44 	stw     r0,68(r1)                              
ffc04760:	93 81 00 30 	stw     r28,48(r1)                             
ffc04764:	93 a1 00 34 	stw     r29,52(r1)                             
ffc04768:	7c 9d 23 78 	mr      r29,r4                                 
ffc0476c:	93 c1 00 38 	stw     r30,56(r1)                             
ffc04770:	7c 7e 1b 78 	mr      r30,r3                                 
ffc04774:	93 e1 00 3c 	stw     r31,60(r1)                             
  IMFS_jnode_t                      *the_jnode;                       
  rtems_filesystem_location_info_t   loc;                             
  int                                result;                          
  rtems_filesystem_node_types_t      node_type;                       
                                                                      
  result = rtems_filesystem_evaluate_path(                            
ffc04778:	48 00 ec 59 	bl      ffc133d0 <strlen>                      
ffc0477c:	3b e1 00 08 	addi    r31,r1,8                               
ffc04780:	7c 64 1b 78 	mr      r4,r3                                  
ffc04784:	38 a0 00 00 	li      r5,0                                   
ffc04788:	7f e6 fb 78 	mr      r6,r31                                 
ffc0478c:	38 e0 00 01 	li      r7,1                                   
ffc04790:	7f c3 f3 78 	mr      r3,r30                                 
ffc04794:	48 00 03 61 	bl      ffc04af4 <rtems_filesystem_evaluate_path>
      name, strlen( name ), 0x00, &loc, true );                       
  the_jnode = loc.node_access;                                        
                                                                      
  node_type = (*loc.ops->node_type_h)( &loc );                        
ffc04798:	81 21 00 14 	lwz     r9,20(r1)                              
  IMFS_jnode_t                      *the_jnode;                       
  rtems_filesystem_location_info_t   loc;                             
  int                                result;                          
  rtems_filesystem_node_types_t      node_type;                       
                                                                      
  result = rtems_filesystem_evaluate_path(                            
ffc0479c:	7c 7c 1b 78 	mr      r28,r3                                 
      name, strlen( name ), 0x00, &loc, true );                       
  the_jnode = loc.node_access;                                        
ffc047a0:	83 61 00 08 	lwz     r27,8(r1)                              
                                                                      
  node_type = (*loc.ops->node_type_h)( &loc );                        
ffc047a4:	80 09 00 10 	lwz     r0,16(r9)                              
ffc047a8:	7f e3 fb 78 	mr      r3,r31                                 
ffc047ac:	7c 09 03 a6 	mtctr   r0                                     
ffc047b0:	4e 80 04 21 	bctrl                                          
                                                                      
  if ( (result != 0) || node_type != RTEMS_FILESYSTEM_DEVICE ) {      
ffc047b4:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
ffc047b8:	40 9e 00 0c 	bne-    cr7,ffc047c4 <rtems_io_lookup_name+0x74><== NEVER TAKEN
ffc047bc:	2f 83 00 02 	cmpwi   cr7,r3,2                               
ffc047c0:	41 9e 00 34 	beq-    cr7,ffc047f4 <rtems_io_lookup_name+0xa4>
    rtems_filesystem_freenode( &loc );                                
ffc047c4:	7f e3 fb 78 	mr      r3,r31                                 
ffc047c8:	48 00 04 89 	bl      ffc04c50 <rtems_filesystem_freenode>   
    return RTEMS_UNSATISFIED;                                         
ffc047cc:	38 60 00 0d 	li      r3,13                                  
  device_info->minor              = the_jnode->info.device.minor;     
                                                                      
  rtems_filesystem_freenode( &loc );                                  
                                                                      
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
ffc047d0:	80 01 00 44 	lwz     r0,68(r1)                              
ffc047d4:	83 61 00 2c 	lwz     r27,44(r1)                             
ffc047d8:	7c 08 03 a6 	mtlr    r0                                     
ffc047dc:	83 81 00 30 	lwz     r28,48(r1)                             
ffc047e0:	83 a1 00 34 	lwz     r29,52(r1)                             
ffc047e4:	83 c1 00 38 	lwz     r30,56(r1)                             
ffc047e8:	83 e1 00 3c 	lwz     r31,60(r1)                             
ffc047ec:	38 21 00 40 	addi    r1,r1,64                               
ffc047f0:	4e 80 00 20 	blr                                            
  if ( (result != 0) || node_type != RTEMS_FILESYSTEM_DEVICE ) {      
    rtems_filesystem_freenode( &loc );                                
    return RTEMS_UNSATISFIED;                                         
  }                                                                   
                                                                      
  device_info->device_name        = (char *) name;                    
ffc047f4:	93 dd 00 00 	stw     r30,0(r29)                             
  device_info->device_name_length = strlen( name );                   
ffc047f8:	7f c3 f3 78 	mr      r3,r30                                 
ffc047fc:	48 00 eb d5 	bl      ffc133d0 <strlen>                      
ffc04800:	90 7d 00 04 	stw     r3,4(r29)                              
  device_info->major              = the_jnode->info.device.major;     
  device_info->minor              = the_jnode->info.device.minor;     
                                                                      
  rtems_filesystem_freenode( &loc );                                  
ffc04804:	7f e3 fb 78 	mr      r3,r31                                 
    return RTEMS_UNSATISFIED;                                         
  }                                                                   
                                                                      
  device_info->device_name        = (char *) name;                    
  device_info->device_name_length = strlen( name );                   
  device_info->major              = the_jnode->info.device.major;     
ffc04808:	80 1b 00 50 	lwz     r0,80(r27)                             
ffc0480c:	90 1d 00 08 	stw     r0,8(r29)                              
  device_info->minor              = the_jnode->info.device.minor;     
ffc04810:	80 1b 00 54 	lwz     r0,84(r27)                             
ffc04814:	90 1d 00 0c 	stw     r0,12(r29)                             
                                                                      
  rtems_filesystem_freenode( &loc );                                  
ffc04818:	48 00 04 39 	bl      ffc04c50 <rtems_filesystem_freenode>   
                                                                      
  return RTEMS_SUCCESSFUL;                                            
ffc0481c:	38 60 00 00 	li      r3,0                                   
ffc04820:	4b ff ff b0 	b       ffc047d0 <rtems_io_lookup_name+0x80>   
                                                                      

ffc0ae54 <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 ) {
ffc0ae54:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc0ae58:	7c 08 02 a6 	mflr    r0                                     
  rtems_device_major_number major_limit = _IO_Number_of_drivers;      
                                                                      
  if ( rtems_interrupt_is_in_progress() )                             
ffc0ae5c:	3d 20 00 00 	lis     r9,0                                   
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                  
)                                                                     
{                                                                     
ffc0ae60:	90 01 00 14 	stw     r0,20(r1)                              
  rtems_device_major_number major_limit = _IO_Number_of_drivers;      
                                                                      
  if ( rtems_interrupt_is_in_progress() )                             
ffc0ae64:	80 09 2e 2c 	lwz     r0,11820(r9)                           
  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;      
ffc0ae68:	3d 20 00 00 	lis     r9,0                                   
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                  
)                                                                     
{                                                                     
ffc0ae6c:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc0ae70:	7c 7f 1b 78 	mr      r31,r3                                 
  rtems_device_major_number major_limit = _IO_Number_of_drivers;      
                                                                      
  if ( rtems_interrupt_is_in_progress() )                             
ffc0ae74:	2f 80 00 00 	cmpwi   cr7,r0,0                               
    return RTEMS_CALLED_FROM_ISR;                                     
ffc0ae78:	38 60 00 12 	li      r3,18                                  
  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;      
ffc0ae7c:	80 09 27 9c 	lwz     r0,10140(r9)                           
                                                                      
  if ( rtems_interrupt_is_in_progress() )                             
ffc0ae80:	40 9e 00 ec 	bne-    cr7,ffc0af6c <rtems_io_register_driver+0x118>
    return RTEMS_CALLED_FROM_ISR;                                     
                                                                      
  if ( registered_major == NULL )                                     
ffc0ae84:	2f 85 00 00 	cmpwi   cr7,r5,0                               
    return RTEMS_INVALID_ADDRESS;                                     
ffc0ae88:	38 60 00 09 	li      r3,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 )                                     
ffc0ae8c:	41 9e 00 e0 	beq-    cr7,ffc0af6c <rtems_io_register_driver+0x118>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  /* Set it to an invalid value */                                    
  *registered_major = major_limit;                                    
                                                                      
  if ( driver_table == NULL )                                         
ffc0ae90:	2f 84 00 00 	cmpwi   cr7,r4,0                               
                                                                      
  if ( registered_major == NULL )                                     
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  /* Set it to an invalid value */                                    
  *registered_major = major_limit;                                    
ffc0ae94:	90 05 00 00 	stw     r0,0(r5)                               
                                                                      
  if ( driver_table == NULL )                                         
ffc0ae98:	41 9e 00 d4 	beq-    cr7,ffc0af6c <rtems_io_register_driver+0x118>
                                                                      
static inline bool rtems_io_is_empty_table(                           
  const rtems_driver_address_table *table                             
)                                                                     
{                                                                     
  return table->initialization_entry == NULL && table->open_entry == NULL;
ffc0ae9c:	81 64 00 00 	lwz     r11,0(r4)                              
ffc0aea0:	2f 8b 00 00 	cmpwi   cr7,r11,0                              
ffc0aea4:	41 9e 01 14 	beq-    cr7,ffc0afb8 <rtems_io_register_driver+0x164>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( rtems_io_is_empty_table( driver_table ) )                      
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( major >= major_limit )                                         
ffc0aea8:	7f 80 f8 40 	cmplw   cr7,r0,r31                             
    return RTEMS_INVALID_NUMBER;                                      
ffc0aeac:	38 60 00 0a 	li      r3,10                                  
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( rtems_io_is_empty_table( driver_table ) )                      
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( major >= major_limit )                                         
ffc0aeb0:	40 9d 00 bc 	ble-    cr7,ffc0af6c <rtems_io_register_driver+0x118>
	rtems_fatal_error_occurred( 99 );                                    
      }                                                               
    }                                                                 
  #endif                                                              
                                                                      
  _Thread_Dispatch_disable_level += 1;                                
ffc0aeb4:	3d 60 00 00 	lis     r11,0                                  
ffc0aeb8:	81 4b 27 48 	lwz     r10,10056(r11)                         
ffc0aebc:	38 0a 00 01 	addi    r0,r10,1                               
ffc0aec0:	90 0b 27 48 	stw     r0,10056(r11)                          
    return RTEMS_INVALID_NUMBER;                                      
                                                                      
  _Thread_Disable_dispatch();                                         
                                                                      
  if ( major == 0 ) {                                                 
ffc0aec4:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc0aec8:	40 9e 00 b8 	bne-    cr7,ffc0af80 <rtems_io_register_driver+0x12c>
                                                                      
static rtems_status_code rtems_io_obtain_major_number(                
  rtems_device_major_number *major                                    
)                                                                     
{                                                                     
  rtems_device_major_number n = _IO_Number_of_drivers;                
ffc0aecc:	81 49 27 9c 	lwz     r10,10140(r9)                          
  rtems_device_major_number m = 0;                                    
                                                                      
  /* major is error checked by caller */                              
                                                                      
  for ( m = 0; m < n; ++m ) {                                         
ffc0aed0:	2f 8a 00 00 	cmpwi   cr7,r10,0                              
ffc0aed4:	41 9e 00 f4 	beq-    cr7,ffc0afc8 <rtems_io_register_driver+0x174><== NEVER TAKEN
ffc0aed8:	3d 60 00 00 	lis     r11,0                                  
ffc0aedc:	7d 49 03 a6 	mtctr   r10                                    
ffc0aee0:	81 2b 27 a0 	lwz     r9,10144(r11)                          
ffc0aee4:	40 be 00 14 	bne+    cr7,ffc0aef8 <rtems_io_register_driver+0xa4><== ALWAYS TAKEN
ffc0aee8:	48 00 01 04 	b       ffc0afec <rtems_io_register_driver+0x198><== NOT EXECUTED
ffc0aeec:	3b ff 00 01 	addi    r31,r31,1                              
ffc0aef0:	39 29 00 18 	addi    r9,r9,24                               
ffc0aef4:	42 40 00 1c 	bdz-    ffc0af10 <rtems_io_register_driver+0xbc>
                                                                      
static inline bool rtems_io_is_empty_table(                           
  const rtems_driver_address_table *table                             
)                                                                     
{                                                                     
  return table->initialization_entry == NULL && table->open_entry == NULL;
ffc0aef8:	80 09 00 00 	lwz     r0,0(r9)                               
ffc0aefc:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0af00:	40 9e ff ec 	bne+    cr7,ffc0aeec <rtems_io_register_driver+0x98>
ffc0af04:	80 09 00 04 	lwz     r0,4(r9)                               
ffc0af08:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0af0c:	40 9e ff e0 	bne+    cr7,ffc0aeec <rtems_io_register_driver+0x98>
  }                                                                   
                                                                      
  /* Assigns invalid value in case of failure */                      
  *major = m;                                                         
                                                                      
  if ( m != n )                                                       
ffc0af10:	7f 8a f8 00 	cmpw    cr7,r10,r31                            
    if ( rtems_io_is_empty_table( table ) )                           
      break;                                                          
  }                                                                   
                                                                      
  /* Assigns invalid value in case of failure */                      
  *major = m;                                                         
ffc0af14:	93 e5 00 00 	stw     r31,0(r5)                              
                                                                      
  if ( m != n )                                                       
ffc0af18:	1c 1f 00 18 	mulli   r0,r31,24                              
ffc0af1c:	41 9e 00 b0 	beq-    cr7,ffc0afcc <rtems_io_register_driver+0x178>
    }                                                                 
                                                                      
    *registered_major = major;                                        
  }                                                                   
                                                                      
  _IO_Driver_address_table [major] = *driver_table;                   
ffc0af20:	81 6b 27 a0 	lwz     r11,10144(r11)                         
ffc0af24:	80 c4 00 00 	lwz     r6,0(r4)                               
ffc0af28:	80 e4 00 04 	lwz     r7,4(r4)                               
ffc0af2c:	7d 2b 02 14 	add     r9,r11,r0                              
ffc0af30:	81 04 00 08 	lwz     r8,8(r4)                               
ffc0af34:	81 44 00 0c 	lwz     r10,12(r4)                             
ffc0af38:	7c cb 01 2e 	stwx    r6,r11,r0                              
ffc0af3c:	90 e9 00 04 	stw     r7,4(r9)                               
ffc0af40:	91 09 00 08 	stw     r8,8(r9)                               
ffc0af44:	91 49 00 0c 	stw     r10,12(r9)                             
ffc0af48:	81 64 00 10 	lwz     r11,16(r4)                             
ffc0af4c:	80 04 00 14 	lwz     r0,20(r4)                              
ffc0af50:	91 69 00 10 	stw     r11,16(r9)                             
ffc0af54:	90 09 00 14 	stw     r0,20(r9)                              
                                                                      
  _Thread_Enable_dispatch();                                          
ffc0af58:	48 00 21 bd 	bl      ffc0d114 <_Thread_Enable_dispatch>     
                                                                      
  return rtems_io_initialize( major, 0, NULL );                       
ffc0af5c:	7f e3 fb 78 	mr      r3,r31                                 
ffc0af60:	38 80 00 00 	li      r4,0                                   
ffc0af64:	38 a0 00 00 	li      r5,0                                   
ffc0af68:	48 00 98 dd 	bl      ffc14844 <rtems_io_initialize>         
}                                                                     
ffc0af6c:	80 01 00 14 	lwz     r0,20(r1)                              
ffc0af70:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0af74:	38 21 00 10 	addi    r1,r1,16                               
ffc0af78:	7c 08 03 a6 	mtlr    r0                                     
ffc0af7c:	4e 80 00 20 	blr                                            
      _Thread_Enable_dispatch();                                      
      return sc;                                                      
    }                                                                 
    major = *registered_major;                                        
  } else {                                                            
    rtems_driver_address_table *const table = _IO_Driver_address_table + major;
ffc0af80:	3d 60 00 00 	lis     r11,0                                  
ffc0af84:	1c 1f 00 18 	mulli   r0,r31,24                              
ffc0af88:	81 2b 27 a0 	lwz     r9,10144(r11)                          
                                                                      
static inline bool rtems_io_is_empty_table(                           
  const rtems_driver_address_table *table                             
)                                                                     
{                                                                     
  return table->initialization_entry == NULL && table->open_entry == NULL;
ffc0af8c:	7d 49 00 2e 	lwzx    r10,r9,r0                              
      _Thread_Enable_dispatch();                                      
      return sc;                                                      
    }                                                                 
    major = *registered_major;                                        
  } else {                                                            
    rtems_driver_address_table *const table = _IO_Driver_address_table + major;
ffc0af90:	7d 29 02 14 	add     r9,r9,r0                               
                                                                      
static inline bool rtems_io_is_empty_table(                           
  const rtems_driver_address_table *table                             
)                                                                     
{                                                                     
  return table->initialization_entry == NULL && table->open_entry == NULL;
ffc0af94:	2f 8a 00 00 	cmpwi   cr7,r10,0                              
ffc0af98:	41 9e 00 40 	beq-    cr7,ffc0afd8 <rtems_io_register_driver+0x184>
    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();                                      
ffc0af9c:	48 00 21 79 	bl      ffc0d114 <_Thread_Enable_dispatch>     
  _IO_Driver_address_table [major] = *driver_table;                   
                                                                      
  _Thread_Enable_dispatch();                                          
                                                                      
  return rtems_io_initialize( major, 0, NULL );                       
}                                                                     
ffc0afa0:	80 01 00 14 	lwz     r0,20(r1)                              
  } else {                                                            
    rtems_driver_address_table *const table = _IO_Driver_address_table + major;
                                                                      
    if ( !rtems_io_is_empty_table( table ) ) {                        
      _Thread_Enable_dispatch();                                      
      return RTEMS_RESOURCE_IN_USE;                                   
ffc0afa4:	38 60 00 0c 	li      r3,12                                  
  _IO_Driver_address_table [major] = *driver_table;                   
                                                                      
  _Thread_Enable_dispatch();                                          
                                                                      
  return rtems_io_initialize( major, 0, NULL );                       
}                                                                     
ffc0afa8:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0afac:	7c 08 03 a6 	mtlr    r0                                     
ffc0afb0:	38 21 00 10 	addi    r1,r1,16                               
ffc0afb4:	4e 80 00 20 	blr                                            
                                                                      
static inline bool rtems_io_is_empty_table(                           
  const rtems_driver_address_table *table                             
)                                                                     
{                                                                     
  return table->initialization_entry == NULL && table->open_entry == NULL;
ffc0afb8:	81 64 00 04 	lwz     r11,4(r4)                              
ffc0afbc:	2f 8b 00 00 	cmpwi   cr7,r11,0                              
ffc0afc0:	40 9e fe e8 	bne+    cr7,ffc0aea8 <rtems_io_register_driver+0x54>
ffc0afc4:	4b ff ff a8 	b       ffc0af6c <rtems_io_register_driver+0x118>
    if ( rtems_io_is_empty_table( table ) )                           
      break;                                                          
  }                                                                   
                                                                      
  /* Assigns invalid value in case of failure */                      
  *major = m;                                                         
ffc0afc8:	93 e5 00 00 	stw     r31,0(r5)                              <== NOT EXECUTED
                                                                      
  if ( major == 0 ) {                                                 
    rtems_status_code sc = rtems_io_obtain_major_number( registered_major );
                                                                      
    if ( sc != RTEMS_SUCCESSFUL ) {                                   
      _Thread_Enable_dispatch();                                      
ffc0afcc:	48 00 21 49 	bl      ffc0d114 <_Thread_Enable_dispatch>     
  *major = m;                                                         
                                                                      
  if ( m != n )                                                       
    return RTEMS_SUCCESSFUL;                                          
                                                                      
  return RTEMS_TOO_MANY;                                              
ffc0afd0:	38 60 00 05 	li      r3,5                                   
  if ( major == 0 ) {                                                 
    rtems_status_code sc = rtems_io_obtain_major_number( registered_major );
                                                                      
    if ( sc != RTEMS_SUCCESSFUL ) {                                   
      _Thread_Enable_dispatch();                                      
      return sc;                                                      
ffc0afd4:	4b ff ff 98 	b       ffc0af6c <rtems_io_register_driver+0x118>
                                                                      
static inline bool rtems_io_is_empty_table(                           
  const rtems_driver_address_table *table                             
)                                                                     
{                                                                     
  return table->initialization_entry == NULL && table->open_entry == NULL;
ffc0afd8:	81 29 00 04 	lwz     r9,4(r9)                               
ffc0afdc:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0afe0:	40 9e ff bc 	bne+    cr7,ffc0af9c <rtems_io_register_driver+0x148>
    if ( !rtems_io_is_empty_table( table ) ) {                        
      _Thread_Enable_dispatch();                                      
      return RTEMS_RESOURCE_IN_USE;                                   
    }                                                                 
                                                                      
    *registered_major = major;                                        
ffc0afe4:	93 e5 00 00 	stw     r31,0(r5)                              
ffc0afe8:	4b ff ff 38 	b       ffc0af20 <rtems_io_register_driver+0xcc>
ffc0afec:	38 00 00 01 	li      r0,1                                   <== NOT EXECUTED
ffc0aff0:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc0aff4:	4b ff ff 04 	b       ffc0aef8 <rtems_io_register_driver+0xa4><== NOT EXECUTED
                                                                      

ffc0c974 <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) {
ffc0c974:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc0c978:	7c 08 02 a6 	mflr    r0                                     
ffc0c97c:	90 01 00 24 	stw     r0,36(r1)                              
  uint32_t             i;                                             
  uint32_t             api_index;                                     
  Thread_Control      *the_thread;                                    
  Objects_Information *information;                                   
                                                                      
  if ( !routine )                                                     
ffc0c980:	7c 60 1b 79 	mr.     r0,r3                                  
                                                                      
#include <rtems/system.h>                                             
#include <rtems/score/thread.h>                                       
                                                                      
void rtems_iterate_over_all_threads(rtems_per_thread_routine routine) 
{                                                                     
ffc0c984:	93 81 00 10 	stw     r28,16(r1)                             
ffc0c988:	93 a1 00 14 	stw     r29,20(r1)                             
ffc0c98c:	93 c1 00 18 	stw     r30,24(r1)                             
ffc0c990:	93 e1 00 1c 	stw     r31,28(r1)                             
  uint32_t             i;                                             
  uint32_t             api_index;                                     
  Thread_Control      *the_thread;                                    
  Objects_Information *information;                                   
                                                                      
  if ( !routine )                                                     
ffc0c994:	90 01 00 08 	stw     r0,8(r1)                               
ffc0c998:	41 82 00 6c 	beq-    ffc0ca04 <rtems_iterate_over_all_threads+0x90><== NEVER TAKEN
ffc0c99c:	3f a0 00 01 	lis     r29,1                                  
ffc0c9a0:	3b bd a9 80 	addi    r29,r29,-22144                         
#endif                                                                
                                                                      
#include <rtems/system.h>                                             
#include <rtems/score/thread.h>                                       
                                                                      
void rtems_iterate_over_all_threads(rtems_per_thread_routine routine) 
ffc0c9a4:	3b 9d 00 0c 	addi    r28,r29,12                             
    #if defined(RTEMS_DEBUG)                                          
      if ( !_Objects_Information_table[ api_index ] )                 
	continue;                                                            
    #endif                                                            
                                                                      
    information = _Objects_Information_table[ api_index ][ 1 ];       
ffc0c9a8:	85 3d 00 04 	lwzu    r9,4(r29)                              
ffc0c9ac:	83 c9 00 04 	lwz     r30,4(r9)                              
    if ( !information )                                               
ffc0c9b0:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc0c9b4:	41 9e 00 48 	beq-    cr7,ffc0c9fc <rtems_iterate_over_all_threads+0x88>
      continue;                                                       
                                                                      
    for ( i=1 ; i <= information->maximum ; i++ ) {                   
ffc0c9b8:	a0 1e 00 10 	lhz     r0,16(r30)                             
ffc0c9bc:	70 09 ff ff 	andi.   r9,r0,65535                            
ffc0c9c0:	41 82 00 3c 	beq-    ffc0c9fc <rtems_iterate_over_all_threads+0x88><== NEVER TAKEN
ffc0c9c4:	3b e0 00 01 	li      r31,1                                  
      the_thread = (Thread_Control *)information->local_table[ i ];   
ffc0c9c8:	81 7e 00 1c 	lwz     r11,28(r30)                            
ffc0c9cc:	57 e9 10 3a 	rlwinm  r9,r31,2,0,29                          
                                                                      
    information = _Objects_Information_table[ api_index ][ 1 ];       
    if ( !information )                                               
      continue;                                                       
                                                                      
    for ( i=1 ; i <= information->maximum ; i++ ) {                   
ffc0c9d0:	3b ff 00 01 	addi    r31,r31,1                              
      the_thread = (Thread_Control *)information->local_table[ i ];   
ffc0c9d4:	7c 6b 48 2e 	lwzx    r3,r11,r9                              
                                                                      
      if ( !the_thread )                                              
ffc0c9d8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0c9dc:	41 9e 00 14 	beq-    cr7,ffc0c9f0 <rtems_iterate_over_all_threads+0x7c>
	continue;                                                            
                                                                      
      (*routine)(the_thread);                                         
ffc0c9e0:	80 01 00 08 	lwz     r0,8(r1)                               
ffc0c9e4:	7c 09 03 a6 	mtctr   r0                                     
ffc0c9e8:	4e 80 04 21 	bctrl                                          
ffc0c9ec:	a0 1e 00 10 	lhz     r0,16(r30)                             
                                                                      
    information = _Objects_Information_table[ api_index ][ 1 ];       
    if ( !information )                                               
      continue;                                                       
                                                                      
    for ( i=1 ; i <= information->maximum ; i++ ) {                   
ffc0c9f0:	54 09 04 3e 	clrlwi  r9,r0,16                               
ffc0c9f4:	7f 89 f8 40 	cmplw   cr7,r9,r31                             
ffc0c9f8:	40 9c ff d0 	bge+    cr7,ffc0c9c8 <rtems_iterate_over_all_threads+0x54>
  Objects_Information *information;                                   
                                                                      
  if ( !routine )                                                     
    return;                                                           
                                                                      
  for ( api_index = 1 ; api_index <= OBJECTS_APIS_LAST ; api_index++ ) {
ffc0c9fc:	7f 9d e0 00 	cmpw    cr7,r29,r28                            
ffc0ca00:	40 9e ff a8 	bne+    cr7,ffc0c9a8 <rtems_iterate_over_all_threads+0x34>
                                                                      
      (*routine)(the_thread);                                         
    }                                                                 
  }                                                                   
                                                                      
}                                                                     
ffc0ca04:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0ca08:	83 81 00 10 	lwz     r28,16(r1)                             
ffc0ca0c:	7c 08 03 a6 	mtlr    r0                                     
ffc0ca10:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc0ca14:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0ca18:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0ca1c:	38 21 00 20 	addi    r1,r1,32                               
ffc0ca20:	4e 80 00 20 	blr                                            
                                                                      

ffc0eb6c <rtems_libio_free>: */ void rtems_libio_free( rtems_libio_t *iop ) {
ffc0eb6c:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc0eb70:	7c 08 02 a6 	mflr    r0                                     
rtems_status_code rtems_libio_set_private_env(void);                  
rtems_status_code rtems_libio_share_private_env(rtems_id task_id) ;   
                                                                      
static inline void rtems_libio_lock( void )                           
{                                                                     
  rtems_semaphore_obtain( rtems_libio_semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT );
ffc0eb74:	38 80 00 00 	li      r4,0                                   
ffc0eb78:	93 c1 00 08 	stw     r30,8(r1)                              
ffc0eb7c:	3f c0 00 00 	lis     r30,0                                  
ffc0eb80:	38 a0 00 00 	li      r5,0                                   
ffc0eb84:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc0eb88:	7c 7f 1b 78 	mr      r31,r3                                 
ffc0eb8c:	80 7e 27 14 	lwz     r3,10004(r30)                          
ffc0eb90:	90 01 00 14 	stw     r0,20(r1)                              
ffc0eb94:	4b ff a2 ed 	bl      ffc08e80 <rtems_semaphore_obtain>      
  rtems_libio_lock();                                                 
                                                                      
    if (iop->sem)                                                     
ffc0eb98:	80 7f 00 30 	lwz     r3,48(r31)                             
ffc0eb9c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0eba0:	41 be 00 08 	beq+    cr7,ffc0eba8 <rtems_libio_free+0x3c>   <== NEVER TAKEN
      rtems_semaphore_delete(iop->sem);                               
ffc0eba4:	4b ff a2 01 	bl      ffc08da4 <rtems_semaphore_delete>      
                                                                      
    iop->flags &= ~LIBIO_FLAGS_OPEN;                                  
ffc0eba8:	81 7f 00 18 	lwz     r11,24(r31)                            
    iop->data1 = rtems_libio_iop_freelist;                            
ffc0ebac:	3d 20 00 00 	lis     r9,0                                   
ffc0ebb0:	80 09 27 10 	lwz     r0,10000(r9)                           
  rtems_libio_lock();                                                 
                                                                      
    if (iop->sem)                                                     
      rtems_semaphore_delete(iop->sem);                               
                                                                      
    iop->flags &= ~LIBIO_FLAGS_OPEN;                                  
ffc0ebb4:	55 6b 06 2c 	rlwinm  r11,r11,0,24,22                        
}                                                                     
                                                                      
static inline void rtems_libio_unlock( void )                         
{                                                                     
  rtems_semaphore_release( rtems_libio_semaphore );                   
ffc0ebb8:	80 7e 27 14 	lwz     r3,10004(r30)                          
    iop->data1 = rtems_libio_iop_freelist;                            
ffc0ebbc:	90 1f 00 38 	stw     r0,56(r31)                             
  rtems_libio_lock();                                                 
                                                                      
    if (iop->sem)                                                     
      rtems_semaphore_delete(iop->sem);                               
                                                                      
    iop->flags &= ~LIBIO_FLAGS_OPEN;                                  
ffc0ebc0:	91 7f 00 18 	stw     r11,24(r31)                            
    iop->data1 = rtems_libio_iop_freelist;                            
    rtems_libio_iop_freelist = iop;                                   
ffc0ebc4:	93 e9 27 10 	stw     r31,10000(r9)                          
ffc0ebc8:	4b ff a4 41 	bl      ffc09008 <rtems_semaphore_release>     
                                                                      
  rtems_libio_unlock();                                               
}                                                                     
ffc0ebcc:	80 01 00 14 	lwz     r0,20(r1)                              
ffc0ebd0:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc0ebd4:	7c 08 03 a6 	mtlr    r0                                     
ffc0ebd8:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0ebdc:	38 21 00 10 	addi    r1,r1,16                               
ffc0ebe0:	4e 80 00 20 	blr                                            
                                                                      

ffc04de4 <rtems_libio_init>: * * Called by BSP startup code to initialize the libio subsystem. */ void rtems_libio_init( void ) {
ffc04de4:	94 21 ff f0 	stwu    r1,-16(r1)                             
    rtems_status_code rc;                                             
    uint32_t i;                                                       
    rtems_libio_t *iop;                                               
                                                                      
    if (rtems_libio_number_iops > 0)                                  
ffc04de8:	3d 20 00 00 	lis     r9,0                                   
 *                                                                    
 *  Called by BSP startup code to initialize the libio subsystem.     
 */                                                                   
                                                                      
void rtems_libio_init( void )                                         
{                                                                     
ffc04dec:	7c 08 02 a6 	mflr    r0                                     
ffc04df0:	93 e1 00 0c 	stw     r31,12(r1)                             
    rtems_status_code rc;                                             
    uint32_t i;                                                       
    rtems_libio_t *iop;                                               
                                                                      
    if (rtems_libio_number_iops > 0)                                  
ffc04df4:	83 e9 26 4c 	lwz     r31,9804(r9)                           
 *                                                                    
 *  Called by BSP startup code to initialize the libio subsystem.     
 */                                                                   
                                                                      
void rtems_libio_init( void )                                         
{                                                                     
ffc04df8:	90 01 00 14 	stw     r0,20(r1)                              
    rtems_status_code rc;                                             
    uint32_t i;                                                       
    rtems_libio_t *iop;                                               
                                                                      
    if (rtems_libio_number_iops > 0)                                  
ffc04dfc:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc04e00:	41 9e 00 68 	beq-    cr7,ffc04e68 <rtems_libio_init+0x84>   <== NEVER TAKEN
    {                                                                 
        rtems_libio_iops = (rtems_libio_t *) calloc(rtems_libio_number_iops,
ffc04e04:	7f e3 fb 78 	mr      r3,r31                                 
ffc04e08:	38 80 00 40 	li      r4,64                                  
ffc04e0c:	4b ff fb c5 	bl      ffc049d0 <calloc>                      
ffc04e10:	3d 20 00 00 	lis     r9,0                                   
                                                    sizeof(rtems_libio_t));
        if (rtems_libio_iops == NULL)                                 
ffc04e14:	2f 83 00 00 	cmpwi   cr7,r3,0                               
    uint32_t i;                                                       
    rtems_libio_t *iop;                                               
                                                                      
    if (rtems_libio_number_iops > 0)                                  
    {                                                                 
        rtems_libio_iops = (rtems_libio_t *) calloc(rtems_libio_number_iops,
ffc04e18:	90 69 27 0c 	stw     r3,9996(r9)                            
ffc04e1c:	7c 6b 1b 78 	mr      r11,r3                                 
                                                    sizeof(rtems_libio_t));
        if (rtems_libio_iops == NULL)                                 
ffc04e20:	41 9e 00 a0 	beq-    cr7,ffc04ec0 <rtems_libio_init+0xdc>   
            rtems_fatal_error_occurred(RTEMS_NO_MEMORY);              
                                                                      
        iop = rtems_libio_iop_freelist = rtems_libio_iops;            
        for (i = 0 ; (i + 1) < rtems_libio_number_iops ; i++, iop++)  
ffc04e24:	2b 9f 00 01 	cmplwi  cr7,r31,1                              
        rtems_libio_iops = (rtems_libio_t *) calloc(rtems_libio_number_iops,
                                                    sizeof(rtems_libio_t));
        if (rtems_libio_iops == NULL)                                 
            rtems_fatal_error_occurred(RTEMS_NO_MEMORY);              
                                                                      
        iop = rtems_libio_iop_freelist = rtems_libio_iops;            
ffc04e28:	3d 20 00 00 	lis     r9,0                                   
ffc04e2c:	90 69 27 10 	stw     r3,10000(r9)                           
        for (i = 0 ; (i + 1) < rtems_libio_number_iops ; i++, iop++)  
ffc04e30:	40 9d 00 30 	ble-    cr7,ffc04e60 <rtems_libio_init+0x7c>   <== NEVER TAKEN
 *  rtems_libio_init                                                  
 *                                                                    
 *  Called by BSP startup code to initialize the libio subsystem.     
 */                                                                   
                                                                      
void rtems_libio_init( void )                                         
ffc04e34:	3b ff ff ff 	addi    r31,r31,-1                             
ffc04e38:	7f e9 03 a6 	mtctr   r31                                    
ffc04e3c:	39 23 00 40 	addi    r9,r3,64                               
ffc04e40:	39 60 00 01 	li      r11,1                                  
        if (rtems_libio_iops == NULL)                                 
            rtems_fatal_error_occurred(RTEMS_NO_MEMORY);              
                                                                      
        iop = rtems_libio_iop_freelist = rtems_libio_iops;            
        for (i = 0 ; (i + 1) < rtems_libio_number_iops ; i++, iop++)  
          iop->data1 = iop + 1;                                       
ffc04e44:	91 29 ff f8 	stw     r9,-8(r9)                              
ffc04e48:	39 6b 00 01 	addi    r11,r11,1                              
ffc04e4c:	39 29 00 40 	addi    r9,r9,64                               
                                                    sizeof(rtems_libio_t));
        if (rtems_libio_iops == NULL)                                 
            rtems_fatal_error_occurred(RTEMS_NO_MEMORY);              
                                                                      
        iop = rtems_libio_iop_freelist = rtems_libio_iops;            
        for (i = 0 ; (i + 1) < rtems_libio_number_iops ; i++, iop++)  
ffc04e50:	42 00 ff f4 	bdnz+   ffc04e44 <rtems_libio_init+0x60>       
 *  rtems_libio_init                                                  
 *                                                                    
 *  Called by BSP startup code to initialize the libio subsystem.     
 */                                                                   
                                                                      
void rtems_libio_init( void )                                         
ffc04e54:	39 6b ff ff 	addi    r11,r11,-1                             
ffc04e58:	55 6b 30 32 	rlwinm  r11,r11,6,0,25                         
                                                    sizeof(rtems_libio_t));
        if (rtems_libio_iops == NULL)                                 
            rtems_fatal_error_occurred(RTEMS_NO_MEMORY);              
                                                                      
        iop = rtems_libio_iop_freelist = rtems_libio_iops;            
        for (i = 0 ; (i + 1) < rtems_libio_number_iops ; i++, iop++)  
ffc04e5c:	7d 63 5a 14 	add     r11,r3,r11                             
          iop->data1 = iop + 1;                                       
        iop->data1 = NULL;                                            
ffc04e60:	38 00 00 00 	li      r0,0                                   
ffc04e64:	90 0b 00 38 	stw     r0,56(r11)                             
  /*                                                                  
   *  Create the binary semaphore used to provide mutual exclusion    
   *  on the IOP Table.                                               
   */                                                                 
                                                                      
  rc = rtems_semaphore_create(                                        
ffc04e68:	3c 60 4c 42 	lis     r3,19522                               
ffc04e6c:	3c e0 00 00 	lis     r7,0                                   
ffc04e70:	60 63 49 4f 	ori     r3,r3,18767                            
ffc04e74:	38 80 00 01 	li      r4,1                                   
ffc04e78:	38 a0 00 54 	li      r5,84                                  
ffc04e7c:	38 c0 00 00 	li      r6,0                                   
ffc04e80:	38 e7 27 14 	addi    r7,r7,10004                            
ffc04e84:	48 00 3c fd 	bl      ffc08b80 <rtems_semaphore_create>      
    1,                                                                
    RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY, 
    RTEMS_NO_PRIORITY,                                                
    &rtems_libio_semaphore                                            
  );                                                                  
  if ( rc != RTEMS_SUCCESSFUL )                                       
ffc04e88:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc04e8c:	40 9e 00 30 	bne-    cr7,ffc04ebc <rtems_libio_init+0xd8>   <== NEVER TAKEN
                                                                      
  /*                                                                  
   *  Initialize the base file system infrastructure.                 
   */                                                                 
                                                                      
  if (rtems_fs_init_helper)                                           
ffc04e90:	3d 20 00 00 	lis     r9,0                                   
ffc04e94:	80 09 26 48 	lwz     r0,9800(r9)                            
ffc04e98:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc04e9c:	41 9e 00 0c 	beq-    cr7,ffc04ea8 <rtems_libio_init+0xc4>   <== NEVER TAKEN
     (* rtems_fs_init_helper)();                                      
ffc04ea0:	7c 09 03 a6 	mtctr   r0                                     
ffc04ea4:	4e 80 04 21 	bctrl                                          
}                                                                     
ffc04ea8:	80 01 00 14 	lwz     r0,20(r1)                              
ffc04eac:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc04eb0:	38 21 00 10 	addi    r1,r1,16                               
ffc04eb4:	7c 08 03 a6 	mtlr    r0                                     
ffc04eb8:	4e 80 00 20 	blr                                            
    RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY, 
    RTEMS_NO_PRIORITY,                                                
    &rtems_libio_semaphore                                            
  );                                                                  
  if ( rc != RTEMS_SUCCESSFUL )                                       
    rtems_fatal_error_occurred( rc );                                 
ffc04ebc:	48 00 49 39 	bl      ffc097f4 <rtems_fatal_error_occurred>  <== NOT EXECUTED
    if (rtems_libio_number_iops > 0)                                  
    {                                                                 
        rtems_libio_iops = (rtems_libio_t *) calloc(rtems_libio_number_iops,
                                                    sizeof(rtems_libio_t));
        if (rtems_libio_iops == NULL)                                 
            rtems_fatal_error_occurred(RTEMS_NO_MEMORY);              
ffc04ec0:	38 60 00 1a 	li      r3,26                                  
ffc04ec4:	48 00 49 31 	bl      ffc097f4 <rtems_fatal_error_occurred>  
                                                                      

ffc0ecb0 <rtems_libio_is_file_open>: */ int rtems_libio_is_file_open( void *node_access ) {
ffc0ecb0:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0ecb4:	7c 08 02 a6 	mflr    r0                                     
rtems_status_code rtems_libio_set_private_env(void);                  
rtems_status_code rtems_libio_share_private_env(rtems_id task_id) ;   
                                                                      
static inline void rtems_libio_lock( void )                           
{                                                                     
  rtems_semaphore_obtain( rtems_libio_semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT );
ffc0ecb8:	38 80 00 00 	li      r4,0                                   
ffc0ecbc:	93 c1 00 10 	stw     r30,16(r1)                             
ffc0ecc0:	3f c0 00 00 	lis     r30,0                                  
ffc0ecc4:	38 a0 00 00 	li      r5,0                                   
ffc0ecc8:	93 e1 00 14 	stw     r31,20(r1)                             
ffc0eccc:	7c 7f 1b 78 	mr      r31,r3                                 
ffc0ecd0:	80 7e 27 14 	lwz     r3,10004(r30)                          
ffc0ecd4:	90 01 00 1c 	stw     r0,28(r1)                              
ffc0ecd8:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0ecdc:	4b ff a1 a5 	bl      ffc08e80 <rtems_semaphore_obtain>      
                                                                      
  /*                                                                  
   *  Look for any active file descriptor entry.                      
   */                                                                 
                                                                      
 for (iop=rtems_libio_iops,i=0; i < rtems_libio_number_iops; iop++, i++){
ffc0ece0:	3d 20 00 00 	lis     r9,0                                   
ffc0ece4:	80 09 26 4c 	lwz     r0,9804(r9)                            
ffc0ece8:	3d 20 00 00 	lis     r9,0                                   
ffc0ecec:	81 29 27 0c 	lwz     r9,9996(r9)                            
int rtems_libio_is_file_open(                                         
  void         *node_access                                           
)                                                                     
{                                                                     
  rtems_libio_t     *iop;                                             
  int                result=0;                                        
ffc0ecf0:	3b a0 00 00 	li      r29,0                                  
                                                                      
  /*                                                                  
   *  Look for any active file descriptor entry.                      
   */                                                                 
                                                                      
 for (iop=rtems_libio_iops,i=0; i < rtems_libio_number_iops; iop++, i++){
ffc0ecf4:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0ecf8:	41 9e 00 30 	beq-    cr7,ffc0ed28 <rtems_libio_is_file_open+0x78><== NEVER TAKEN
ffc0ecfc:	7c 09 03 a6 	mtctr   r0                                     
    if ((iop->flags & LIBIO_FLAGS_OPEN) != 0) {                       
ffc0ed00:	80 09 00 18 	lwz     r0,24(r9)                              
ffc0ed04:	70 0b 01 00 	andi.   r11,r0,256                             
ffc0ed08:	41 82 00 10 	beq-    ffc0ed18 <rtems_libio_is_file_open+0x68>
       /*                                                             
        *  Check if this node is under the file system that we        
        *  are trying to dismount.                                    
        */                                                            
                                                                      
       if ( iop->pathinfo.node_access == node_access ) {              
ffc0ed0c:	80 09 00 1c 	lwz     r0,28(r9)                              
ffc0ed10:	7f 80 f8 00 	cmpw    cr7,r0,r31                             
ffc0ed14:	41 9e 00 3c 	beq-    cr7,ffc0ed50 <rtems_libio_is_file_open+0xa0>
                                                                      
  /*                                                                  
   *  Look for any active file descriptor entry.                      
   */                                                                 
                                                                      
 for (iop=rtems_libio_iops,i=0; i < rtems_libio_number_iops; iop++, i++){
ffc0ed18:	42 40 00 0c 	bdz-    ffc0ed24 <rtems_libio_is_file_open+0x74>
ffc0ed1c:	39 29 00 40 	addi    r9,r9,64                               
ffc0ed20:	4b ff ff e0 	b       ffc0ed00 <rtems_libio_is_file_open+0x50>
int rtems_libio_is_file_open(                                         
  void         *node_access                                           
)                                                                     
{                                                                     
  rtems_libio_t     *iop;                                             
  int                result=0;                                        
ffc0ed24:	3b a0 00 00 	li      r29,0                                  
}                                                                     
                                                                      
static inline void rtems_libio_unlock( void )                         
{                                                                     
  rtems_semaphore_release( rtems_libio_semaphore );                   
ffc0ed28:	80 7e 27 14 	lwz     r3,10004(r30)                          
ffc0ed2c:	4b ff a2 dd 	bl      ffc09008 <rtems_semaphore_release>     
  }                                                                   
                                                                      
  rtems_libio_unlock();                                               
                                                                      
  return result;                                                      
}                                                                     
ffc0ed30:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0ed34:	7f a3 eb 78 	mr      r3,r29                                 
ffc0ed38:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0ed3c:	7c 08 03 a6 	mtlr    r0                                     
ffc0ed40:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0ed44:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0ed48:	38 21 00 18 	addi    r1,r1,24                               
ffc0ed4c:	4e 80 00 20 	blr                                            
ffc0ed50:	80 7e 27 14 	lwz     r3,10004(r30)                          
        *  Check if this node is under the file system that we        
        *  are trying to dismount.                                    
        */                                                            
                                                                      
       if ( iop->pathinfo.node_access == node_access ) {              
          result = 1;                                                 
ffc0ed54:	3b a0 00 01 	li      r29,1                                  
ffc0ed58:	4b ff a2 b1 	bl      ffc09008 <rtems_semaphore_release>     
  }                                                                   
                                                                      
  rtems_libio_unlock();                                               
                                                                      
  return result;                                                      
}                                                                     
ffc0ed5c:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0ed60:	7f a3 eb 78 	mr      r3,r29                                 
ffc0ed64:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0ed68:	7c 08 03 a6 	mtlr    r0                                     
ffc0ed6c:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0ed70:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0ed74:	38 21 00 18 	addi    r1,r1,24                               
ffc0ed78:	4e 80 00 20 	blr                                            
                                                                      

ffc0ebe4 <rtems_libio_is_open_files_in_fs>: */ int rtems_libio_is_open_files_in_fs( rtems_filesystem_mount_table_entry_t * fs_mt_entry ) {
ffc0ebe4:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc0ebe8:	7c 08 02 a6 	mflr    r0                                     
rtems_status_code rtems_libio_set_private_env(void);                  
rtems_status_code rtems_libio_share_private_env(rtems_id task_id) ;   
                                                                      
static inline void rtems_libio_lock( void )                           
{                                                                     
  rtems_semaphore_obtain( rtems_libio_semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT );
ffc0ebec:	38 80 00 00 	li      r4,0                                   
ffc0ebf0:	93 c1 00 10 	stw     r30,16(r1)                             
ffc0ebf4:	3f c0 00 00 	lis     r30,0                                  
ffc0ebf8:	38 a0 00 00 	li      r5,0                                   
ffc0ebfc:	93 e1 00 14 	stw     r31,20(r1)                             
ffc0ec00:	7c 7f 1b 78 	mr      r31,r3                                 
ffc0ec04:	80 7e 27 14 	lwz     r3,10004(r30)                          
ffc0ec08:	90 01 00 1c 	stw     r0,28(r1)                              
ffc0ec0c:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc0ec10:	4b ff a2 71 	bl      ffc08e80 <rtems_semaphore_obtain>      
                                                                      
  /*                                                                  
   *  Look for any active file descriptor entry.                      
   */                                                                 
                                                                      
  for (iop=rtems_libio_iops,i=0; i < rtems_libio_number_iops; iop++, i++){
ffc0ec14:	3d 20 00 00 	lis     r9,0                                   
ffc0ec18:	80 09 26 4c 	lwz     r0,9804(r9)                            
ffc0ec1c:	3d 20 00 00 	lis     r9,0                                   
ffc0ec20:	81 29 27 0c 	lwz     r9,9996(r9)                            
int rtems_libio_is_open_files_in_fs(                                  
  rtems_filesystem_mount_table_entry_t * fs_mt_entry                  
)                                                                     
{                                                                     
  rtems_libio_t     *iop;                                             
  int                result = 0;                                      
ffc0ec24:	3b a0 00 00 	li      r29,0                                  
                                                                      
  /*                                                                  
   *  Look for any active file descriptor entry.                      
   */                                                                 
                                                                      
  for (iop=rtems_libio_iops,i=0; i < rtems_libio_number_iops; iop++, i++){
ffc0ec28:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0ec2c:	41 9e 00 30 	beq-    cr7,ffc0ec5c <rtems_libio_is_open_files_in_fs+0x78><== NEVER TAKEN
ffc0ec30:	7c 09 03 a6 	mtctr   r0                                     
                                                                      
    if ((iop->flags & LIBIO_FLAGS_OPEN) != 0) {                       
ffc0ec34:	80 09 00 18 	lwz     r0,24(r9)                              
ffc0ec38:	70 0b 01 00 	andi.   r11,r0,256                             
ffc0ec3c:	41 82 00 10 	beq-    ffc0ec4c <rtems_libio_is_open_files_in_fs+0x68>
       /*                                                             
        *  Check if this node is under the file system that we        
        *  are trying to dismount.                                    
        */                                                            
                                                                      
       if ( iop->pathinfo.mt_entry == fs_mt_entry ) {                 
ffc0ec40:	80 09 00 2c 	lwz     r0,44(r9)                              
ffc0ec44:	7f 80 f8 00 	cmpw    cr7,r0,r31                             
ffc0ec48:	41 9e 00 3c 	beq-    cr7,ffc0ec84 <rtems_libio_is_open_files_in_fs+0xa0>
                                                                      
  /*                                                                  
   *  Look for any active file descriptor entry.                      
   */                                                                 
                                                                      
  for (iop=rtems_libio_iops,i=0; i < rtems_libio_number_iops; iop++, i++){
ffc0ec4c:	42 40 00 0c 	bdz-    ffc0ec58 <rtems_libio_is_open_files_in_fs+0x74>
ffc0ec50:	39 29 00 40 	addi    r9,r9,64                               
ffc0ec54:	4b ff ff e0 	b       ffc0ec34 <rtems_libio_is_open_files_in_fs+0x50>
int rtems_libio_is_open_files_in_fs(                                  
  rtems_filesystem_mount_table_entry_t * fs_mt_entry                  
)                                                                     
{                                                                     
  rtems_libio_t     *iop;                                             
  int                result = 0;                                      
ffc0ec58:	3b a0 00 00 	li      r29,0                                  
}                                                                     
                                                                      
static inline void rtems_libio_unlock( void )                         
{                                                                     
  rtems_semaphore_release( rtems_libio_semaphore );                   
ffc0ec5c:	80 7e 27 14 	lwz     r3,10004(r30)                          
ffc0ec60:	4b ff a3 a9 	bl      ffc09008 <rtems_semaphore_release>     
  }                                                                   
                                                                      
  rtems_libio_unlock();                                               
                                                                      
  return result;                                                      
}                                                                     
ffc0ec64:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0ec68:	7f a3 eb 78 	mr      r3,r29                                 
ffc0ec6c:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0ec70:	7c 08 03 a6 	mtlr    r0                                     
ffc0ec74:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0ec78:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0ec7c:	38 21 00 18 	addi    r1,r1,24                               
ffc0ec80:	4e 80 00 20 	blr                                            
ffc0ec84:	80 7e 27 14 	lwz     r3,10004(r30)                          
        *  Check if this node is under the file system that we        
        *  are trying to dismount.                                    
        */                                                            
                                                                      
       if ( iop->pathinfo.mt_entry == fs_mt_entry ) {                 
          result = 1;                                                 
ffc0ec88:	3b a0 00 01 	li      r29,1                                  
ffc0ec8c:	4b ff a3 7d 	bl      ffc09008 <rtems_semaphore_release>     
  }                                                                   
                                                                      
  rtems_libio_unlock();                                               
                                                                      
  return result;                                                      
}                                                                     
ffc0ec90:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0ec94:	7f a3 eb 78 	mr      r3,r29                                 
ffc0ec98:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0ec9c:	7c 08 03 a6 	mtlr    r0                                     
ffc0eca0:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc0eca4:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc0eca8:	38 21 00 18 	addi    r1,r1,24                               
ffc0ecac:	4e 80 00 20 	blr                                            
                                                                      

ffc064bc <rtems_libio_set_private_env>: rtems_status_code rtems_libio_set_private_env(void) {
ffc064bc:	94 21 ff a8 	stwu    r1,-88(r1)                             
ffc064c0:	7c 08 02 a6 	mflr    r0                                     
ffc064c4:	93 e1 00 54 	stw     r31,84(r1)                             
  rtems_filesystem_location_info_t root_loc;                          
  rtems_filesystem_location_info_t current_loc;                       
  rtems_user_env_t *new_env = NULL;                                   
  int rv = 0;                                                         
                                                                      
  rv = rtems_filesystem_evaluate_path("/", 1, 0, &root_loc, 0);       
ffc064c8:	3f e0 ff c2 	lis     r31,-62                                
ffc064cc:	3b ff 93 b4 	addi    r31,r31,-27724                         
    free(env);                                                        
  }                                                                   
}                                                                     
                                                                      
rtems_status_code rtems_libio_set_private_env(void)                   
{                                                                     
ffc064d0:	90 01 00 5c 	stw     r0,92(r1)                              
ffc064d4:	93 a1 00 4c 	stw     r29,76(r1)                             
ffc064d8:	93 c1 00 50 	stw     r30,80(r1)                             
  rtems_filesystem_location_info_t root_loc;                          
  rtems_filesystem_location_info_t current_loc;                       
  rtems_user_env_t *new_env = NULL;                                   
  int rv = 0;                                                         
                                                                      
  rv = rtems_filesystem_evaluate_path("/", 1, 0, &root_loc, 0);       
ffc064dc:	3b c1 00 08 	addi    r30,r1,8                               
    free(env);                                                        
  }                                                                   
}                                                                     
                                                                      
rtems_status_code rtems_libio_set_private_env(void)                   
{                                                                     
ffc064e0:	93 21 00 3c 	stw     r25,60(r1)                             
ffc064e4:	93 41 00 40 	stw     r26,64(r1)                             
ffc064e8:	93 61 00 44 	stw     r27,68(r1)                             
ffc064ec:	93 81 00 48 	stw     r28,72(r1)                             
  rtems_status_code sc = RTEMS_SUCCESSFUL;                            
  rtems_id task_id = rtems_task_self();                               
ffc064f0:	48 00 39 05 	bl      ffc09df4 <rtems_task_self>             
ffc064f4:	7c 7d 1b 78 	mr      r29,r3                                 
  rtems_filesystem_location_info_t root_loc;                          
  rtems_filesystem_location_info_t current_loc;                       
  rtems_user_env_t *new_env = NULL;                                   
  int rv = 0;                                                         
                                                                      
  rv = rtems_filesystem_evaluate_path("/", 1, 0, &root_loc, 0);       
ffc064f8:	38 80 00 01 	li      r4,1                                   
ffc064fc:	7f e3 fb 78 	mr      r3,r31                                 
ffc06500:	38 a0 00 00 	li      r5,0                                   
ffc06504:	7f c6 f3 78 	mr      r6,r30                                 
ffc06508:	38 e0 00 00 	li      r7,0                                   
ffc0650c:	4b ff e8 51 	bl      ffc04d5c <rtems_filesystem_evaluate_path>
  if (rv != 0)                                                        
ffc06510:	2f 83 00 00 	cmpwi   cr7,r3,0                               
                                                                      
error_1:                                                              
  rtems_filesystem_freenode(&root_loc);                               
                                                                      
error_0:                                                              
  return RTEMS_NO_MEMORY;                                             
ffc06514:	38 60 00 1a 	li      r3,26                                  
  rtems_filesystem_location_info_t current_loc;                       
  rtems_user_env_t *new_env = NULL;                                   
  int rv = 0;                                                         
                                                                      
  rv = rtems_filesystem_evaluate_path("/", 1, 0, &root_loc, 0);       
  if (rv != 0)                                                        
ffc06518:	41 9e 00 30 	beq-    cr7,ffc06548 <rtems_libio_set_private_env+0x8c><== ALWAYS TAKEN
error_1:                                                              
  rtems_filesystem_freenode(&root_loc);                               
                                                                      
error_0:                                                              
  return RTEMS_NO_MEMORY;                                             
}                                                                     
ffc0651c:	80 01 00 5c 	lwz     r0,92(r1)                              <== NOT EXECUTED
ffc06520:	83 21 00 3c 	lwz     r25,60(r1)                             <== NOT EXECUTED
ffc06524:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc06528:	83 41 00 40 	lwz     r26,64(r1)                             <== NOT EXECUTED
ffc0652c:	83 61 00 44 	lwz     r27,68(r1)                             <== NOT EXECUTED
ffc06530:	83 81 00 48 	lwz     r28,72(r1)                             <== NOT EXECUTED
ffc06534:	83 a1 00 4c 	lwz     r29,76(r1)                             <== NOT EXECUTED
ffc06538:	83 c1 00 50 	lwz     r30,80(r1)                             <== NOT EXECUTED
ffc0653c:	83 e1 00 54 	lwz     r31,84(r1)                             <== NOT EXECUTED
ffc06540:	38 21 00 58 	addi    r1,r1,88                               <== NOT EXECUTED
ffc06544:	4e 80 00 20 	blr                                            <== NOT EXECUTED
                                                                      
  rv = rtems_filesystem_evaluate_path("/", 1, 0, &root_loc, 0);       
  if (rv != 0)                                                        
    goto error_0;                                                     
                                                                      
  rv = rtems_filesystem_evaluate_path("/", 1, 0, ¤t_loc, 0);    
ffc06548:	3b 81 00 1c 	addi    r28,r1,28                              
ffc0654c:	7f e3 fb 78 	mr      r3,r31                                 
ffc06550:	38 80 00 01 	li      r4,1                                   
ffc06554:	38 a0 00 00 	li      r5,0                                   
ffc06558:	7f 86 e3 78 	mr      r6,r28                                 
ffc0655c:	38 e0 00 00 	li      r7,0                                   
ffc06560:	4b ff e7 fd 	bl      ffc04d5c <rtems_filesystem_evaluate_path>
  if (rv != 0)                                                        
ffc06564:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc06568:	40 9e 01 04 	bne-    cr7,ffc0666c <rtems_libio_set_private_env+0x1b0><== NEVER TAKEN
   * Bharath: I'm not sure if the check can be reduced to             
   * if( rtems_current_user_env->task_id != task_id ) {               
   */                                                                 
                                                                      
  if (                                                                
    rtems_current_user_env == &rtems_global_user_env                  
ffc0656c:	3f 20 00 00 	lis     r25,0                                  
ffc06570:	83 f9 26 74 	lwz     r31,9844(r25)                          
  /*                                                                  
   * Bharath: I'm not sure if the check can be reduced to             
   * if( rtems_current_user_env->task_id != task_id ) {               
   */                                                                 
                                                                      
  if (                                                                
ffc06574:	3f 60 00 00 	lis     r27,0                                  
ffc06578:	3b 7b 2a 50 	addi    r27,r27,10832                          
ffc0657c:	7f 9f d8 00 	cmpw    cr7,r31,r27                            
ffc06580:	41 9e 00 10 	beq-    cr7,ffc06590 <rtems_libio_set_private_env+0xd4>
    rtems_current_user_env == &rtems_global_user_env                  
      || rtems_current_user_env->task_id != task_id                   
ffc06584:	80 1f 00 00 	lwz     r0,0(r31)                              
ffc06588:	7f 80 e8 00 	cmpw    cr7,r0,r29                             
ffc0658c:	41 9e 00 3c 	beq-    cr7,ffc065c8 <rtems_libio_set_private_env+0x10c>
  ) {                                                                 
    new_env = malloc(sizeof(rtems_user_env_t));                       
ffc06590:	38 60 00 48 	li      r3,72                                  
ffc06594:	4b ff f1 31 	bl      ffc056c4 <malloc>                      
    if (new_env == NULL)                                              
ffc06598:	2f 83 00 00 	cmpwi   cr7,r3,0                               
                                                                      
  if (                                                                
    rtems_current_user_env == &rtems_global_user_env                  
      || rtems_current_user_env->task_id != task_id                   
  ) {                                                                 
    new_env = malloc(sizeof(rtems_user_env_t));                       
ffc0659c:	7c 7f 1b 78 	mr      r31,r3                                 
    if (new_env == NULL)                                              
ffc065a0:	41 9e 00 c4 	beq-    cr7,ffc06664 <rtems_libio_set_private_env+0x1a8>
                                                                      
    #ifdef HAVE_USERENV_REFCNT                                        
      new_env->refcnt = 1;                                            
    #endif                                                            
                                                                      
    sc = rtems_task_variable_add(                                     
ffc065a4:	3c a0 ff c0 	lis     r5,-64                                 
ffc065a8:	38 60 00 00 	li      r3,0                                   
ffc065ac:	38 99 26 74 	addi    r4,r25,9844                            
ffc065b0:	38 a5 64 6c 	addi    r5,r5,25708                            
ffc065b4:	48 00 39 81 	bl      ffc09f34 <rtems_task_variable_add>     
      RTEMS_SELF,                                                     
      (void*)&rtems_current_user_env,                                 
      (void(*)(void *))free_user_env                                  
    );                                                                
    if (sc != RTEMS_SUCCESSFUL)                                       
ffc065b8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc065bc:	40 9e 00 a0 	bne-    cr7,ffc0665c <rtems_libio_set_private_env+0x1a0>
      goto error_3;                                                   
                                                                      
    rtems_current_user_env = new_env;                                 
ffc065c0:	3d 20 00 00 	lis     r9,0                                   
ffc065c4:	93 e9 26 74 	stw     r31,9844(r9)                           
  }                                                                   
                                                                      
  /* Inherit the global values */                                     
  *rtems_current_user_env = rtems_global_user_env;                    
ffc065c8:	7f e3 fb 78 	mr      r3,r31                                 
ffc065cc:	7f 64 db 78 	mr      r4,r27                                 
ffc065d0:	38 a0 00 48 	li      r5,72                                  
ffc065d4:	48 00 ce e1 	bl      ffc134b4 <memcpy>                      
   * Clone the pathlocs. In contrast to most other code we must _not_ free the
   * original locs because what we are trying to do here is forking off clones.
   * The reason is a pathloc can be allocated by the file system and needs to
   * be freed when deleting the environment.                          
   */                                                                 
  rtems_filesystem_root = root_loc;                                   
ffc065d8:	80 01 00 08 	lwz     r0,8(r1)                               
  }                                                                   
                                                                      
  /* Inherit the global values */                                     
  *rtems_current_user_env = rtems_global_user_env;                    
                                                                      
  rtems_current_user_env->task_id = task_id;                          
ffc065dc:	93 bf 00 00 	stw     r29,0(r31)                             
   * be freed when deleting the environment.                          
   */                                                                 
  rtems_filesystem_root = root_loc;                                   
  rtems_filesystem_current = current_loc;                             
                                                                      
  return RTEMS_SUCCESSFUL;                                            
ffc065e0:	38 60 00 00 	li      r3,0                                   
   * Clone the pathlocs. In contrast to most other code we must _not_ free the
   * original locs because what we are trying to do here is forking off clones.
   * The reason is a pathloc can be allocated by the file system and needs to
   * be freed when deleting the environment.                          
   */                                                                 
  rtems_filesystem_root = root_loc;                                   
ffc065e4:	90 1f 00 18 	stw     r0,24(r31)                             
ffc065e8:	80 01 00 0c 	lwz     r0,12(r1)                              
error_1:                                                              
  rtems_filesystem_freenode(&root_loc);                               
                                                                      
error_0:                                                              
  return RTEMS_NO_MEMORY;                                             
}                                                                     
ffc065ec:	83 21 00 3c 	lwz     r25,60(r1)                             
   * Clone the pathlocs. In contrast to most other code we must _not_ free the
   * original locs because what we are trying to do here is forking off clones.
   * The reason is a pathloc can be allocated by the file system and needs to
   * be freed when deleting the environment.                          
   */                                                                 
  rtems_filesystem_root = root_loc;                                   
ffc065f0:	90 1f 00 1c 	stw     r0,28(r31)                             
ffc065f4:	80 01 00 10 	lwz     r0,16(r1)                              
error_1:                                                              
  rtems_filesystem_freenode(&root_loc);                               
                                                                      
error_0:                                                              
  return RTEMS_NO_MEMORY;                                             
}                                                                     
ffc065f8:	83 41 00 40 	lwz     r26,64(r1)                             
   * Clone the pathlocs. In contrast to most other code we must _not_ free the
   * original locs because what we are trying to do here is forking off clones.
   * The reason is a pathloc can be allocated by the file system and needs to
   * be freed when deleting the environment.                          
   */                                                                 
  rtems_filesystem_root = root_loc;                                   
ffc065fc:	90 1f 00 20 	stw     r0,32(r31)                             
ffc06600:	80 01 00 14 	lwz     r0,20(r1)                              
error_1:                                                              
  rtems_filesystem_freenode(&root_loc);                               
                                                                      
error_0:                                                              
  return RTEMS_NO_MEMORY;                                             
}                                                                     
ffc06604:	83 61 00 44 	lwz     r27,68(r1)                             
   * Clone the pathlocs. In contrast to most other code we must _not_ free the
   * original locs because what we are trying to do here is forking off clones.
   * The reason is a pathloc can be allocated by the file system and needs to
   * be freed when deleting the environment.                          
   */                                                                 
  rtems_filesystem_root = root_loc;                                   
ffc06608:	90 1f 00 24 	stw     r0,36(r31)                             
ffc0660c:	80 01 00 18 	lwz     r0,24(r1)                              
error_1:                                                              
  rtems_filesystem_freenode(&root_loc);                               
                                                                      
error_0:                                                              
  return RTEMS_NO_MEMORY;                                             
}                                                                     
ffc06610:	83 81 00 48 	lwz     r28,72(r1)                             
   * Clone the pathlocs. In contrast to most other code we must _not_ free the
   * original locs because what we are trying to do here is forking off clones.
   * The reason is a pathloc can be allocated by the file system and needs to
   * be freed when deleting the environment.                          
   */                                                                 
  rtems_filesystem_root = root_loc;                                   
ffc06614:	90 1f 00 28 	stw     r0,40(r31)                             
  rtems_filesystem_current = current_loc;                             
ffc06618:	80 01 00 1c 	lwz     r0,28(r1)                              
error_1:                                                              
  rtems_filesystem_freenode(&root_loc);                               
                                                                      
error_0:                                                              
  return RTEMS_NO_MEMORY;                                             
}                                                                     
ffc0661c:	83 a1 00 4c 	lwz     r29,76(r1)                             
   * original locs because what we are trying to do here is forking off clones.
   * The reason is a pathloc can be allocated by the file system and needs to
   * be freed when deleting the environment.                          
   */                                                                 
  rtems_filesystem_root = root_loc;                                   
  rtems_filesystem_current = current_loc;                             
ffc06620:	90 1f 00 04 	stw     r0,4(r31)                              
ffc06624:	80 01 00 20 	lwz     r0,32(r1)                              
error_1:                                                              
  rtems_filesystem_freenode(&root_loc);                               
                                                                      
error_0:                                                              
  return RTEMS_NO_MEMORY;                                             
}                                                                     
ffc06628:	83 c1 00 50 	lwz     r30,80(r1)                             
   * original locs because what we are trying to do here is forking off clones.
   * The reason is a pathloc can be allocated by the file system and needs to
   * be freed when deleting the environment.                          
   */                                                                 
  rtems_filesystem_root = root_loc;                                   
  rtems_filesystem_current = current_loc;                             
ffc0662c:	90 1f 00 08 	stw     r0,8(r31)                              
ffc06630:	80 01 00 24 	lwz     r0,36(r1)                              
ffc06634:	90 1f 00 0c 	stw     r0,12(r31)                             
ffc06638:	80 01 00 28 	lwz     r0,40(r1)                              
ffc0663c:	90 1f 00 10 	stw     r0,16(r31)                             
ffc06640:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc06644:	90 1f 00 14 	stw     r0,20(r31)                             
error_1:                                                              
  rtems_filesystem_freenode(&root_loc);                               
                                                                      
error_0:                                                              
  return RTEMS_NO_MEMORY;                                             
}                                                                     
ffc06648:	80 01 00 5c 	lwz     r0,92(r1)                              
ffc0664c:	83 e1 00 54 	lwz     r31,84(r1)                             
ffc06650:	38 21 00 58 	addi    r1,r1,88                               
ffc06654:	7c 08 03 a6 	mtlr    r0                                     
ffc06658:	4e 80 00 20 	blr                                            
  rtems_filesystem_current = current_loc;                             
                                                                      
  return RTEMS_SUCCESSFUL;                                            
                                                                      
error_3:                                                              
  free(new_env);                                                      
ffc0665c:	7f e3 fb 78 	mr      r3,r31                                 
ffc06660:	4b ff e8 85 	bl      ffc04ee4 <free>                        
                                                                      
error_2:                                                              
  rtems_filesystem_freenode(¤t_loc);                            
ffc06664:	7f 83 e3 78 	mr      r3,r28                                 
ffc06668:	4b ff e8 51 	bl      ffc04eb8 <rtems_filesystem_freenode>   
                                                                      
error_1:                                                              
  rtems_filesystem_freenode(&root_loc);                               
ffc0666c:	7f c3 f3 78 	mr      r3,r30                                 
ffc06670:	4b ff e8 49 	bl      ffc04eb8 <rtems_filesystem_freenode>   
                                                                      
error_0:                                                              
  return RTEMS_NO_MEMORY;                                             
}                                                                     
ffc06674:	80 01 00 5c 	lwz     r0,92(r1)                              
                                                                      
error_1:                                                              
  rtems_filesystem_freenode(&root_loc);                               
                                                                      
error_0:                                                              
  return RTEMS_NO_MEMORY;                                             
ffc06678:	38 60 00 1a 	li      r3,26                                  
}                                                                     
ffc0667c:	83 21 00 3c 	lwz     r25,60(r1)                             
ffc06680:	7c 08 03 a6 	mtlr    r0                                     
ffc06684:	83 41 00 40 	lwz     r26,64(r1)                             
ffc06688:	83 61 00 44 	lwz     r27,68(r1)                             
ffc0668c:	83 81 00 48 	lwz     r28,72(r1)                             
ffc06690:	83 a1 00 4c 	lwz     r29,76(r1)                             
ffc06694:	83 c1 00 50 	lwz     r30,80(r1)                             
ffc06698:	83 e1 00 54 	lwz     r31,84(r1)                             
ffc0669c:	38 21 00 58 	addi    r1,r1,88                               
ffc066a0:	4e 80 00 20 	blr                                            
                                                                      

ffc066a4 <rtems_libio_share_private_env>: * b) mutex access to rtems_filesystem_current, rtems_filesytem_root * while changing any of those (chdir(), chroot()). */ rtems_status_code rtems_libio_share_private_env(rtems_id task_id) {
ffc066a4:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc066a8:	7c 08 02 a6 	mflr    r0                                     
ffc066ac:	93 81 00 18 	stw     r28,24(r1)                             
ffc066b0:	7c 7c 1b 78 	mr      r28,r3                                 
ffc066b4:	93 a1 00 1c 	stw     r29,28(r1)                             
   * If this was an attempt to share the task with self,              
   * if somebody wanted to do it... Lets tell them, its shared        
   */                                                                 
                                                                      
  if( task_id == current_task_id )                                    
    return RTEMS_SUCCESSFUL;                                          
ffc066b8:	3b a0 00 00 	li      r29,0                                  
 *  b) mutex access to rtems_filesystem_current, rtems_filesytem_root 
 *     while changing any of those (chdir(), chroot()).               
 */                                                                   
                                                                      
rtems_status_code rtems_libio_share_private_env(rtems_id task_id)     
{                                                                     
ffc066bc:	93 e1 00 24 	stw     r31,36(r1)                             
ffc066c0:	90 01 00 2c 	stw     r0,44(r1)                              
ffc066c4:	93 c1 00 20 	stw     r30,32(r1)                             
  rtems_id           current_task_id;                                 
                                                                      
  /*                                                                  
   * get current task id                                              
   */                                                                 
  current_task_id = rtems_task_self();                                
ffc066c8:	48 00 37 2d 	bl      ffc09df4 <rtems_task_self>             
  /*                                                                  
   * If this was an attempt to share the task with self,              
   * if somebody wanted to do it... Lets tell them, its shared        
   */                                                                 
                                                                      
  if( task_id == current_task_id )                                    
ffc066cc:	7f 9c 18 00 	cmpw    cr7,r28,r3                             
  rtems_id           current_task_id;                                 
                                                                      
  /*                                                                  
   * get current task id                                              
   */                                                                 
  current_task_id = rtems_task_self();                                
ffc066d0:	7c 7f 1b 78 	mr      r31,r3                                 
  /*                                                                  
   * If this was an attempt to share the task with self,              
   * if somebody wanted to do it... Lets tell them, its shared        
   */                                                                 
                                                                      
  if( task_id == current_task_id )                                    
ffc066d4:	41 9e 00 38 	beq-    cr7,ffc0670c <rtems_libio_share_private_env+0x68><== NEVER TAKEN
    return RTEMS_SUCCESSFUL;                                          
  /*                                                                  
   * Try to get the requested user environment                        
   */                                                                 
  sc = rtems_task_variable_get(                                       
ffc066d8:	3f c0 00 00 	lis     r30,0                                  
ffc066dc:	7f 83 e3 78 	mr      r3,r28                                 
ffc066e0:	38 9e 26 74 	addi    r4,r30,9844                            
ffc066e4:	38 a1 00 08 	addi    r5,r1,8                                
ffc066e8:	48 00 39 61 	bl      ffc0a048 <rtems_task_variable_get>     
	 (void*)&shared_user_env );                                          
                                                                      
  /*                                                                  
   * If it was not successful, return the error code                  
   */                                                                 
    if (sc != RTEMS_SUCCESSFUL)                                       
ffc066ec:	7c 7d 1b 79 	mr.     r29,r3                                 
ffc066f0:	40 82 00 1c 	bne-    ffc0670c <rtems_libio_share_private_env+0x68>
     * If we have a current environment in place, we need to          
     * free it, since we will be sharing the variable with the        
     * shared_user_env                                                
     */                                                               
                                                                      
  if (rtems_current_user_env->task_id==current_task_id) {             
ffc066f4:	80 7e 26 74 	lwz     r3,9844(r30)                           
ffc066f8:	80 03 00 00 	lwz     r0,0(r3)                               
ffc066fc:	7f 80 f8 00 	cmpw    cr7,r0,r31                             
ffc06700:	41 9e 00 30 	beq-    cr7,ffc06730 <rtems_libio_share_private_env+0x8c>
    rtems_user_env_t  *tmp = rtems_current_user_env;                  
    free_user_env( tmp );                                             
  }                                                                   
                                                                      
  /* the current_user_env is the same pointer that remote env */      
  rtems_current_user_env = shared_user_env;                           
ffc06704:	80 01 00 08 	lwz     r0,8(r1)                               
ffc06708:	90 1e 26 74 	stw     r0,9844(r30)                           
#ifdef HAVE_USERENV_REFCNT                                            
  rtems_current_user_env->refcnt++;                                   
#endif                                                                
                                                                      
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
ffc0670c:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc06710:	7f a3 eb 78 	mr      r3,r29                                 
ffc06714:	83 81 00 18 	lwz     r28,24(r1)                             
ffc06718:	7c 08 03 a6 	mtlr    r0                                     
ffc0671c:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc06720:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc06724:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc06728:	38 21 00 28 	addi    r1,r1,40                               
ffc0672c:	4e 80 00 20 	blr                                            
     * shared_user_env                                                
     */                                                               
                                                                      
  if (rtems_current_user_env->task_id==current_task_id) {             
    rtems_user_env_t  *tmp = rtems_current_user_env;                  
    free_user_env( tmp );                                             
ffc06730:	4b ff fd 3d 	bl      ffc0646c <free_user_env>               
ffc06734:	4b ff ff d0 	b       ffc06704 <rtems_libio_share_private_env+0x60>
                                                                      

ffc0ea48 <rtems_libio_to_fcntl_flags>: uint32_t flags ) { uint32_t fcntl_flags = 0; if ( (flags & LIBIO_FLAGS_READ_WRITE) == LIBIO_FLAGS_READ_WRITE ) {
ffc0ea48:	54 60 07 7c 	rlwinm  r0,r3,0,29,30                          
ffc0ea4c:	2f 80 00 06 	cmpwi   cr7,r0,6                               
    fcntl_flags |= O_RDWR;                                            
ffc0ea50:	38 00 00 02 	li      r0,2                                   
  uint32_t   flags                                                    
)                                                                     
{                                                                     
  uint32_t   fcntl_flags = 0;                                         
                                                                      
  if ( (flags & LIBIO_FLAGS_READ_WRITE) == LIBIO_FLAGS_READ_WRITE ) { 
ffc0ea54:	41 9e 00 10 	beq-    cr7,ffc0ea64 <rtems_libio_to_fcntl_flags+0x1c><== NEVER TAKEN
    fcntl_flags |= O_RDWR;                                            
  } else if ( (flags & LIBIO_FLAGS_READ) == LIBIO_FLAGS_READ) {       
ffc0ea58:	70 60 00 02 	andi.   r0,r3,2                                
    fcntl_flags |= O_RDONLY;                                          
ffc0ea5c:	38 00 00 00 	li      r0,0                                   
{                                                                     
  uint32_t   fcntl_flags = 0;                                         
                                                                      
  if ( (flags & LIBIO_FLAGS_READ_WRITE) == LIBIO_FLAGS_READ_WRITE ) { 
    fcntl_flags |= O_RDWR;                                            
  } else if ( (flags & LIBIO_FLAGS_READ) == LIBIO_FLAGS_READ) {       
ffc0ea60:	41 82 00 30 	beq-    ffc0ea90 <rtems_libio_to_fcntl_flags+0x48><== NEVER TAKEN
    fcntl_flags |= O_RDONLY;                                          
  } else if ( (flags & LIBIO_FLAGS_WRITE) == LIBIO_FLAGS_WRITE) {     
    fcntl_flags |= O_WRONLY;                                          
  }                                                                   
                                                                      
  if ( (flags & LIBIO_FLAGS_NO_DELAY) == LIBIO_FLAGS_NO_DELAY ) {     
ffc0ea64:	70 69 00 01 	andi.   r9,r3,1                                
ffc0ea68:	41 82 00 08 	beq-    ffc0ea70 <rtems_libio_to_fcntl_flags+0x28>
    fcntl_flags |= O_NONBLOCK;                                        
ffc0ea6c:	60 00 40 00 	ori     r0,r0,16384                            
  }                                                                   
                                                                      
  if ( (flags & LIBIO_FLAGS_APPEND) == LIBIO_FLAGS_APPEND ) {         
ffc0ea70:	70 69 02 00 	andi.   r9,r3,512                              
ffc0ea74:	41 82 00 08 	beq-    ffc0ea7c <rtems_libio_to_fcntl_flags+0x34>
    fcntl_flags |= O_APPEND;                                          
ffc0ea78:	60 00 00 08 	ori     r0,r0,8                                
  }                                                                   
                                                                      
  if ( (flags & LIBIO_FLAGS_CREATE) == LIBIO_FLAGS_CREATE ) {         
ffc0ea7c:	70 69 04 00 	andi.   r9,r3,1024                             
ffc0ea80:	41 82 00 08 	beq-    ffc0ea88 <rtems_libio_to_fcntl_flags+0x40>
    fcntl_flags |= O_CREAT;                                           
ffc0ea84:	60 00 02 00 	ori     r0,r0,512                              
  }                                                                   
                                                                      
  return fcntl_flags;                                                 
}                                                                     
ffc0ea88:	7c 03 03 78 	mr      r3,r0                                  
ffc0ea8c:	4e 80 00 20 	blr                                            
)                                                                     
{                                                                     
  uint32_t   fcntl_flags = 0;                                         
                                                                      
  if ( (flags & LIBIO_FLAGS_READ_WRITE) == LIBIO_FLAGS_READ_WRITE ) { 
    fcntl_flags |= O_RDWR;                                            
ffc0ea90:	54 60 f7 fe 	rlwinm  r0,r3,30,31,31                         <== NOT EXECUTED
ffc0ea94:	4b ff ff d0 	b       ffc0ea64 <rtems_libio_to_fcntl_flags+0x1c><== NOT EXECUTED
                                                                      

ffc08b00 <rtems_malloc_statistics_at_free>: * size and thus we skip updating the statistics. */ static void rtems_malloc_statistics_at_free( void *pointer ) {
ffc08b00:	94 21 ff e8 	stwu    r1,-24(r1)                             
  uintptr_t size;                                                     
                                                                      
  if (_Protected_heap_Get_block_size(RTEMS_Malloc_Heap, pointer, &size) ) {
ffc08b04:	3d 20 00 00 	lis     r9,0                                   
 *  size and thus we skip updating the statistics.                    
 */                                                                   
static void rtems_malloc_statistics_at_free(                          
  void *pointer                                                       
)                                                                     
{                                                                     
ffc08b08:	7c 08 02 a6 	mflr    r0                                     
ffc08b0c:	7c 64 1b 78 	mr      r4,r3                                  
  uintptr_t size;                                                     
                                                                      
  if (_Protected_heap_Get_block_size(RTEMS_Malloc_Heap, pointer, &size) ) {
ffc08b10:	80 69 26 dc 	lwz     r3,9948(r9)                            
ffc08b14:	38 a1 00 08 	addi    r5,r1,8                                
 *  size and thus we skip updating the statistics.                    
 */                                                                   
static void rtems_malloc_statistics_at_free(                          
  void *pointer                                                       
)                                                                     
{                                                                     
ffc08b18:	90 01 00 1c 	stw     r0,28(r1)                              
  uintptr_t size;                                                     
                                                                      
  if (_Protected_heap_Get_block_size(RTEMS_Malloc_Heap, pointer, &size) ) {
ffc08b1c:	48 00 78 0d 	bl      ffc10328 <_Protected_heap_Get_block_size>
ffc08b20:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc08b24:	41 9e 00 2c 	beq-    cr7,ffc08b50 <rtems_malloc_statistics_at_free+0x50><== NEVER TAKEN
    MSBUMP(lifetime_freed, size);                                     
ffc08b28:	3d 00 00 00 	lis     r8,0                                   
ffc08b2c:	81 41 00 08 	lwz     r10,8(r1)                              
ffc08b30:	39 08 33 90 	addi    r8,r8,13200                            
ffc08b34:	81 68 00 28 	lwz     r11,40(r8)                             
ffc08b38:	39 20 00 00 	li      r9,0                                   
ffc08b3c:	81 88 00 2c 	lwz     r12,44(r8)                             
ffc08b40:	7d 4a 60 14 	addc    r10,r10,r12                            
ffc08b44:	7d 29 59 14 	adde    r9,r9,r11                              
ffc08b48:	91 28 00 28 	stw     r9,40(r8)                              
ffc08b4c:	91 48 00 2c 	stw     r10,44(r8)                             
  }                                                                   
}                                                                     
ffc08b50:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc08b54:	38 21 00 18 	addi    r1,r1,24                               
ffc08b58:	7c 08 03 a6 	mtlr    r0                                     
ffc08b5c:	4e 80 00 20 	blr                                            
                                                                      

ffc08b60 <rtems_malloc_statistics_at_malloc>: { uintptr_t actual_size = 0; uint32_t current_depth; rtems_malloc_statistics_t *s = &rtems_malloc_statistics; if ( !pointer )
ffc08b60:	7c 64 1b 79 	mr.     r4,r3                                  
}                                                                     
                                                                      
static void rtems_malloc_statistics_at_malloc(                        
  void *pointer                                                       
)                                                                     
{                                                                     
ffc08b64:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc08b68:	7c 08 02 a6 	mflr    r0                                     
ffc08b6c:	90 01 00 1c 	stw     r0,28(r1)                              
  uintptr_t actual_size = 0;                                          
ffc08b70:	38 00 00 00 	li      r0,0                                   
ffc08b74:	90 01 00 08 	stw     r0,8(r1)                               
  uint32_t current_depth;                                             
  rtems_malloc_statistics_t *s = &rtems_malloc_statistics;            
                                                                      
  if ( !pointer )                                                     
ffc08b78:	41 82 00 54 	beq-    ffc08bcc <rtems_malloc_statistics_at_malloc+0x6c><== NEVER TAKEN
    return;                                                           
                                                                      
  _Protected_heap_Get_block_size(RTEMS_Malloc_Heap, pointer, &actual_size);
ffc08b7c:	3d 20 00 00 	lis     r9,0                                   
ffc08b80:	80 69 26 dc 	lwz     r3,9948(r9)                            
ffc08b84:	38 a1 00 08 	addi    r5,r1,8                                
ffc08b88:	48 00 77 a1 	bl      ffc10328 <_Protected_heap_Get_block_size>
                                                                      
  MSBUMP(lifetime_allocated, actual_size);                            
ffc08b8c:	3d 00 00 00 	lis     r8,0                                   
ffc08b90:	39 08 33 90 	addi    r8,r8,13200                            
ffc08b94:	81 41 00 08 	lwz     r10,8(r1)                              
ffc08b98:	81 68 00 20 	lwz     r11,32(r8)                             
ffc08b9c:	39 20 00 00 	li      r9,0                                   
ffc08ba0:	81 88 00 24 	lwz     r12,36(r8)                             
                                                                      
  current_depth = (uint32_t) (s->lifetime_allocated - s->lifetime_freed);
ffc08ba4:	80 08 00 2c 	lwz     r0,44(r8)                              
  if ( !pointer )                                                     
    return;                                                           
                                                                      
  _Protected_heap_Get_block_size(RTEMS_Malloc_Heap, pointer, &actual_size);
                                                                      
  MSBUMP(lifetime_allocated, actual_size);                            
ffc08ba8:	7d 4a 60 14 	addc    r10,r10,r12                            
ffc08bac:	7d 29 59 14 	adde    r9,r9,r11                              
                                                                      
  current_depth = (uint32_t) (s->lifetime_allocated - s->lifetime_freed);
  if (current_depth > s->max_depth)                                   
ffc08bb0:	81 68 00 18 	lwz     r11,24(r8)                             
  if ( !pointer )                                                     
    return;                                                           
                                                                      
  _Protected_heap_Get_block_size(RTEMS_Malloc_Heap, pointer, &actual_size);
                                                                      
  MSBUMP(lifetime_allocated, actual_size);                            
ffc08bb4:	91 28 00 20 	stw     r9,32(r8)                              
                                                                      
  current_depth = (uint32_t) (s->lifetime_allocated - s->lifetime_freed);
ffc08bb8:	7c 00 50 50 	subf    r0,r0,r10                              
  if (current_depth > s->max_depth)                                   
ffc08bbc:	7f 80 58 40 	cmplw   cr7,r0,r11                             
  if ( !pointer )                                                     
    return;                                                           
                                                                      
  _Protected_heap_Get_block_size(RTEMS_Malloc_Heap, pointer, &actual_size);
                                                                      
  MSBUMP(lifetime_allocated, actual_size);                            
ffc08bc0:	91 48 00 24 	stw     r10,36(r8)                             
                                                                      
  current_depth = (uint32_t) (s->lifetime_allocated - s->lifetime_freed);
  if (current_depth > s->max_depth)                                   
ffc08bc4:	40 9d 00 08 	ble-    cr7,ffc08bcc <rtems_malloc_statistics_at_malloc+0x6c>
      s->max_depth = current_depth;                                   
ffc08bc8:	90 08 00 18 	stw     r0,24(r8)                              
}                                                                     
ffc08bcc:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc08bd0:	38 21 00 18 	addi    r1,r1,24                               
ffc08bd4:	7c 08 03 a6 	mtlr    r0                                     
ffc08bd8:	4e 80 00 20 	blr                                            
                                                                      

ffc13e60 <rtems_memalign>: int rtems_memalign( void **pointer, size_t alignment, size_t size ) {
ffc13e60:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc13e64:	7c 08 02 a6 	mflr    r0                                     
ffc13e68:	93 e1 00 14 	stw     r31,20(r1)                             
  void *return_this;                                                  
                                                                      
  /*                                                                  
   *  Parameter error checks                                          
   */                                                                 
  if ( !pointer )                                                     
ffc13e6c:	7c 7f 1b 79 	mr.     r31,r3                                 
int rtems_memalign(                                                   
  void   **pointer,                                                   
  size_t   alignment,                                                 
  size_t   size                                                       
)                                                                     
{                                                                     
ffc13e70:	93 81 00 08 	stw     r28,8(r1)                              
ffc13e74:	7c bc 2b 78 	mr      r28,r5                                 
ffc13e78:	93 a1 00 0c 	stw     r29,12(r1)                             
                                                                      
  /*                                                                  
   *  Parameter error checks                                          
   */                                                                 
  if ( !pointer )                                                     
    return EINVAL;                                                    
ffc13e7c:	3b a0 00 16 	li      r29,22                                 
int rtems_memalign(                                                   
  void   **pointer,                                                   
  size_t   alignment,                                                 
  size_t   size                                                       
)                                                                     
{                                                                     
ffc13e80:	93 c1 00 10 	stw     r30,16(r1)                             
ffc13e84:	7c 9e 23 78 	mr      r30,r4                                 
ffc13e88:	90 01 00 1c 	stw     r0,28(r1)                              
  void *return_this;                                                  
                                                                      
  /*                                                                  
   *  Parameter error checks                                          
   */                                                                 
  if ( !pointer )                                                     
ffc13e8c:	41 82 00 6c 	beq-    ffc13ef8 <rtems_memalign+0x98>         
  *pointer = NULL;                                                    
                                                                      
  /*                                                                  
   *  Do not attempt to allocate memory if not in correct system state.
   */                                                                 
  if ( _System_state_Is_up(_System_state_Get()) &&                    
ffc13e90:	3d 20 00 00 	lis     r9,0                                   
ffc13e94:	80 09 27 90 	lwz     r0,10128(r9)                           
ffc13e98:	2f 80 00 03 	cmpwi   cr7,r0,3                               
   *  Parameter error checks                                          
   */                                                                 
  if ( !pointer )                                                     
    return EINVAL;                                                    
                                                                      
  *pointer = NULL;                                                    
ffc13e9c:	38 00 00 00 	li      r0,0                                   
ffc13ea0:	90 1f 00 00 	stw     r0,0(r31)                              
                                                                      
  /*                                                                  
   *  Do not attempt to allocate memory if not in correct system state.
   */                                                                 
  if ( _System_state_Is_up(_System_state_Get()) &&                    
ffc13ea4:	41 9e 00 78 	beq-    cr7,ffc13f1c <rtems_memalign+0xbc>     <== ALWAYS TAKEN
    return EINVAL;                                                    
                                                                      
  /*                                                                  
   *  If some free's have been deferred, then do them now.            
   */                                                                 
  malloc_deferred_frees_process();                                    
ffc13ea8:	4b ff 22 91 	bl      ffc06138 <malloc_deferred_frees_process>
  Heap_Control *heap,                                                 
  uintptr_t size,                                                     
  uintptr_t alignment                                                 
)                                                                     
{                                                                     
  return                                                              
ffc13eac:	3d 20 00 00 	lis     r9,0                                   
ffc13eb0:	80 69 26 7c 	lwz     r3,9852(r9)                            
ffc13eb4:	7f c5 f3 78 	mr      r5,r30                                 
ffc13eb8:	7f 84 e3 78 	mr      r4,r28                                 
ffc13ebc:	38 c0 00 00 	li      r6,0                                   
ffc13ec0:	4b ff 89 79 	bl      ffc0c838 <_Protected_heap_Allocate_aligned_with_boundary>
    RTEMS_Malloc_Heap,                                                
    size,                                                             
    alignment                                                         
  );                                                                  
  if ( !return_this )                                                 
    return ENOMEM;                                                    
ffc13ec4:	3b a0 00 0c 	li      r29,12                                 
  return_this = _Protected_heap_Allocate_aligned(                     
    RTEMS_Malloc_Heap,                                                
    size,                                                             
    alignment                                                         
  );                                                                  
  if ( !return_this )                                                 
ffc13ec8:	7c 7e 1b 79 	mr.     r30,r3                                 
ffc13ecc:	41 82 00 2c 	beq-    ffc13ef8 <rtems_memalign+0x98>         
    return ENOMEM;                                                    
                                                                      
  /*                                                                  
   *  If configured, update the more involved statistics              
   */                                                                 
  if ( rtems_malloc_statistics_helpers )                              
ffc13ed0:	3d 20 00 00 	lis     r9,0                                   
ffc13ed4:	81 29 26 e8 	lwz     r9,9960(r9)                            
ffc13ed8:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc13edc:	41 9e 00 14 	beq-    cr7,ffc13ef0 <rtems_memalign+0x90>     
    (*rtems_malloc_statistics_helpers->at_malloc)(pointer);           
ffc13ee0:	80 09 00 04 	lwz     r0,4(r9)                               
ffc13ee4:	7f e3 fb 78 	mr      r3,r31                                 
ffc13ee8:	7c 09 03 a6 	mtctr   r0                                     
ffc13eec:	4e 80 04 21 	bctrl                                          
                                                                      
  *pointer = return_this;                                             
ffc13ef0:	93 df 00 00 	stw     r30,0(r31)                             
  return 0;                                                           
ffc13ef4:	3b a0 00 00 	li      r29,0                                  
}                                                                     
ffc13ef8:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc13efc:	7f a3 eb 78 	mr      r3,r29                                 
ffc13f00:	83 81 00 08 	lwz     r28,8(r1)                              
ffc13f04:	7c 08 03 a6 	mtlr    r0                                     
ffc13f08:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc13f0c:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc13f10:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc13f14:	38 21 00 18 	addi    r1,r1,24                               
ffc13f18:	4e 80 00 20 	blr                                            
                                                                      
  /*                                                                  
   *  Do not attempt to allocate memory if not in correct system state.
   */                                                                 
  if ( _System_state_Is_up(_System_state_Get()) &&                    
       !malloc_is_system_state_OK() )                                 
ffc13f1c:	4b ff 21 d5 	bl      ffc060f0 <malloc_is_system_state_OK>   
  *pointer = NULL;                                                    
                                                                      
  /*                                                                  
   *  Do not attempt to allocate memory if not in correct system state.
   */                                                                 
  if ( _System_state_Is_up(_System_state_Get()) &&                    
ffc13f20:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc13f24:	40 9e ff 84 	bne+    cr7,ffc13ea8 <rtems_memalign+0x48>     <== ALWAYS TAKEN
ffc13f28:	4b ff ff d0 	b       ffc13ef8 <rtems_memalign+0x98>         <== NOT EXECUTED
                                                                      

ffc12084 <rtems_mkdir>: return (retval); } int rtems_mkdir(const char *path, mode_t mode) {
ffc12084:	94 21 ff 80 	stwu    r1,-128(r1)                            
ffc12088:	7d 80 00 26 	mfcr    r12                                    
ffc1208c:	7c 08 02 a6 	mflr    r0                                     
ffc12090:	93 61 00 6c 	stw     r27,108(r1)                            
ffc12094:	7c 9b 23 78 	mr      r27,r4                                 
ffc12098:	93 c1 00 78 	stw     r30,120(r1)                            
ffc1209c:	90 01 00 84 	stw     r0,132(r1)                             
ffc120a0:	93 01 00 60 	stw     r24,96(r1)                             
ffc120a4:	93 21 00 64 	stw     r25,100(r1)                            
ffc120a8:	93 41 00 68 	stw     r26,104(r1)                            
ffc120ac:	93 81 00 70 	stw     r28,112(r1)                            
ffc120b0:	93 a1 00 74 	stw     r29,116(r1)                            
ffc120b4:	93 e1 00 7c 	stw     r31,124(r1)                            
ffc120b8:	91 81 00 5c 	stw     r12,92(r1)                             
  int success = 0;                                                    
  char *dup_path = strdup(path);                                      
ffc120bc:	48 00 31 35 	bl      ffc151f0 <strdup>                      
                                                                      
  if (dup_path != NULL) {                                             
ffc120c0:	7c 7e 1b 79 	mr.     r30,r3                                 
    success = build(dup_path, mode);                                  
    free(dup_path);                                                   
  }                                                                   
                                                                      
  return success != 0 ? 0 : -1;                                       
ffc120c4:	38 60 ff ff 	li      r3,-1                                  
rtems_mkdir(const char *path, mode_t mode)                            
{                                                                     
  int success = 0;                                                    
  char *dup_path = strdup(path);                                      
                                                                      
  if (dup_path != NULL) {                                             
ffc120c8:	41 82 01 2c 	beq-    ffc121f4 <rtems_mkdir+0x170>           <== NEVER TAKEN
  char *p;                                                            
                                                                      
  p = path;                                                           
  oumask = 0;                                                         
  retval = 1;                                                         
  if (p[0] == '/')    /* Skip leading '/'. */                         
ffc120cc:	88 1e 00 00 	lbz     r0,0(r30)                              
ffc120d0:	7f df f3 78 	mr      r31,r30                                
ffc120d4:	2f 80 00 2f 	cmpwi   cr7,r0,47                              
ffc120d8:	41 9e 01 64 	beq-    cr7,ffc1223c <rtems_mkdir+0x1b8>       
    ++p;                                                              
  for (first = 1, last = 0; !last ; ++p) {                            
    if (p[0] == '\0')                                                 
ffc120dc:	2f 80 00 00 	cmpwi   cr7,r0,0                               
  char *p;                                                            
                                                                      
  p = path;                                                           
  oumask = 0;                                                         
  retval = 1;                                                         
  if (p[0] == '/')    /* Skip leading '/'. */                         
ffc120e0:	3b a0 00 00 	li      r29,0                                  
ffc120e4:	39 20 00 01 	li      r9,1                                   
        retval = 0;                                                   
        break;                                                        
      }                                                               
    }                                                                 
    if (!last)                                                        
        *p = '/';                                                     
ffc120e8:	3b 80 00 2f 	li      r28,47                                 
    }                                                                 
    if (last)                                                         
      (void)umask(oumask);                                            
    if (mkdir(path, last ? omode : S_IRWXU | S_IRWXG | S_IRWXO) < 0) {
      if (errno == EEXIST || errno == EISDIR) {                       
        if (stat(path, &sb) < 0) {                                    
ffc120ec:	3b 21 00 08 	addi    r25,r1,8                               
  for (first = 1, last = 0; !last ; ++p) {                            
    if (p[0] == '\0')                                                 
      last = 1;                                                       
    else if (p[0] != '/')                                             
      continue;                                                       
    *p = '\0';                                                        
ffc120f0:	3b 40 00 00 	li      r26,0                                  
  oumask = 0;                                                         
  retval = 1;                                                         
  if (p[0] == '/')    /* Skip leading '/'. */                         
    ++p;                                                              
  for (first = 1, last = 0; !last ; ++p) {                            
    if (p[0] == '\0')                                                 
ffc120f4:	41 9e 00 18 	beq-    cr7,ffc1210c <rtems_mkdir+0x88>        <== NEVER TAKEN
      last = 1;                                                       
    else if (p[0] != '/')                                             
ffc120f8:	2f 80 00 2f 	cmpwi   cr7,r0,47                              
ffc120fc:	41 9e 00 a8 	beq-    cr7,ffc121a4 <rtems_mkdir+0x120>       
        retval = 0;                                                   
        break;                                                        
      }                                                               
    }                                                                 
    if (!last)                                                        
        *p = '/';                                                     
ffc12100:	8c 1f 00 01 	lbzu    r0,1(r31)                              
  oumask = 0;                                                         
  retval = 1;                                                         
  if (p[0] == '/')    /* Skip leading '/'. */                         
    ++p;                                                              
  for (first = 1, last = 0; !last ; ++p) {                            
    if (p[0] == '\0')                                                 
ffc12104:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc12108:	40 be ff f0 	bne-    cr7,ffc120f8 <rtems_mkdir+0x74>        
    else if (p[0] != '/')                                             
      continue;                                                       
    *p = '\0';                                                        
    if (!last && p[1] == '\0')                                        
      last = 1;                                                       
    if (first) {                                                      
ffc1210c:	2f 89 00 00 	cmpwi   cr7,r9,0                               
  for (first = 1, last = 0; !last ; ++p) {                            
    if (p[0] == '\0')                                                 
      last = 1;                                                       
    else if (p[0] != '/')                                             
      continue;                                                       
    *p = '\0';                                                        
ffc12110:	98 1f 00 00 	stb     r0,0(r31)                              
ffc12114:	3b 00 00 01 	li      r24,1                                  
    if (!last && p[1] == '\0')                                        
      last = 1;                                                       
    if (first) {                                                      
ffc12118:	41 be 00 a4 	beq+    cr7,ffc121bc <rtems_mkdir+0x138>       
      oumask = umask(0);                                              
      numask = oumask & ~(S_IWUSR | S_IXUSR);                         
      (void)umask(numask);                                            
      first = 0;                                                      
    }                                                                 
    if (last)                                                         
ffc1211c:	2e 18 00 00 	cmpwi   cr4,r24,0                              
       *    mkdir [-m mode] dir                                       
       *                                                              
       * We change the user's umask and then restore it,              
       * instead of doing chmod's.                                    
       */                                                             
      oumask = umask(0);                                              
ffc12120:	38 60 00 00 	li      r3,0                                   
ffc12124:	48 00 02 51 	bl      ffc12374 <umask>                       
ffc12128:	7c 7d 1b 78 	mr      r29,r3                                 
      numask = oumask & ~(S_IWUSR | S_IXUSR);                         
      (void)umask(numask);                                            
ffc1212c:	54 63 06 ae 	rlwinm  r3,r3,0,26,23                          
ffc12130:	48 00 02 45 	bl      ffc12374 <umask>                       
      first = 0;                                                      
    }                                                                 
    if (last)                                                         
ffc12134:	41 b2 00 90 	beq+    cr4,ffc121c4 <rtems_mkdir+0x140>       
      (void)umask(oumask);                                            
ffc12138:	7f a3 eb 78 	mr      r3,r29                                 
ffc1213c:	48 00 02 39 	bl      ffc12374 <umask>                       
    if (mkdir(path, last ? omode : S_IRWXU | S_IRWXG | S_IRWXO) < 0) {
ffc12140:	7f 64 db 78 	mr      r4,r27                                 
ffc12144:	7f c3 f3 78 	mr      r3,r30                                 
ffc12148:	4b ff 4b 11 	bl      ffc06c58 <mkdir>                       
ffc1214c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc12150:	40 bc 00 88 	bge+    cr7,ffc121d8 <rtems_mkdir+0x154>       
      if (errno == EEXIST || errno == EISDIR) {                       
ffc12154:	48 00 1e 0d 	bl      ffc13f60 <__errno>                     
ffc12158:	80 03 00 00 	lwz     r0,0(r3)                               
ffc1215c:	2f 80 00 11 	cmpwi   cr7,r0,17                              
ffc12160:	41 9e 00 14 	beq-    cr7,ffc12174 <rtems_mkdir+0xf0>        
ffc12164:	48 00 1d fd 	bl      ffc13f60 <__errno>                     
ffc12168:	80 03 00 00 	lwz     r0,0(r3)                               
ffc1216c:	2f 80 00 15 	cmpwi   cr7,r0,21                              
ffc12170:	40 9e 01 1c 	bne-    cr7,ffc1228c <rtems_mkdir+0x208>       <== ALWAYS TAKEN
        if (stat(path, &sb) < 0) {                                    
ffc12174:	7f c3 f3 78 	mr      r3,r30                                 
ffc12178:	7f 24 cb 78 	mr      r4,r25                                 
ffc1217c:	48 00 01 19 	bl      ffc12294 <stat>                        
ffc12180:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc12184:	41 9c 01 08 	blt-    cr7,ffc1228c <rtems_mkdir+0x208>       <== NEVER TAKEN
          retval = 0;                                                 
          break;                                                      
        } else if (!S_ISDIR(sb.st_mode)) {                            
ffc12188:	80 01 00 14 	lwz     r0,20(r1)                              
ffc1218c:	54 00 04 26 	rlwinm  r0,r0,0,16,19                          
ffc12190:	2f 80 40 00 	cmpwi   cr7,r0,16384                           
ffc12194:	40 9e 00 b4 	bne-    cr7,ffc12248 <rtems_mkdir+0x1c4>       
          else                                                        
            errno = ENOTDIR;                                          
          retval = 0;                                                 
          break;                                                      
        }                                                             
        if (last)                                                     
ffc12198:	41 92 00 94 	beq-    cr4,ffc1222c <rtems_mkdir+0x1a8>       
          retval = 2;                                                 
ffc1219c:	3b e0 00 02 	li      r31,2                                  
ffc121a0:	48 00 00 40 	b       ffc121e0 <rtems_mkdir+0x15c>           
    else if (p[0] != '/')                                             
      continue;                                                       
    *p = '\0';                                                        
    if (!last && p[1] == '\0')                                        
      last = 1;                                                       
    if (first) {                                                      
ffc121a4:	2f 89 00 00 	cmpwi   cr7,r9,0                               
    if (p[0] == '\0')                                                 
      last = 1;                                                       
    else if (p[0] != '/')                                             
      continue;                                                       
    *p = '\0';                                                        
    if (!last && p[1] == '\0')                                        
ffc121a8:	8b 1f 00 01 	lbz     r24,1(r31)                             
  for (first = 1, last = 0; !last ; ++p) {                            
    if (p[0] == '\0')                                                 
      last = 1;                                                       
    else if (p[0] != '/')                                             
      continue;                                                       
    *p = '\0';                                                        
ffc121ac:	9b 5f 00 00 	stb     r26,0(r31)                             
    if (!last && p[1] == '\0')                                        
ffc121b0:	7f 18 00 34 	cntlzw  r24,r24                                
ffc121b4:	57 18 d9 7e 	rlwinm  r24,r24,27,5,31                        
      last = 1;                                                       
    if (first) {                                                      
ffc121b8:	40 be ff 64 	bne-    cr7,ffc1211c <rtems_mkdir+0x98>        
      oumask = umask(0);                                              
      numask = oumask & ~(S_IWUSR | S_IXUSR);                         
      (void)umask(numask);                                            
      first = 0;                                                      
    }                                                                 
    if (last)                                                         
ffc121bc:	2e 18 00 00 	cmpwi   cr4,r24,0                              
ffc121c0:	40 b2 ff 78 	bne-    cr4,ffc12138 <rtems_mkdir+0xb4>        
      (void)umask(oumask);                                            
    if (mkdir(path, last ? omode : S_IRWXU | S_IRWXG | S_IRWXO) < 0) {
ffc121c4:	38 80 01 ff 	li      r4,511                                 
ffc121c8:	7f c3 f3 78 	mr      r3,r30                                 
ffc121cc:	4b ff 4a 8d 	bl      ffc06c58 <mkdir>                       
ffc121d0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc121d4:	41 bc ff 80 	blt-    cr7,ffc12154 <rtems_mkdir+0xd0>        
      } else {                                                        
        retval = 0;                                                   
        break;                                                        
      }                                                               
    }                                                                 
    if (!last)                                                        
ffc121d8:	41 92 00 54 	beq-    cr4,ffc1222c <rtems_mkdir+0x1a8>       
ffc121dc:	3b e0 00 01 	li      r31,1                                  
  int success = 0;                                                    
  char *dup_path = strdup(path);                                      
                                                                      
  if (dup_path != NULL) {                                             
    success = build(dup_path, mode);                                  
    free(dup_path);                                                   
ffc121e0:	7f c3 f3 78 	mr      r3,r30                                 
ffc121e4:	4b ff 41 7d 	bl      ffc06360 <free>                        
  }                                                                   
                                                                      
  return success != 0 ? 0 : -1;                                       
ffc121e8:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc121ec:	38 60 00 00 	li      r3,0                                   
ffc121f0:	41 9e 00 94 	beq-    cr7,ffc12284 <rtems_mkdir+0x200>       <== NEVER TAKEN
}                                                                     
ffc121f4:	80 01 00 84 	lwz     r0,132(r1)                             
ffc121f8:	81 81 00 5c 	lwz     r12,92(r1)                             
ffc121fc:	7c 08 03 a6 	mtlr    r0                                     
ffc12200:	83 01 00 60 	lwz     r24,96(r1)                             
ffc12204:	83 21 00 64 	lwz     r25,100(r1)                            
ffc12208:	7d 80 81 20 	mtcrf   8,r12                                  
ffc1220c:	83 41 00 68 	lwz     r26,104(r1)                            
ffc12210:	83 61 00 6c 	lwz     r27,108(r1)                            
ffc12214:	83 81 00 70 	lwz     r28,112(r1)                            
ffc12218:	83 a1 00 74 	lwz     r29,116(r1)                            
ffc1221c:	83 c1 00 78 	lwz     r30,120(r1)                            
ffc12220:	83 e1 00 7c 	lwz     r31,124(r1)                            
ffc12224:	38 21 00 80 	addi    r1,r1,128                              
ffc12228:	4e 80 00 20 	blr                                            
        retval = 0;                                                   
        break;                                                        
      }                                                               
    }                                                                 
    if (!last)                                                        
        *p = '/';                                                     
ffc1222c:	9b 9f 00 00 	stb     r28,0(r31)                             
ffc12230:	39 20 00 00 	li      r9,0                                   
ffc12234:	8c 1f 00 01 	lbzu    r0,1(r31)                              
ffc12238:	4b ff fe cc 	b       ffc12104 <rtems_mkdir+0x80>            
                                                                      
  p = path;                                                           
  oumask = 0;                                                         
  retval = 1;                                                         
  if (p[0] == '/')    /* Skip leading '/'. */                         
    ++p;                                                              
ffc1223c:	88 1e 00 01 	lbz     r0,1(r30)                              
ffc12240:	3b fe 00 01 	addi    r31,r30,1                              
ffc12244:	4b ff fe 98 	b       ffc120dc <rtems_mkdir+0x58>            
      if (errno == EEXIST || errno == EISDIR) {                       
        if (stat(path, &sb) < 0) {                                    
          retval = 0;                                                 
          break;                                                      
        } else if (!S_ISDIR(sb.st_mode)) {                            
          if (last)                                                   
ffc12248:	41 92 00 20 	beq-    cr4,ffc12268 <rtems_mkdir+0x1e4>       
            errno = EEXIST;                                           
ffc1224c:	48 00 1d 15 	bl      ffc13f60 <__errno>                     
ffc12250:	38 00 00 11 	li      r0,17                                  
ffc12254:	90 03 00 00 	stw     r0,0(r3)                               
  int success = 0;                                                    
  char *dup_path = strdup(path);                                      
                                                                      
  if (dup_path != NULL) {                                             
    success = build(dup_path, mode);                                  
    free(dup_path);                                                   
ffc12258:	7f c3 f3 78 	mr      r3,r30                                 
ffc1225c:	4b ff 41 05 	bl      ffc06360 <free>                        
  }                                                                   
                                                                      
  return success != 0 ? 0 : -1;                                       
ffc12260:	38 60 ff ff 	li      r3,-1                                  
ffc12264:	4b ff ff 90 	b       ffc121f4 <rtems_mkdir+0x170>           
          break;                                                      
        } else if (!S_ISDIR(sb.st_mode)) {                            
          if (last)                                                   
            errno = EEXIST;                                           
          else                                                        
            errno = ENOTDIR;                                          
ffc12268:	48 00 1c f9 	bl      ffc13f60 <__errno>                     
ffc1226c:	38 00 00 14 	li      r0,20                                  
ffc12270:	90 03 00 00 	stw     r0,0(r3)                               
    }                                                                 
    if (!last)                                                        
        *p = '/';                                                     
  }                                                                   
  if (!first && !last)                                                
    (void)umask(oumask);                                              
ffc12274:	7f a3 eb 78 	mr      r3,r29                                 
ffc12278:	48 00 00 fd 	bl      ffc12374 <umask>                       
  int success = 0;                                                    
  char *dup_path = strdup(path);                                      
                                                                      
  if (dup_path != NULL) {                                             
    success = build(dup_path, mode);                                  
    free(dup_path);                                                   
ffc1227c:	7f c3 f3 78 	mr      r3,r30                                 
ffc12280:	4b ff 40 e1 	bl      ffc06360 <free>                        
  }                                                                   
                                                                      
  return success != 0 ? 0 : -1;                                       
ffc12284:	38 60 ff ff 	li      r3,-1                                  
ffc12288:	4b ff ff 6c 	b       ffc121f4 <rtems_mkdir+0x170>           
      }                                                               
    }                                                                 
    if (!last)                                                        
        *p = '/';                                                     
  }                                                                   
  if (!first && !last)                                                
ffc1228c:	41 92 ff e8 	beq+    cr4,ffc12274 <rtems_mkdir+0x1f0>       <== NEVER TAKEN
ffc12290:	4b ff ff ec 	b       ffc1227c <rtems_mkdir+0x1f8>           
                                                                      

ffc0af54 <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 ) {
ffc0af54:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc0af58:	7c 08 02 a6 	mflr    r0                                     
ffc0af5c:	93 e1 00 0c 	stw     r31,12(r1)                             
  int                  i;                                             
                                                                      
  /*                                                                  
   * Validate parameters and look up information structure.           
   */                                                                 
  if ( !info )                                                        
ffc0af60:	7c bf 2b 79 	mr.     r31,r5                                 
rtems_status_code rtems_object_get_class_information(                 
  int                                 the_api,                        
  int                                 the_class,                      
  rtems_object_api_class_information *info                            
)                                                                     
{                                                                     
ffc0af64:	90 01 00 14 	stw     r0,20(r1)                              
                                                                      
  /*                                                                  
   * Validate parameters and look up information structure.           
   */                                                                 
  if ( !info )                                                        
    return RTEMS_INVALID_ADDRESS;                                     
ffc0af68:	38 00 00 09 	li      r0,9                                   
  int                  i;                                             
                                                                      
  /*                                                                  
   * Validate parameters and look up information structure.           
   */                                                                 
  if ( !info )                                                        
ffc0af6c:	41 82 00 7c 	beq-    ffc0afe8 <rtems_object_get_class_information+0x94>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  obj_info = _Objects_Get_information( the_api, the_class );          
ffc0af70:	54 84 04 3e 	clrlwi  r4,r4,16                               
ffc0af74:	48 00 24 e5 	bl      ffc0d458 <_Objects_Get_information>    
  if ( !obj_info )                                                    
    return RTEMS_INVALID_NUMBER;                                      
ffc0af78:	38 00 00 0a 	li      r0,10                                  
   */                                                                 
  if ( !info )                                                        
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  obj_info = _Objects_Get_information( the_api, the_class );          
  if ( !obj_info )                                                    
ffc0af7c:	2c 03 00 00 	cmpwi   r3,0                                   
ffc0af80:	41 82 00 68 	beq-    ffc0afe8 <rtems_object_get_class_information+0x94>
   * 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;                          
  info->maximum     = obj_info->maximum;                              
ffc0af84:	a1 03 00 10 	lhz     r8,16(r3)                              
    return RTEMS_INVALID_NUMBER;                                      
                                                                      
  /*                                                                  
   * Return information about this object class to the user.          
   */                                                                 
  info->minimum_id  = obj_info->minimum_id;                           
ffc0af88:	80 03 00 08 	lwz     r0,8(r3)                               
  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++ )               
ffc0af8c:	2f 88 00 00 	cmpwi   cr7,r8,0                               
                                                                      
  /*                                                                  
   * Return information about this object class to the user.          
   */                                                                 
  info->minimum_id  = obj_info->minimum_id;                           
  info->maximum_id  = obj_info->maximum_id;                           
ffc0af90:	81 63 00 0c 	lwz     r11,12(r3)                             
  info->auto_extend = obj_info->auto_extend;                          
ffc0af94:	89 23 00 12 	lbz     r9,18(r3)                              
    return RTEMS_INVALID_NUMBER;                                      
                                                                      
  /*                                                                  
   * Return information about this object class to the user.          
   */                                                                 
  info->minimum_id  = obj_info->minimum_id;                           
ffc0af98:	90 1f 00 00 	stw     r0,0(r31)                              
  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++ )               
ffc0af9c:	38 00 00 00 	li      r0,0                                   
                                                                      
  /*                                                                  
   * Return information about this object class to the user.          
   */                                                                 
  info->minimum_id  = obj_info->minimum_id;                           
  info->maximum_id  = obj_info->maximum_id;                           
ffc0afa0:	91 7f 00 04 	stw     r11,4(r31)                             
  info->auto_extend = obj_info->auto_extend;                          
ffc0afa4:	99 3f 00 0c 	stb     r9,12(r31)                             
  info->maximum     = obj_info->maximum;                              
ffc0afa8:	91 1f 00 08 	stw     r8,8(r31)                              
                                                                      
  for ( unallocated=0, i=1 ; i <= info->maximum ; i++ )               
ffc0afac:	41 9e 00 34 	beq-    cr7,ffc0afe0 <rtems_object_get_class_information+0x8c><== NEVER TAKEN
ffc0afb0:	80 e3 00 1c 	lwz     r7,28(r3)                              
ffc0afb4:	39 60 00 01 	li      r11,1                                  
ffc0afb8:	39 20 00 01 	li      r9,1                                   
ffc0afbc:	39 29 00 01 	addi    r9,r9,1                                
ffc0afc0:	7f 88 48 40 	cmplw   cr7,r8,r9                              
    if ( !obj_info->local_table[i] )                                  
ffc0afc4:	55 6b 10 3a 	rlwinm  r11,r11,2,0,29                         
ffc0afc8:	7d 47 58 2e 	lwzx    r10,r7,r11                             
  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++ )               
ffc0afcc:	7d 2b 4b 78 	mr      r11,r9                                 
    if ( !obj_info->local_table[i] )                                  
      unallocated++;                                                  
ffc0afd0:	20 ca 00 00 	subfic  r6,r10,0                               
ffc0afd4:	7c c0 01 94 	addze   r6,r0                                  
ffc0afd8:	7c c0 33 78 	mr      r0,r6                                  
  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++ )               
ffc0afdc:	40 9c ff e0 	bge+    cr7,ffc0afbc <rtems_object_get_class_information+0x68>
    if ( !obj_info->local_table[i] )                                  
      unallocated++;                                                  
                                                                      
  info->unallocated = unallocated;                                    
ffc0afe0:	90 1f 00 10 	stw     r0,16(r31)                             
                                                                      
  return RTEMS_SUCCESSFUL;                                            
ffc0afe4:	38 00 00 00 	li      r0,0                                   
}                                                                     
ffc0afe8:	7c 03 03 78 	mr      r3,r0                                  
ffc0afec:	80 01 00 14 	lwz     r0,20(r1)                              
ffc0aff0:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0aff4:	38 21 00 10 	addi    r1,r1,16                               
ffc0aff8:	7c 08 03 a6 	mtlr    r0                                     
ffc0affc:	4e 80 00 20 	blr                                            
                                                                      

ffc0afc0 <rtems_panic>: void rtems_panic( const char *printf_format, ... ) {
ffc0afc0:	94 21 ff 88 	stwu    r1,-120(r1)                            
ffc0afc4:	7c 08 02 a6 	mflr    r0                                     
ffc0afc8:	90 81 00 1c 	stw     r4,28(r1)                              
ffc0afcc:	90 01 00 7c 	stw     r0,124(r1)                             
ffc0afd0:	90 a1 00 20 	stw     r5,32(r1)                              
ffc0afd4:	90 c1 00 24 	stw     r6,36(r1)                              
ffc0afd8:	90 e1 00 28 	stw     r7,40(r1)                              
ffc0afdc:	91 01 00 2c 	stw     r8,44(r1)                              
ffc0afe0:	91 21 00 30 	stw     r9,48(r1)                              
ffc0afe4:	91 41 00 34 	stw     r10,52(r1)                             
ffc0afe8:	40 86 00 24 	bne-    cr1,ffc0b00c <rtems_panic+0x4c>        <== ALWAYS TAKEN
ffc0afec:	d8 21 00 38 	stfd    f1,56(r1)                              <== NOT EXECUTED
ffc0aff0:	d8 41 00 40 	stfd    f2,64(r1)                              <== NOT EXECUTED
ffc0aff4:	d8 61 00 48 	stfd    f3,72(r1)                              <== NOT EXECUTED
ffc0aff8:	d8 81 00 50 	stfd    f4,80(r1)                              <== NOT EXECUTED
ffc0affc:	d8 a1 00 58 	stfd    f5,88(r1)                              <== NOT EXECUTED
ffc0b000:	d8 c1 00 60 	stfd    f6,96(r1)                              <== NOT EXECUTED
ffc0b004:	d8 e1 00 68 	stfd    f7,104(r1)                             <== NOT EXECUTED
ffc0b008:	d9 01 00 70 	stfd    f8,112(r1)                             <== NOT EXECUTED
  va_list arglist;                                                    
                                                                      
  va_start(arglist, printf_format);                                   
ffc0b00c:	38 00 00 01 	li      r0,1                                   
ffc0b010:	98 01 00 08 	stb     r0,8(r1)                               
ffc0b014:	38 00 00 00 	li      r0,0                                   
                                                                      
void rtems_panic(                                                     
  const char *printf_format,                                          
  ...                                                                 
)                                                                     
{                                                                     
ffc0b018:	7c 64 1b 78 	mr      r4,r3                                  
  va_list arglist;                                                    
                                                                      
  va_start(arglist, printf_format);                                   
ffc0b01c:	98 01 00 09 	stb     r0,9(r1)                               
ffc0b020:	38 01 00 80 	addi    r0,r1,128                              
  (void) rtems_verror(RTEMS_ERROR_PANIC, printf_format, arglist);     
ffc0b024:	38 a1 00 08 	addi    r5,r1,8                                
  ...                                                                 
)                                                                     
{                                                                     
  va_list arglist;                                                    
                                                                      
  va_start(arglist, printf_format);                                   
ffc0b028:	90 01 00 0c 	stw     r0,12(r1)                              
  (void) rtems_verror(RTEMS_ERROR_PANIC, printf_format, arglist);     
ffc0b02c:	3c 60 20 00 	lis     r3,8192                                
  ...                                                                 
)                                                                     
{                                                                     
  va_list arglist;                                                    
                                                                      
  va_start(arglist, printf_format);                                   
ffc0b030:	38 01 00 18 	addi    r0,r1,24                               
ffc0b034:	90 01 00 10 	stw     r0,16(r1)                              
  (void) rtems_verror(RTEMS_ERROR_PANIC, printf_format, arglist);     
ffc0b038:	4b ff fc fd 	bl      ffc0ad34 <rtems_verror>                
  va_end(arglist);                                                    
                                                                      
  rtems_error(0, "fatal error, exiting");                             
ffc0b03c:	3c 80 ff c3 	lis     r4,-61                                 
ffc0b040:	38 84 97 f8 	addi    r4,r4,-26632                           
ffc0b044:	38 60 00 00 	li      r3,0                                   
ffc0b048:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0b04c:	4b ff fe 9d 	bl      ffc0aee8 <rtems_error>                 
  _exit(errno);                                                       
ffc0b050:	48 00 e3 45 	bl      ffc19394 <__errno>                     
ffc0b054:	80 63 00 00 	lwz     r3,0(r3)                               
ffc0b058:	48 00 0d 7d 	bl      ffc0bdd4 <_exit>                       
                                                                      

ffc18650 <rtems_partition_create>: uint32_t length, uint32_t buffer_size, rtems_attribute attribute_set, rtems_id *id ) {
ffc18650:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc18654:	7c 08 02 a6 	mflr    r0                                     
ffc18658:	93 e1 00 2c 	stw     r31,44(r1)                             
  register Partition_Control *the_partition;                          
                                                                      
  if ( !rtems_is_name_valid( name ) )                                 
ffc1865c:	7c 7f 1b 79 	mr.     r31,r3                                 
    return RTEMS_INVALID_NAME;                                        
ffc18660:	38 60 00 03 	li      r3,3                                   
  uint32_t         length,                                            
  uint32_t         buffer_size,                                       
  rtems_attribute  attribute_set,                                     
  rtems_id        *id                                                 
)                                                                     
{                                                                     
ffc18664:	93 c1 00 28 	stw     r30,40(r1)                             
ffc18668:	7c be 2b 78 	mr      r30,r5                                 
ffc1866c:	90 01 00 34 	stw     r0,52(r1)                              
ffc18670:	93 61 00 1c 	stw     r27,28(r1)                             
ffc18674:	93 81 00 20 	stw     r28,32(r1)                             
ffc18678:	93 a1 00 24 	stw     r29,36(r1)                             
  register Partition_Control *the_partition;                          
                                                                      
  if ( !rtems_is_name_valid( name ) )                                 
ffc1867c:	41 82 00 48 	beq-    ffc186c4 <rtems_partition_create+0x74> 
    return RTEMS_INVALID_NAME;                                        
                                                                      
  if ( !starting_address )                                            
ffc18680:	2f 84 00 00 	cmpwi   cr7,r4,0                               
    return RTEMS_INVALID_ADDRESS;                                     
ffc18684:	38 60 00 09 	li      r3,9                                   
  register Partition_Control *the_partition;                          
                                                                      
  if ( !rtems_is_name_valid( name ) )                                 
    return RTEMS_INVALID_NAME;                                        
                                                                      
  if ( !starting_address )                                            
ffc18688:	41 9e 00 3c 	beq-    cr7,ffc186c4 <rtems_partition_create+0x74>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !id )                                                          
ffc1868c:	2f 88 00 00 	cmpwi   cr7,r8,0                               
ffc18690:	41 9e 00 34 	beq-    cr7,ffc186c4 <rtems_partition_create+0x74><== NEVER TAKEN
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( length == 0 || buffer_size == 0 || length < buffer_size ||     
ffc18694:	2f 85 00 00 	cmpwi   cr7,r5,0                               
         !_Partition_Is_buffer_size_aligned( buffer_size ) )          
    return RTEMS_INVALID_SIZE;                                        
ffc18698:	38 60 00 08 	li      r3,8                                   
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !id )                                                          
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( length == 0 || buffer_size == 0 || length < buffer_size ||     
ffc1869c:	41 9e 00 28 	beq-    cr7,ffc186c4 <rtems_partition_create+0x74>
ffc186a0:	2f 86 00 00 	cmpwi   cr7,r6,0                               
ffc186a4:	41 9e 00 20 	beq-    cr7,ffc186c4 <rtems_partition_create+0x74>
ffc186a8:	7f 85 30 40 	cmplw   cr7,r5,r6                              
ffc186ac:	41 9c 00 18 	blt-    cr7,ffc186c4 <rtems_partition_create+0x74>
ffc186b0:	70 c0 00 07 	andi.   r0,r6,7                                
ffc186b4:	40 82 00 10 	bne-    ffc186c4 <rtems_partition_create+0x74> 
         !_Partition_Is_buffer_size_aligned( buffer_size ) )          
    return RTEMS_INVALID_SIZE;                                        
                                                                      
  if ( !_Addresses_Is_aligned( starting_address ) )                   
ffc186b8:	70 9b 00 07 	andi.   r27,r4,7                               
     return RTEMS_INVALID_ADDRESS;                                    
ffc186bc:	38 60 00 09 	li      r3,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 ) )                   
ffc186c0:	41 82 00 28 	beq-    ffc186e8 <rtems_partition_create+0x98> 
    );                                                                
#endif                                                                
                                                                      
  _Thread_Enable_dispatch();                                          
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
ffc186c4:	80 01 00 34 	lwz     r0,52(r1)                              
ffc186c8:	83 61 00 1c 	lwz     r27,28(r1)                             
ffc186cc:	7c 08 03 a6 	mtlr    r0                                     
ffc186d0:	83 81 00 20 	lwz     r28,32(r1)                             
ffc186d4:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc186d8:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc186dc:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc186e0:	38 21 00 30 	addi    r1,r1,48                               
ffc186e4:	4e 80 00 20 	blr                                            
ffc186e8:	3d 20 00 00 	lis     r9,0                                   
ffc186ec:	81 69 28 24 	lwz     r11,10276(r9)                          
ffc186f0:	38 0b 00 01 	addi    r0,r11,1                               
ffc186f4:	90 09 28 24 	stw     r0,10276(r9)                           
 *  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 );
ffc186f8:	3f 80 00 00 	lis     r28,0                                  
ffc186fc:	90 81 00 08 	stw     r4,8(r1)                               
ffc18700:	3b 9c 6e 40 	addi    r28,r28,28224                          
ffc18704:	7f 83 e3 78 	mr      r3,r28                                 
ffc18708:	90 c1 00 0c 	stw     r6,12(r1)                              
ffc1870c:	90 e1 00 10 	stw     r7,16(r1)                              
ffc18710:	91 01 00 14 	stw     r8,20(r1)                              
ffc18714:	48 00 5e f1 	bl      ffc1e604 <_Objects_Allocate>           
                                                                      
  _Thread_Disable_dispatch();               /* prevents deletion */   
                                                                      
  the_partition = _Partition_Allocate();                              
                                                                      
  if ( !the_partition ) {                                             
ffc18718:	7c 7d 1b 79 	mr.     r29,r3                                 
ffc1871c:	80 81 00 08 	lwz     r4,8(r1)                               
ffc18720:	80 c1 00 0c 	lwz     r6,12(r1)                              
ffc18724:	80 e1 00 10 	lwz     r7,16(r1)                              
ffc18728:	81 01 00 14 	lwz     r8,20(r1)                              
ffc1872c:	41 82 00 50 	beq-    ffc1877c <rtems_partition_create+0x12c>
  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,        
ffc18730:	7c be 33 96 	divwu   r5,r30,r6                              
    _Thread_Enable_dispatch();                                        
    return RTEMS_TOO_MANY;                                            
  }                                                                   
#endif                                                                
                                                                      
  the_partition->starting_address      = starting_address;            
ffc18734:	90 9d 00 10 	stw     r4,16(r29)                             
  the_partition->length                = length;                      
  the_partition->buffer_size           = buffer_size;                 
ffc18738:	90 dd 00 18 	stw     r6,24(r29)                             
  the_partition->attribute_set         = attribute_set;               
ffc1873c:	90 fd 00 1c 	stw     r7,28(r29)                             
    return RTEMS_TOO_MANY;                                            
  }                                                                   
#endif                                                                
                                                                      
  the_partition->starting_address      = starting_address;            
  the_partition->length                = length;                      
ffc18740:	93 dd 00 14 	stw     r30,20(r29)                            
  the_partition->buffer_size           = buffer_size;                 
  the_partition->attribute_set         = attribute_set;               
  the_partition->number_of_used_blocks = 0;                           
ffc18744:	93 7d 00 20 	stw     r27,32(r29)                            
                                                                      
  _Chain_Initialize( &the_partition->Memory, starting_address,        
ffc18748:	91 01 00 14 	stw     r8,20(r1)                              
ffc1874c:	38 7d 00 24 	addi    r3,r29,36                              
ffc18750:	48 00 42 05 	bl      ffc1c954 <_Chain_Initialize>           
  Objects_Name         name                                           
)                                                                     
{                                                                     
  _Objects_Set_local_object(                                          
    information,                                                      
    _Objects_Get_index( the_object->id ),                             
ffc18754:	80 1d 00 08 	lwz     r0,8(r29)                              
  #if defined(RTEMS_DEBUG)                                            
    if ( index > information->maximum )                               
      return;                                                         
  #endif                                                              
                                                                      
  information->local_table[ index ] = the_object;                     
ffc18758:	81 7c 00 1c 	lwz     r11,28(r28)                            
ffc1875c:	54 09 13 ba 	rlwinm  r9,r0,2,14,29                          
ffc18760:	7f ab 49 2e 	stwx    r29,r11,r9                             
    information,                                                      
    _Objects_Get_index( the_object->id ),                             
    the_object                                                        
  );                                                                  
                                                                      
  the_object->name = name;                                            
ffc18764:	93 fd 00 0c 	stw     r31,12(r29)                            
    &_Partition_Information,                                          
    &the_partition->Object,                                           
    (Objects_Name) name                                               
  );                                                                  
                                                                      
  *id = the_partition->Object.id;                                     
ffc18768:	81 01 00 14 	lwz     r8,20(r1)                              
ffc1876c:	90 08 00 00 	stw     r0,0(r8)                               
      name,                                                           
      0                  /* Not used */                               
    );                                                                
#endif                                                                
                                                                      
  _Thread_Enable_dispatch();                                          
ffc18770:	48 00 70 4d 	bl      ffc1f7bc <_Thread_Enable_dispatch>     
  return RTEMS_SUCCESSFUL;                                            
ffc18774:	38 60 00 00 	li      r3,0                                   
ffc18778:	4b ff ff 4c 	b       ffc186c4 <rtems_partition_create+0x74> 
  _Thread_Disable_dispatch();               /* prevents deletion */   
                                                                      
  the_partition = _Partition_Allocate();                              
                                                                      
  if ( !the_partition ) {                                             
    _Thread_Enable_dispatch();                                        
ffc1877c:	48 00 70 41 	bl      ffc1f7bc <_Thread_Enable_dispatch>     
    return RTEMS_TOO_MANY;                                            
ffc18780:	38 60 00 05 	li      r3,5                                   
ffc18784:	4b ff ff 40 	b       ffc186c4 <rtems_partition_create+0x74> 
                                                                      

ffc18914 <rtems_partition_return_buffer>: rtems_status_code rtems_partition_return_buffer( rtems_id id, void *buffer ) {
ffc18914:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc18918:	7c 08 02 a6 	mflr    r0                                     
ffc1891c:	90 01 00 24 	stw     r0,36(r1)                              
ffc18920:	7c 60 1b 78 	mr      r0,r3                                  
  Objects_Id         id,                                              
  Objects_Locations *location                                         
)                                                                     
{                                                                     
  return (Partition_Control *)                                        
    _Objects_Get( &_Partition_Information, id, location );            
ffc18924:	3c 60 00 00 	lis     r3,0                                   
ffc18928:	93 e1 00 1c 	stw     r31,28(r1)                             
ffc1892c:	38 63 6e 40 	addi    r3,r3,28224                            
ffc18930:	7c 9f 23 78 	mr      r31,r4                                 
ffc18934:	38 a1 00 08 	addi    r5,r1,8                                
ffc18938:	93 c1 00 18 	stw     r30,24(r1)                             
ffc1893c:	7c 04 03 78 	mr      r4,r0                                  
ffc18940:	48 00 63 29 	bl      ffc1ec68 <_Objects_Get>                
  register Partition_Control *the_partition;                          
  Objects_Locations           location;                               
                                                                      
  the_partition = _Partition_Get( id, &location );                    
  switch ( location ) {                                               
ffc18944:	80 01 00 08 	lwz     r0,8(r1)                               
ffc18948:	7c 7e 1b 78 	mr      r30,r3                                 
ffc1894c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
ffc18950:	38 60 00 04 	li      r3,4                                   
{                                                                     
  register Partition_Control *the_partition;                          
  Objects_Locations           location;                               
                                                                      
  the_partition = _Partition_Get( id, &location );                    
  switch ( location ) {                                               
ffc18954:	40 9e 00 58 	bne-    cr7,ffc189ac <rtems_partition_return_buffer+0x98>
)                                                                     
{                                                                     
  void *starting;                                                     
  void *ending;                                                       
                                                                      
  starting = the_partition->starting_address;                         
ffc18958:	80 1e 00 10 	lwz     r0,16(r30)                             
  ending   = _Addresses_Add_offset( starting, the_partition->length );
ffc1895c:	81 3e 00 14 	lwz     r9,20(r30)                             
  const void *address,                                                
  const void *base,                                                   
  const void *limit                                                   
)                                                                     
{                                                                     
  return (address >= base && address <= limit);                       
ffc18960:	7f 9f 00 40 	cmplw   cr7,r31,r0                             
ffc18964:	41 9c 00 60 	blt-    cr7,ffc189c4 <rtems_partition_return_buffer+0xb0>
RTEMS_INLINE_ROUTINE void *_Addresses_Add_offset (                    
  const void *base,                                                   
  uintptr_t   offset                                                  
)                                                                     
{                                                                     
  return (void *)((uintptr_t)base + offset);                          
ffc18968:	7d 20 4a 14 	add     r9,r0,r9                               
  const void *address,                                                
  const void *base,                                                   
  const void *limit                                                   
)                                                                     
{                                                                     
  return (address >= base && address <= limit);                       
ffc1896c:	7f 9f 48 40 	cmplw   cr7,r31,r9                             
ffc18970:	41 9d 00 54 	bgt-    cr7,ffc189c4 <rtems_partition_return_buffer+0xb0><== NEVER TAKEN
  offset = (uint32_t) _Addresses_Subtract(                            
    the_buffer,                                                       
    the_partition->starting_address                                   
  );                                                                  
                                                                      
  return ((offset % the_partition->buffer_size) == 0);                
ffc18974:	81 3e 00 18 	lwz     r9,24(r30)                             
RTEMS_INLINE_ROUTINE int32_t _Addresses_Subtract (                    
  const void *left,                                                   
  const void *right                                                   
)                                                                     
{                                                                     
  return (int32_t) ((const char *) left - (const char *) right);      
ffc18978:	7c 00 f8 50 	subf    r0,r0,r31                              
ffc1897c:	7d 60 4b 96 	divwu   r11,r0,r9                              
ffc18980:	7d 2b 49 d6 	mullw   r9,r11,r9                              
                                                                      
  starting = the_partition->starting_address;                         
  ending   = _Addresses_Add_offset( starting, the_partition->length );
                                                                      
  return (                                                            
    _Addresses_Is_in_range( the_buffer, starting, ending ) &&         
ffc18984:	7f 80 48 00 	cmpw    cr7,r0,r9                              
ffc18988:	40 9e 00 3c 	bne-    cr7,ffc189c4 <rtems_partition_return_buffer+0xb0>
RTEMS_INLINE_ROUTINE void _Partition_Free_buffer (                    
  Partition_Control *the_partition,                                   
  Chain_Node        *the_buffer                                       
)                                                                     
{                                                                     
  _Chain_Append( &the_partition->Memory, the_buffer );                
ffc1898c:	38 7e 00 24 	addi    r3,r30,36                              
ffc18990:	7f e4 fb 78 	mr      r4,r31                                 
ffc18994:	48 00 3f 25 	bl      ffc1c8b8 <_Chain_Append>               
                                                                      
    case OBJECTS_LOCAL:                                               
      if ( _Partition_Is_buffer_valid( buffer, the_partition ) ) {    
        _Partition_Free_buffer( the_partition, buffer );              
        the_partition->number_of_used_blocks -= 1;                    
ffc18998:	81 3e 00 20 	lwz     r9,32(r30)                             
ffc1899c:	38 09 ff ff 	addi    r0,r9,-1                               
ffc189a0:	90 1e 00 20 	stw     r0,32(r30)                             
        _Thread_Enable_dispatch();                                    
ffc189a4:	48 00 6e 19 	bl      ffc1f7bc <_Thread_Enable_dispatch>     
        return RTEMS_SUCCESSFUL;                                      
ffc189a8:	38 60 00 00 	li      r3,0                                   
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc189ac:	80 01 00 24 	lwz     r0,36(r1)                              
ffc189b0:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc189b4:	7c 08 03 a6 	mtlr    r0                                     
ffc189b8:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc189bc:	38 21 00 20 	addi    r1,r1,32                               
ffc189c0:	4e 80 00 20 	blr                                            
        _Partition_Free_buffer( the_partition, buffer );              
        the_partition->number_of_used_blocks -= 1;                    
        _Thread_Enable_dispatch();                                    
        return RTEMS_SUCCESSFUL;                                      
      }                                                               
      _Thread_Enable_dispatch();                                      
ffc189c4:	48 00 6d f9 	bl      ffc1f7bc <_Thread_Enable_dispatch>     
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc189c8:	80 01 00 24 	lwz     r0,36(r1)                              
        the_partition->number_of_used_blocks -= 1;                    
        _Thread_Enable_dispatch();                                    
        return RTEMS_SUCCESSFUL;                                      
      }                                                               
      _Thread_Enable_dispatch();                                      
      return RTEMS_INVALID_ADDRESS;                                   
ffc189cc:	38 60 00 09 	li      r3,9                                   
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc189d0:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc189d4:	7c 08 03 a6 	mtlr    r0                                     
ffc189d8:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc189dc:	38 21 00 20 	addi    r1,r1,32                               
ffc189e0:	4e 80 00 20 	blr                                            
                                                                      

ffc04028 <rtems_print_buffer>: void rtems_print_buffer( const unsigned char *buffer, int length ) {
ffc04028:	7d 80 00 26 	mfcr    r12                                    
                                                                      
  int i, mod, max;                                                    
                                                                      
  if ( !length ) return;                                              
ffc0402c:	2c 04 00 00 	cmpwi   r4,0                                   
                                                                      
void rtems_print_buffer(                                              
  const unsigned char *buffer,                                        
  int                  length                                         
)                                                                     
{                                                                     
ffc04030:	94 21 ff 40 	stwu    r1,-192(r1)                            
ffc04034:	7c 08 02 a6 	mflr    r0                                     
ffc04038:	92 c1 00 98 	stw     r22,152(r1)                            
ffc0403c:	7c 76 1b 78 	mr      r22,r3                                 
ffc04040:	90 01 00 c4 	stw     r0,196(r1)                             
ffc04044:	92 61 00 8c 	stw     r19,140(r1)                            
ffc04048:	92 81 00 90 	stw     r20,144(r1)                            
ffc0404c:	92 a1 00 94 	stw     r21,148(r1)                            
ffc04050:	92 e1 00 9c 	stw     r23,156(r1)                            
ffc04054:	93 01 00 a0 	stw     r24,160(r1)                            
ffc04058:	93 21 00 a4 	stw     r25,164(r1)                            
ffc0405c:	93 41 00 a8 	stw     r26,168(r1)                            
ffc04060:	93 61 00 ac 	stw     r27,172(r1)                            
ffc04064:	93 81 00 b0 	stw     r28,176(r1)                            
ffc04068:	93 a1 00 b4 	stw     r29,180(r1)                            
ffc0406c:	93 c1 00 b8 	stw     r30,184(r1)                            
ffc04070:	93 e1 00 bc 	stw     r31,188(r1)                            
ffc04074:	91 81 00 88 	stw     r12,136(r1)                            
                                                                      
  int i, mod, max;                                                    
                                                                      
  if ( !length ) return;                                              
ffc04078:	41 82 01 0c 	beq-    ffc04184 <rtems_print_buffer+0x15c>    
                                                                      
  mod = length % 16;                                                  
ffc0407c:	7c 98 26 70 	srawi   r24,r4,4                               
ffc04080:	7f 18 01 94 	addze   r24,r24                                
ffc04084:	57 18 20 36 	rlwinm  r24,r24,4,0,27                         
ffc04088:	7f 18 20 50 	subf    r24,r24,r4                             
                                                                      
  max = length - mod;                                                 
                                                                      
  for ( i=0 ; i<max ; i+=16 )                                         
ffc0408c:	7e b8 20 51 	subf.   r21,r24,r4                             
ffc04090:	40 81 00 ec 	ble-    ffc0417c <rtems_print_buffer+0x154>    
ffc04094:	3f 40 ff c2 	lis     r26,-62                                
ffc04098:	3f 60 00 00 	lis     r27,0                                  
ffc0409c:	3f 80 ff c2 	lis     r28,-62                                
ffc040a0:	3e e0 ff c2 	lis     r23,-62                                
ffc040a4:	3b 20 00 00 	li      r25,0                                  
ffc040a8:	3b 5a f3 f4 	addi    r26,r26,-3084                          
ffc040ac:	3b e1 00 08 	addi    r31,r1,8                               
ffc040b0:	3b 7b 26 e0 	addi    r27,r27,9952                           
ffc040b4:	3b 9c f3 fc 	addi    r28,r28,-3076                          
ffc040b8:	3a f7 f4 04 	addi    r23,r23,-3068                          
{                                                                     
                                                                      
  int  i;                                                             
  char line_buffer[120];                                              
                                                                      
  line_buffer[0] = '\0';                                              
ffc040bc:	3a 60 00 00 	li      r19,0                                  
    sprintf( line_buffer, "%s%02x ", line_buffer, buffer[ i ] );      
                                                                      
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, "   " );                                     
                                                                      
  strcat( line_buffer, "|" );                                         
ffc040c0:	3a 80 7c 00 	li      r20,31744                              
{                                                                     
                                                                      
  int  i;                                                             
  char line_buffer[120];                                              
                                                                      
  line_buffer[0] = '\0';                                              
ffc040c4:	9a 61 00 08 	stb     r19,8(r1)                              
static inline void Dump_Line(                                         
  const unsigned char *buffer,                                        
  int                  length                                         
);                                                                    
                                                                      
void rtems_print_buffer(                                              
ffc040c8:	7f b6 ca 14 	add     r29,r22,r25                            
  int  i;                                                             
  char line_buffer[120];                                              
                                                                      
  line_buffer[0] = '\0';                                              
                                                                      
  for( i=0 ; i<length ; i++ )                                         
ffc040cc:	3b c0 00 00 	li      r30,0                                  
    sprintf( line_buffer, "%s%02x ", line_buffer, buffer[ i ] );      
ffc040d0:	7c dd f0 ae 	lbzx    r6,r29,r30                             
ffc040d4:	7f e3 fb 78 	mr      r3,r31                                 
ffc040d8:	7f 44 d3 78 	mr      r4,r26                                 
ffc040dc:	7f e5 fb 78 	mr      r5,r31                                 
ffc040e0:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc040e4:	48 00 f2 91 	bl      ffc13374 <sprintf>                     
  int  i;                                                             
  char line_buffer[120];                                              
                                                                      
  line_buffer[0] = '\0';                                              
                                                                      
  for( i=0 ; i<length ; i++ )                                         
ffc040e8:	2f 9e 00 0f 	cmpwi   cr7,r30,15                             
ffc040ec:	3b de 00 01 	addi    r30,r30,1                              
ffc040f0:	40 9e ff e0 	bne+    cr7,ffc040d0 <rtems_print_buffer+0xa8> 
    sprintf( line_buffer, "%s%02x ", line_buffer, buffer[ i ] );      
                                                                      
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, "   " );                                     
                                                                      
  strcat( line_buffer, "|" );                                         
ffc040f4:	7f e3 fb 78 	mr      r3,r31                                 
ffc040f8:	48 00 f6 9d 	bl      ffc13794 <strlen>                      
  for( i=0 ; i<length ; i++ )                                         
ffc040fc:	3b c0 00 00 	li      r30,0                                  
    sprintf( line_buffer, "%s%02x ", line_buffer, buffer[ i ] );      
                                                                      
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, "   " );                                     
                                                                      
  strcat( line_buffer, "|" );                                         
ffc04100:	7e 9f 1b 2e 	sthx    r20,r31,r3                             
  for( i=0 ; i<length ; i++ )                                         
    sprintf( line_buffer, "%s%c", line_buffer,                        
             isprint( buffer[ i ] ) ? buffer[ i ] : '.' );            
ffc04104:	7c 1d f0 ae 	lbzx    r0,r29,r30                             
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, "   " );                                     
                                                                      
  strcat( line_buffer, "|" );                                         
  for( i=0 ; i<length ; i++ )                                         
    sprintf( line_buffer, "%s%c", line_buffer,                        
ffc04108:	7f e3 fb 78 	mr      r3,r31                                 
             isprint( buffer[ i ] ) ? buffer[ i ] : '.' );            
ffc0410c:	81 3b 00 00 	lwz     r9,0(r27)                              
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, "   " );                                     
                                                                      
  strcat( line_buffer, "|" );                                         
  for( i=0 ; i<length ; i++ )                                         
    sprintf( line_buffer, "%s%c", line_buffer,                        
ffc04110:	7f 84 e3 78 	mr      r4,r28                                 
ffc04114:	7f e5 fb 78 	mr      r5,r31                                 
             isprint( buffer[ i ] ) ? buffer[ i ] : '.' );            
ffc04118:	7d 29 02 14 	add     r9,r9,r0                               
ffc0411c:	89 29 00 01 	lbz     r9,1(r9)                               
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, "   " );                                     
                                                                      
  strcat( line_buffer, "|" );                                         
  for( i=0 ; i<length ; i++ )                                         
    sprintf( line_buffer, "%s%c", line_buffer,                        
ffc04120:	38 c0 00 2e 	li      r6,46                                  
ffc04124:	71 2b 00 97 	andi.   r11,r9,151                             
ffc04128:	41 82 00 08 	beq-    ffc04130 <rtems_print_buffer+0x108>    
ffc0412c:	7c 06 03 78 	mr      r6,r0                                  
ffc04130:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc04134:	48 00 f2 41 	bl      ffc13374 <sprintf>                     
                                                                      
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, "   " );                                     
                                                                      
  strcat( line_buffer, "|" );                                         
  for( i=0 ; i<length ; i++ )                                         
ffc04138:	2f 9e 00 0f 	cmpwi   cr7,r30,15                             
ffc0413c:	3b de 00 01 	addi    r30,r30,1                              
ffc04140:	40 9e ff c4 	bne+    cr7,ffc04104 <rtems_print_buffer+0xdc> 
             isprint( buffer[ i ] ) ? buffer[ i ] : '.' );            
                                                                      
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, " " );                                       
                                                                      
  strcat( line_buffer, "|\n" );                                       
ffc04144:	7f e3 fb 78 	mr      r3,r31                                 
ffc04148:	48 00 f6 4d 	bl      ffc13794 <strlen>                      
ffc0414c:	a1 57 00 00 	lhz     r10,0(r23)                             
ffc04150:	89 77 00 02 	lbz     r11,2(r23)                             
ffc04154:	7c 60 1b 78 	mr      r0,r3                                  
ffc04158:	7d 3f 1a 14 	add     r9,r31,r3                              
ffc0415c:	7d 5f 03 2e 	sthx    r10,r31,r0                             
                                                                      
  printk( line_buffer );                                              
ffc04160:	7f e3 fb 78 	mr      r3,r31                                 
             isprint( buffer[ i ] ) ? buffer[ i ] : '.' );            
                                                                      
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, " " );                                       
                                                                      
  strcat( line_buffer, "|\n" );                                       
ffc04164:	99 69 00 02 	stb     r11,2(r9)                              
                                                                      
  mod = length % 16;                                                  
                                                                      
  max = length - mod;                                                 
                                                                      
  for ( i=0 ; i<max ; i+=16 )                                         
ffc04168:	3b 39 00 10 	addi    r25,r25,16                             
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, " " );                                       
                                                                      
  strcat( line_buffer, "|\n" );                                       
                                                                      
  printk( line_buffer );                                              
ffc0416c:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc04170:	48 00 1f 71 	bl      ffc060e0 <printk>                      
                                                                      
  mod = length % 16;                                                  
                                                                      
  max = length - mod;                                                 
                                                                      
  for ( i=0 ; i<max ; i+=16 )                                         
ffc04174:	7f 95 c8 00 	cmpw    cr7,r21,r25                            
ffc04178:	41 9d ff 4c 	bgt+    cr7,ffc040c4 <rtems_print_buffer+0x9c> 
    Dump_Line( &buffer[ i ], 16 );                                    
                                                                      
  if ( mod )                                                          
ffc0417c:	2e 18 00 00 	cmpwi   cr4,r24,0                              
ffc04180:	40 92 00 50 	bne-    cr4,ffc041d0 <rtems_print_buffer+0x1a8>
    Dump_Line( &buffer[ max ], mod );                                 
}                                                                     
ffc04184:	80 01 00 c4 	lwz     r0,196(r1)                             
ffc04188:	81 81 00 88 	lwz     r12,136(r1)                            
ffc0418c:	7c 08 03 a6 	mtlr    r0                                     
ffc04190:	82 61 00 8c 	lwz     r19,140(r1)                            
ffc04194:	82 81 00 90 	lwz     r20,144(r1)                            
ffc04198:	7d 81 81 20 	mtcrf   24,r12                                 
ffc0419c:	82 a1 00 94 	lwz     r21,148(r1)                            
ffc041a0:	82 c1 00 98 	lwz     r22,152(r1)                            
ffc041a4:	82 e1 00 9c 	lwz     r23,156(r1)                            
ffc041a8:	83 01 00 a0 	lwz     r24,160(r1)                            
ffc041ac:	83 21 00 a4 	lwz     r25,164(r1)                            
ffc041b0:	83 41 00 a8 	lwz     r26,168(r1)                            
ffc041b4:	83 61 00 ac 	lwz     r27,172(r1)                            
ffc041b8:	83 81 00 b0 	lwz     r28,176(r1)                            
ffc041bc:	83 a1 00 b4 	lwz     r29,180(r1)                            
ffc041c0:	83 c1 00 b8 	lwz     r30,184(r1)                            
ffc041c4:	83 e1 00 bc 	lwz     r31,188(r1)                            
ffc041c8:	38 21 00 c0 	addi    r1,r1,192                              
ffc041cc:	4e 80 00 20 	blr                                            
{                                                                     
                                                                      
  int  i;                                                             
  char line_buffer[120];                                              
                                                                      
  line_buffer[0] = '\0';                                              
ffc041d0:	38 00 00 00 	li      r0,0                                   
                                                                      
  for ( i=0 ; i<max ; i+=16 )                                         
    Dump_Line( &buffer[ i ], 16 );                                    
                                                                      
  if ( mod )                                                          
    Dump_Line( &buffer[ max ], mod );                                 
ffc041d4:	7e d6 aa 14 	add     r22,r22,r21                            
{                                                                     
                                                                      
  int  i;                                                             
  char line_buffer[120];                                              
                                                                      
  line_buffer[0] = '\0';                                              
ffc041d8:	98 01 00 08 	stb     r0,8(r1)                               
                                                                      
  for( i=0 ; i<length ; i++ )                                         
ffc041dc:	40 91 01 28 	ble-    cr4,ffc04304 <rtems_print_buffer+0x2dc>
ffc041e0:	3f 40 ff c2 	lis     r26,-62                                
ffc041e4:	3b c0 00 00 	li      r30,0                                  
ffc041e8:	3b 5a f3 f4 	addi    r26,r26,-3084                          
ffc041ec:	3b e1 00 08 	addi    r31,r1,8                               
    sprintf( line_buffer, "%s%02x ", line_buffer, buffer[ i ] );      
ffc041f0:	7c d6 f0 ae 	lbzx    r6,r22,r30                             
ffc041f4:	7f e3 fb 78 	mr      r3,r31                                 
ffc041f8:	7f 44 d3 78 	mr      r4,r26                                 
ffc041fc:	7f e5 fb 78 	mr      r5,r31                                 
  int  i;                                                             
  char line_buffer[120];                                              
                                                                      
  line_buffer[0] = '\0';                                              
                                                                      
  for( i=0 ; i<length ; i++ )                                         
ffc04200:	3b de 00 01 	addi    r30,r30,1                              
    sprintf( line_buffer, "%s%02x ", line_buffer, buffer[ i ] );      
ffc04204:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc04208:	48 00 f1 6d 	bl      ffc13374 <sprintf>                     
  int  i;                                                             
  char line_buffer[120];                                              
                                                                      
  line_buffer[0] = '\0';                                              
                                                                      
  for( i=0 ; i<length ; i++ )                                         
ffc0420c:	7f 98 f0 00 	cmpw    cr7,r24,r30                            
ffc04210:	41 9d ff e0 	bgt+    cr7,ffc041f0 <rtems_print_buffer+0x1c8>
    sprintf( line_buffer, "%s%02x ", line_buffer, buffer[ i ] );      
                                                                      
  for( ; i<16 ; i++ )                                                 
ffc04214:	2d 98 00 0f 	cmpwi   cr3,r24,15                             
ffc04218:	7f 1e c3 78 	mr      r30,r24                                
ffc0421c:	41 8d 00 f4 	bgt-    cr3,ffc04310 <rtems_print_buffer+0x2e8><== NEVER TAKEN
    strcat( line_buffer, "   " );                                     
ffc04220:	3f a0 20 20 	lis     r29,8224                               
ffc04224:	63 bd 20 00 	ori     r29,r29,8192                           
ffc04228:	7f e3 fb 78 	mr      r3,r31                                 
  line_buffer[0] = '\0';                                              
                                                                      
  for( i=0 ; i<length ; i++ )                                         
    sprintf( line_buffer, "%s%02x ", line_buffer, buffer[ i ] );      
                                                                      
  for( ; i<16 ; i++ )                                                 
ffc0422c:	3b de 00 01 	addi    r30,r30,1                              
    strcat( line_buffer, "   " );                                     
ffc04230:	48 00 f5 65 	bl      ffc13794 <strlen>                      
  line_buffer[0] = '\0';                                              
                                                                      
  for( i=0 ; i<length ; i++ )                                         
    sprintf( line_buffer, "%s%02x ", line_buffer, buffer[ i ] );      
                                                                      
  for( ; i<16 ; i++ )                                                 
ffc04234:	2f 9e 00 0f 	cmpwi   cr7,r30,15                             
    strcat( line_buffer, "   " );                                     
ffc04238:	7f bf 19 2e 	stwx    r29,r31,r3                             
  line_buffer[0] = '\0';                                              
                                                                      
  for( i=0 ; i<length ; i++ )                                         
    sprintf( line_buffer, "%s%02x ", line_buffer, buffer[ i ] );      
                                                                      
  for( ; i<16 ; i++ )                                                 
ffc0423c:	40 9d ff ec 	ble+    cr7,ffc04228 <rtems_print_buffer+0x200>
    strcat( line_buffer, "   " );                                     
                                                                      
  strcat( line_buffer, "|" );                                         
ffc04240:	7f e3 fb 78 	mr      r3,r31                                 
ffc04244:	48 00 f5 51 	bl      ffc13794 <strlen>                      
ffc04248:	38 00 7c 00 	li      r0,31744                               
ffc0424c:	7c 1f 1b 2e 	sthx    r0,r31,r3                              
  for( i=0 ; i<length ; i++ )                                         
ffc04250:	40 91 00 d4 	ble-    cr4,ffc04324 <rtems_print_buffer+0x2fc>
ffc04254:	2d 98 00 0f 	cmpwi   cr3,r24,15                             
ffc04258:	3f 60 00 00 	lis     r27,0                                  
ffc0425c:	3f 80 ff c2 	lis     r28,-62                                
ffc04260:	3b c0 00 00 	li      r30,0                                  
ffc04264:	3b 7b 26 e0 	addi    r27,r27,9952                           
ffc04268:	3b 9c f3 fc 	addi    r28,r28,-3076                          
    sprintf( line_buffer, "%s%c", line_buffer,                        
             isprint( buffer[ i ] ) ? buffer[ i ] : '.' );            
ffc0426c:	7c 16 f0 ae 	lbzx    r0,r22,r30                             
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, "   " );                                     
                                                                      
  strcat( line_buffer, "|" );                                         
  for( i=0 ; i<length ; i++ )                                         
    sprintf( line_buffer, "%s%c", line_buffer,                        
ffc04270:	7f e3 fb 78 	mr      r3,r31                                 
             isprint( buffer[ i ] ) ? buffer[ i ] : '.' );            
ffc04274:	81 3b 00 00 	lwz     r9,0(r27)                              
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, "   " );                                     
                                                                      
  strcat( line_buffer, "|" );                                         
  for( i=0 ; i<length ; i++ )                                         
    sprintf( line_buffer, "%s%c", line_buffer,                        
ffc04278:	7f 84 e3 78 	mr      r4,r28                                 
ffc0427c:	7f e5 fb 78 	mr      r5,r31                                 
             isprint( buffer[ i ] ) ? buffer[ i ] : '.' );            
ffc04280:	7d 29 02 14 	add     r9,r9,r0                               
ffc04284:	89 29 00 01 	lbz     r9,1(r9)                               
                                                                      
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, "   " );                                     
                                                                      
  strcat( line_buffer, "|" );                                         
  for( i=0 ; i<length ; i++ )                                         
ffc04288:	3b de 00 01 	addi    r30,r30,1                              
    sprintf( line_buffer, "%s%c", line_buffer,                        
ffc0428c:	38 c0 00 2e 	li      r6,46                                  
ffc04290:	71 2b 00 97 	andi.   r11,r9,151                             
ffc04294:	41 82 00 08 	beq-    ffc0429c <rtems_print_buffer+0x274>    
ffc04298:	7c 06 03 78 	mr      r6,r0                                  
ffc0429c:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc042a0:	48 00 f0 d5 	bl      ffc13374 <sprintf>                     
                                                                      
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, "   " );                                     
                                                                      
  strcat( line_buffer, "|" );                                         
  for( i=0 ; i<length ; i++ )                                         
ffc042a4:	7f 98 f0 00 	cmpw    cr7,r24,r30                            
ffc042a8:	41 9d ff c4 	bgt+    cr7,ffc0426c <rtems_print_buffer+0x244>
    sprintf( line_buffer, "%s%c", line_buffer,                        
             isprint( buffer[ i ] ) ? buffer[ i ] : '.' );            
                                                                      
  for( ; i<16 ; i++ )                                                 
ffc042ac:	41 8d 00 20 	bgt-    cr3,ffc042cc <rtems_print_buffer+0x2a4><== NEVER TAKEN
    strcat( line_buffer, " " );                                       
ffc042b0:	3b c0 20 00 	li      r30,8192                               
ffc042b4:	7f e3 fb 78 	mr      r3,r31                                 
  strcat( line_buffer, "|" );                                         
  for( i=0 ; i<length ; i++ )                                         
    sprintf( line_buffer, "%s%c", line_buffer,                        
             isprint( buffer[ i ] ) ? buffer[ i ] : '.' );            
                                                                      
  for( ; i<16 ; i++ )                                                 
ffc042b8:	3b 18 00 01 	addi    r24,r24,1                              
    strcat( line_buffer, " " );                                       
ffc042bc:	48 00 f4 d9 	bl      ffc13794 <strlen>                      
  strcat( line_buffer, "|" );                                         
  for( i=0 ; i<length ; i++ )                                         
    sprintf( line_buffer, "%s%c", line_buffer,                        
             isprint( buffer[ i ] ) ? buffer[ i ] : '.' );            
                                                                      
  for( ; i<16 ; i++ )                                                 
ffc042c0:	2f 98 00 0f 	cmpwi   cr7,r24,15                             
    strcat( line_buffer, " " );                                       
ffc042c4:	7f df 1b 2e 	sthx    r30,r31,r3                             
  strcat( line_buffer, "|" );                                         
  for( i=0 ; i<length ; i++ )                                         
    sprintf( line_buffer, "%s%c", line_buffer,                        
             isprint( buffer[ i ] ) ? buffer[ i ] : '.' );            
                                                                      
  for( ; i<16 ; i++ )                                                 
ffc042c8:	40 9d ff ec 	ble+    cr7,ffc042b4 <rtems_print_buffer+0x28c>
    strcat( line_buffer, " " );                                       
                                                                      
  strcat( line_buffer, "|\n" );                                       
ffc042cc:	7f e3 fb 78 	mr      r3,r31                                 
ffc042d0:	48 00 f4 c5 	bl      ffc13794 <strlen>                      
ffc042d4:	3d 20 ff c2 	lis     r9,-62                                 
ffc042d8:	39 69 f4 04 	addi    r11,r9,-3068                           
ffc042dc:	a1 49 f4 04 	lhz     r10,-3068(r9)                          
ffc042e0:	89 6b 00 02 	lbz     r11,2(r11)                             
ffc042e4:	7c 60 1b 78 	mr      r0,r3                                  
ffc042e8:	7d 3f 1a 14 	add     r9,r31,r3                              
ffc042ec:	7d 5f 03 2e 	sthx    r10,r31,r0                             
                                                                      
  printk( line_buffer );                                              
ffc042f0:	7f e3 fb 78 	mr      r3,r31                                 
             isprint( buffer[ i ] ) ? buffer[ i ] : '.' );            
                                                                      
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, " " );                                       
                                                                      
  strcat( line_buffer, "|\n" );                                       
ffc042f4:	99 69 00 02 	stb     r11,2(r9)                              
                                                                      
  printk( line_buffer );                                              
ffc042f8:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc042fc:	48 00 1d e5 	bl      ffc060e0 <printk>                      
ffc04300:	4b ff fe 84 	b       ffc04184 <rtems_print_buffer+0x15c>    
  int  i;                                                             
  char line_buffer[120];                                              
                                                                      
  line_buffer[0] = '\0';                                              
                                                                      
  for( i=0 ; i<length ; i++ )                                         
ffc04304:	3b c0 00 00 	li      r30,0                                  
ffc04308:	3b e1 00 08 	addi    r31,r1,8                               
ffc0430c:	4b ff ff 14 	b       ffc04220 <rtems_print_buffer+0x1f8>    
    sprintf( line_buffer, "%s%02x ", line_buffer, buffer[ i ] );      
                                                                      
  for( ; i<16 ; i++ )                                                 
    strcat( line_buffer, "   " );                                     
                                                                      
  strcat( line_buffer, "|" );                                         
ffc04310:	7f e3 fb 78 	mr      r3,r31                                 <== NOT EXECUTED
ffc04314:	48 00 f4 81 	bl      ffc13794 <strlen>                      <== NOT EXECUTED
ffc04318:	38 00 7c 00 	li      r0,31744                               <== NOT EXECUTED
ffc0431c:	7c 1f 1b 2e 	sthx    r0,r31,r3                              <== NOT EXECUTED
ffc04320:	4b ff ff 38 	b       ffc04258 <rtems_print_buffer+0x230>    <== NOT EXECUTED
  for( i=0 ; i<length ; i++ )                                         
ffc04324:	3b 00 00 00 	li      r24,0                                  
ffc04328:	4b ff ff 88 	b       ffc042b0 <rtems_print_buffer+0x288>    
                                                                      

ffc0a3a4 <rtems_rate_monotonic_period>: rtems_status_code rtems_rate_monotonic_period( rtems_id id, rtems_interval length ) {
ffc0a3a4:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc0a3a8:	7c 08 02 a6 	mflr    r0                                     
ffc0a3ac:	93 e1 00 2c 	stw     r31,44(r1)                             
ffc0a3b0:	7c 7f 1b 78 	mr      r31,r3                                 
  Objects_Id         id,                                              
  Objects_Locations *location                                         
)                                                                     
{                                                                     
  return (Rate_monotonic_Control *)                                   
    _Objects_Get( &_Rate_monotonic_Information, id, location );       
ffc0a3b4:	3c 60 00 00 	lis     r3,0                                   
ffc0a3b8:	93 c1 00 28 	stw     r30,40(r1)                             
ffc0a3bc:	38 63 2b a0 	addi    r3,r3,11168                            
ffc0a3c0:	7c 9e 23 78 	mr      r30,r4                                 
ffc0a3c4:	38 a1 00 08 	addi    r5,r1,8                                
ffc0a3c8:	90 01 00 34 	stw     r0,52(r1)                              
ffc0a3cc:	7f e4 fb 78 	mr      r4,r31                                 
ffc0a3d0:	93 a1 00 24 	stw     r29,36(r1)                             
ffc0a3d4:	93 61 00 1c 	stw     r27,28(r1)                             
ffc0a3d8:	93 81 00 20 	stw     r28,32(r1)                             
ffc0a3dc:	48 00 2d d5 	bl      ffc0d1b0 <_Objects_Get>                
ffc0a3e0:	7c 7d 1b 78 	mr      r29,r3                                 
  rtems_rate_monotonic_period_states   local_state;                   
  ISR_Level                            level;                         
                                                                      
  the_period = _Rate_monotonic_Get( id, &location );                  
                                                                      
  switch ( location ) {                                               
ffc0a3e4:	80 01 00 08 	lwz     r0,8(r1)                               
ffc0a3e8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0a3ec:	41 9e 00 30 	beq-    cr7,ffc0a41c <rtems_rate_monotonic_period+0x78>
#endif                                                                
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
ffc0a3f0:	3b e0 00 04 	li      r31,4                                  
}                                                                     
ffc0a3f4:	80 01 00 34 	lwz     r0,52(r1)                              
ffc0a3f8:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a3fc:	83 61 00 1c 	lwz     r27,28(r1)                             
ffc0a400:	7c 08 03 a6 	mtlr    r0                                     
ffc0a404:	83 81 00 20 	lwz     r28,32(r1)                             
ffc0a408:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc0a40c:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc0a410:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc0a414:	38 21 00 30 	addi    r1,r1,48                               
ffc0a418:	4e 80 00 20 	blr                                            
                                                                      
RTEMS_INLINE_ROUTINE bool _Thread_Is_executing (                      
  const Thread_Control *the_thread                                    
)                                                                     
{                                                                     
  return ( the_thread == _Thread_Executing );                         
ffc0a41c:	3f 80 00 00 	lis     r28,0                                  
                                                                      
  the_period = _Rate_monotonic_Get( id, &location );                  
                                                                      
  switch ( location ) {                                               
    case OBJECTS_LOCAL:                                               
      if ( !_Thread_Is_executing( the_period->owner ) ) {             
ffc0a420:	81 23 00 40 	lwz     r9,64(r3)                              
ffc0a424:	3b 9c 2e 84 	addi    r28,r28,11908                          
ffc0a428:	80 1c 00 0c 	lwz     r0,12(r28)                             
ffc0a42c:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc0a430:	41 9e 00 34 	beq-    cr7,ffc0a464 <rtems_rate_monotonic_period+0xc0>
        _Thread_Enable_dispatch();                                    
ffc0a434:	48 00 38 d1 	bl      ffc0dd04 <_Thread_Enable_dispatch>     
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc0a438:	80 01 00 34 	lwz     r0,52(r1)                              
                                                                      
  switch ( location ) {                                               
    case OBJECTS_LOCAL:                                               
      if ( !_Thread_Is_executing( the_period->owner ) ) {             
        _Thread_Enable_dispatch();                                    
        return RTEMS_NOT_OWNER_OF_RESOURCE;                           
ffc0a43c:	3b e0 00 17 	li      r31,23                                 
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc0a440:	83 61 00 1c 	lwz     r27,28(r1)                             
ffc0a444:	7c 08 03 a6 	mtlr    r0                                     
ffc0a448:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a44c:	83 81 00 20 	lwz     r28,32(r1)                             
ffc0a450:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc0a454:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc0a458:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc0a45c:	38 21 00 30 	addi    r1,r1,48                               
ffc0a460:	4e 80 00 20 	blr                                            
      if ( !_Thread_Is_executing( the_period->owner ) ) {             
        _Thread_Enable_dispatch();                                    
        return RTEMS_NOT_OWNER_OF_RESOURCE;                           
      }                                                               
                                                                      
      if ( length == RTEMS_PERIOD_STATUS ) {                          
ffc0a464:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc0a468:	40 9e 00 1c 	bne-    cr7,ffc0a484 <rtems_rate_monotonic_period+0xe0>
        switch ( the_period->state ) {                                
ffc0a46c:	80 03 00 38 	lwz     r0,56(r3)                              
ffc0a470:	3b e0 00 00 	li      r31,0                                  
ffc0a474:	2b 80 00 04 	cmplwi  cr7,r0,4                               
ffc0a478:	40 9d 00 70 	ble-    cr7,ffc0a4e8 <rtems_rate_monotonic_period+0x144><== ALWAYS TAKEN
          case RATE_MONOTONIC_ACTIVE:                                 
          default:              /* unreached -- only to remove warnings */
            return_value = RTEMS_SUCCESSFUL;                          
            break;                                                    
        }                                                             
        _Thread_Enable_dispatch();                                    
ffc0a47c:	48 00 38 89 	bl      ffc0dd04 <_Thread_Enable_dispatch>     <== NOT EXECUTED
        return( return_value );                                       
ffc0a480:	4b ff ff 74 	b       ffc0a3f4 <rtems_rate_monotonic_period+0x50><== NOT EXECUTED
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0a484:	7f 60 00 a6 	mfmsr   r27                                    
ffc0a488:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc0a48c:	7f 60 00 78 	andc    r0,r27,r0                              
ffc0a490:	7c 00 01 24 	mtmsr   r0                                     
      }                                                               
                                                                      
      _ISR_Disable( level );                                          
      if ( the_period->state == RATE_MONOTONIC_INACTIVE ) {           
ffc0a494:	80 03 00 38 	lwz     r0,56(r3)                              
ffc0a498:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0a49c:	41 9e 00 64 	beq-    cr7,ffc0a500 <rtems_rate_monotonic_period+0x15c>
        _Watchdog_Insert_ticks( &the_period->Timer, length );         
        _Thread_Enable_dispatch();                                    
        return RTEMS_SUCCESSFUL;                                      
      }                                                               
                                                                      
      if ( the_period->state == RATE_MONOTONIC_ACTIVE ) {             
ffc0a4a0:	2f 80 00 02 	cmpwi   cr7,r0,2                               
ffc0a4a4:	41 9e 00 ac 	beq-    cr7,ffc0a550 <rtems_rate_monotonic_period+0x1ac>
                                                                      
        _Thread_Enable_dispatch();                                    
        return RTEMS_SUCCESSFUL;                                      
      }                                                               
                                                                      
      if ( the_period->state == RATE_MONOTONIC_EXPIRED ) {            
ffc0a4a8:	2f 80 00 04 	cmpwi   cr7,r0,4                               
#endif                                                                
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
ffc0a4ac:	3b e0 00 04 	li      r31,4                                  
                                                                      
        _Thread_Enable_dispatch();                                    
        return RTEMS_SUCCESSFUL;                                      
      }                                                               
                                                                      
      if ( the_period->state == RATE_MONOTONIC_EXPIRED ) {            
ffc0a4b0:	40 9e ff 44 	bne+    cr7,ffc0a3f4 <rtems_rate_monotonic_period+0x50><== NEVER TAKEN
        /*                                                            
         *  Update statistics from the concluding period              
         */                                                           
        _Rate_monotonic_Update_statistics( the_period );              
ffc0a4b4:	4b ff fd a9 	bl      ffc0a25c <_Rate_monotonic_Update_statistics>
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0a4b8:	7f 60 01 24 	mtmsr   r27                                    
                                                                      
        _ISR_Enable( level );                                         
                                                                      
        the_period->state = RATE_MONOTONIC_ACTIVE;                    
ffc0a4bc:	38 00 00 02 	li      r0,2                                   
        the_period->next_length = length;                             
ffc0a4c0:	93 dd 00 3c 	stw     r30,60(r29)                            
)                                                                     
{                                                                     
                                                                      
  the_watchdog->initial = units;                                      
                                                                      
  _Watchdog_Insert( &_Watchdog_Ticks_chain, the_watchdog );           
ffc0a4c4:	3c 60 00 00 	lis     r3,0                                   
         */                                                           
        _Rate_monotonic_Update_statistics( the_period );              
                                                                      
        _ISR_Enable( level );                                         
                                                                      
        the_period->state = RATE_MONOTONIC_ACTIVE;                    
ffc0a4c8:	90 1d 00 38 	stw     r0,56(r29)                             
ffc0a4cc:	38 63 2d 68 	addi    r3,r3,11624                            
ffc0a4d0:	38 9d 00 10 	addi    r4,r29,16                              
  Watchdog_Control      *the_watchdog,                                
  Watchdog_Interval      units                                        
)                                                                     
{                                                                     
                                                                      
  the_watchdog->initial = units;                                      
ffc0a4d4:	93 dd 00 1c 	stw     r30,28(r29)                            
        the_period->next_length = length;                             
                                                                      
        _Watchdog_Insert_ticks( &the_period->Timer, length );         
        _Thread_Enable_dispatch();                                    
        return RTEMS_TIMEOUT;                                         
ffc0a4d8:	3b e0 00 06 	li      r31,6                                  
                                                                      
  _Watchdog_Insert( &_Watchdog_Ticks_chain, the_watchdog );           
ffc0a4dc:	48 00 50 01 	bl      ffc0f4dc <_Watchdog_Insert>            
                                                                      
        the_period->state = RATE_MONOTONIC_ACTIVE;                    
        the_period->next_length = length;                             
                                                                      
        _Watchdog_Insert_ticks( &the_period->Timer, length );         
        _Thread_Enable_dispatch();                                    
ffc0a4e0:	48 00 38 25 	bl      ffc0dd04 <_Thread_Enable_dispatch>     
        return RTEMS_TIMEOUT;                                         
ffc0a4e4:	4b ff ff 10 	b       ffc0a3f4 <rtems_rate_monotonic_period+0x50>
        _Thread_Enable_dispatch();                                    
        return RTEMS_NOT_OWNER_OF_RESOURCE;                           
      }                                                               
                                                                      
      if ( length == RTEMS_PERIOD_STATUS ) {                          
        switch ( the_period->state ) {                                
ffc0a4e8:	3d 20 ff c2 	lis     r9,-62                                 
ffc0a4ec:	54 00 10 3a 	rlwinm  r0,r0,2,0,29                           
ffc0a4f0:	39 29 0c e4 	addi    r9,r9,3300                             
ffc0a4f4:	7f e9 00 2e 	lwzx    r31,r9,r0                              
          case RATE_MONOTONIC_ACTIVE:                                 
          default:              /* unreached -- only to remove warnings */
            return_value = RTEMS_SUCCESSFUL;                          
            break;                                                    
        }                                                             
        _Thread_Enable_dispatch();                                    
ffc0a4f8:	48 00 38 0d 	bl      ffc0dd04 <_Thread_Enable_dispatch>     
ffc0a4fc:	4b ff fe f8 	b       ffc0a3f4 <rtems_rate_monotonic_period+0x50>
ffc0a500:	7f 60 01 24 	mtmsr   r27                                    
        _ISR_Enable( level );                                         
                                                                      
        /*                                                            
         *  Baseline statistics information for the beginning of a period.
         */                                                           
        _Rate_monotonic_Initiate_statistics( the_period );            
ffc0a504:	4b ff fc a1 	bl      ffc0a1a4 <_Rate_monotonic_Initiate_statistics>
                                                                      
        the_period->state = RATE_MONOTONIC_ACTIVE;                    
ffc0a508:	39 20 00 02 	li      r9,2                                   
ffc0a50c:	91 3d 00 38 	stw     r9,56(r29)                             
  Objects_Id                      id,                                 
  void                           *user_data                           
)                                                                     
{                                                                     
  the_watchdog->state     = WATCHDOG_INACTIVE;                        
  the_watchdog->routine   = routine;                                  
ffc0a510:	3d 20 ff c1 	lis     r9,-63                                 
  Watchdog_Service_routine_entry  routine,                            
  Objects_Id                      id,                                 
  void                           *user_data                           
)                                                                     
{                                                                     
  the_watchdog->state     = WATCHDOG_INACTIVE;                        
ffc0a514:	38 00 00 00 	li      r0,0                                   
  the_watchdog->routine   = routine;                                  
ffc0a518:	39 29 a9 b8 	addi    r9,r9,-22088                           
  Watchdog_Service_routine_entry  routine,                            
  Objects_Id                      id,                                 
  void                           *user_data                           
)                                                                     
{                                                                     
  the_watchdog->state     = WATCHDOG_INACTIVE;                        
ffc0a51c:	90 1d 00 18 	stw     r0,24(r29)                             
)                                                                     
{                                                                     
                                                                      
  the_watchdog->initial = units;                                      
                                                                      
  _Watchdog_Insert( &_Watchdog_Ticks_chain, the_watchdog );           
ffc0a520:	3c 60 00 00 	lis     r3,0                                   
  Objects_Id                      id,                                 
  void                           *user_data                           
)                                                                     
{                                                                     
  the_watchdog->state     = WATCHDOG_INACTIVE;                        
  the_watchdog->routine   = routine;                                  
ffc0a524:	91 3d 00 2c 	stw     r9,44(r29)                             
)                                                                     
{                                                                     
                                                                      
  the_watchdog->initial = units;                                      
                                                                      
  _Watchdog_Insert( &_Watchdog_Ticks_chain, the_watchdog );           
ffc0a528:	38 63 2d 68 	addi    r3,r3,11624                            
ffc0a52c:	38 9d 00 10 	addi    r4,r29,16                              
  void                           *user_data                           
)                                                                     
{                                                                     
  the_watchdog->state     = WATCHDOG_INACTIVE;                        
  the_watchdog->routine   = routine;                                  
  the_watchdog->id        = id;                                       
ffc0a530:	93 fd 00 30 	stw     r31,48(r29)                            
                                                                      
        the_period->next_length = length;                             
                                                                      
        _Watchdog_Insert_ticks( &the_period->Timer, length );         
        _Thread_Enable_dispatch();                                    
        return RTEMS_SUCCESSFUL;                                      
ffc0a534:	3b e0 00 00 	li      r31,0                                  
  the_watchdog->user_data = user_data;                                
ffc0a538:	90 1d 00 34 	stw     r0,52(r29)                             
          _Rate_monotonic_Timeout,                                    
          id,                                                         
          NULL                                                        
        );                                                            
                                                                      
        the_period->next_length = length;                             
ffc0a53c:	93 dd 00 3c 	stw     r30,60(r29)                            
  Watchdog_Control      *the_watchdog,                                
  Watchdog_Interval      units                                        
)                                                                     
{                                                                     
                                                                      
  the_watchdog->initial = units;                                      
ffc0a540:	93 dd 00 1c 	stw     r30,28(r29)                            
                                                                      
  _Watchdog_Insert( &_Watchdog_Ticks_chain, the_watchdog );           
ffc0a544:	48 00 4f 99 	bl      ffc0f4dc <_Watchdog_Insert>            
                                                                      
        _Watchdog_Insert_ticks( &the_period->Timer, length );         
        _Thread_Enable_dispatch();                                    
ffc0a548:	48 00 37 bd 	bl      ffc0dd04 <_Thread_Enable_dispatch>     
        return RTEMS_SUCCESSFUL;                                      
ffc0a54c:	4b ff fe a8 	b       ffc0a3f4 <rtems_rate_monotonic_period+0x50>
                                                                      
      if ( the_period->state == RATE_MONOTONIC_ACTIVE ) {             
        /*                                                            
         *  Update statistics from the concluding period.             
         */                                                           
        _Rate_monotonic_Update_statistics( the_period );              
ffc0a550:	4b ff fd 0d 	bl      ffc0a25c <_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;         
ffc0a554:	38 00 00 01 	li      r0,1                                   
ffc0a558:	90 1d 00 38 	stw     r0,56(r29)                             
        the_period->next_length = length;                             
ffc0a55c:	93 dd 00 3c 	stw     r30,60(r29)                            
ffc0a560:	7f 60 01 24 	mtmsr   r27                                    
                                                                      
        _ISR_Enable( level );                                         
                                                                      
        _Thread_Executing->Wait.id = the_period->Object.id;           
ffc0a564:	81 3c 00 0c 	lwz     r9,12(r28)                             
        _Thread_Set_state( _Thread_Executing, STATES_WAITING_FOR_PERIOD );
ffc0a568:	38 80 40 00 	li      r4,16384                               
        the_period->state = RATE_MONOTONIC_OWNER_IS_BLOCKING;         
        the_period->next_length = length;                             
                                                                      
        _ISR_Enable( level );                                         
                                                                      
        _Thread_Executing->Wait.id = the_period->Object.id;           
ffc0a56c:	80 1d 00 08 	lwz     r0,8(r29)                              
        _Thread_Set_state( _Thread_Executing, STATES_WAITING_FOR_PERIOD );
ffc0a570:	7d 23 4b 78 	mr      r3,r9                                  
        the_period->state = RATE_MONOTONIC_OWNER_IS_BLOCKING;         
        the_period->next_length = length;                             
                                                                      
        _ISR_Enable( level );                                         
                                                                      
        _Thread_Executing->Wait.id = the_period->Object.id;           
ffc0a574:	90 09 00 20 	stw     r0,32(r9)                              
        _Thread_Set_state( _Thread_Executing, STATES_WAITING_FOR_PERIOD );
ffc0a578:	48 00 43 15 	bl      ffc0e88c <_Thread_Set_state>           
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0a57c:	7d 20 00 a6 	mfmsr   r9                                     
ffc0a580:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc0a584:	7d 20 00 78 	andc    r0,r9,r0                               
ffc0a588:	7c 00 01 24 	mtmsr   r0                                     
         *  Did the watchdog timer expire while we were actually blocking
         *  on it?                                                    
         */                                                           
        _ISR_Disable( level );                                        
          local_state = the_period->state;                            
          the_period->state = RATE_MONOTONIC_ACTIVE;                  
ffc0a58c:	39 60 00 02 	li      r11,2                                  
        /*                                                            
         *  Did the watchdog timer expire while we were actually blocking
         *  on it?                                                    
         */                                                           
        _ISR_Disable( level );                                        
          local_state = the_period->state;                            
ffc0a590:	80 1d 00 38 	lwz     r0,56(r29)                             
          the_period->state = RATE_MONOTONIC_ACTIVE;                  
ffc0a594:	91 7d 00 38 	stw     r11,56(r29)                            
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0a598:	7d 20 01 24 	mtmsr   r9                                     
                                                                      
        /*                                                            
         *  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 )   
ffc0a59c:	2f 80 00 03 	cmpwi   cr7,r0,3                               
ffc0a5a0:	41 9e 00 10 	beq-    cr7,ffc0a5b0 <rtems_rate_monotonic_period+0x20c><== NEVER TAKEN
          _Thread_Clear_state( _Thread_Executing, STATES_WAITING_FOR_PERIOD );
                                                                      
        _Thread_Enable_dispatch();                                    
ffc0a5a4:	48 00 37 61 	bl      ffc0dd04 <_Thread_Enable_dispatch>     
        return RTEMS_SUCCESSFUL;                                      
ffc0a5a8:	3b e0 00 00 	li      r31,0                                  
ffc0a5ac:	4b ff fe 48 	b       ffc0a3f4 <rtems_rate_monotonic_period+0x50>
        /*                                                            
         *  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 );
ffc0a5b0:	80 7c 00 0c 	lwz     r3,12(r28)                             <== NOT EXECUTED
ffc0a5b4:	38 80 40 00 	li      r4,16384                               <== NOT EXECUTED
ffc0a5b8:	48 00 32 6d 	bl      ffc0d824 <_Thread_Clear_state>         <== NOT EXECUTED
ffc0a5bc:	4b ff ff e8 	b       ffc0a5a4 <rtems_rate_monotonic_period+0x200><== NOT EXECUTED
                                                                      

ffc0a5c0 <rtems_rate_monotonic_report_statistics_with_plugin>: */ void rtems_rate_monotonic_report_statistics_with_plugin( void *context, rtems_printk_plugin_t print ) {
ffc0a5c0:	94 21 ff 58 	stwu    r1,-168(r1)                            
ffc0a5c4:	7c 08 02 a6 	mflr    r0                                     
ffc0a5c8:	90 01 00 ac 	stw     r0,172(r1)                             
  rtems_id                               id;                          
  rtems_rate_monotonic_period_statistics the_stats;                   
  rtems_rate_monotonic_period_status     the_status;                  
  char                                   name[5];                     
                                                                      
  if ( !print )                                                       
ffc0a5cc:	7c 80 23 79 	mr.     r0,r4                                  
 */                                                                   
void rtems_rate_monotonic_report_statistics_with_plugin(              
  void                  *context,                                     
  rtems_printk_plugin_t  print                                        
)                                                                     
{                                                                     
ffc0a5d0:	93 a1 00 9c 	stw     r29,156(r1)                            
ffc0a5d4:	7c 7d 1b 78 	mr      r29,r3                                 
ffc0a5d8:	92 41 00 70 	stw     r18,112(r1)                            
ffc0a5dc:	92 61 00 74 	stw     r19,116(r1)                            
ffc0a5e0:	92 81 00 78 	stw     r20,120(r1)                            
ffc0a5e4:	92 a1 00 7c 	stw     r21,124(r1)                            
ffc0a5e8:	92 c1 00 80 	stw     r22,128(r1)                            
ffc0a5ec:	92 e1 00 84 	stw     r23,132(r1)                            
ffc0a5f0:	93 01 00 88 	stw     r24,136(r1)                            
ffc0a5f4:	93 21 00 8c 	stw     r25,140(r1)                            
ffc0a5f8:	93 41 00 90 	stw     r26,144(r1)                            
ffc0a5fc:	93 61 00 94 	stw     r27,148(r1)                            
ffc0a600:	93 81 00 98 	stw     r28,152(r1)                            
ffc0a604:	93 c1 00 a0 	stw     r30,160(r1)                            
ffc0a608:	93 e1 00 a4 	stw     r31,164(r1)                            
  rtems_id                               id;                          
  rtems_rate_monotonic_period_statistics the_stats;                   
  rtems_rate_monotonic_period_status     the_status;                  
  char                                   name[5];                     
                                                                      
  if ( !print )                                                       
ffc0a60c:	90 01 00 68 	stw     r0,104(r1)                             
ffc0a610:	41 82 01 88 	beq-    ffc0a798 <rtems_rate_monotonic_report_statistics_with_plugin+0x1d8><== NEVER TAKEN
    return;                                                           
                                                                      
  (*print)( context, "Period information by period\n" );              
ffc0a614:	3c 80 ff c2 	lis     r4,-62                                 
ffc0a618:	7c 09 03 a6 	mtctr   r0                                     
ffc0a61c:	38 84 0c f8 	addi    r4,r4,3320                             
                                                                      
  /*                                                                  
   * 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 ;                   
ffc0a620:	3f c0 00 00 	lis     r30,0                                  
ffc0a624:	3b de 2b a0 	addi    r30,r30,11168                          
  char                                   name[5];                     
                                                                      
  if ( !print )                                                       
    return;                                                           
                                                                      
  (*print)( context, "Period information by period\n" );              
ffc0a628:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0a62c:	4e 80 04 21 	bctrl                                          
  #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                          
    (*print)( context, "--- CPU times are in seconds ---\n" );        
ffc0a630:	80 01 00 68 	lwz     r0,104(r1)                             
ffc0a634:	3c 80 ff c2 	lis     r4,-62                                 
ffc0a638:	7c 09 03 a6 	mtctr   r0                                     
ffc0a63c:	38 84 0d 18 	addi    r4,r4,3352                             
ffc0a640:	7f a3 eb 78 	mr      r3,r29                                 
ffc0a644:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0a648:	4e 80 04 21 	bctrl                                          
    (*print)( context, "--- Wall times are in seconds ---\n" );       
ffc0a64c:	80 01 00 68 	lwz     r0,104(r1)                             
ffc0a650:	3c 80 ff c2 	lis     r4,-62                                 
ffc0a654:	7c 09 03 a6 	mtctr   r0                                     
ffc0a658:	38 84 0d 3c 	addi    r4,r4,3388                             
ffc0a65c:	7f a3 eb 78 	mr      r3,r29                                 
ffc0a660:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0a664:	4e 80 04 21 	bctrl                                          
  Be sure to test the various cases.                                  
  (*print)( context,"\                                                
1234567890123456789012345678901234567890123456789012345678901234567890123456789\
\n");                                                                 
*/                                                                    
  (*print)( context, "   ID     OWNER COUNT MISSED     "              
ffc0a668:	80 01 00 68 	lwz     r0,104(r1)                             
ffc0a66c:	3c 80 ff c2 	lis     r4,-62                                 
ffc0a670:	7c 09 03 a6 	mtctr   r0                                     
ffc0a674:	38 84 0d 60 	addi    r4,r4,3424                             
ffc0a678:	7f a3 eb 78 	mr      r3,r29                                 
ffc0a67c:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0a680:	4e 80 04 21 	bctrl                                          
       #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__                     
          "          "                                                
       #endif                                                         
          "   WALL TIME\n"                                            
  );                                                                  
  (*print)( context, "                               "                
ffc0a684:	80 01 00 68 	lwz     r0,104(r1)                             
ffc0a688:	3c 80 ff c2 	lis     r4,-62                                 
ffc0a68c:	7c 09 03 a6 	mtctr   r0                                     
ffc0a690:	7f a3 eb 78 	mr      r3,r29                                 
ffc0a694:	38 84 0d ac 	addi    r4,r4,3500                             
ffc0a698:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0a69c:	4e 80 04 21 	bctrl                                          
                                                                      
  /*                                                                  
   * 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 ;                   
ffc0a6a0:	83 fe 00 08 	lwz     r31,8(r30)                             
ffc0a6a4:	80 1e 00 0c 	lwz     r0,12(r30)                             
ffc0a6a8:	7f 9f 00 40 	cmplw   cr7,r31,r0                             
ffc0a6ac:	41 9d 00 ec 	bgt-    cr7,ffc0a798 <rtems_rate_monotonic_report_statistics_with_plugin+0x1d8><== 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,                                                
ffc0a6b0:	3e c0 ff c2 	lis     r22,-62                                
      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,                                              
ffc0a6b4:	3e 60 ff c2 	lis     r19,-62                                
ffc0a6b8:	3f 60 10 62 	lis     r27,4194                               
      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,                                              
ffc0a6bc:	3e 40 ff c2 	lis     r18,-62                                
                                                                      
    /*                                                                
     *  If the count is zero, don't print statistics                  
     */                                                               
    if (the_stats.count == 0) {                                       
      (*print)( context, "\n" );                                      
ffc0a6c0:	3f 00 ff c2 	lis     r24,-62                                
ffc0a6c4:	3b 81 00 30 	addi    r28,r1,48                              
    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 );      
ffc0a6c8:	3a a1 00 18 	addi    r21,r1,24                              
    #if defined(RTEMS_DEBUG)                                          
      if ( status != RTEMS_SUCCESSFUL )                               
        continue;                                                     
    #endif                                                            
                                                                      
    rtems_object_get_name( the_status.owner, sizeof(name), name );    
ffc0a6cc:	3b 41 00 08 	addi    r26,r1,8                               
                                                                      
    /*                                                                
     *  Print part of report line that is not dependent on granularity
     */                                                               
    (*print)( context,                                                
ffc0a6d0:	3a d6 0d f8 	addi    r22,r22,3576                           
    {                                                                 
    #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;         
ffc0a6d4:	3a e1 00 48 	addi    r23,r1,72                              
                                                                      
      _Timespec_Divide_by_integer( total_cpu, the_stats.count, &cpu_average );
ffc0a6d8:	3b 21 00 10 	addi    r25,r1,16                              
      (*print)( context,                                              
ffc0a6dc:	3a 73 0e 10 	addi    r19,r19,3600                           
ffc0a6e0:	63 7b 4d d3 	ori     r27,r27,19923                          
    {                                                                 
    #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;       
ffc0a6e4:	3a 81 00 60 	addi    r20,r1,96                              
                                                                      
      _Timespec_Divide_by_integer(total_wall, the_stats.count, &wall_average);
      (*print)( context,                                              
ffc0a6e8:	3a 52 0e 30 	addi    r18,r18,3632                           
                                                                      
    /*                                                                
     *  If the count is zero, don't print statistics                  
     */                                                               
    if (the_stats.count == 0) {                                       
      (*print)( context, "\n" );                                      
ffc0a6ec:	3b 18 fa 00 	addi    r24,r24,-1536                          
ffc0a6f0:	48 00 00 14 	b       ffc0a704 <rtems_rate_monotonic_report_statistics_with_plugin+0x144>
                                                                      
  /*                                                                  
   * 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 ;                   
ffc0a6f4:	80 1e 00 0c 	lwz     r0,12(r30)                             
        id <= _Rate_monotonic_Information.maximum_id ;                
        id++ ) {                                                      
ffc0a6f8:	3b ff 00 01 	addi    r31,r31,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 ;                   
ffc0a6fc:	7f 80 f8 40 	cmplw   cr7,r0,r31                             
ffc0a700:	41 9c 00 98 	blt-    cr7,ffc0a798 <rtems_rate_monotonic_report_statistics_with_plugin+0x1d8>
        id <= _Rate_monotonic_Information.maximum_id ;                
        id++ ) {                                                      
    status = rtems_rate_monotonic_get_statistics( id, &the_stats );   
ffc0a704:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a708:	7f 84 e3 78 	mr      r4,r28                                 
ffc0a70c:	48 00 71 f5 	bl      ffc11900 <rtems_rate_monotonic_get_statistics>
    if ( status != RTEMS_SUCCESSFUL )                                 
ffc0a710:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0a714:	40 9e ff e0 	bne+    cr7,ffc0a6f4 <rtems_rate_monotonic_report_statistics_with_plugin+0x134>
      continue;                                                       
                                                                      
    /* If the above passed, so should this but check it anyway */     
    status = rtems_rate_monotonic_get_status( id, &the_status );      
ffc0a718:	7e a4 ab 78 	mr      r4,r21                                 
ffc0a71c:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a720:	48 00 72 f1 	bl      ffc11a10 <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 );    
ffc0a724:	80 61 00 18 	lwz     r3,24(r1)                              
ffc0a728:	7f 45 d3 78 	mr      r5,r26                                 
ffc0a72c:	38 80 00 05 	li      r4,5                                   
ffc0a730:	48 00 03 51 	bl      ffc0aa80 <rtems_object_get_name>       
                                                                      
    /*                                                                
     *  Print part of report line that is not dependent on granularity
     */                                                               
    (*print)( context,                                                
ffc0a734:	80 01 00 68 	lwz     r0,104(r1)                             
ffc0a738:	7e c4 b3 78 	mr      r4,r22                                 
ffc0a73c:	80 e1 00 30 	lwz     r7,48(r1)                              
ffc0a740:	7f e5 fb 78 	mr      r5,r31                                 
ffc0a744:	7c 09 03 a6 	mtctr   r0                                     
ffc0a748:	7f a3 eb 78 	mr      r3,r29                                 
ffc0a74c:	81 01 00 34 	lwz     r8,52(r1)                              
ffc0a750:	7f 46 d3 78 	mr      r6,r26                                 
ffc0a754:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0a758:	4e 80 04 21 	bctrl                                          
    );                                                                
                                                                      
    /*                                                                
     *  If the count is zero, don't print statistics                  
     */                                                               
    if (the_stats.count == 0) {                                       
ffc0a75c:	80 01 00 30 	lwz     r0,48(r1)                              
      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 );
ffc0a760:	7e e3 bb 78 	mr      r3,r23                                 
    );                                                                
                                                                      
    /*                                                                
     *  If the count is zero, don't print statistics                  
     */                                                               
    if (the_stats.count == 0) {                                       
ffc0a764:	2f 80 00 00 	cmpwi   cr7,r0,0                               
      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 );
ffc0a768:	7f 25 cb 78 	mr      r5,r25                                 
                                                                      
    /*                                                                
     *  If the count is zero, don't print statistics                  
     */                                                               
    if (the_stats.count == 0) {                                       
      (*print)( context, "\n" );                                      
ffc0a76c:	7f 04 c3 78 	mr      r4,r24                                 
    );                                                                
                                                                      
    /*                                                                
     *  If the count is zero, don't print statistics                  
     */                                                               
    if (the_stats.count == 0) {                                       
ffc0a770:	40 9e 00 70 	bne-    cr7,ffc0a7e0 <rtems_rate_monotonic_report_statistics_with_plugin+0x220>
      (*print)( context, "\n" );                                      
ffc0a774:	80 01 00 68 	lwz     r0,104(r1)                             
ffc0a778:	7f a3 eb 78 	mr      r3,r29                                 
   * 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 ;                   
        id <= _Rate_monotonic_Information.maximum_id ;                
        id++ ) {                                                      
ffc0a77c:	3b ff 00 01 	addi    r31,r31,1                              
                                                                      
    /*                                                                
     *  If the count is zero, don't print statistics                  
     */                                                               
    if (the_stats.count == 0) {                                       
      (*print)( context, "\n" );                                      
ffc0a780:	7c 09 03 a6 	mtctr   r0                                     
ffc0a784:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0a788:	4e 80 04 21 	bctrl                                          
                                                                      
  /*                                                                  
   * 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 ;                   
ffc0a78c:	80 1e 00 0c 	lwz     r0,12(r30)                             
ffc0a790:	7f 80 f8 40 	cmplw   cr7,r0,r31                             
ffc0a794:	40 9c ff 70 	bge+    cr7,ffc0a704 <rtems_rate_monotonic_report_statistics_with_plugin+0x144><== ALWAYS TAKEN
        the_stats.min_wall_time, the_stats.max_wall_time, ival_wall, fval_wall
      );                                                              
    #endif                                                            
    }                                                                 
  }                                                                   
}                                                                     
ffc0a798:	80 01 00 ac 	lwz     r0,172(r1)                             
ffc0a79c:	82 41 00 70 	lwz     r18,112(r1)                            
ffc0a7a0:	7c 08 03 a6 	mtlr    r0                                     
ffc0a7a4:	82 61 00 74 	lwz     r19,116(r1)                            
ffc0a7a8:	82 81 00 78 	lwz     r20,120(r1)                            
ffc0a7ac:	82 a1 00 7c 	lwz     r21,124(r1)                            
ffc0a7b0:	82 c1 00 80 	lwz     r22,128(r1)                            
ffc0a7b4:	82 e1 00 84 	lwz     r23,132(r1)                            
ffc0a7b8:	83 01 00 88 	lwz     r24,136(r1)                            
ffc0a7bc:	83 21 00 8c 	lwz     r25,140(r1)                            
ffc0a7c0:	83 41 00 90 	lwz     r26,144(r1)                            
ffc0a7c4:	83 61 00 94 	lwz     r27,148(r1)                            
ffc0a7c8:	83 81 00 98 	lwz     r28,152(r1)                            
ffc0a7cc:	83 a1 00 9c 	lwz     r29,156(r1)                            
ffc0a7d0:	83 c1 00 a0 	lwz     r30,160(r1)                            
ffc0a7d4:	83 e1 00 a4 	lwz     r31,164(r1)                            
ffc0a7d8:	38 21 00 a8 	addi    r1,r1,168                              
ffc0a7dc:	4e 80 00 20 	blr                                            
      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 );
ffc0a7e0:	7c 04 03 78 	mr      r4,r0                                  
ffc0a7e4:	48 00 46 b9 	bl      ffc0ee9c <_Timespec_Divide_by_integer> 
      (*print)( context,                                              
ffc0a7e8:	80 01 00 14 	lwz     r0,20(r1)                              
ffc0a7ec:	80 81 00 3c 	lwz     r4,60(r1)                              
ffc0a7f0:	7f a3 eb 78 	mr      r3,r29                                 
ffc0a7f4:	81 61 00 44 	lwz     r11,68(r1)                             
ffc0a7f8:	7d 40 d8 96 	mulhw   r10,r0,r27                             
ffc0a7fc:	80 e1 00 40 	lwz     r7,64(r1)                              
ffc0a800:	7c c4 d8 96 	mulhw   r6,r4,r27                              
ffc0a804:	81 21 00 10 	lwz     r9,16(r1)                              
ffc0a808:	80 a1 00 38 	lwz     r5,56(r1)                              
ffc0a80c:	7d 0b d8 96 	mulhw   r8,r11,r27                             
ffc0a810:	7c 00 fe 70 	srawi   r0,r0,31                               
ffc0a814:	7d 4a 36 70 	srawi   r10,r10,6                              
ffc0a818:	7d 40 50 50 	subf    r10,r0,r10                             
ffc0a81c:	80 01 00 68 	lwz     r0,104(r1)                             
ffc0a820:	7d 6b fe 70 	srawi   r11,r11,31                             
ffc0a824:	7c 84 fe 70 	srawi   r4,r4,31                               
ffc0a828:	7c 09 03 a6 	mtctr   r0                                     
ffc0a82c:	7c c6 36 70 	srawi   r6,r6,6                                
ffc0a830:	7d 08 36 70 	srawi   r8,r8,6                                
ffc0a834:	7c c4 30 50 	subf    r6,r4,r6                               
ffc0a838:	7d 0b 40 50 	subf    r8,r11,r8                              
ffc0a83c:	7e 64 9b 78 	mr      r4,r19                                 
ffc0a840:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0a844:	4e 80 04 21 	bctrl                                          
      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);
ffc0a848:	80 81 00 30 	lwz     r4,48(r1)                              
ffc0a84c:	7e 83 a3 78 	mr      r3,r20                                 
ffc0a850:	7f 25 cb 78 	mr      r5,r25                                 
ffc0a854:	48 00 46 49 	bl      ffc0ee9c <_Timespec_Divide_by_integer> 
      (*print)( context,                                              
ffc0a858:	80 01 00 14 	lwz     r0,20(r1)                              
ffc0a85c:	80 c1 00 54 	lwz     r6,84(r1)                              
ffc0a860:	7f a3 eb 78 	mr      r3,r29                                 
ffc0a864:	81 61 00 5c 	lwz     r11,92(r1)                             
ffc0a868:	7d 40 d8 96 	mulhw   r10,r0,r27                             
ffc0a86c:	80 a1 00 50 	lwz     r5,80(r1)                              
ffc0a870:	7d 86 d8 96 	mulhw   r12,r6,r27                             
ffc0a874:	80 e1 00 58 	lwz     r7,88(r1)                              
ffc0a878:	81 21 00 10 	lwz     r9,16(r1)                              
ffc0a87c:	7d 0b d8 96 	mulhw   r8,r11,r27                             
ffc0a880:	7c 00 fe 70 	srawi   r0,r0,31                               
ffc0a884:	7d 4a 36 70 	srawi   r10,r10,6                              
ffc0a888:	7d 40 50 50 	subf    r10,r0,r10                             
ffc0a88c:	80 01 00 68 	lwz     r0,104(r1)                             
ffc0a890:	7d 8c 36 70 	srawi   r12,r12,6                              
ffc0a894:	7d 6b fe 70 	srawi   r11,r11,31                             
ffc0a898:	7c 09 03 a6 	mtctr   r0                                     
ffc0a89c:	7c c6 fe 70 	srawi   r6,r6,31                               
ffc0a8a0:	7d 08 36 70 	srawi   r8,r8,6                                
ffc0a8a4:	7e 44 93 78 	mr      r4,r18                                 
ffc0a8a8:	7c c6 60 50 	subf    r6,r6,r12                              
ffc0a8ac:	7d 0b 40 50 	subf    r8,r11,r8                              
ffc0a8b0:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0a8b4:	4e 80 04 21 	bctrl                                          
ffc0a8b8:	4b ff fe 3c 	b       ffc0a6f4 <rtems_rate_monotonic_report_statistics_with_plugin+0x134>
                                                                      

ffc0a8cc <rtems_rate_monotonic_reset_all_statistics>: rtems_fatal_error_occurred( 99 ); } } #endif _Thread_Dispatch_disable_level += 1;
ffc0a8cc:	3d 20 00 00 	lis     r9,0                                   
                                                                      
/*                                                                    
 *  rtems_rate_monotonic_reset_all_statistics                         
 */                                                                   
void rtems_rate_monotonic_reset_all_statistics( void )                
{                                                                     
ffc0a8d0:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc0a8d4:	7c 08 02 a6 	mflr    r0                                     
ffc0a8d8:	81 69 27 b0 	lwz     r11,10160(r9)                          
ffc0a8dc:	90 01 00 14 	stw     r0,20(r1)                              
ffc0a8e0:	38 0b 00 01 	addi    r0,r11,1                               
ffc0a8e4:	93 c1 00 08 	stw     r30,8(r1)                              
ffc0a8e8:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc0a8ec:	90 09 27 b0 	stw     r0,10160(r9)                           
                                                                      
    /*                                                                
     * 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 ;                 
ffc0a8f0:	3f c0 00 00 	lis     r30,0                                  
ffc0a8f4:	3b de 2b a0 	addi    r30,r30,11168                          
ffc0a8f8:	83 fe 00 08 	lwz     r31,8(r30)                             
ffc0a8fc:	80 1e 00 0c 	lwz     r0,12(r30)                             
ffc0a900:	7f 9f 00 40 	cmplw   cr7,r31,r0                             
ffc0a904:	41 9d 00 1c 	bgt-    cr7,ffc0a920 <rtems_rate_monotonic_reset_all_statistics+0x54><== NEVER TAKEN
          id <= _Rate_monotonic_Information.maximum_id ;              
          id++ ) {                                                    
      status = rtems_rate_monotonic_reset_statistics( id );           
ffc0a908:	7f e3 fb 78 	mr      r3,r31                                 
ffc0a90c:	48 00 00 31 	bl      ffc0a93c <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 ;                 
ffc0a910:	80 1e 00 0c 	lwz     r0,12(r30)                             
          id <= _Rate_monotonic_Information.maximum_id ;              
          id++ ) {                                                    
ffc0a914:	3b ff 00 01 	addi    r31,r31,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 ;                 
ffc0a918:	7f 80 f8 40 	cmplw   cr7,r0,r31                             
ffc0a91c:	40 9c ff ec 	bge+    cr7,ffc0a908 <rtems_rate_monotonic_reset_all_statistics+0x3c>
    }                                                                 
                                                                      
  /*                                                                  
   *  Done so exit thread dispatching disabled critical section.      
   */                                                                 
  _Thread_Enable_dispatch();                                          
ffc0a920:	48 00 33 e5 	bl      ffc0dd04 <_Thread_Enable_dispatch>     
}                                                                     
ffc0a924:	80 01 00 14 	lwz     r0,20(r1)                              
ffc0a928:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc0a92c:	7c 08 03 a6 	mtlr    r0                                     
ffc0a930:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc0a934:	38 21 00 10 	addi    r1,r1,16                               
ffc0a938:	4e 80 00 20 	blr                                            
                                                                      

ffc177d8 <rtems_shutdown_executive>: */ void rtems_shutdown_executive( uint32_t result ) {
ffc177d8:	7c 08 02 a6 	mflr    r0                                     
ffc177dc:	94 21 ff f8 	stwu    r1,-8(r1)                              
  if ( _System_state_Is_up( _System_state_Get() ) ) {                 
ffc177e0:	3d 20 00 00 	lis     r9,0                                   
 */                                                                   
                                                                      
void rtems_shutdown_executive(                                        
   uint32_t   result                                                  
)                                                                     
{                                                                     
ffc177e4:	90 01 00 0c 	stw     r0,12(r1)                              
  if ( _System_state_Is_up( _System_state_Get() ) ) {                 
ffc177e8:	80 09 27 74 	lwz     r0,10100(r9)                           
ffc177ec:	2f 80 00 03 	cmpwi   cr7,r0,3                               
ffc177f0:	41 9e 00 14 	beq-    cr7,ffc17804 <rtems_shutdown_executive+0x2c>
    _System_state_Set( SYSTEM_STATE_SHUTDOWN );                       
    _Thread_Stop_multitasking();                                      
  }                                                                   
  _Internal_error_Occurred(                                           
ffc177f4:	38 60 00 00 	li      r3,0                                   
ffc177f8:	38 80 00 01 	li      r4,1                                   
ffc177fc:	38 a0 00 14 	li      r5,20                                  
ffc17800:	4b ff 30 05 	bl      ffc0a804 <_Internal_error_Occurred>    
   *  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 );                      
ffc17804:	3c 60 00 00 	lis     r3,0                                   
ffc17808:	38 00 00 04 	li      r0,4                                   
ffc1780c:	38 63 2b 50 	addi    r3,r3,11088                            
ffc17810:	90 09 27 74 	stw     r0,10100(r9)                           
ffc17814:	4b ff fa ad 	bl      ffc172c0 <_CPU_Context_restore>        
ffc17818:	4b ff ff dc 	b       ffc177f4 <rtems_shutdown_executive+0x1c><== NOT EXECUTED
                                                                      

ffc1a370 <rtems_signal_send>: rtems_status_code rtems_signal_send( rtems_id id, rtems_signal_set signal_set ) {
ffc1a370:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc1a374:	7c 08 02 a6 	mflr    r0                                     
ffc1a378:	93 e1 00 1c 	stw     r31,28(r1)                             
  register Thread_Control *the_thread;                                
  Objects_Locations        location;                                  
  RTEMS_API_Control       *api;                                       
  ASR_Information         *asr;                                       
                                                                      
  if ( !signal_set )                                                  
ffc1a37c:	7c 9f 23 79 	mr.     r31,r4                                 
                                                                      
rtems_status_code rtems_signal_send(                                  
  rtems_id          id,                                               
  rtems_signal_set  signal_set                                        
)                                                                     
{                                                                     
ffc1a380:	90 01 00 24 	stw     r0,36(r1)                              
  Objects_Locations        location;                                  
  RTEMS_API_Control       *api;                                       
  ASR_Information         *asr;                                       
                                                                      
  if ( !signal_set )                                                  
    return RTEMS_INVALID_NUMBER;                                      
ffc1a384:	38 00 00 0a 	li      r0,10                                  
  register Thread_Control *the_thread;                                
  Objects_Locations        location;                                  
  RTEMS_API_Control       *api;                                       
  ASR_Information         *asr;                                       
                                                                      
  if ( !signal_set )                                                  
ffc1a388:	40 82 00 1c 	bne-    ffc1a3a4 <rtems_signal_send+0x34>      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc1a38c:	7c 03 03 78 	mr      r3,r0                                  
ffc1a390:	80 01 00 24 	lwz     r0,36(r1)                              
ffc1a394:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc1a398:	38 21 00 20 	addi    r1,r1,32                               
ffc1a39c:	7c 08 03 a6 	mtlr    r0                                     
ffc1a3a0:	4e 80 00 20 	blr                                            
  ASR_Information         *asr;                                       
                                                                      
  if ( !signal_set )                                                  
    return RTEMS_INVALID_NUMBER;                                      
                                                                      
  the_thread = _Thread_Get( id, &location );                          
ffc1a3a4:	38 81 00 08 	addi    r4,r1,8                                
ffc1a3a8:	48 00 54 35 	bl      ffc1f7dc <_Thread_Get>                 
  switch ( location ) {                                               
ffc1a3ac:	80 01 00 08 	lwz     r0,8(r1)                               
ffc1a3b0:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc1a3b4:	41 9e 00 20 	beq-    cr7,ffc1a3d4 <rtems_signal_send+0x64>  
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
ffc1a3b8:	38 00 00 04 	li      r0,4                                   
}                                                                     
ffc1a3bc:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc1a3c0:	7c 03 03 78 	mr      r3,r0                                  
ffc1a3c4:	80 01 00 24 	lwz     r0,36(r1)                              
ffc1a3c8:	38 21 00 20 	addi    r1,r1,32                               
ffc1a3cc:	7c 08 03 a6 	mtlr    r0                                     
ffc1a3d0:	4e 80 00 20 	blr                                            
                                                                      
  the_thread = _Thread_Get( id, &location );                          
  switch ( location ) {                                               
                                                                      
    case OBJECTS_LOCAL:                                               
      api = the_thread->API_Extensions[ THREAD_API_RTEMS ];           
ffc1a3d4:	81 23 01 40 	lwz     r9,320(r3)                             
      asr = &api->Signal;                                             
                                                                      
      if ( ! _ASR_Is_null_handler( asr->handler ) ) {                 
ffc1a3d8:	80 09 00 0c 	lwz     r0,12(r9)                              
ffc1a3dc:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc1a3e0:	41 9e 00 9c 	beq-    cr7,ffc1a47c <rtems_signal_send+0x10c> 
        if ( asr->is_enabled ) {                                      
ffc1a3e4:	88 09 00 08 	lbz     r0,8(r9)                               
ffc1a3e8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc1a3ec:	41 9e 00 50 	beq-    cr7,ffc1a43c <rtems_signal_send+0xcc>  
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc1a3f0:	7c 00 00 a6 	mfmsr   r0                                     
ffc1a3f4:	7d 70 42 a6 	mfsprg  r11,0                                  
ffc1a3f8:	7c 0b 58 78 	andc    r11,r0,r11                             
ffc1a3fc:	7d 60 01 24 	mtmsr   r11                                    
)                                                                     
{                                                                     
  ISR_Level              _level;                                      
                                                                      
  _ISR_Disable( _level );                                             
    *signal_set |= signals;                                           
ffc1a400:	81 69 00 14 	lwz     r11,20(r9)                             
ffc1a404:	7d 7f fb 78 	or      r31,r11,r31                            
ffc1a408:	93 e9 00 14 	stw     r31,20(r9)                             
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc1a40c:	7c 00 01 24 	mtmsr   r0                                     
          _ASR_Post_signals( signal_set, &asr->signals_posted );      
                                                                      
          if ( _ISR_Is_in_progress() && _Thread_Is_executing( the_thread ) )
ffc1a410:	3d 20 00 00 	lis     r9,0                                   
ffc1a414:	39 29 71 a4 	addi    r9,r9,29092                            
ffc1a418:	80 09 00 08 	lwz     r0,8(r9)                               
ffc1a41c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc1a420:	41 9e 00 3c 	beq-    cr7,ffc1a45c <rtems_signal_send+0xec>  
ffc1a424:	80 09 00 0c 	lwz     r0,12(r9)                              
ffc1a428:	7f 83 00 00 	cmpw    cr7,r3,r0                              
ffc1a42c:	40 be 00 30 	bne+    cr7,ffc1a45c <rtems_signal_send+0xec>  <== NEVER TAKEN
            _Thread_Dispatch_necessary = true;                        
ffc1a430:	38 00 00 01 	li      r0,1                                   
ffc1a434:	98 09 00 18 	stb     r0,24(r9)                              
ffc1a438:	48 00 00 24 	b       ffc1a45c <rtems_signal_send+0xec>      
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc1a43c:	7c 00 00 a6 	mfmsr   r0                                     
ffc1a440:	7d 70 42 a6 	mfsprg  r11,0                                  
ffc1a444:	7c 0b 58 78 	andc    r11,r0,r11                             
ffc1a448:	7d 60 01 24 	mtmsr   r11                                    
ffc1a44c:	81 69 00 18 	lwz     r11,24(r9)                             
ffc1a450:	7d 7f fb 78 	or      r31,r11,r31                            
ffc1a454:	93 e9 00 18 	stw     r31,24(r9)                             
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc1a458:	7c 00 01 24 	mtmsr   r0                                     
        } else {                                                      
          _ASR_Post_signals( signal_set, &asr->signals_pending );     
        }                                                             
        _Thread_Enable_dispatch();                                    
ffc1a45c:	48 00 53 61 	bl      ffc1f7bc <_Thread_Enable_dispatch>     
        return RTEMS_SUCCESSFUL;                                      
ffc1a460:	38 00 00 00 	li      r0,0                                   
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc1a464:	7c 03 03 78 	mr      r3,r0                                  
ffc1a468:	80 01 00 24 	lwz     r0,36(r1)                              
ffc1a46c:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc1a470:	38 21 00 20 	addi    r1,r1,32                               
ffc1a474:	7c 08 03 a6 	mtlr    r0                                     
ffc1a478:	4e 80 00 20 	blr                                            
          _ASR_Post_signals( signal_set, &asr->signals_pending );     
        }                                                             
        _Thread_Enable_dispatch();                                    
        return RTEMS_SUCCESSFUL;                                      
      }                                                               
      _Thread_Enable_dispatch();                                      
ffc1a47c:	48 00 53 41 	bl      ffc1f7bc <_Thread_Enable_dispatch>     
      return RTEMS_NOT_DEFINED;                                       
ffc1a480:	38 00 00 0b 	li      r0,11                                  
ffc1a484:	4b ff ff 08 	b       ffc1a38c <rtems_signal_send+0x1c>      
                                                                      

ffc03e8c <rtems_stack_checker_begin_extension>: * rtems_stack_checker_Begin_extension */ void rtems_stack_checker_begin_extension( Thread_Control *the_thread ) {
ffc03e8c:	7c 08 02 a6 	mflr    r0                                     
ffc03e90:	94 21 ff f8 	stwu    r1,-8(r1)                              
ffc03e94:	90 01 00 0c 	stw     r0,12(r1)                              
  Stack_check_Control  *the_pattern;                                  
                                                                      
  if ( the_thread->Object.id == 0 )        /* skip system tasks */    
ffc03e98:	80 03 00 08 	lwz     r0,8(r3)                               
ffc03e9c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc03ea0:	41 9e 00 1c 	beq-    cr7,ffc03ebc <rtems_stack_checker_begin_extension+0x30><== NEVER TAKEN
    return;                                                           
                                                                      
  the_pattern = Stack_check_Get_pattern_area(&the_thread->Start.Initial_stack);
                                                                      
  *the_pattern = Stack_check_Pattern;                                 
ffc03ea4:	80 63 00 cc 	lwz     r3,204(r3)                             
ffc03ea8:	3c 80 00 00 	lis     r4,0                                   
ffc03eac:	38 84 2a 40 	addi    r4,r4,10816                            
ffc03eb0:	38 63 00 08 	addi    r3,r3,8                                
ffc03eb4:	38 a0 00 80 	li      r5,128                                 
ffc03eb8:	48 00 f0 99 	bl      ffc12f50 <memcpy>                      
}                                                                     
ffc03ebc:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc03ec0:	38 21 00 08 	addi    r1,r1,8                                
ffc03ec4:	7c 08 03 a6 	mtlr    r0                                     
ffc03ec8:	4e 80 00 20 	blr                                            
                                                                      

ffc03e44 <rtems_stack_checker_create_extension>: */ bool rtems_stack_checker_create_extension( Thread_Control *running __attribute__((unused)), Thread_Control *the_thread ) {
ffc03e44:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc03e48:	7c 08 02 a6 	mflr    r0                                     
ffc03e4c:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc03e50:	7c 9f 23 78 	mr      r31,r4                                 
ffc03e54:	90 01 00 14 	stw     r0,20(r1)                              
  Stack_check_Initialize();                                           
ffc03e58:	4b ff ff 9d 	bl      ffc03df4 <Stack_check_Initialize>      
                                                                      
  if (the_thread)                                                     
ffc03e5c:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc03e60:	41 9e 00 14 	beq-    cr7,ffc03e74 <rtems_stack_checker_create_extension+0x30><== NEVER TAKEN
    Stack_check_Dope_stack(&the_thread->Start.Initial_stack);         
ffc03e64:	80 7f 00 cc 	lwz     r3,204(r31)                            
ffc03e68:	38 80 00 a5 	li      r4,165                                 
ffc03e6c:	80 bf 00 c8 	lwz     r5,200(r31)                            
ffc03e70:	48 00 f1 c1 	bl      ffc13030 <memset>                      
                                                                      
  return true;                                                        
}                                                                     
ffc03e74:	80 01 00 14 	lwz     r0,20(r1)                              
ffc03e78:	38 60 00 01 	li      r3,1                                   
ffc03e7c:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc03e80:	38 21 00 10 	addi    r1,r1,16                               
ffc03e84:	7c 08 03 a6 	mtlr    r0                                     
ffc03e88:	4e 80 00 20 	blr                                            
                                                                      

ffc04044 <rtems_stack_checker_is_blown>: /* * Check if blown */ bool rtems_stack_checker_is_blown( void ) {
ffc04044:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc04048:	7c 08 02 a6 	mflr    r0                                     
ffc0404c:	93 a1 00 0c 	stw     r29,12(r1)                             
  Stack_Control *the_stack = &_Thread_Executing->Start.Initial_stack; 
ffc04050:	3f a0 00 00 	lis     r29,0                                  
ffc04054:	3b bd 2e 04 	addi    r29,r29,11780                          
                                                                      
/*                                                                    
 *  Check if blown                                                    
 */                                                                   
bool rtems_stack_checker_is_blown( void )                             
{                                                                     
ffc04058:	90 01 00 1c 	stw     r0,28(r1)                              
  Stack_Control *the_stack = &_Thread_Executing->Start.Initial_stack; 
ffc0405c:	81 3d 00 0c 	lwz     r9,12(r29)                             
                                                                      
/*                                                                    
 *  Check if blown                                                    
 */                                                                   
bool rtems_stack_checker_is_blown( void )                             
{                                                                     
ffc04060:	93 e1 00 14 	stw     r31,20(r1)                             
ffc04064:	7c 3f 0b 78 	mr      r31,r1                                 
)                                                                     
{                                                                     
  #if defined(__GNUC__)                                               
    void *sp = __builtin_frame_address(0);                            
                                                                      
    if ( sp < the_stack->area ) {                                     
ffc04068:	80 69 00 cc 	lwz     r3,204(r9)                             
                                                                      
/*                                                                    
 *  Check if blown                                                    
 */                                                                   
bool rtems_stack_checker_is_blown( void )                             
{                                                                     
ffc0406c:	93 c1 00 10 	stw     r30,16(r1)                             
{                                                                     
  #if defined(__GNUC__)                                               
    void *sp = __builtin_frame_address(0);                            
                                                                      
    if ( sp < the_stack->area ) {                                     
      return false;                                                   
ffc04070:	3b c0 00 00 	li      r30,0                                  
)                                                                     
{                                                                     
  #if defined(__GNUC__)                                               
    void *sp = __builtin_frame_address(0);                            
                                                                      
    if ( sp < the_stack->area ) {                                     
ffc04074:	7f 9f 18 40 	cmplw   cr7,r31,r3                             
ffc04078:	41 9c 00 18 	blt-    cr7,ffc04090 <rtems_stack_checker_is_blown+0x4c><== NEVER TAKEN
      return false;                                                   
    }                                                                 
    if ( sp > (the_stack->area + the_stack->size) ) {                 
ffc0407c:	83 c9 00 c8 	lwz     r30,200(r9)                            
ffc04080:	7f c3 f2 14 	add     r30,r3,r30                             
}                                                                     
                                                                      
/*                                                                    
 *  Check if blown                                                    
 */                                                                   
bool rtems_stack_checker_is_blown( void )                             
ffc04084:	7f df f0 10 	subfc   r30,r31,r30                            
ffc04088:	3b c0 00 00 	li      r30,0                                  
ffc0408c:	7f de f1 14 	adde    r30,r30,r30                            
                                                                      
  /*                                                                  
   * The stack checker must be initialized before the pattern is there
   * to check.                                                        
   */                                                                 
  if ( Stack_check_Initialized ) {                                    
ffc04090:	3d 20 00 00 	lis     r9,0                                   
ffc04094:	80 09 27 d4 	lwz     r0,10196(r9)                           
 */                                                                   
bool rtems_stack_checker_is_blown( void )                             
{                                                                     
  Stack_Control *the_stack = &_Thread_Executing->Start.Initial_stack; 
  bool           sp_ok;                                               
  bool           pattern_ok = true;                                   
ffc04098:	38 80 00 01 	li      r4,1                                   
                                                                      
  /*                                                                  
   * The stack checker must be initialized before the pattern is there
   * to check.                                                        
   */                                                                 
  if ( Stack_check_Initialized ) {                                    
ffc0409c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc040a0:	41 9e 00 20 	beq-    cr7,ffc040c0 <rtems_stack_checker_is_blown+0x7c><== NEVER TAKEN
    pattern_ok = (!memcmp(                                            
ffc040a4:	3c 80 00 00 	lis     r4,0                                   
ffc040a8:	38 84 2a 40 	addi    r4,r4,10816                            
ffc040ac:	38 63 00 08 	addi    r3,r3,8                                
ffc040b0:	38 a0 00 80 	li      r5,128                                 
ffc040b4:	48 00 ee 05 	bl      ffc12eb8 <memcmp>                      
ffc040b8:	7c 64 00 34 	cntlzw  r4,r3                                  
ffc040bc:	54 84 d9 7e 	rlwinm  r4,r4,27,5,31                          
                                                                      
                                                                      
  /*                                                                  
   * Let's report as much as we can.                                  
   */                                                                 
  if ( !sp_ok || !pattern_ok ) {                                      
ffc040c0:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc040c4:	41 9e 00 30 	beq-    cr7,ffc040f4 <rtems_stack_checker_is_blown+0xb0><== NEVER TAKEN
ffc040c8:	2f 84 00 00 	cmpwi   cr7,r4,0                               
ffc040cc:	41 9e 00 28 	beq-    cr7,ffc040f4 <rtems_stack_checker_is_blown+0xb0><== NEVER TAKEN
                                                                      
  /*                                                                  
   * The Stack Pointer and the Pattern Area are OK so return false.   
   */                                                                 
  return false;                                                       
}                                                                     
ffc040d0:	39 7f 00 18 	addi    r11,r31,24                             
ffc040d4:	80 0b 00 04 	lwz     r0,4(r11)                              
ffc040d8:	38 60 00 00 	li      r3,0                                   
ffc040dc:	83 ab ff f4 	lwz     r29,-12(r11)                           
ffc040e0:	7c 08 03 a6 	mtlr    r0                                     
ffc040e4:	83 cb ff f8 	lwz     r30,-8(r11)                            
ffc040e8:	83 eb ff fc 	lwz     r31,-4(r11)                            
ffc040ec:	7d 61 5b 78 	mr      r1,r11                                 
ffc040f0:	4e 80 00 20 	blr                                            
                                                                      
  /*                                                                  
   * Let's report as much as we can.                                  
   */                                                                 
  if ( !sp_ok || !pattern_ok ) {                                      
    Stack_check_report_blown_task( _Thread_Executing, pattern_ok );   
ffc040f4:	80 7d 00 0c 	lwz     r3,12(r29)                             <== NOT EXECUTED
ffc040f8:	4b ff fd d5 	bl      ffc03ecc <Stack_check_report_blown_task><== NOT EXECUTED
                                                                      

ffc040fc <rtems_stack_checker_report_usage_with_plugin>: void rtems_stack_checker_report_usage_with_plugin( void *context, rtems_printk_plugin_t print ) {
ffc040fc:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc04100:	7c 08 02 a6 	mflr    r0                                     
ffc04104:	93 e1 00 14 	stw     r31,20(r1)                             
  if ( !print )                                                       
ffc04108:	7c 9f 23 79 	mr.     r31,r4                                 
                                                                      
void rtems_stack_checker_report_usage_with_plugin(                    
  void                  *context,                                     
  rtems_printk_plugin_t  print                                        
)                                                                     
{                                                                     
ffc0410c:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc04110:	7c 7d 1b 78 	mr      r29,r3                                 
ffc04114:	90 01 00 1c 	stw     r0,28(r1)                              
ffc04118:	93 81 00 08 	stw     r28,8(r1)                              
ffc0411c:	93 c1 00 10 	stw     r30,16(r1)                             
  if ( !print )                                                       
ffc04120:	41 82 00 58 	beq-    ffc04178 <rtems_stack_checker_report_usage_with_plugin+0x7c><== NEVER TAKEN
    return;                                                           
                                                                      
  print_context = context;                                            
ffc04124:	3f c0 00 00 	lis     r30,0                                  
  print_handler = print;                                              
                                                                      
  (*print)( context, "Stack usage by thread\n");                      
ffc04128:	7f e9 03 a6 	mtctr   r31                                    
)                                                                     
{                                                                     
  if ( !print )                                                       
    return;                                                           
                                                                      
  print_context = context;                                            
ffc0412c:	3b 9e 27 cc 	addi    r28,r30,10188                          
  print_handler = print;                                              
ffc04130:	93 fe 27 cc 	stw     r31,10188(r30)                         
                                                                      
  (*print)( context, "Stack usage by thread\n");                      
ffc04134:	3c 80 ff c2 	lis     r4,-62                                 
ffc04138:	38 84 8d a4 	addi    r4,r4,-29276                           
)                                                                     
{                                                                     
  if ( !print )                                                       
    return;                                                           
                                                                      
  print_context = context;                                            
ffc0413c:	90 7c 00 04 	stw     r3,4(r28)                              
  print_handler = print;                                              
                                                                      
  (*print)( context, "Stack usage by thread\n");                      
ffc04140:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc04144:	4e 80 04 21 	bctrl                                          
  (*print)( context,                                                  
ffc04148:	3c 80 ff c2 	lis     r4,-62                                 
ffc0414c:	38 84 8d bc 	addi    r4,r4,-29252                           
ffc04150:	7f e9 03 a6 	mtctr   r31                                    
ffc04154:	7f a3 eb 78 	mr      r3,r29                                 
ffc04158:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0415c:	4e 80 04 21 	bctrl                                          
"    ID      NAME    LOW          HIGH     CURRENT     AVAILABLE     USED\n"
  );                                                                  
                                                                      
  /* iterate over all threads and dump the usage */                   
  rtems_iterate_over_all_threads( Stack_check_Dump_threads_usage );   
ffc04160:	3c 60 ff c0 	lis     r3,-64                                 
ffc04164:	38 63 3c 24 	addi    r3,r3,15396                            
ffc04168:	48 00 68 19 	bl      ffc0a980 <rtems_iterate_over_all_threads>
  #if (CPU_ALLOCATE_INTERRUPT_STACK == TRUE)                          
    /* dump interrupt stack info if any */                            
    Stack_check_Dump_threads_usage((Thread_Control *) -1);            
  #endif                                                              
                                                                      
  print_context = NULL;                                               
ffc0416c:	38 00 00 00 	li      r0,0                                   
ffc04170:	90 1c 00 04 	stw     r0,4(r28)                              
  print_handler = NULL;                                               
ffc04174:	90 1e 27 cc 	stw     r0,10188(r30)                          
}                                                                     
ffc04178:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc0417c:	83 81 00 08 	lwz     r28,8(r1)                              
ffc04180:	7c 08 03 a6 	mtlr    r0                                     
ffc04184:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc04188:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc0418c:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc04190:	38 21 00 18 	addi    r1,r1,24                               
ffc04194:	4e 80 00 20 	blr                                            
                                                                      

ffc03fac <rtems_stack_checker_switch_extension>: */ void rtems_stack_checker_switch_extension( Thread_Control *running __attribute__((unused)), Thread_Control *heir __attribute__((unused)) ) {
ffc03fac:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc03fb0:	7c 08 02 a6 	mflr    r0                                     
ffc03fb4:	90 01 00 14 	stw     r0,20(r1)                              
  Stack_Control *the_stack = &running->Start.Initial_stack;           
  void          *pattern;                                             
  bool        sp_ok;                                                  
  bool        pattern_ok = true;                                      
                                                                      
  pattern = (void *) Stack_check_Get_pattern_area(the_stack)->pattern;
ffc03fb8:	81 23 00 cc 	lwz     r9,204(r3)                             
 */                                                                   
void rtems_stack_checker_switch_extension(                            
  Thread_Control *running __attribute__((unused)),                    
  Thread_Control *heir __attribute__((unused))                        
)                                                                     
{                                                                     
ffc03fbc:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc03fc0:	7c 3f 0b 78 	mr      r31,r1                                 
)                                                                     
{                                                                     
  #if defined(__GNUC__)                                               
    void *sp = __builtin_frame_address(0);                            
                                                                      
    if ( sp < the_stack->area ) {                                     
ffc03fc4:	7f 9f 48 40 	cmplw   cr7,r31,r9                             
 */                                                                   
void rtems_stack_checker_switch_extension(                            
  Thread_Control *running __attribute__((unused)),                    
  Thread_Control *heir __attribute__((unused))                        
)                                                                     
{                                                                     
ffc03fc8:	93 c1 00 08 	stw     r30,8(r1)                              
ffc03fcc:	7c 7e 1b 78 	mr      r30,r3                                 
  Stack_Control *the_stack = &running->Start.Initial_stack;           
  void          *pattern;                                             
  bool        sp_ok;                                                  
  bool        pattern_ok = true;                                      
                                                                      
  pattern = (void *) Stack_check_Get_pattern_area(the_stack)->pattern;
ffc03fd0:	38 69 00 08 	addi    r3,r9,8                                
)                                                                     
{                                                                     
  #if defined(__GNUC__)                                               
    void *sp = __builtin_frame_address(0);                            
                                                                      
    if ( sp < the_stack->area ) {                                     
ffc03fd4:	41 9c 00 14 	blt-    cr7,ffc03fe8 <rtems_stack_checker_switch_extension+0x3c><== NEVER TAKEN
      return false;                                                   
    }                                                                 
    if ( sp > (the_stack->area + the_stack->size) ) {                 
ffc03fd8:	80 1e 00 c8 	lwz     r0,200(r30)                            
ffc03fdc:	7d 29 02 14 	add     r9,r9,r0                               
ffc03fe0:	7f 9f 48 40 	cmplw   cr7,r31,r9                             
ffc03fe4:	40 9d 00 24 	ble-    cr7,ffc04008 <rtems_stack_checker_switch_extension+0x5c><== ALWAYS TAKEN
  /*                                                                  
   *  Check for an out of bounds stack pointer or an overwrite        
   */                                                                 
  sp_ok = Stack_check_Frame_pointer_in_range( the_stack );            
                                                                      
  pattern_ok = (!memcmp( pattern,                                     
ffc03fe8:	3c 80 00 00 	lis     r4,0                                   <== NOT EXECUTED
ffc03fec:	38 84 2a 40 	addi    r4,r4,10816                            <== NOT EXECUTED
ffc03ff0:	38 a0 00 80 	li      r5,128                                 <== NOT EXECUTED
ffc03ff4:	48 00 ee c5 	bl      ffc12eb8 <memcmp>                      <== NOT EXECUTED
ffc03ff8:	7c 64 00 34 	cntlzw  r4,r3                                  <== NOT EXECUTED
ffc03ffc:	54 84 d9 7e 	rlwinm  r4,r4,27,5,31                          <== NOT EXECUTED
            (void *) Stack_check_Pattern.pattern, PATTERN_SIZE_BYTES));
                                                                      
  if ( !sp_ok || !pattern_ok ) {                                      
    Stack_check_report_blown_task( running, pattern_ok );             
ffc04000:	7f c3 f3 78 	mr      r3,r30                                 
ffc04004:	4b ff fe c9 	bl      ffc03ecc <Stack_check_report_blown_task>
  /*                                                                  
   *  Check for an out of bounds stack pointer or an overwrite        
   */                                                                 
  sp_ok = Stack_check_Frame_pointer_in_range( the_stack );            
                                                                      
  pattern_ok = (!memcmp( pattern,                                     
ffc04008:	3c 80 00 00 	lis     r4,0                                   
ffc0400c:	38 84 2a 40 	addi    r4,r4,10816                            
ffc04010:	38 a0 00 80 	li      r5,128                                 
ffc04014:	48 00 ee a5 	bl      ffc12eb8 <memcmp>                      
            (void *) Stack_check_Pattern.pattern, PATTERN_SIZE_BYTES));
                                                                      
  if ( !sp_ok || !pattern_ok ) {                                      
ffc04018:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0401c:	40 9e 00 20 	bne-    cr7,ffc0403c <rtems_stack_checker_switch_extension+0x90>
    Stack_check_report_blown_task( running, pattern_ok );             
  }                                                                   
}                                                                     
ffc04020:	39 7f 00 10 	addi    r11,r31,16                             
ffc04024:	80 0b 00 04 	lwz     r0,4(r11)                              
ffc04028:	83 cb ff f8 	lwz     r30,-8(r11)                            
ffc0402c:	7c 08 03 a6 	mtlr    r0                                     
ffc04030:	83 eb ff fc 	lwz     r31,-4(r11)                            
ffc04034:	7d 61 5b 78 	mr      r1,r11                                 
ffc04038:	4e 80 00 20 	blr                                            
  sp_ok = Stack_check_Frame_pointer_in_range( the_stack );            
                                                                      
  pattern_ok = (!memcmp( pattern,                                     
            (void *) Stack_check_Pattern.pattern, PATTERN_SIZE_BYTES));
                                                                      
  if ( !sp_ok || !pattern_ok ) {                                      
ffc0403c:	38 80 00 00 	li      r4,0                                   
ffc04040:	4b ff ff c0 	b       ffc04000 <rtems_stack_checker_switch_extension+0x54>
                                                                      

ffc10048 <rtems_string_to_double>: #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER) , int base #endif ) {
ffc10048:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc1004c:	7c 08 02 a6 	mflr    r0                                     
ffc10050:	93 c1 00 28 	stw     r30,40(r1)                             
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
ffc10054:	7c 9e 23 79 	mr.     r30,r4                                 
  #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER)       
    ,                                                                 
    int              base                                             
  #endif                                                              
)                                                                     
{                                                                     
ffc10058:	93 a1 00 24 	stw     r29,36(r1)                             
ffc1005c:	7c bd 2b 78 	mr      r29,r5                                 
ffc10060:	93 e1 00 2c 	stw     r31,44(r1)                             
ffc10064:	7c 7f 1b 78 	mr      r31,r3                                 
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
ffc10068:	38 60 00 09 	li      r3,9                                   
  #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER)       
    ,                                                                 
    int              base                                             
  #endif                                                              
)                                                                     
{                                                                     
ffc1006c:	90 01 00 34 	stw     r0,52(r1)                              
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
ffc10070:	41 82 00 5c 	beq-    ffc100cc <rtems_string_to_double+0x84> 
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
ffc10074:	48 00 2e 69 	bl      ffc12edc <__errno>                     
  *n    = 0;                                                          
ffc10078:	3d 20 ff c2 	lis     r9,-62                                 
ffc1007c:	c8 09 03 08 	lfd     f0,776(r9)                             
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
ffc10080:	38 00 00 00 	li      r0,0                                   
ffc10084:	90 03 00 00 	stw     r0,0(r3)                               
  *n    = 0;                                                          
                                                                      
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
ffc10088:	38 81 00 08 	addi    r4,r1,8                                
ffc1008c:	7f e3 fb 78 	mr      r3,r31                                 
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
  *n    = 0;                                                          
ffc10090:	d8 1e 00 00 	stfd    f0,0(r30)                              
                                                                      
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
ffc10094:	48 00 5b 8d 	bl      ffc15c20 <strtod>                      
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc10098:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
ffc1009c:	41 9e 00 6c 	beq-    cr7,ffc10108 <rtems_string_to_double+0xc0>
    *endptr = end;                                                    
ffc100a0:	80 01 00 08 	lwz     r0,8(r1)                               
ffc100a4:	90 1d 00 00 	stw     r0,0(r29)                              
                                                                      
  /* nothing was converted */                                         
  if ( end == s )                                                     
ffc100a8:	7f 9f 00 00 	cmpw    cr7,r31,r0                             
    return RTEMS_NOT_DEFINED;                                         
ffc100ac:	38 60 00 0b 	li      r3,11                                  
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
    *endptr = end;                                                    
                                                                      
  /* nothing was converted */                                         
  if ( end == s )                                                     
ffc100b0:	41 9e 00 1c 	beq-    cr7,ffc100cc <rtems_string_to_double+0x84>
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc100b4:	3d 20 ff c2 	lis     r9,-62                                 
ffc100b8:	c8 09 28 d0 	lfd     f0,10448(r9)                           
ffc100bc:	ff 81 00 00 	fcmpu   cr7,f1,f0                              
ffc100c0:	41 9d 00 28 	bgt-    cr7,ffc100e8 <rtems_string_to_double+0xa0>
  #endif                                                              
                                                                      
  #if defined(STRING_TO_POINTER)                                      
    *n = (STRING_TO_TYPE) (uintptr_t)result;                          
  #else                                                               
    *n = (STRING_TO_TYPE) result;                                     
ffc100c4:	d8 3e 00 00 	stfd    f1,0(r30)                              
  #endif                                                              
  return RTEMS_SUCCESSFUL;                                            
ffc100c8:	38 60 00 00 	li      r3,0                                   
}                                                                     
ffc100cc:	80 01 00 34 	lwz     r0,52(r1)                              
ffc100d0:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc100d4:	7c 08 03 a6 	mtlr    r0                                     
ffc100d8:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc100dc:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc100e0:	38 21 00 30 	addi    r1,r1,48                               
ffc100e4:	4e 80 00 20 	blr                                            
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc100e8:	d8 21 00 18 	stfd    f1,24(r1)                              
ffc100ec:	48 00 2d f1 	bl      ffc12edc <__errno>                     
ffc100f0:	80 03 00 00 	lwz     r0,0(r3)                               
      return RTEMS_INVALID_NUMBER;                                    
ffc100f4:	38 60 00 0a 	li      r3,10                                  
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc100f8:	c8 21 00 18 	lfd     f1,24(r1)                              
ffc100fc:	2f 80 00 22 	cmpwi   cr7,r0,34                              
ffc10100:	40 9e ff c4 	bne+    cr7,ffc100c4 <rtems_string_to_double+0x7c><== NEVER TAKEN
ffc10104:	4b ff ff c8 	b       ffc100cc <rtems_string_to_double+0x84> 
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc10108:	80 01 00 08 	lwz     r0,8(r1)                               
ffc1010c:	4b ff ff 9c 	b       ffc100a8 <rtems_string_to_double+0x60> 
                                                                      

ffc10110 <rtems_string_to_float>: #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER) , int base #endif ) {
ffc10110:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc10114:	7c 08 02 a6 	mflr    r0                                     
ffc10118:	93 c1 00 28 	stw     r30,40(r1)                             
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
ffc1011c:	7c 9e 23 79 	mr.     r30,r4                                 
  #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER)       
    ,                                                                 
    int              base                                             
  #endif                                                              
)                                                                     
{                                                                     
ffc10120:	93 a1 00 24 	stw     r29,36(r1)                             
ffc10124:	7c bd 2b 78 	mr      r29,r5                                 
ffc10128:	93 e1 00 2c 	stw     r31,44(r1)                             
ffc1012c:	7c 7f 1b 78 	mr      r31,r3                                 
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
ffc10130:	38 60 00 09 	li      r3,9                                   
  #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER)       
    ,                                                                 
    int              base                                             
  #endif                                                              
)                                                                     
{                                                                     
ffc10134:	90 01 00 34 	stw     r0,52(r1)                              
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
ffc10138:	41 82 00 58 	beq-    ffc10190 <rtems_string_to_float+0x80>  
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
ffc1013c:	48 00 2d a1 	bl      ffc12edc <__errno>                     
ffc10140:	38 00 00 00 	li      r0,0                                   
ffc10144:	90 03 00 00 	stw     r0,0(r3)                               
  *n    = 0;                                                          
ffc10148:	38 00 00 00 	li      r0,0                                   
                                                                      
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
ffc1014c:	7f e3 fb 78 	mr      r3,r31                                 
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
  *n    = 0;                                                          
ffc10150:	90 1e 00 00 	stw     r0,0(r30)                              
                                                                      
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
ffc10154:	38 81 00 08 	addi    r4,r1,8                                
ffc10158:	48 00 5a e1 	bl      ffc15c38 <strtof>                      
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc1015c:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
ffc10160:	41 9e 00 6c 	beq-    cr7,ffc101cc <rtems_string_to_float+0xbc>
    *endptr = end;                                                    
ffc10164:	80 01 00 08 	lwz     r0,8(r1)                               
ffc10168:	90 1d 00 00 	stw     r0,0(r29)                              
                                                                      
  /* nothing was converted */                                         
  if ( end == s )                                                     
ffc1016c:	7f 9f 00 00 	cmpw    cr7,r31,r0                             
    return RTEMS_NOT_DEFINED;                                         
ffc10170:	38 60 00 0b 	li      r3,11                                  
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
    *endptr = end;                                                    
                                                                      
  /* nothing was converted */                                         
  if ( end == s )                                                     
ffc10174:	41 9e 00 1c 	beq-    cr7,ffc10190 <rtems_string_to_float+0x80>
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc10178:	3d 20 ff c2 	lis     r9,-62                                 
ffc1017c:	c0 09 28 d8 	lfs     f0,10456(r9)                           
ffc10180:	ff 81 00 00 	fcmpu   cr7,f1,f0                              
ffc10184:	41 9d 00 28 	bgt-    cr7,ffc101ac <rtems_string_to_float+0x9c>
  #endif                                                              
                                                                      
  #if defined(STRING_TO_POINTER)                                      
    *n = (STRING_TO_TYPE) (uintptr_t)result;                          
  #else                                                               
    *n = (STRING_TO_TYPE) result;                                     
ffc10188:	d0 3e 00 00 	stfs    f1,0(r30)                              
  #endif                                                              
  return RTEMS_SUCCESSFUL;                                            
ffc1018c:	38 60 00 00 	li      r3,0                                   
}                                                                     
ffc10190:	80 01 00 34 	lwz     r0,52(r1)                              
ffc10194:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc10198:	7c 08 03 a6 	mtlr    r0                                     
ffc1019c:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc101a0:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc101a4:	38 21 00 30 	addi    r1,r1,48                               
ffc101a8:	4e 80 00 20 	blr                                            
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc101ac:	d8 21 00 18 	stfd    f1,24(r1)                              
ffc101b0:	48 00 2d 2d 	bl      ffc12edc <__errno>                     
ffc101b4:	80 03 00 00 	lwz     r0,0(r3)                               
      return RTEMS_INVALID_NUMBER;                                    
ffc101b8:	38 60 00 0a 	li      r3,10                                  
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc101bc:	c8 21 00 18 	lfd     f1,24(r1)                              
ffc101c0:	2f 80 00 22 	cmpwi   cr7,r0,34                              
ffc101c4:	40 9e ff c4 	bne+    cr7,ffc10188 <rtems_string_to_float+0x78><== NEVER TAKEN
ffc101c8:	4b ff ff c8 	b       ffc10190 <rtems_string_to_float+0x80>  
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc101cc:	80 01 00 08 	lwz     r0,8(r1)                               
ffc101d0:	4b ff ff 9c 	b       ffc1016c <rtems_string_to_float+0x5c>  
                                                                      

ffc1029c <rtems_string_to_long_long>: #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER) , int base #endif ) {
ffc1029c:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc102a0:	7c 08 02 a6 	mflr    r0                                     
ffc102a4:	93 e1 00 2c 	stw     r31,44(r1)                             
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
ffc102a8:	7c 9f 23 79 	mr.     r31,r4                                 
  #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER)       
    ,                                                                 
    int              base                                             
  #endif                                                              
)                                                                     
{                                                                     
ffc102ac:	93 81 00 20 	stw     r28,32(r1)                             
ffc102b0:	7c dc 33 78 	mr      r28,r6                                 
ffc102b4:	93 a1 00 24 	stw     r29,36(r1)                             
ffc102b8:	7c bd 2b 78 	mr      r29,r5                                 
ffc102bc:	93 c1 00 28 	stw     r30,40(r1)                             
ffc102c0:	7c 7e 1b 78 	mr      r30,r3                                 
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
ffc102c4:	38 60 00 09 	li      r3,9                                   
  #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER)       
    ,                                                                 
    int              base                                             
  #endif                                                              
)                                                                     
{                                                                     
ffc102c8:	90 01 00 34 	stw     r0,52(r1)                              
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
ffc102cc:	41 82 00 74 	beq-    ffc10340 <rtems_string_to_long_long+0xa4>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
ffc102d0:	48 00 2c 0d 	bl      ffc12edc <__errno>                     
ffc102d4:	38 00 00 00 	li      r0,0                                   
  *n    = 0;                                                          
ffc102d8:	39 20 00 00 	li      r9,0                                   
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
ffc102dc:	90 03 00 00 	stw     r0,0(r3)                               
  *n    = 0;                                                          
ffc102e0:	39 40 00 00 	li      r10,0                                  
ffc102e4:	91 3f 00 00 	stw     r9,0(r31)                              
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
ffc102e8:	7f 85 e3 78 	mr      r5,r28                                 
ffc102ec:	7f c3 f3 78 	mr      r3,r30                                 
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
  *n    = 0;                                                          
ffc102f0:	91 5f 00 04 	stw     r10,4(r31)                             
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
ffc102f4:	38 81 00 08 	addi    r4,r1,8                                
ffc102f8:	48 00 5b d9 	bl      ffc15ed0 <strtoll>                     
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc102fc:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
ffc10300:	7c 7c 1b 78 	mr      r28,r3                                 
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc10304:	41 9e 00 90 	beq-    cr7,ffc10394 <rtems_string_to_long_long+0xf8>
    *endptr = end;                                                    
ffc10308:	80 01 00 08 	lwz     r0,8(r1)                               
ffc1030c:	90 1d 00 00 	stw     r0,0(r29)                              
                                                                      
  /* nothing was converted */                                         
  if ( end == s )                                                     
ffc10310:	7f 9e 00 00 	cmpw    cr7,r30,r0                             
    return RTEMS_NOT_DEFINED;                                         
ffc10314:	38 60 00 0b 	li      r3,11                                  
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
    *endptr = end;                                                    
                                                                      
  /* nothing was converted */                                         
  if ( end == s )                                                     
ffc10318:	41 9e 00 28 	beq-    cr7,ffc10340 <rtems_string_to_long_long+0xa4>
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc1031c:	6f 80 80 00 	xoris   r0,r28,32768                           
ffc10320:	2f 80 ff ff 	cmpwi   cr7,r0,-1                              
ffc10324:	41 9e 00 64 	beq-    cr7,ffc10388 <rtems_string_to_long_long+0xec>
      return RTEMS_INVALID_NUMBER;                                    
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MIN                                                
    /* there was an underflow */                                      
    if ( (result == STRING_TO_MIN) && (errno == ERANGE))              
ffc10328:	3c 00 80 00 	lis     r0,-32768                              
ffc1032c:	7f 9c 00 00 	cmpw    cr7,r28,r0                             
ffc10330:	41 9e 00 30 	beq-    cr7,ffc10360 <rtems_string_to_long_long+0xc4>
  #endif                                                              
                                                                      
  #if defined(STRING_TO_POINTER)                                      
    *n = (STRING_TO_TYPE) (uintptr_t)result;                          
  #else                                                               
    *n = (STRING_TO_TYPE) result;                                     
ffc10334:	93 9f 00 00 	stw     r28,0(r31)                             
  #endif                                                              
  return RTEMS_SUCCESSFUL;                                            
ffc10338:	38 60 00 00 	li      r3,0                                   
  #endif                                                              
                                                                      
  #if defined(STRING_TO_POINTER)                                      
    *n = (STRING_TO_TYPE) (uintptr_t)result;                          
  #else                                                               
    *n = (STRING_TO_TYPE) result;                                     
ffc1033c:	90 9f 00 04 	stw     r4,4(r31)                              
  #endif                                                              
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
ffc10340:	80 01 00 34 	lwz     r0,52(r1)                              
ffc10344:	83 81 00 20 	lwz     r28,32(r1)                             
ffc10348:	7c 08 03 a6 	mtlr    r0                                     
ffc1034c:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc10350:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc10354:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc10358:	38 21 00 30 	addi    r1,r1,48                               
ffc1035c:	4e 80 00 20 	blr                                            
      return RTEMS_INVALID_NUMBER;                                    
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MIN                                                
    /* there was an underflow */                                      
    if ( (result == STRING_TO_MIN) && (errno == ERANGE))              
ffc10360:	2f 84 00 00 	cmpwi   cr7,r4,0                               
ffc10364:	40 9e ff d0 	bne+    cr7,ffc10334 <rtems_string_to_long_long+0x98><== NEVER TAKEN
ffc10368:	90 81 00 18 	stw     r4,24(r1)                              
ffc1036c:	48 00 2b 71 	bl      ffc12edc <__errno>                     
ffc10370:	80 03 00 00 	lwz     r0,0(r3)                               
      return RTEMS_INVALID_NUMBER;                                    
ffc10374:	38 60 00 0a 	li      r3,10                                  
      return RTEMS_INVALID_NUMBER;                                    
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MIN                                                
    /* there was an underflow */                                      
    if ( (result == STRING_TO_MIN) && (errno == ERANGE))              
ffc10378:	80 81 00 18 	lwz     r4,24(r1)                              
ffc1037c:	2f 80 00 22 	cmpwi   cr7,r0,34                              
ffc10380:	40 9e ff b4 	bne+    cr7,ffc10334 <rtems_string_to_long_long+0x98>
ffc10384:	4b ff ff bc 	b       ffc10340 <rtems_string_to_long_long+0xa4>
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc10388:	2f 84 ff ff 	cmpwi   cr7,r4,-1                              
ffc1038c:	40 9e ff 9c 	bne+    cr7,ffc10328 <rtems_string_to_long_long+0x8c><== NEVER TAKEN
ffc10390:	4b ff ff d8 	b       ffc10368 <rtems_string_to_long_long+0xcc>
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc10394:	80 01 00 08 	lwz     r0,8(r1)                               
ffc10398:	4b ff ff 78 	b       ffc10310 <rtems_string_to_long_long+0x74>
                                                                      

ffc10470 <rtems_string_to_pointer>: #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER) , int base #endif ) {
ffc10470:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc10474:	7c 08 02 a6 	mflr    r0                                     
ffc10478:	93 c1 00 20 	stw     r30,32(r1)                             
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
ffc1047c:	7c 9e 23 79 	mr.     r30,r4                                 
  #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER)       
    ,                                                                 
    int              base                                             
  #endif                                                              
)                                                                     
{                                                                     
ffc10480:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc10484:	7c bd 2b 78 	mr      r29,r5                                 
ffc10488:	93 e1 00 24 	stw     r31,36(r1)                             
ffc1048c:	7c 7f 1b 78 	mr      r31,r3                                 
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
ffc10490:	38 60 00 09 	li      r3,9                                   
  #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER)       
    ,                                                                 
    int              base                                             
  #endif                                                              
)                                                                     
{                                                                     
ffc10494:	90 01 00 2c 	stw     r0,44(r1)                              
ffc10498:	93 81 00 18 	stw     r28,24(r1)                             
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
ffc1049c:	41 82 00 54 	beq-    ffc104f0 <rtems_string_to_pointer+0x80>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
ffc104a0:	48 00 2a 3d 	bl      ffc12edc <__errno>                     
ffc104a4:	38 00 00 00 	li      r0,0                                   
ffc104a8:	90 03 00 00 	stw     r0,0(r3)                               
  *n    = 0;                                                          
                                                                      
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
ffc104ac:	38 81 00 08 	addi    r4,r1,8                                
ffc104b0:	7f e3 fb 78 	mr      r3,r31                                 
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
  *n    = 0;                                                          
ffc104b4:	90 1e 00 00 	stw     r0,0(r30)                              
                                                                      
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
ffc104b8:	38 a0 00 10 	li      r5,16                                  
ffc104bc:	48 00 5f 75 	bl      ffc16430 <strtoul>                     
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc104c0:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
  *n    = 0;                                                          
                                                                      
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
ffc104c4:	7c 7c 1b 78 	mr      r28,r3                                 
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc104c8:	41 9e 00 60 	beq-    cr7,ffc10528 <rtems_string_to_pointer+0xb8>
    *endptr = end;                                                    
ffc104cc:	80 01 00 08 	lwz     r0,8(r1)                               
ffc104d0:	90 1d 00 00 	stw     r0,0(r29)                              
                                                                      
  /* nothing was converted */                                         
  if ( end == s )                                                     
ffc104d4:	7f 9f 00 00 	cmpw    cr7,r31,r0                             
    return RTEMS_NOT_DEFINED;                                         
ffc104d8:	38 60 00 0b 	li      r3,11                                  
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
    *endptr = end;                                                    
                                                                      
  /* nothing was converted */                                         
  if ( end == s )                                                     
ffc104dc:	41 9e 00 14 	beq-    cr7,ffc104f0 <rtems_string_to_pointer+0x80>
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc104e0:	2f 9c ff ff 	cmpwi   cr7,r28,-1                             
ffc104e4:	41 9e 00 2c 	beq-    cr7,ffc10510 <rtems_string_to_pointer+0xa0><== NEVER TAKEN
    if ( (result == STRING_TO_MIN) && (errno == ERANGE))              
      return RTEMS_INVALID_NUMBER;                                    
  #endif                                                              
                                                                      
  #if defined(STRING_TO_POINTER)                                      
    *n = (STRING_TO_TYPE) (uintptr_t)result;                          
ffc104e8:	93 9e 00 00 	stw     r28,0(r30)                             
  #else                                                               
    *n = (STRING_TO_TYPE) result;                                     
  #endif                                                              
  return RTEMS_SUCCESSFUL;                                            
ffc104ec:	38 60 00 00 	li      r3,0                                   
}                                                                     
ffc104f0:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc104f4:	83 81 00 18 	lwz     r28,24(r1)                             
ffc104f8:	7c 08 03 a6 	mtlr    r0                                     
ffc104fc:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc10500:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc10504:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc10508:	38 21 00 28 	addi    r1,r1,40                               
ffc1050c:	4e 80 00 20 	blr                                            
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc10510:	48 00 29 cd 	bl      ffc12edc <__errno>                     <== NOT EXECUTED
ffc10514:	80 03 00 00 	lwz     r0,0(r3)                               <== NOT EXECUTED
      return RTEMS_INVALID_NUMBER;                                    
ffc10518:	38 60 00 0a 	li      r3,10                                  <== NOT EXECUTED
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc1051c:	2f 80 00 22 	cmpwi   cr7,r0,34                              <== NOT EXECUTED
ffc10520:	40 9e ff c8 	bne+    cr7,ffc104e8 <rtems_string_to_pointer+0x78><== NOT EXECUTED
ffc10524:	4b ff ff cc 	b       ffc104f0 <rtems_string_to_pointer+0x80><== NOT EXECUTED
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc10528:	80 01 00 08 	lwz     r0,8(r1)                               
ffc1052c:	4b ff ff a8 	b       ffc104d4 <rtems_string_to_pointer+0x64>
                                                                      

ffc105d4 <rtems_string_to_unsigned_int>: #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER) , int base #endif ) {
ffc105d4:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc105d8:	7c 08 02 a6 	mflr    r0                                     
ffc105dc:	93 c1 00 20 	stw     r30,32(r1)                             
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
ffc105e0:	7c 9e 23 79 	mr.     r30,r4                                 
  #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER)       
    ,                                                                 
    int              base                                             
  #endif                                                              
)                                                                     
{                                                                     
ffc105e4:	93 81 00 18 	stw     r28,24(r1)                             
ffc105e8:	7c dc 33 78 	mr      r28,r6                                 
ffc105ec:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc105f0:	7c bd 2b 78 	mr      r29,r5                                 
ffc105f4:	93 e1 00 24 	stw     r31,36(r1)                             
ffc105f8:	7c 7f 1b 78 	mr      r31,r3                                 
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
ffc105fc:	38 60 00 09 	li      r3,9                                   
  #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER)       
    ,                                                                 
    int              base                                             
  #endif                                                              
)                                                                     
{                                                                     
ffc10600:	90 01 00 2c 	stw     r0,44(r1)                              
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
ffc10604:	41 82 00 54 	beq-    ffc10658 <rtems_string_to_unsigned_int+0x84>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
ffc10608:	48 00 28 d5 	bl      ffc12edc <__errno>                     
ffc1060c:	38 00 00 00 	li      r0,0                                   
ffc10610:	90 03 00 00 	stw     r0,0(r3)                               
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
ffc10614:	7f 85 e3 78 	mr      r5,r28                                 
ffc10618:	7f e3 fb 78 	mr      r3,r31                                 
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
  *n    = 0;                                                          
ffc1061c:	90 1e 00 00 	stw     r0,0(r30)                              
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
ffc10620:	38 81 00 08 	addi    r4,r1,8                                
ffc10624:	48 00 5e 0d 	bl      ffc16430 <strtoul>                     
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc10628:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
ffc1062c:	7c 7c 1b 78 	mr      r28,r3                                 
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc10630:	41 9e 00 60 	beq-    cr7,ffc10690 <rtems_string_to_unsigned_int+0xbc>
    *endptr = end;                                                    
ffc10634:	80 01 00 08 	lwz     r0,8(r1)                               
ffc10638:	90 1d 00 00 	stw     r0,0(r29)                              
                                                                      
  /* nothing was converted */                                         
  if ( end == s )                                                     
ffc1063c:	7f 9f 00 00 	cmpw    cr7,r31,r0                             
    return RTEMS_NOT_DEFINED;                                         
ffc10640:	38 60 00 0b 	li      r3,11                                  
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
    *endptr = end;                                                    
                                                                      
  /* nothing was converted */                                         
  if ( end == s )                                                     
ffc10644:	41 9e 00 14 	beq-    cr7,ffc10658 <rtems_string_to_unsigned_int+0x84>
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc10648:	2f 9c ff ff 	cmpwi   cr7,r28,-1                             
ffc1064c:	41 9e 00 2c 	beq-    cr7,ffc10678 <rtems_string_to_unsigned_int+0xa4>
  #endif                                                              
                                                                      
  #if defined(STRING_TO_POINTER)                                      
    *n = (STRING_TO_TYPE) (uintptr_t)result;                          
  #else                                                               
    *n = (STRING_TO_TYPE) result;                                     
ffc10650:	93 9e 00 00 	stw     r28,0(r30)                             
  #endif                                                              
  return RTEMS_SUCCESSFUL;                                            
ffc10654:	38 60 00 00 	li      r3,0                                   
}                                                                     
ffc10658:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc1065c:	83 81 00 18 	lwz     r28,24(r1)                             
ffc10660:	7c 08 03 a6 	mtlr    r0                                     
ffc10664:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc10668:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc1066c:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc10670:	38 21 00 28 	addi    r1,r1,40                               
ffc10674:	4e 80 00 20 	blr                                            
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc10678:	48 00 28 65 	bl      ffc12edc <__errno>                     
ffc1067c:	80 03 00 00 	lwz     r0,0(r3)                               
      return RTEMS_INVALID_NUMBER;                                    
ffc10680:	38 60 00 0a 	li      r3,10                                  
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc10684:	2f 80 00 22 	cmpwi   cr7,r0,34                              
ffc10688:	40 9e ff c8 	bne+    cr7,ffc10650 <rtems_string_to_unsigned_int+0x7c><== NEVER TAKEN
ffc1068c:	4b ff ff cc 	b       ffc10658 <rtems_string_to_unsigned_int+0x84>
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc10690:	80 01 00 08 	lwz     r0,8(r1)                               
ffc10694:	4b ff ff a8 	b       ffc1063c <rtems_string_to_unsigned_int+0x68>
                                                                      

ffc1077c <rtems_string_to_unsigned_long>: #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER) , int base #endif ) {
ffc1077c:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc10780:	7c 08 02 a6 	mflr    r0                                     
ffc10784:	93 c1 00 20 	stw     r30,32(r1)                             
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
ffc10788:	7c 9e 23 79 	mr.     r30,r4                                 
  #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER)       
    ,                                                                 
    int              base                                             
  #endif                                                              
)                                                                     
{                                                                     
ffc1078c:	93 81 00 18 	stw     r28,24(r1)                             
ffc10790:	7c dc 33 78 	mr      r28,r6                                 
ffc10794:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc10798:	7c bd 2b 78 	mr      r29,r5                                 
ffc1079c:	93 e1 00 24 	stw     r31,36(r1)                             
ffc107a0:	7c 7f 1b 78 	mr      r31,r3                                 
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
ffc107a4:	38 60 00 09 	li      r3,9                                   
  #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER)       
    ,                                                                 
    int              base                                             
  #endif                                                              
)                                                                     
{                                                                     
ffc107a8:	90 01 00 2c 	stw     r0,44(r1)                              
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
ffc107ac:	41 82 00 54 	beq-    ffc10800 <rtems_string_to_unsigned_long+0x84>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
ffc107b0:	48 00 27 2d 	bl      ffc12edc <__errno>                     
ffc107b4:	38 00 00 00 	li      r0,0                                   
ffc107b8:	90 03 00 00 	stw     r0,0(r3)                               
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
ffc107bc:	7f 85 e3 78 	mr      r5,r28                                 
ffc107c0:	7f e3 fb 78 	mr      r3,r31                                 
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
  *n    = 0;                                                          
ffc107c4:	90 1e 00 00 	stw     r0,0(r30)                              
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
ffc107c8:	38 81 00 08 	addi    r4,r1,8                                
ffc107cc:	48 00 5c 65 	bl      ffc16430 <strtoul>                     
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc107d0:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
ffc107d4:	7c 7c 1b 78 	mr      r28,r3                                 
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc107d8:	41 9e 00 60 	beq-    cr7,ffc10838 <rtems_string_to_unsigned_long+0xbc>
    *endptr = end;                                                    
ffc107dc:	80 01 00 08 	lwz     r0,8(r1)                               
ffc107e0:	90 1d 00 00 	stw     r0,0(r29)                              
                                                                      
  /* nothing was converted */                                         
  if ( end == s )                                                     
ffc107e4:	7f 9f 00 00 	cmpw    cr7,r31,r0                             
    return RTEMS_NOT_DEFINED;                                         
ffc107e8:	38 60 00 0b 	li      r3,11                                  
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
    *endptr = end;                                                    
                                                                      
  /* nothing was converted */                                         
  if ( end == s )                                                     
ffc107ec:	41 9e 00 14 	beq-    cr7,ffc10800 <rtems_string_to_unsigned_long+0x84>
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc107f0:	2f 9c ff ff 	cmpwi   cr7,r28,-1                             
ffc107f4:	41 9e 00 2c 	beq-    cr7,ffc10820 <rtems_string_to_unsigned_long+0xa4>
  #endif                                                              
                                                                      
  #if defined(STRING_TO_POINTER)                                      
    *n = (STRING_TO_TYPE) (uintptr_t)result;                          
  #else                                                               
    *n = (STRING_TO_TYPE) result;                                     
ffc107f8:	93 9e 00 00 	stw     r28,0(r30)                             
  #endif                                                              
  return RTEMS_SUCCESSFUL;                                            
ffc107fc:	38 60 00 00 	li      r3,0                                   
}                                                                     
ffc10800:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc10804:	83 81 00 18 	lwz     r28,24(r1)                             
ffc10808:	7c 08 03 a6 	mtlr    r0                                     
ffc1080c:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc10810:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc10814:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc10818:	38 21 00 28 	addi    r1,r1,40                               
ffc1081c:	4e 80 00 20 	blr                                            
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc10820:	48 00 26 bd 	bl      ffc12edc <__errno>                     
ffc10824:	80 03 00 00 	lwz     r0,0(r3)                               
      return RTEMS_INVALID_NUMBER;                                    
ffc10828:	38 60 00 0a 	li      r3,10                                  
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc1082c:	2f 80 00 22 	cmpwi   cr7,r0,34                              
ffc10830:	40 9e ff c8 	bne+    cr7,ffc107f8 <rtems_string_to_unsigned_long+0x7c><== NEVER TAKEN
ffc10834:	4b ff ff cc 	b       ffc10800 <rtems_string_to_unsigned_long+0x84>
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc10838:	80 01 00 08 	lwz     r0,8(r1)                               
ffc1083c:	4b ff ff a8 	b       ffc107e4 <rtems_string_to_unsigned_long+0x68>
                                                                      

ffc10698 <rtems_string_to_unsigned_long_long>: #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER) , int base #endif ) {
ffc10698:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc1069c:	7c 08 02 a6 	mflr    r0                                     
ffc106a0:	93 e1 00 2c 	stw     r31,44(r1)                             
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
ffc106a4:	7c 9f 23 79 	mr.     r31,r4                                 
  #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER)       
    ,                                                                 
    int              base                                             
  #endif                                                              
)                                                                     
{                                                                     
ffc106a8:	93 81 00 20 	stw     r28,32(r1)                             
ffc106ac:	7c dc 33 78 	mr      r28,r6                                 
ffc106b0:	93 a1 00 24 	stw     r29,36(r1)                             
ffc106b4:	7c bd 2b 78 	mr      r29,r5                                 
ffc106b8:	93 c1 00 28 	stw     r30,40(r1)                             
ffc106bc:	7c 7e 1b 78 	mr      r30,r3                                 
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
ffc106c0:	38 60 00 09 	li      r3,9                                   
  #if defined(STRING_TO_INTEGER) && !defined(STRING_TO_POINTER)       
    ,                                                                 
    int              base                                             
  #endif                                                              
)                                                                     
{                                                                     
ffc106c4:	90 01 00 34 	stw     r0,52(r1)                              
  STRING_TO_INPUT_TYPE  result;                                       
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
ffc106c8:	41 82 00 64 	beq-    ffc1072c <rtems_string_to_unsigned_long_long+0x94>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
ffc106cc:	48 00 28 11 	bl      ffc12edc <__errno>                     
ffc106d0:	38 00 00 00 	li      r0,0                                   
  *n    = 0;                                                          
ffc106d4:	39 20 00 00 	li      r9,0                                   
  char                 *end;                                          
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
ffc106d8:	90 03 00 00 	stw     r0,0(r3)                               
  *n    = 0;                                                          
ffc106dc:	39 40 00 00 	li      r10,0                                  
ffc106e0:	91 3f 00 00 	stw     r9,0(r31)                              
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
ffc106e4:	7f 85 e3 78 	mr      r5,r28                                 
ffc106e8:	7f c3 f3 78 	mr      r3,r30                                 
                                                                      
  if ( !n )                                                           
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  errno = 0;                                                          
  *n    = 0;                                                          
ffc106ec:	91 5f 00 04 	stw     r10,4(r31)                             
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
ffc106f0:	38 81 00 08 	addi    r4,r1,8                                
ffc106f4:	48 00 5d 5d 	bl      ffc16450 <strtoull>                    
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc106f8:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
  #ifdef STRING_TO_FLOAT                                              
    result = STRING_TO_METHOD( s, &end );                             
  #elif defined(STRING_TO_POINTER)                                    
    result = STRING_TO_METHOD( s, &end, 16 );                         
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
ffc106fc:	7c 7c 1b 78 	mr      r28,r3                                 
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc10700:	41 9e 00 74 	beq-    cr7,ffc10774 <rtems_string_to_unsigned_long_long+0xdc>
    *endptr = end;                                                    
ffc10704:	80 01 00 08 	lwz     r0,8(r1)                               
ffc10708:	90 1d 00 00 	stw     r0,0(r29)                              
                                                                      
  /* nothing was converted */                                         
  if ( end == s )                                                     
ffc1070c:	7f 9e 00 00 	cmpw    cr7,r30,r0                             
    return RTEMS_NOT_DEFINED;                                         
ffc10710:	38 60 00 0b 	li      r3,11                                  
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
    *endptr = end;                                                    
                                                                      
  /* nothing was converted */                                         
  if ( end == s )                                                     
ffc10714:	41 9e 00 18 	beq-    cr7,ffc1072c <rtems_string_to_unsigned_long_long+0x94>
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc10718:	2f 9c ff ff 	cmpwi   cr7,r28,-1                             
ffc1071c:	41 9e 00 30 	beq-    cr7,ffc1074c <rtems_string_to_unsigned_long_long+0xb4>
  #endif                                                              
                                                                      
  #if defined(STRING_TO_POINTER)                                      
    *n = (STRING_TO_TYPE) (uintptr_t)result;                          
  #else                                                               
    *n = (STRING_TO_TYPE) result;                                     
ffc10720:	93 9f 00 00 	stw     r28,0(r31)                             
  #endif                                                              
  return RTEMS_SUCCESSFUL;                                            
ffc10724:	38 60 00 00 	li      r3,0                                   
  #endif                                                              
                                                                      
  #if defined(STRING_TO_POINTER)                                      
    *n = (STRING_TO_TYPE) (uintptr_t)result;                          
  #else                                                               
    *n = (STRING_TO_TYPE) result;                                     
ffc10728:	90 9f 00 04 	stw     r4,4(r31)                              
  #endif                                                              
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
ffc1072c:	80 01 00 34 	lwz     r0,52(r1)                              
ffc10730:	83 81 00 20 	lwz     r28,32(r1)                             
ffc10734:	7c 08 03 a6 	mtlr    r0                                     
ffc10738:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc1073c:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc10740:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc10744:	38 21 00 30 	addi    r1,r1,48                               
ffc10748:	4e 80 00 20 	blr                                            
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc1074c:	2f 84 ff ff 	cmpwi   cr7,r4,-1                              
ffc10750:	40 9e ff d0 	bne+    cr7,ffc10720 <rtems_string_to_unsigned_long_long+0x88><== NEVER TAKEN
ffc10754:	90 81 00 18 	stw     r4,24(r1)                              
ffc10758:	48 00 27 85 	bl      ffc12edc <__errno>                     
ffc1075c:	80 03 00 00 	lwz     r0,0(r3)                               
      return RTEMS_INVALID_NUMBER;                                    
ffc10760:	38 60 00 0a 	li      r3,10                                  
    return RTEMS_INVALID_NUMBER;                                      
  #endif                                                              
                                                                      
  #ifdef STRING_TO_MAX                                                
    /* there was an overflow */                                       
    if ( (result == STRING_TO_MAX) && (errno == ERANGE))              
ffc10764:	80 81 00 18 	lwz     r4,24(r1)                              
ffc10768:	2f 80 00 22 	cmpwi   cr7,r0,34                              
ffc1076c:	40 9e ff b4 	bne+    cr7,ffc10720 <rtems_string_to_unsigned_long_long+0x88><== NEVER TAKEN
ffc10770:	4b ff ff bc 	b       ffc1072c <rtems_string_to_unsigned_long_long+0x94>
  #elif defined(STRING_TO_INTEGER)                                    
    result = STRING_TO_METHOD( s, &end, base );                       
  #endif                                                              
                                                                      
  /* If the user wants the end pointer back, then return it. */       
  if ( endptr )                                                       
ffc10774:	80 01 00 08 	lwz     r0,8(r1)                               
ffc10778:	4b ff ff 94 	b       ffc1070c <rtems_string_to_unsigned_long_long+0x74>
                                                                      

ffc04570 <rtems_tarfs_load>: int rtems_tarfs_load( char *mountpoint, uint8_t *tar_image, size_t tar_size ) {
ffc04570:	94 21 fe 28 	stwu    r1,-472(r1)                            
ffc04574:	7c 08 02 a6 	mflr    r0                                     
ffc04578:	92 e1 01 b4 	stw     r23,436(r1)                            
ffc0457c:	90 01 01 dc 	stw     r0,476(r1)                             
ffc04580:	93 01 01 b8 	stw     r24,440(r1)                            
ffc04584:	7c 78 1b 78 	mr      r24,r3                                 
ffc04588:	93 81 01 c8 	stw     r28,456(r1)                            
ffc0458c:	7c bc 2b 78 	mr      r28,r5                                 
ffc04590:	93 a1 01 cc 	stw     r29,460(r1)                            
ffc04594:	7c 9d 23 78 	mr      r29,r4                                 
ffc04598:	92 01 01 98 	stw     r16,408(r1)                            
ffc0459c:	92 21 01 9c 	stw     r17,412(r1)                            
ffc045a0:	92 41 01 a0 	stw     r18,416(r1)                            
ffc045a4:	92 61 01 a4 	stw     r19,420(r1)                            
ffc045a8:	92 81 01 a8 	stw     r20,424(r1)                            
ffc045ac:	92 a1 01 ac 	stw     r21,428(r1)                            
ffc045b0:	92 c1 01 b0 	stw     r22,432(r1)                            
ffc045b4:	93 21 01 bc 	stw     r25,444(r1)                            
ffc045b8:	93 41 01 c0 	stw     r26,448(r1)                            
ffc045bc:	93 61 01 c4 	stw     r27,452(r1)                            
ffc045c0:	93 c1 01 d0 	stw     r30,464(r1)                            
ffc045c4:	93 e1 01 d4 	stw     r31,468(r1)                            
   int                              offset;                           
   unsigned long                    nblocks;                          
   IMFS_jnode_t                    *node;                             
   int                              status;                           
                                                                      
   status = rtems_filesystem_evaluate_path(                           
ffc045c8:	48 01 32 95 	bl      ffc1785c <strlen>                      
ffc045cc:	7c 64 1b 78 	mr      r4,r3                                  
ffc045d0:	38 a0 00 00 	li      r5,0                                   
ffc045d4:	7f 03 c3 78 	mr      r3,r24                                 
ffc045d8:	38 c1 00 0c 	addi    r6,r1,12                               
ffc045dc:	38 e0 00 00 	li      r7,0                                   
ffc045e0:	48 00 0e b1 	bl      ffc05490 <rtems_filesystem_evaluate_path>
      strlen(mountpoint),                                             
      0,                                                              
      &root_loc,                                                      
      0                                                               
   );                                                                 
   if (status != 0)                                                   
ffc045e4:	7c 77 1b 79 	mr.     r23,r3                                 
ffc045e8:	40 82 01 dc 	bne-    ffc047c4 <rtems_tarfs_load+0x254>      
     return -1;                                                       
                                                                      
   if (root_loc.ops != &IMFS_ops && root_loc.ops != &fifoIMFS_ops)    
ffc045ec:	80 01 00 18 	lwz     r0,24(r1)                              
ffc045f0:	3d 20 ff c2 	lis     r9,-62                                 
ffc045f4:	39 29 3a b4 	addi    r9,r9,15028                            
ffc045f8:	7f 80 48 00 	cmpw    cr7,r0,r9                              
ffc045fc:	3a 60 00 00 	li      r19,0                                  
ffc04600:	40 9e 01 b0 	bne-    cr7,ffc047b0 <rtems_tarfs_load+0x240>  
   /*                                                                 
    * Create an IMFS node structure pointing to tar image memory.     
    */                                                                
   offset = 0;                                                        
   while (1) {                                                        
    if (offset + 512 > tar_size)                                      
ffc04604:	3b f3 02 00 	addi    r31,r19,512                            
ffc04608:	7f 9f e0 40 	cmplw   cr7,r31,r28                            
    /*                                                                
     * Read a header.                                                 
     */                                                               
    hdr_ptr = (char *) &tar_image[offset];                            
    offset += 512;                                                    
    if (strncmp(&hdr_ptr[257], "ustar", 5))                           
ffc0460c:	3f 40 ff c2 	lis     r26,-62                                
ffc04610:	3b 5a 3a fc 	addi    r26,r26,15100                          
      break;                                                          
                                                                      
    strncpy(filename, hdr_ptr, MAX_NAME_FIELD_SIZE);                  
ffc04614:	3b c1 00 34 	addi    r30,r1,52                              
     */                                                               
    else if (linkflag == REGTYPE) {                                   
      const char  *name;                                              
                                                                      
      loc = root_loc;                                                 
      if (IMFS_evaluate_for_make(filename, &loc, &name) == 0) {       
ffc04618:	3a a1 00 20 	addi    r21,r1,32                              
ffc0461c:	3a c1 00 08 	addi    r22,r1,8                               
     * - For directories, just create directories as usual.  IMFS     
     *   will take care of the rest.                                  
     * - For files, create a file node with special tarfs properties. 
     */                                                               
    if (linkflag == DIRTYPE) {                                        
      strcpy(full_filename, mountpoint);                              
ffc04620:	3b 21 00 98 	addi    r25,r1,152                             
      if (full_filename[strlen(full_filename)-1] != '/')              
        strcat(full_filename, "/");                                   
ffc04624:	3a 80 2f 00 	li      r20,12032                              
   /*                                                                 
    * Create an IMFS node structure pointing to tar image memory.     
    */                                                                
   offset = 0;                                                        
   while (1) {                                                        
    if (offset + 512 > tar_size)                                      
ffc04628:	41 9d 00 98 	bgt-    cr7,ffc046c0 <rtems_tarfs_load+0x150>  <== NEVER TAKEN
      break;                                                          
                                                                      
    /*                                                                
     * Read a header.                                                 
     */                                                               
    hdr_ptr = (char *) &tar_image[offset];                            
ffc0462c:	7e 7d 9a 14 	add     r19,r29,r19                            
    offset += 512;                                                    
    if (strncmp(&hdr_ptr[257], "ustar", 5))                           
ffc04630:	38 73 01 01 	addi    r3,r19,257                             
ffc04634:	7f 44 d3 78 	mr      r4,r26                                 
ffc04638:	38 a0 00 05 	li      r5,5                                   
ffc0463c:	48 01 32 c5 	bl      ffc17900 <strncmp>                     
ffc04640:	7c 7b 1b 79 	mr.     r27,r3                                 
ffc04644:	40 82 00 7c 	bne-    ffc046c0 <rtems_tarfs_load+0x150>      
      break;                                                          
                                                                      
    strncpy(filename, hdr_ptr, MAX_NAME_FIELD_SIZE);                  
ffc04648:	38 a0 00 63 	li      r5,99                                  
ffc0464c:	7e 64 9b 78 	mr      r4,r19                                 
ffc04650:	7f c3 f3 78 	mr      r3,r30                                 
ffc04654:	48 01 33 f5 	bl      ffc17a48 <strncpy>                     
    filename[MAX_NAME_FIELD_SIZE] = '\0';                             
ffc04658:	9b 61 00 97 	stb     r27,151(r1)                            
                                                                      
    linkflag   = hdr_ptr[156];                                        
    file_mode  = _rtems_octal2ulong(&hdr_ptr[100], 8);                
ffc0465c:	38 80 00 08 	li      r4,8                                   
ffc04660:	38 73 00 64 	addi    r3,r19,100                             
      break;                                                          
                                                                      
    strncpy(filename, hdr_ptr, MAX_NAME_FIELD_SIZE);                  
    filename[MAX_NAME_FIELD_SIZE] = '\0';                             
                                                                      
    linkflag   = hdr_ptr[156];                                        
ffc04664:	8a 33 00 9c 	lbz     r17,156(r19)                           
    file_mode  = _rtems_octal2ulong(&hdr_ptr[100], 8);                
ffc04668:	48 00 9c e1 	bl      ffc0e348 <_rtems_octal2ulong>          
    file_size  = _rtems_octal2ulong(&hdr_ptr[124], 12);               
ffc0466c:	38 80 00 0c 	li      r4,12                                  
                                                                      
    strncpy(filename, hdr_ptr, MAX_NAME_FIELD_SIZE);                  
    filename[MAX_NAME_FIELD_SIZE] = '\0';                             
                                                                      
    linkflag   = hdr_ptr[156];                                        
    file_mode  = _rtems_octal2ulong(&hdr_ptr[100], 8);                
ffc04670:	7c 72 1b 78 	mr      r18,r3                                 
    file_size  = _rtems_octal2ulong(&hdr_ptr[124], 12);               
ffc04674:	38 73 00 7c 	addi    r3,r19,124                             
ffc04678:	48 00 9c d1 	bl      ffc0e348 <_rtems_octal2ulong>          
    hdr_chksum = _rtems_octal2ulong(&hdr_ptr[148], 8);                
ffc0467c:	38 80 00 08 	li      r4,8                                   
    strncpy(filename, hdr_ptr, MAX_NAME_FIELD_SIZE);                  
    filename[MAX_NAME_FIELD_SIZE] = '\0';                             
                                                                      
    linkflag   = hdr_ptr[156];                                        
    file_mode  = _rtems_octal2ulong(&hdr_ptr[100], 8);                
    file_size  = _rtems_octal2ulong(&hdr_ptr[124], 12);               
ffc04680:	7c 7b 1b 78 	mr      r27,r3                                 
    hdr_chksum = _rtems_octal2ulong(&hdr_ptr[148], 8);                
ffc04684:	38 73 00 94 	addi    r3,r19,148                             
ffc04688:	48 00 9c c1 	bl      ffc0e348 <_rtems_octal2ulong>          
ffc0468c:	7c 70 1b 78 	mr      r16,r3                                 
                                                                      
    if (_rtems_tar_header_checksum(hdr_ptr) != hdr_chksum)            
ffc04690:	7e 63 9b 78 	mr      r3,r19                                 
ffc04694:	48 00 a2 19 	bl      ffc0e8ac <_rtems_tar_header_checksum>  
ffc04698:	7f 83 80 00 	cmpw    cr7,r3,r16                             
ffc0469c:	40 9e 00 24 	bne-    cr7,ffc046c0 <rtems_tarfs_load+0x150>  <== NEVER TAKEN
     * Generate an IMFS node depending on the file type.              
     * - For directories, just create directories as usual.  IMFS     
     *   will take care of the rest.                                  
     * - For files, create a file node with special tarfs properties. 
     */                                                               
    if (linkflag == DIRTYPE) {                                        
ffc046a0:	2f 91 00 35 	cmpwi   cr7,r17,53                             
ffc046a4:	41 9e 00 c4 	beq-    cr7,ffc04768 <rtems_tarfs_load+0x1f8>  
     *        IMFS_create_node was ONLY passed a NULL when we created the
     *        root node.  We added a new IMFS_create_root_node() so this
     *        path no longer existed.  The result was simpler code which
     *        should not have this path.                              
     */                                                               
    else if (linkflag == REGTYPE) {                                   
ffc046a8:	2f 91 00 30 	cmpwi   cr7,r17,48                             
ffc046ac:	41 9e 00 68 	beq-    cr7,ffc04714 <rtems_tarfs_load+0x1a4>  
      0                                                               
   );                                                                 
   if (status != 0)                                                   
     return -1;                                                       
                                                                      
   if (root_loc.ops != &IMFS_ops && root_loc.ops != &fifoIMFS_ops)    
ffc046b0:	7f f3 fb 78 	mr      r19,r31                                
   /*                                                                 
    * Create an IMFS node structure pointing to tar image memory.     
    */                                                                
   offset = 0;                                                        
   while (1) {                                                        
    if (offset + 512 > tar_size)                                      
ffc046b4:	3b f3 02 00 	addi    r31,r19,512                            
ffc046b8:	7f 9f e0 40 	cmplw   cr7,r31,r28                            
ffc046bc:	40 9d ff 70 	ble+    cr7,ffc0462c <rtems_tarfs_load+0xbc>   <== ALWAYS TAKEN
      nblocks = (((file_size) + 511) & ~511) / 512;                   
      offset += 512 * nblocks;                                        
    }                                                                 
  }                                                                   
  return status;                                                      
}                                                                     
ffc046c0:	80 01 01 dc 	lwz     r0,476(r1)                             
ffc046c4:	7e e3 bb 78 	mr      r3,r23                                 
ffc046c8:	82 01 01 98 	lwz     r16,408(r1)                            
ffc046cc:	7c 08 03 a6 	mtlr    r0                                     
ffc046d0:	82 21 01 9c 	lwz     r17,412(r1)                            
ffc046d4:	82 41 01 a0 	lwz     r18,416(r1)                            
ffc046d8:	82 61 01 a4 	lwz     r19,420(r1)                            
ffc046dc:	82 81 01 a8 	lwz     r20,424(r1)                            
ffc046e0:	82 a1 01 ac 	lwz     r21,428(r1)                            
ffc046e4:	82 c1 01 b0 	lwz     r22,432(r1)                            
ffc046e8:	82 e1 01 b4 	lwz     r23,436(r1)                            
ffc046ec:	83 01 01 b8 	lwz     r24,440(r1)                            
ffc046f0:	83 21 01 bc 	lwz     r25,444(r1)                            
ffc046f4:	83 41 01 c0 	lwz     r26,448(r1)                            
ffc046f8:	83 61 01 c4 	lwz     r27,452(r1)                            
ffc046fc:	83 81 01 c8 	lwz     r28,456(r1)                            
ffc04700:	83 a1 01 cc 	lwz     r29,460(r1)                            
ffc04704:	83 c1 01 d0 	lwz     r30,464(r1)                            
ffc04708:	83 e1 01 d4 	lwz     r31,468(r1)                            
ffc0470c:	38 21 01 d8 	addi    r1,r1,472                              
ffc04710:	4e 80 00 20 	blr                                            
     *        should not have this path.                              
     */                                                               
    else if (linkflag == REGTYPE) {                                   
      const char  *name;                                              
                                                                      
      loc = root_loc;                                                 
ffc04714:	80 01 00 0c 	lwz     r0,12(r1)                              
      if (IMFS_evaluate_for_make(filename, &loc, &name) == 0) {       
ffc04718:	7f c3 f3 78 	mr      r3,r30                                 
ffc0471c:	7e a4 ab 78 	mr      r4,r21                                 
     *        should not have this path.                              
     */                                                               
    else if (linkflag == REGTYPE) {                                   
      const char  *name;                                              
                                                                      
      loc = root_loc;                                                 
ffc04720:	90 01 00 20 	stw     r0,32(r1)                              
      if (IMFS_evaluate_for_make(filename, &loc, &name) == 0) {       
ffc04724:	7e c5 b3 78 	mr      r5,r22                                 
     *        should not have this path.                              
     */                                                               
    else if (linkflag == REGTYPE) {                                   
      const char  *name;                                              
                                                                      
      loc = root_loc;                                                 
ffc04728:	80 01 00 10 	lwz     r0,16(r1)                              
ffc0472c:	90 01 00 24 	stw     r0,36(r1)                              
ffc04730:	80 01 00 14 	lwz     r0,20(r1)                              
ffc04734:	90 01 00 28 	stw     r0,40(r1)                              
ffc04738:	80 01 00 18 	lwz     r0,24(r1)                              
ffc0473c:	90 01 00 2c 	stw     r0,44(r1)                              
ffc04740:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc04744:	90 01 00 30 	stw     r0,48(r1)                              
      if (IMFS_evaluate_for_make(filename, &loc, &name) == 0) {       
ffc04748:	48 00 ac 6d 	bl      ffc0f3b4 <IMFS_evaluate_for_make>      
ffc0474c:	7c 73 1b 79 	mr.     r19,r3                                 
ffc04750:	41 82 00 7c 	beq-    ffc047cc <rtems_tarfs_load+0x25c>      <== ALWAYS TAKEN
        );                                                            
        node->info.linearfile.size   = file_size;                     
        node->info.linearfile.direct = &tar_image[offset];            
      }                                                               
                                                                      
      nblocks = (((file_size) + 511) & ~511) / 512;                   
ffc04754:	3b 7b 01 ff 	addi    r27,r27,511                            <== NOT EXECUTED
      offset += 512 * nblocks;                                        
ffc04758:	57 7b 00 2c 	rlwinm  r27,r27,0,0,22                         <== NOT EXECUTED
ffc0475c:	7f fb fa 14 	add     r31,r27,r31                            <== NOT EXECUTED
      0                                                               
   );                                                                 
   if (status != 0)                                                   
     return -1;                                                       
                                                                      
   if (root_loc.ops != &IMFS_ops && root_loc.ops != &fifoIMFS_ops)    
ffc04760:	7f f3 fb 78 	mr      r19,r31                                
ffc04764:	4b ff ff 50 	b       ffc046b4 <rtems_tarfs_load+0x144>      
     * - For directories, just create directories as usual.  IMFS     
     *   will take care of the rest.                                  
     * - For files, create a file node with special tarfs properties. 
     */                                                               
    if (linkflag == DIRTYPE) {                                        
      strcpy(full_filename, mountpoint);                              
ffc04768:	7f 04 c3 78 	mr      r4,r24                                 
ffc0476c:	7f 23 cb 78 	mr      r3,r25                                 
ffc04770:	48 01 2c 19 	bl      ffc17388 <strcpy>                      
      if (full_filename[strlen(full_filename)-1] != '/')              
ffc04774:	7f 23 cb 78 	mr      r3,r25                                 
ffc04778:	48 01 30 e5 	bl      ffc1785c <strlen>                      
ffc0477c:	7d 36 1a 14 	add     r9,r22,r3                              
ffc04780:	88 09 00 8f 	lbz     r0,143(r9)                             
ffc04784:	2f 80 00 2f 	cmpwi   cr7,r0,47                              
ffc04788:	41 9e 00 08 	beq-    cr7,ffc04790 <rtems_tarfs_load+0x220>  <== ALWAYS TAKEN
        strcat(full_filename, "/");                                   
ffc0478c:	7e 99 1b 2e 	sthx    r20,r25,r3                             <== NOT EXECUTED
      strcat(full_filename, filename);                                
ffc04790:	7f c4 f3 78 	mr      r4,r30                                 
ffc04794:	7f 23 cb 78 	mr      r3,r25                                 
ffc04798:	48 01 2a b5 	bl      ffc1724c <strcat>                      
      mkdir(full_filename, S_IRWXU | S_IRWXG | S_IRWXO);              
ffc0479c:	7f 23 cb 78 	mr      r3,r25                                 
ffc047a0:	38 80 01 ff 	li      r4,511                                 
ffc047a4:	48 00 18 cd 	bl      ffc06070 <mkdir>                       
      0                                                               
   );                                                                 
   if (status != 0)                                                   
     return -1;                                                       
                                                                      
   if (root_loc.ops != &IMFS_ops && root_loc.ops != &fifoIMFS_ops)    
ffc047a8:	7f f3 fb 78 	mr      r19,r31                                
ffc047ac:	4b ff ff 08 	b       ffc046b4 <rtems_tarfs_load+0x144>      
ffc047b0:	3d 20 ff c2 	lis     r9,-62                                 
ffc047b4:	39 29 42 44 	addi    r9,r9,16964                            
ffc047b8:	7f 80 48 00 	cmpw    cr7,r0,r9                              
ffc047bc:	7e f3 bb 78 	mr      r19,r23                                
ffc047c0:	41 be fe 44 	beq-    cr7,ffc04604 <rtems_tarfs_load+0x94>   <== NEVER TAKEN
     return -1;                                                       
ffc047c4:	3a e0 ff ff 	li      r23,-1                                 
ffc047c8:	4b ff fe f8 	b       ffc046c0 <rtems_tarfs_load+0x150>      
      loc = root_loc;                                                 
      if (IMFS_evaluate_for_make(filename, &loc, &name) == 0) {       
        node = IMFS_create_node(                                      
          &loc,                                                       
          IMFS_LINEAR_FILE, (char *)name,                             
          (file_mode & (S_IRWXU | S_IRWXG | S_IRWXO)) | S_IFREG,      
ffc047cc:	56 46 05 fe 	clrlwi  r6,r18,23                              
    else if (linkflag == REGTYPE) {                                   
      const char  *name;                                              
                                                                      
      loc = root_loc;                                                 
      if (IMFS_evaluate_for_make(filename, &loc, &name) == 0) {       
        node = IMFS_create_node(                                      
ffc047d0:	80 a1 00 08 	lwz     r5,8(r1)                               
ffc047d4:	7e a3 ab 78 	mr      r3,r21                                 
ffc047d8:	38 80 00 06 	li      r4,6                                   
ffc047dc:	60 c6 80 00 	ori     r6,r6,32768                            
ffc047e0:	38 e0 00 00 	li      r7,0                                   
ffc047e4:	48 00 a3 7d 	bl      ffc0eb60 <IMFS_create_node>            
          IMFS_LINEAR_FILE, (char *)name,                             
          (file_mode & (S_IRWXU | S_IRWXG | S_IRWXO)) | S_IFREG,      
          NULL                                                        
        );                                                            
        node->info.linearfile.size   = file_size;                     
        node->info.linearfile.direct = &tar_image[offset];            
ffc047e8:	7c 1d fa 14 	add     r0,r29,r31                             
          &loc,                                                       
          IMFS_LINEAR_FILE, (char *)name,                             
          (file_mode & (S_IRWXU | S_IRWXG | S_IRWXO)) | S_IFREG,      
          NULL                                                        
        );                                                            
        node->info.linearfile.size   = file_size;                     
ffc047ec:	93 63 00 54 	stw     r27,84(r3)                             
        node->info.linearfile.direct = &tar_image[offset];            
      }                                                               
                                                                      
      nblocks = (((file_size) + 511) & ~511) / 512;                   
ffc047f0:	3b 7b 01 ff 	addi    r27,r27,511                            
      offset += 512 * nblocks;                                        
ffc047f4:	57 7b 00 2c 	rlwinm  r27,r27,0,0,22                         
          &loc,                                                       
          IMFS_LINEAR_FILE, (char *)name,                             
          (file_mode & (S_IRWXU | S_IRWXG | S_IRWXO)) | S_IFREG,      
          NULL                                                        
        );                                                            
        node->info.linearfile.size   = file_size;                     
ffc047f8:	92 63 00 50 	stw     r19,80(r3)                             
        node->info.linearfile.direct = &tar_image[offset];            
      }                                                               
                                                                      
      nblocks = (((file_size) + 511) & ~511) / 512;                   
      offset += 512 * nblocks;                                        
ffc047fc:	7f fb fa 14 	add     r31,r27,r31                            
          IMFS_LINEAR_FILE, (char *)name,                             
          (file_mode & (S_IRWXU | S_IRWXG | S_IRWXO)) | S_IFREG,      
          NULL                                                        
        );                                                            
        node->info.linearfile.size   = file_size;                     
        node->info.linearfile.direct = &tar_image[offset];            
ffc04800:	90 03 00 58 	stw     r0,88(r3)                              
ffc04804:	4b ff ff 5c 	b       ffc04760 <rtems_tarfs_load+0x1f0>      
                                                                      

ffc11b78 <rtems_task_mode>: ASR_Information *asr; bool is_asr_enabled = false; bool needs_asr_dispatching = false; rtems_mode old_mode; if ( !previous_mode_set )
ffc11b78:	2c 05 00 00 	cmpwi   r5,0                                   
rtems_status_code rtems_task_mode(                                    
  rtems_mode  mode_set,                                               
  rtems_mode  mask,                                                   
  rtems_mode *previous_mode_set                                       
)                                                                     
{                                                                     
ffc11b7c:	7c 08 02 a6 	mflr    r0                                     
ffc11b80:	94 21 ff f8 	stwu    r1,-8(r1)                              
ffc11b84:	90 01 00 0c 	stw     r0,12(r1)                              
ffc11b88:	7c 60 1b 78 	mr      r0,r3                                  
  bool                is_asr_enabled = false;                         
  bool                needs_asr_dispatching = false;                  
  rtems_mode          old_mode;                                       
                                                                      
  if ( !previous_mode_set )                                           
    return RTEMS_INVALID_ADDRESS;                                     
ffc11b8c:	38 60 00 09 	li      r3,9                                   
  ASR_Information    *asr;                                            
  bool                is_asr_enabled = false;                         
  bool                needs_asr_dispatching = false;                  
  rtems_mode          old_mode;                                       
                                                                      
  if ( !previous_mode_set )                                           
ffc11b90:	41 82 01 34 	beq-    ffc11cc4 <rtems_task_mode+0x14c>       
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  executing     = _Thread_Executing;                                  
ffc11b94:	3c c0 00 00 	lis     r6,0                                   
ffc11b98:	38 c6 2d 64 	addi    r6,r6,11620                            
ffc11b9c:	81 26 00 0c 	lwz     r9,12(r6)                              
  api = executing->API_Extensions[ THREAD_API_RTEMS ];                
  asr = &api->Signal;                                                 
                                                                      
  old_mode  = (executing->is_preemptible) ? RTEMS_PREEMPT : RTEMS_NO_PREEMPT;
                                                                      
  if ( executing->budget_algorithm == THREAD_CPU_BUDGET_ALGORITHM_NONE )
ffc11ba0:	81 69 00 7c 	lwz     r11,124(r9)                            
                                                                      
  executing     = _Thread_Executing;                                  
  api = executing->API_Extensions[ THREAD_API_RTEMS ];                
  asr = &api->Signal;                                                 
                                                                      
  old_mode  = (executing->is_preemptible) ? RTEMS_PREEMPT : RTEMS_NO_PREEMPT;
ffc11ba4:	89 09 00 74 	lbz     r8,116(r9)                             
                                                                      
  if ( executing->budget_algorithm == THREAD_CPU_BUDGET_ALGORITHM_NONE )
ffc11ba8:	2f 8b 00 00 	cmpwi   cr7,r11,0                              
                                                                      
  if ( !previous_mode_set )                                           
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  executing     = _Thread_Executing;                                  
  api = executing->API_Extensions[ THREAD_API_RTEMS ];                
ffc11bac:	81 69 01 40 	lwz     r11,320(r9)                            
  asr = &api->Signal;                                                 
                                                                      
  old_mode  = (executing->is_preemptible) ? RTEMS_PREEMPT : RTEMS_NO_PREEMPT;
ffc11bb0:	7d 08 00 34 	cntlzw  r8,r8                                  
ffc11bb4:	55 08 d9 7e 	rlwinm  r8,r8,27,5,31                          
ffc11bb8:	55 07 40 2e 	rlwinm  r7,r8,8,0,23                           
                                                                      
  if ( executing->budget_algorithm == THREAD_CPU_BUDGET_ALGORITHM_NONE )
ffc11bbc:	40 9e 01 18 	bne-    cr7,ffc11cd4 <rtems_task_mode+0x15c>   
    old_mode |= RTEMS_NO_TIMESLICE;                                   
  else                                                                
    old_mode |= RTEMS_TIMESLICE;                                      
                                                                      
  old_mode |= (asr->is_enabled) ? RTEMS_ASR : RTEMS_NO_ASR;           
ffc11bc0:	89 0b 00 08 	lbz     r8,8(r11)                              
#ifndef ASM                                                           
                                                                      
static inline uint32_t   _CPU_ISR_Get_level( void )                   
{                                                                     
  register unsigned int msr;                                          
  _CPU_MSR_GET(msr);                                                  
ffc11bc4:	39 40 00 00 	li      r10,0                                  
ffc11bc8:	7d 08 00 34 	cntlzw  r8,r8                                  
ffc11bcc:	55 08 d9 7e 	rlwinm  r8,r8,27,5,31                          
ffc11bd0:	55 08 50 2a 	rlwinm  r8,r8,10,0,21                          
ffc11bd4:	7d 07 3b 78 	or      r7,r8,r7                               
ffc11bd8:	7d 40 00 a6 	mfmsr   r10                                    
  if (msr & MSR_EE) return 0;                                         
ffc11bdc:	55 48 8f fe 	rlwinm  r8,r10,17,31,31                        
ffc11be0:	2f 88 00 00 	cmpwi   cr7,r8,0                               
  *previous_mode_set = old_mode;                                      
                                                                      
  /*                                                                  
   *  These are generic thread scheduling characteristics.            
   */                                                                 
  if ( mask & RTEMS_PREEMPT_MASK )                                    
ffc11be4:	70 8a 01 00 	andi.   r10,r4,256                             
ffc11be8:	7d 40 00 26 	mfcr    r10                                    
ffc11bec:	55 4a ff fe 	rlwinm  r10,r10,31,31,31                       
    old_mode |= RTEMS_NO_TIMESLICE;                                   
  else                                                                
    old_mode |= RTEMS_TIMESLICE;                                      
                                                                      
  old_mode |= (asr->is_enabled) ? RTEMS_ASR : RTEMS_NO_ASR;           
  old_mode |= _ISR_Get_level();                                       
ffc11bf0:	7c e7 53 78 	or      r7,r7,r10                              
                                                                      
  *previous_mode_set = old_mode;                                      
ffc11bf4:	90 e5 00 00 	stw     r7,0(r5)                               
                                                                      
  /*                                                                  
   *  These are generic thread scheduling characteristics.            
   */                                                                 
  if ( mask & RTEMS_PREEMPT_MASK )                                    
ffc11bf8:	41 82 00 14 	beq-    ffc11c0c <rtems_task_mode+0x94>        
    executing->is_preemptible = _Modes_Is_preempt(mode_set) ? true : false;
ffc11bfc:	70 08 01 00 	andi.   r8,r0,256                              
ffc11c00:	7d 40 00 26 	mfcr    r10                                    
ffc11c04:	55 4a 1f fe 	rlwinm  r10,r10,3,31,31                        
ffc11c08:	99 49 00 74 	stb     r10,116(r9)                            
                                                                      
  if ( mask & RTEMS_TIMESLICE_MASK ) {                                
ffc11c0c:	70 8a 02 00 	andi.   r10,r4,512                             
ffc11c10:	41 82 00 20 	beq-    ffc11c30 <rtems_task_mode+0xb8>        
    if ( _Modes_Is_timeslice(mode_set) ) {                            
ffc11c14:	70 0a 02 00 	andi.   r10,r0,512                             
ffc11c18:	41 82 01 54 	beq-    ffc11d6c <rtems_task_mode+0x1f4>       
      executing->budget_algorithm = THREAD_CPU_BUDGET_ALGORITHM_RESET_TIMESLICE;
      executing->cpu_time_budget  = _Thread_Ticks_per_timeslice;      
ffc11c1c:	3d 40 00 00 	lis     r10,0                                  
ffc11c20:	81 4a 27 28 	lwz     r10,10024(r10)                         
  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;
ffc11c24:	39 00 00 01 	li      r8,1                                   
ffc11c28:	91 09 00 7c 	stw     r8,124(r9)                             
      executing->cpu_time_budget  = _Thread_Ticks_per_timeslice;      
ffc11c2c:	91 49 00 78 	stw     r10,120(r9)                            
  }                                                                   
                                                                      
  /*                                                                  
   *  Set the new interrupt level                                     
   */                                                                 
  if ( mask & RTEMS_INTERRUPT_MASK )                                  
ffc11c30:	70 88 00 01 	andi.   r8,r4,1                                
ffc11c34:	41 82 00 20 	beq-    ffc11c54 <rtems_task_mode+0xdc>        
}                                                                     
                                                                      
static inline void _CPU_ISR_Set_level( uint32_t   level )             
{                                                                     
  register unsigned int msr;                                          
  _CPU_MSR_GET(msr);                                                  
ffc11c38:	39 20 00 00 	li      r9,0                                   
ffc11c3c:	7d 20 00 a6 	mfmsr   r9                                     
  if (!(level & CPU_MODES_INTERRUPT_MASK)) {                          
ffc11c40:	70 0a 00 01 	andi.   r10,r0,1                               
ffc11c44:	40 82 01 18 	bne-    ffc11d5c <rtems_task_mode+0x1e4>       
                                                                      
static inline uint32_t ppc_interrupt_get_disable_mask( void )         
{                                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc11c48:	7d 50 42 a6 	mfsprg  r10,0                                  
    msr |= ppc_interrupt_get_disable_mask();                          
ffc11c4c:	7d 49 4b 78 	or      r9,r10,r9                              
  }                                                                   
  else {                                                              
    msr &= ~ppc_interrupt_get_disable_mask();                         
  }                                                                   
  _CPU_MSR_SET(msr);                                                  
ffc11c50:	7d 20 01 24 	mtmsr   r9                                     
   *  This is specific to the RTEMS API                               
   */                                                                 
  is_asr_enabled = false;                                             
  needs_asr_dispatching = false;                                      
                                                                      
  if ( mask & RTEMS_ASR_MASK ) {                                      
ffc11c54:	70 88 04 00 	andi.   r8,r4,1024                             
                                                                      
  /*                                                                  
   *  This is specific to the RTEMS API                               
   */                                                                 
  is_asr_enabled = false;                                             
  needs_asr_dispatching = false;                                      
ffc11c58:	39 40 00 00 	li      r10,0                                  
                                                                      
  if ( mask & RTEMS_ASR_MASK ) {                                      
ffc11c5c:	41 82 00 54 	beq-    ffc11cb0 <rtems_task_mode+0x138>       
 *  Output:                                                           
 *    *previous_mode_set - previous mode set                          
 *     always return RTEMS_SUCCESSFUL;                                
 */                                                                   
                                                                      
rtems_status_code rtems_task_mode(                                    
ffc11c60:	70 09 04 00 	andi.   r9,r0,1024                             
  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 ) {                        
ffc11c64:	89 2b 00 08 	lbz     r9,8(r11)                              
 *  Output:                                                           
 *    *previous_mode_set - previous mode set                          
 *     always return RTEMS_SUCCESSFUL;                                
 */                                                                   
                                                                      
rtems_status_code rtems_task_mode(                                    
ffc11c68:	7c 00 00 26 	mfcr    r0                                     
ffc11c6c:	54 00 1f fe 	rlwinm  r0,r0,3,31,31                          
  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 ) {                        
ffc11c70:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc11c74:	41 9e 00 3c 	beq-    cr7,ffc11cb0 <rtems_task_mode+0x138>   
      asr->is_enabled = is_asr_enabled;                               
ffc11c78:	98 0b 00 08 	stb     r0,8(r11)                              
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc11c7c:	7c 00 00 a6 	mfmsr   r0                                     
ffc11c80:	7d 30 42 a6 	mfsprg  r9,0                                   
ffc11c84:	7c 09 48 78 	andc    r9,r0,r9                               
ffc11c88:	7d 20 01 24 	mtmsr   r9                                     
{                                                                     
  rtems_signal_set _signals;                                          
  ISR_Level        _level;                                            
                                                                      
  _ISR_Disable( _level );                                             
    _signals                     = information->signals_pending;      
ffc11c8c:	81 4b 00 18 	lwz     r10,24(r11)                            
    information->signals_pending = information->signals_posted;       
ffc11c90:	81 2b 00 14 	lwz     r9,20(r11)                             
    information->signals_posted  = _signals;                          
ffc11c94:	91 4b 00 14 	stw     r10,20(r11)                            
  rtems_signal_set _signals;                                          
  ISR_Level        _level;                                            
                                                                      
  _ISR_Disable( _level );                                             
    _signals                     = information->signals_pending;      
    information->signals_pending = information->signals_posted;       
ffc11c98:	91 2b 00 18 	stw     r9,24(r11)                             
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc11c9c:	7c 00 01 24 	mtmsr   r0                                     
      _ASR_Swap_signals( asr );                                       
      if ( _ASR_Are_signals_pending( asr ) ) {                        
ffc11ca0:	80 0b 00 14 	lwz     r0,20(r11)                             
        needs_asr_dispatching = true;                                 
ffc11ca4:	39 40 00 01 	li      r10,1                                  
  if ( mask & RTEMS_ASR_MASK ) {                                      
    is_asr_enabled = _Modes_Is_asr_disabled( mode_set ) ? false : true;
    if ( is_asr_enabled != asr->is_enabled ) {                        
      asr->is_enabled = is_asr_enabled;                               
      _ASR_Swap_signals( asr );                                       
      if ( _ASR_Are_signals_pending( asr ) ) {                        
ffc11ca8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc11cac:	41 9e 00 d0 	beq-    cr7,ffc11d7c <rtems_task_mode+0x204>   
        needs_asr_dispatching = true;                                 
      }                                                               
    }                                                                 
  }                                                                   
                                                                      
  if ( _System_state_Is_up( _System_state_Get() ) ) {                 
ffc11cb0:	3d 20 00 00 	lis     r9,0                                   
ffc11cb4:	80 09 27 74 	lwz     r0,10100(r9)                           
     if (_Thread_Evaluate_is_dispatch_needed( needs_asr_dispatching ) )
      _Thread_Dispatch();                                             
  }                                                                   
                                                                      
  return RTEMS_SUCCESSFUL;                                            
ffc11cb8:	38 60 00 00 	li      r3,0                                   
        needs_asr_dispatching = true;                                 
      }                                                               
    }                                                                 
  }                                                                   
                                                                      
  if ( _System_state_Is_up( _System_state_Get() ) ) {                 
ffc11cbc:	2f 80 00 03 	cmpwi   cr7,r0,3                               
ffc11cc0:	41 9e 00 58 	beq-    cr7,ffc11d18 <rtems_task_mode+0x1a0>   <== ALWAYS TAKEN
     if (_Thread_Evaluate_is_dispatch_needed( needs_asr_dispatching ) )
      _Thread_Dispatch();                                             
  }                                                                   
                                                                      
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
ffc11cc4:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc11cc8:	38 21 00 08 	addi    r1,r1,8                                
ffc11ccc:	7c 08 03 a6 	mtlr    r0                                     
ffc11cd0:	4e 80 00 20 	blr                                            
  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;           
ffc11cd4:	89 0b 00 08 	lbz     r8,8(r11)                              
  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;                                      
ffc11cd8:	60 e7 02 00 	ori     r7,r7,512                              
#ifndef ASM                                                           
                                                                      
static inline uint32_t   _CPU_ISR_Get_level( void )                   
{                                                                     
  register unsigned int msr;                                          
  _CPU_MSR_GET(msr);                                                  
ffc11cdc:	39 40 00 00 	li      r10,0                                  
                                                                      
  old_mode |= (asr->is_enabled) ? RTEMS_ASR : RTEMS_NO_ASR;           
ffc11ce0:	7d 08 00 34 	cntlzw  r8,r8                                  
ffc11ce4:	55 08 d9 7e 	rlwinm  r8,r8,27,5,31                          
ffc11ce8:	55 08 50 2a 	rlwinm  r8,r8,10,0,21                          
ffc11cec:	7d 07 3b 78 	or      r7,r8,r7                               
ffc11cf0:	7d 40 00 a6 	mfmsr   r10                                    
  if (msr & MSR_EE) return 0;                                         
ffc11cf4:	55 48 8f fe 	rlwinm  r8,r10,17,31,31                        
ffc11cf8:	2f 88 00 00 	cmpwi   cr7,r8,0                               
  *previous_mode_set = old_mode;                                      
                                                                      
  /*                                                                  
   *  These are generic thread scheduling characteristics.            
   */                                                                 
  if ( mask & RTEMS_PREEMPT_MASK )                                    
ffc11cfc:	70 8a 01 00 	andi.   r10,r4,256                             
ffc11d00:	7d 40 00 26 	mfcr    r10                                    
ffc11d04:	55 4a ff fe 	rlwinm  r10,r10,31,31,31                       
    old_mode |= RTEMS_NO_TIMESLICE;                                   
  else                                                                
    old_mode |= RTEMS_TIMESLICE;                                      
                                                                      
  old_mode |= (asr->is_enabled) ? RTEMS_ASR : RTEMS_NO_ASR;           
  old_mode |= _ISR_Get_level();                                       
ffc11d08:	7c e7 53 78 	or      r7,r7,r10                              
                                                                      
  *previous_mode_set = old_mode;                                      
ffc11d0c:	90 e5 00 00 	stw     r7,0(r5)                               
                                                                      
  /*                                                                  
   *  These are generic thread scheduling characteristics.            
   */                                                                 
  if ( mask & RTEMS_PREEMPT_MASK )                                    
ffc11d10:	41 a2 fe fc 	beq-    ffc11c0c <rtems_task_mode+0x94>        
ffc11d14:	4b ff fe e8 	b       ffc11bfc <rtems_task_mode+0x84>        
{                                                                     
  Thread_Control     *executing;                                      
                                                                      
  executing = _Thread_Executing;                                      
                                                                      
  if ( are_signals_pending ||                                         
ffc11d18:	2f 8a 00 00 	cmpwi   cr7,r10,0                              
  bool are_signals_pending                                            
)                                                                     
{                                                                     
  Thread_Control     *executing;                                      
                                                                      
  executing = _Thread_Executing;                                      
ffc11d1c:	81 26 00 0c 	lwz     r9,12(r6)                              
                                                                      
  if ( are_signals_pending ||                                         
ffc11d20:	40 9e 00 1c 	bne-    cr7,ffc11d3c <rtems_task_mode+0x1c4>   
ffc11d24:	80 06 00 10 	lwz     r0,16(r6)                              
ffc11d28:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc11d2c:	41 be ff 98 	beq-    cr7,ffc11cc4 <rtems_task_mode+0x14c>   
       (!_Thread_Is_heir( executing ) && executing->is_preemptible) ) {
ffc11d30:	88 09 00 74 	lbz     r0,116(r9)                             
ffc11d34:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc11d38:	41 be ff 8c 	beq-    cr7,ffc11cc4 <rtems_task_mode+0x14c>   <== NEVER TAKEN
    _Thread_Dispatch_necessary = true;                                
ffc11d3c:	38 00 00 01 	li      r0,1                                   
ffc11d40:	98 06 00 18 	stb     r0,24(r6)                              
    }                                                                 
  }                                                                   
                                                                      
  if ( _System_state_Is_up( _System_state_Get() ) ) {                 
     if (_Thread_Evaluate_is_dispatch_needed( needs_asr_dispatching ) )
      _Thread_Dispatch();                                             
ffc11d44:	4b ff 9a ad 	bl      ffc0b7f0 <_Thread_Dispatch>            
  }                                                                   
                                                                      
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
ffc11d48:	80 01 00 0c 	lwz     r0,12(r1)                              
  if ( _System_state_Is_up( _System_state_Get() ) ) {                 
     if (_Thread_Evaluate_is_dispatch_needed( needs_asr_dispatching ) )
      _Thread_Dispatch();                                             
  }                                                                   
                                                                      
  return RTEMS_SUCCESSFUL;                                            
ffc11d4c:	38 60 00 00 	li      r3,0                                   
}                                                                     
ffc11d50:	7c 08 03 a6 	mtlr    r0                                     
ffc11d54:	38 21 00 08 	addi    r1,r1,8                                
ffc11d58:	4e 80 00 20 	blr                                            
                                                                      
static inline uint32_t ppc_interrupt_get_disable_mask( void )         
{                                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc11d5c:	7d 50 42 a6 	mfsprg  r10,0                                  
  _CPU_MSR_GET(msr);                                                  
  if (!(level & CPU_MODES_INTERRUPT_MASK)) {                          
    msr |= ppc_interrupt_get_disable_mask();                          
  }                                                                   
  else {                                                              
    msr &= ~ppc_interrupt_get_disable_mask();                         
ffc11d60:	7d 29 50 78 	andc    r9,r9,r10                              
  }                                                                   
  _CPU_MSR_SET(msr);                                                  
ffc11d64:	7d 20 01 24 	mtmsr   r9                                     
 */                                                                   
RTEMS_INLINE_ROUTINE void _Modes_Set_interrupt_level (                
  Modes_Control mode_set                                              
)                                                                     
{                                                                     
  _ISR_Set_level( _Modes_Get_interrupt_level( mode_set ) );           
ffc11d68:	4b ff fe ec 	b       ffc11c54 <rtems_task_mode+0xdc>        
  }                                                                   
                                                                      
  /*                                                                  
   *  Set the new interrupt level                                     
   */                                                                 
  if ( mask & RTEMS_INTERRUPT_MASK )                                  
ffc11d6c:	70 88 00 01 	andi.   r8,r4,1                                
  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; 
ffc11d70:	91 49 00 7c 	stw     r10,124(r9)                            
  }                                                                   
                                                                      
  /*                                                                  
   *  Set the new interrupt level                                     
   */                                                                 
  if ( mask & RTEMS_INTERRUPT_MASK )                                  
ffc11d74:	41 a2 fe e0 	beq-    ffc11c54 <rtems_task_mode+0xdc>        
ffc11d78:	4b ff fe c0 	b       ffc11c38 <rtems_task_mode+0xc0>        
                                                                      
  /*                                                                  
   *  This is specific to the RTEMS API                               
   */                                                                 
  is_asr_enabled = false;                                             
  needs_asr_dispatching = false;                                      
ffc11d7c:	39 40 00 00 	li      r10,0                                  
ffc11d80:	4b ff ff 30 	b       ffc11cb0 <rtems_task_mode+0x138>       
                                                                      

ffc0eb34 <rtems_task_set_priority>: rtems_status_code rtems_task_set_priority( rtems_id id, rtems_task_priority new_priority, rtems_task_priority *old_priority ) {
ffc0eb34:	7d 80 00 26 	mfcr    r12                                    
  register Thread_Control *the_thread;                                
  Objects_Locations        location;                                  
                                                                      
  if ( new_priority != RTEMS_CURRENT_PRIORITY &&                      
ffc0eb38:	2e 04 00 00 	cmpwi   cr4,r4,0                               
rtems_status_code rtems_task_set_priority(                            
  rtems_id             id,                                            
  rtems_task_priority  new_priority,                                  
  rtems_task_priority *old_priority                                   
)                                                                     
{                                                                     
ffc0eb3c:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc0eb40:	7c 08 02 a6 	mflr    r0                                     
ffc0eb44:	93 c1 00 20 	stw     r30,32(r1)                             
ffc0eb48:	7c be 2b 78 	mr      r30,r5                                 
ffc0eb4c:	93 e1 00 24 	stw     r31,36(r1)                             
  register Thread_Control *the_thread;                                
  Objects_Locations        location;                                  
                                                                      
  if ( new_priority != RTEMS_CURRENT_PRIORITY &&                      
ffc0eb50:	7c 9f 23 78 	mr      r31,r4                                 
rtems_status_code rtems_task_set_priority(                            
  rtems_id             id,                                            
  rtems_task_priority  new_priority,                                  
  rtems_task_priority *old_priority                                   
)                                                                     
{                                                                     
ffc0eb54:	90 01 00 2c 	stw     r0,44(r1)                              
ffc0eb58:	91 81 00 1c 	stw     r12,28(r1)                             
  register Thread_Control *the_thread;                                
  Objects_Locations        location;                                  
                                                                      
  if ( new_priority != RTEMS_CURRENT_PRIORITY &&                      
ffc0eb5c:	41 92 00 18 	beq-    cr4,ffc0eb74 <rtems_task_set_priority+0x40>
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 ) );             
ffc0eb60:	3d 20 00 00 	lis     r9,0                                   
ffc0eb64:	89 29 26 a4 	lbz     r9,9892(r9)                            
       !_RTEMS_tasks_Priority_is_valid( new_priority ) )              
    return RTEMS_INVALID_PRIORITY;                                    
ffc0eb68:	38 00 00 13 	li      r0,19                                  
 */                                                                   
RTEMS_INLINE_ROUTINE bool _RTEMS_tasks_Priority_is_valid (            
  rtems_task_priority the_priority                                    
)                                                                     
{                                                                     
  return (  ( the_priority >= RTEMS_MINIMUM_PRIORITY ) &&             
ffc0eb6c:	7f 84 48 40 	cmplw   cr7,r4,r9                              
ffc0eb70:	41 9d 00 60 	bgt-    cr7,ffc0ebd0 <rtems_task_set_priority+0x9c>
                                                                      
  if ( !old_priority )                                                
ffc0eb74:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
    return RTEMS_INVALID_ADDRESS;                                     
ffc0eb78:	38 00 00 09 	li      r0,9                                   
                                                                      
  if ( new_priority != RTEMS_CURRENT_PRIORITY &&                      
       !_RTEMS_tasks_Priority_is_valid( new_priority ) )              
    return RTEMS_INVALID_PRIORITY;                                    
                                                                      
  if ( !old_priority )                                                
ffc0eb7c:	41 9e 00 54 	beq-    cr7,ffc0ebd0 <rtems_task_set_priority+0x9c>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  the_thread = _Thread_Get( id, &location );                          
ffc0eb80:	38 81 00 08 	addi    r4,r1,8                                
ffc0eb84:	48 00 28 85 	bl      ffc11408 <_Thread_Get>                 
  switch ( location ) {                                               
ffc0eb88:	80 01 00 08 	lwz     r0,8(r1)                               
ffc0eb8c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0eb90:	40 9e 00 64 	bne-    cr7,ffc0ebf4 <rtems_task_set_priority+0xc0>
                                                                      
    case OBJECTS_LOCAL:                                               
      /* XXX need helper to "convert" from core priority */           
      *old_priority = the_thread->current_priority;                   
ffc0eb94:	80 03 00 14 	lwz     r0,20(r3)                              
ffc0eb98:	90 1e 00 00 	stw     r0,0(r30)                              
      if ( new_priority != RTEMS_CURRENT_PRIORITY ) {                 
ffc0eb9c:	41 92 00 2c 	beq-    cr4,ffc0ebc8 <rtems_task_set_priority+0x94>
        the_thread->real_priority = new_priority;                     
        if ( the_thread->resource_count == 0 ||                       
ffc0eba0:	80 03 00 1c 	lwz     r0,28(r3)                              
                                                                      
    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;                     
ffc0eba4:	93 e3 00 18 	stw     r31,24(r3)                             
        if ( the_thread->resource_count == 0 ||                       
ffc0eba8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0ebac:	41 9e 00 10 	beq-    cr7,ffc0ebbc <rtems_task_set_priority+0x88>
ffc0ebb0:	80 03 00 14 	lwz     r0,20(r3)                              
ffc0ebb4:	7f 9f 00 40 	cmplw   cr7,r31,r0                             
ffc0ebb8:	40 9c 00 10 	bge-    cr7,ffc0ebc8 <rtems_task_set_priority+0x94><== ALWAYS TAKEN
             the_thread->current_priority > new_priority )            
          _Thread_Change_priority( the_thread, new_priority, false ); 
ffc0ebbc:	7f e4 fb 78 	mr      r4,r31                                 
ffc0ebc0:	38 a0 00 00 	li      r5,0                                   
ffc0ebc4:	48 00 21 51 	bl      ffc10d14 <_Thread_Change_priority>     
      }                                                               
      _Thread_Enable_dispatch();                                      
ffc0ebc8:	48 00 28 21 	bl      ffc113e8 <_Thread_Enable_dispatch>     
      return RTEMS_SUCCESSFUL;                                        
ffc0ebcc:	38 00 00 00 	li      r0,0                                   
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc0ebd0:	7c 03 03 78 	mr      r3,r0                                  
ffc0ebd4:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc0ebd8:	81 81 00 1c 	lwz     r12,28(r1)                             
ffc0ebdc:	7c 08 03 a6 	mtlr    r0                                     
ffc0ebe0:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc0ebe4:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc0ebe8:	7d 80 81 20 	mtcrf   8,r12                                  
ffc0ebec:	38 21 00 28 	addi    r1,r1,40                               
ffc0ebf0:	4e 80 00 20 	blr                                            
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
ffc0ebf4:	38 00 00 04 	li      r0,4                                   
}                                                                     
ffc0ebf8:	81 81 00 1c 	lwz     r12,28(r1)                             
ffc0ebfc:	7c 03 03 78 	mr      r3,r0                                  
ffc0ec00:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc0ec04:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc0ec08:	7d 80 81 20 	mtcrf   8,r12                                  
ffc0ec0c:	7c 08 03 a6 	mtlr    r0                                     
ffc0ec10:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc0ec14:	38 21 00 28 	addi    r1,r1,40                               
ffc0ec18:	4e 80 00 20 	blr                                            
                                                                      

ffc0a80c <rtems_task_variable_delete>: rtems_status_code rtems_task_variable_delete( rtems_id tid, void **ptr ) {
ffc0a80c:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc0a810:	7c 08 02 a6 	mflr    r0                                     
ffc0a814:	93 e1 00 1c 	stw     r31,28(r1)                             
  Thread_Control        *the_thread;                                  
  Objects_Locations      location;                                    
  rtems_task_variable_t *tvp, *prev;                                  
                                                                      
  if ( !ptr )                                                         
ffc0a818:	7c 9f 23 79 	mr.     r31,r4                                 
                                                                      
rtems_status_code rtems_task_variable_delete(                         
  rtems_id  tid,                                                      
  void    **ptr                                                       
)                                                                     
{                                                                     
ffc0a81c:	90 01 00 24 	stw     r0,36(r1)                              
  Thread_Control        *the_thread;                                  
  Objects_Locations      location;                                    
  rtems_task_variable_t *tvp, *prev;                                  
                                                                      
  if ( !ptr )                                                         
    return RTEMS_INVALID_ADDRESS;                                     
ffc0a820:	38 00 00 09 	li      r0,9                                   
{                                                                     
  Thread_Control        *the_thread;                                  
  Objects_Locations      location;                                    
  rtems_task_variable_t *tvp, *prev;                                  
                                                                      
  if ( !ptr )                                                         
ffc0a824:	41 82 00 58 	beq-    ffc0a87c <rtems_task_variable_delete+0x70>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  prev = NULL;                                                        
                                                                      
  the_thread = _Thread_Get (tid, &location);                          
ffc0a828:	38 81 00 08 	addi    r4,r1,8                                
ffc0a82c:	48 00 26 1d 	bl      ffc0ce48 <_Thread_Get>                 
  switch (location) {                                                 
ffc0a830:	80 01 00 08 	lwz     r0,8(r1)                               
ffc0a834:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0a838:	40 9e 00 5c 	bne-    cr7,ffc0a894 <rtems_task_variable_delete+0x88>
                                                                      
    case OBJECTS_LOCAL:                                               
      tvp = the_thread->task_variables;                               
ffc0a83c:	81 23 01 4c 	lwz     r9,332(r3)                             
      while (tvp) {                                                   
ffc0a840:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0a844:	41 9e 00 30 	beq-    cr7,ffc0a874 <rtems_task_variable_delete+0x68>
        if (tvp->ptr == ptr) {                                        
ffc0a848:	80 09 00 04 	lwz     r0,4(r9)                               
ffc0a84c:	7f 80 f8 00 	cmpw    cr7,r0,r31                             
ffc0a850:	40 be 00 18 	bne+    cr7,ffc0a868 <rtems_task_variable_delete+0x5c>
ffc0a854:	48 00 00 88 	b       ffc0a8dc <rtems_task_variable_delete+0xd0>
ffc0a858:	80 04 00 04 	lwz     r0,4(r4)                               
ffc0a85c:	7f 80 f8 00 	cmpw    cr7,r0,r31                             
ffc0a860:	41 9e 00 50 	beq-    cr7,ffc0a8b0 <rtems_task_variable_delete+0xa4>
ffc0a864:	7c 89 23 78 	mr      r9,r4                                  
          _RTEMS_Tasks_Invoke_task_variable_dtor( the_thread, tvp );  
          _Thread_Enable_dispatch();                                  
          return RTEMS_SUCCESSFUL;                                    
        }                                                             
        prev = tvp;                                                   
        tvp = (rtems_task_variable_t *)tvp->next;                     
ffc0a868:	80 89 00 00 	lwz     r4,0(r9)                               
  the_thread = _Thread_Get (tid, &location);                          
  switch (location) {                                                 
                                                                      
    case OBJECTS_LOCAL:                                               
      tvp = the_thread->task_variables;                               
      while (tvp) {                                                   
ffc0a86c:	2f 84 00 00 	cmpwi   cr7,r4,0                               
ffc0a870:	40 9e ff e8 	bne+    cr7,ffc0a858 <rtems_task_variable_delete+0x4c><== ALWAYS TAKEN
          return RTEMS_SUCCESSFUL;                                    
        }                                                             
        prev = tvp;                                                   
        tvp = (rtems_task_variable_t *)tvp->next;                     
      }                                                               
      _Thread_Enable_dispatch();                                      
ffc0a874:	48 00 25 b5 	bl      ffc0ce28 <_Thread_Enable_dispatch>     
      return RTEMS_INVALID_ADDRESS;                                   
ffc0a878:	38 00 00 09 	li      r0,9                                   
    case OBJECTS_ERROR:                                               
        break;                                                        
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc0a87c:	7c 03 03 78 	mr      r3,r0                                  
ffc0a880:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0a884:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0a888:	38 21 00 20 	addi    r1,r1,32                               
ffc0a88c:	7c 08 03 a6 	mtlr    r0                                     
ffc0a890:	4e 80 00 20 	blr                                            
                                                                      
    case OBJECTS_ERROR:                                               
        break;                                                        
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
ffc0a894:	38 00 00 04 	li      r0,4                                   
}                                                                     
ffc0a898:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0a89c:	7c 03 03 78 	mr      r3,r0                                  
ffc0a8a0:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0a8a4:	38 21 00 20 	addi    r1,r1,32                               
ffc0a8a8:	7c 08 03 a6 	mtlr    r0                                     
ffc0a8ac:	4e 80 00 20 	blr                                            
    case OBJECTS_LOCAL:                                               
      tvp = the_thread->task_variables;                               
      while (tvp) {                                                   
        if (tvp->ptr == ptr) {                                        
          if (prev)                                                   
            prev->next = tvp->next;                                   
ffc0a8b0:	80 04 00 00 	lwz     r0,0(r4)                               
ffc0a8b4:	90 09 00 00 	stw     r0,0(r9)                               
          else                                                        
            the_thread->task_variables = (rtems_task_variable_t *)tvp->next;
                                                                      
          _RTEMS_Tasks_Invoke_task_variable_dtor( the_thread, tvp );  
ffc0a8b8:	48 00 01 0d 	bl      ffc0a9c4 <_RTEMS_Tasks_Invoke_task_variable_dtor>
          _Thread_Enable_dispatch();                                  
ffc0a8bc:	48 00 25 6d 	bl      ffc0ce28 <_Thread_Enable_dispatch>     
          return RTEMS_SUCCESSFUL;                                    
ffc0a8c0:	38 00 00 00 	li      r0,0                                   
    case OBJECTS_ERROR:                                               
        break;                                                        
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc0a8c4:	7c 03 03 78 	mr      r3,r0                                  
ffc0a8c8:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0a8cc:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0a8d0:	38 21 00 20 	addi    r1,r1,32                               
ffc0a8d4:	7c 08 03 a6 	mtlr    r0                                     
ffc0a8d8:	4e 80 00 20 	blr                                            
      while (tvp) {                                                   
        if (tvp->ptr == ptr) {                                        
          if (prev)                                                   
            prev->next = tvp->next;                                   
          else                                                        
            the_thread->task_variables = (rtems_task_variable_t *)tvp->next;
ffc0a8dc:	80 09 00 00 	lwz     r0,0(r9)                               
ffc0a8e0:	7d 24 4b 78 	mr      r4,r9                                  
ffc0a8e4:	90 03 01 4c 	stw     r0,332(r3)                             
ffc0a8e8:	4b ff ff d0 	b       ffc0a8b8 <rtems_task_variable_delete+0xac>
                                                                      

ffc0a8ec <rtems_task_variable_get>: rtems_status_code rtems_task_variable_get( rtems_id tid, void **ptr, void **result ) {
ffc0a8ec:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc0a8f0:	7c 08 02 a6 	mflr    r0                                     
ffc0a8f4:	93 e1 00 1c 	stw     r31,28(r1)                             
  Thread_Control        *the_thread;                                  
  Objects_Locations      location;                                    
  rtems_task_variable_t *tvp;                                         
                                                                      
  if ( !ptr )                                                         
ffc0a8f8:	7c 9f 23 79 	mr.     r31,r4                                 
rtems_status_code rtems_task_variable_get(                            
  rtems_id tid,                                                       
  void **ptr,                                                         
  void **result                                                       
)                                                                     
{                                                                     
ffc0a8fc:	90 01 00 24 	stw     r0,36(r1)                              
  Thread_Control        *the_thread;                                  
  Objects_Locations      location;                                    
  rtems_task_variable_t *tvp;                                         
                                                                      
  if ( !ptr )                                                         
    return RTEMS_INVALID_ADDRESS;                                     
ffc0a900:	38 00 00 09 	li      r0,9                                   
rtems_status_code rtems_task_variable_get(                            
  rtems_id tid,                                                       
  void **ptr,                                                         
  void **result                                                       
)                                                                     
{                                                                     
ffc0a904:	93 c1 00 18 	stw     r30,24(r1)                             
ffc0a908:	7c be 2b 78 	mr      r30,r5                                 
  Thread_Control        *the_thread;                                  
  Objects_Locations      location;                                    
  rtems_task_variable_t *tvp;                                         
                                                                      
  if ( !ptr )                                                         
ffc0a90c:	41 82 00 58 	beq-    ffc0a964 <rtems_task_variable_get+0x78>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !result )                                                      
ffc0a910:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc0a914:	41 9e 00 50 	beq-    cr7,ffc0a964 <rtems_task_variable_get+0x78>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  the_thread = _Thread_Get (tid, &location);                          
ffc0a918:	38 81 00 08 	addi    r4,r1,8                                
ffc0a91c:	48 00 25 2d 	bl      ffc0ce48 <_Thread_Get>                 
  switch (location) {                                                 
ffc0a920:	80 01 00 08 	lwz     r0,8(r1)                               
ffc0a924:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0a928:	40 9e 00 58 	bne-    cr7,ffc0a980 <rtems_task_variable_get+0x94>
                                                                      
    case OBJECTS_LOCAL:                                               
      /*                                                              
       *  Figure out if the variable is in this task's list.          
       */                                                             
      tvp = the_thread->task_variables;                               
ffc0a92c:	81 23 01 4c 	lwz     r9,332(r3)                             
      while (tvp) {                                                   
ffc0a930:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0a934:	40 be 00 14 	bne+    cr7,ffc0a948 <rtems_task_variable_get+0x5c>
ffc0a938:	48 00 00 68 	b       ffc0a9a0 <rtems_task_variable_get+0xb4>
	   */                                                                
          *result = tvp->tval;                                        
          _Thread_Enable_dispatch();                                  
          return RTEMS_SUCCESSFUL;                                    
        }                                                             
        tvp = (rtems_task_variable_t *)tvp->next;                     
ffc0a93c:	81 29 00 00 	lwz     r9,0(r9)                               
    case OBJECTS_LOCAL:                                               
      /*                                                              
       *  Figure out if the variable is in this task's list.          
       */                                                             
      tvp = the_thread->task_variables;                               
      while (tvp) {                                                   
ffc0a940:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc0a944:	41 9e 00 5c 	beq-    cr7,ffc0a9a0 <rtems_task_variable_get+0xb4><== NEVER TAKEN
        if (tvp->ptr == ptr) {                                        
ffc0a948:	80 09 00 04 	lwz     r0,4(r9)                               
ffc0a94c:	7f 80 f8 00 	cmpw    cr7,r0,r31                             
ffc0a950:	40 9e ff ec 	bne+    cr7,ffc0a93c <rtems_task_variable_get+0x50>
	  /*                                                                 
	   * Should this return the current (i.e not the                     
	   * saved) value if `tid' is the current task?                      
	   */                                                                
          *result = tvp->tval;                                        
ffc0a954:	80 09 00 0c 	lwz     r0,12(r9)                              
ffc0a958:	90 1e 00 00 	stw     r0,0(r30)                              
          _Thread_Enable_dispatch();                                  
ffc0a95c:	48 00 24 cd 	bl      ffc0ce28 <_Thread_Enable_dispatch>     
          return RTEMS_SUCCESSFUL;                                    
ffc0a960:	38 00 00 00 	li      r0,0                                   
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc0a964:	7c 03 03 78 	mr      r3,r0                                  
ffc0a968:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0a96c:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0a970:	7c 08 03 a6 	mtlr    r0                                     
ffc0a974:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0a978:	38 21 00 20 	addi    r1,r1,32                               
ffc0a97c:	4e 80 00 20 	blr                                            
#endif                                                                
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
  return RTEMS_INVALID_ID;                                            
ffc0a980:	38 00 00 04 	li      r0,4                                   
}                                                                     
ffc0a984:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0a988:	7c 03 03 78 	mr      r3,r0                                  
ffc0a98c:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0a990:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0a994:	38 21 00 20 	addi    r1,r1,32                               
ffc0a998:	7c 08 03 a6 	mtlr    r0                                     
ffc0a99c:	4e 80 00 20 	blr                                            
          _Thread_Enable_dispatch();                                  
          return RTEMS_SUCCESSFUL;                                    
        }                                                             
        tvp = (rtems_task_variable_t *)tvp->next;                     
      }                                                               
      _Thread_Enable_dispatch();                                      
ffc0a9a0:	48 00 24 89 	bl      ffc0ce28 <_Thread_Enable_dispatch>     
      return RTEMS_INVALID_ADDRESS;                                   
ffc0a9a4:	38 00 00 09 	li      r0,9                                   
                                                                      
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc0a9a8:	7c 03 03 78 	mr      r3,r0                                  
ffc0a9ac:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0a9b0:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0a9b4:	7c 08 03 a6 	mtlr    r0                                     
ffc0a9b8:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0a9bc:	38 21 00 20 	addi    r1,r1,32                               
ffc0a9c0:	4e 80 00 20 	blr                                            
                                                                      

ffc08520 <rtems_termios_baud_to_index>: rtems_termios_baud_t termios_baud ) { int baud_index; switch (termios_baud) {
ffc08520:	2f 83 00 09 	cmpwi   cr7,r3,9                               
    case B134:      baud_index =  4;  break;                          
    case B150:      baud_index =  5;  break;                          
    case B200:      baud_index =  6;  break;                          
    case B300:      baud_index =  7;  break;                          
    case B600:      baud_index =  8;  break;                          
    case B1200:     baud_index =  9;  break;                          
ffc08524:	38 00 00 09 	li      r0,9                                   
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc08528:	41 9e 00 44 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c>
ffc0852c:	40 9d 00 48 	ble-    cr7,ffc08574 <rtems_termios_baud_to_index+0x54>
ffc08530:	2f 83 00 0e 	cmpwi   cr7,r3,14                              
    case B1200:     baud_index =  9;  break;                          
    case B1800:     baud_index = 10;  break;                          
    case B2400:     baud_index = 11;  break;                          
    case B4800:     baud_index = 12;  break;                          
    case B9600:     baud_index = 13;  break;                          
    case B19200:    baud_index = 14;  break;                          
ffc08534:	38 00 00 0e 	li      r0,14                                  
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc08538:	41 9e 00 34 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c>
ffc0853c:	40 9d 00 78 	ble-    cr7,ffc085b4 <rtems_termios_baud_to_index+0x94>
ffc08540:	2f 83 10 02 	cmpwi   cr7,r3,4098                            
    case B4800:     baud_index = 12;  break;                          
    case B9600:     baud_index = 13;  break;                          
    case B19200:    baud_index = 14;  break;                          
    case B38400:    baud_index = 15;  break;                          
    case B57600:    baud_index = 16;  break;                          
    case B115200:   baud_index = 17;  break;                          
ffc08544:	38 00 00 11 	li      r0,17                                  
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc08548:	41 9e 00 24 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c>
ffc0854c:	40 9d 00 d4 	ble-    cr7,ffc08620 <rtems_termios_baud_to_index+0x100>
ffc08550:	2f 83 10 03 	cmpwi   cr7,r3,4099                            
    case B9600:     baud_index = 13;  break;                          
    case B19200:    baud_index = 14;  break;                          
    case B38400:    baud_index = 15;  break;                          
    case B57600:    baud_index = 16;  break;                          
    case B115200:   baud_index = 17;  break;                          
    case B230400:   baud_index = 18;  break;                          
ffc08554:	38 00 00 12 	li      r0,18                                  
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc08558:	41 9e 00 14 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c>
ffc0855c:	2f 83 10 04 	cmpwi   cr7,r3,4100                            
    case B19200:    baud_index = 14;  break;                          
    case B38400:    baud_index = 15;  break;                          
    case B57600:    baud_index = 16;  break;                          
    case B115200:   baud_index = 17;  break;                          
    case B230400:   baud_index = 18;  break;                          
    case B460800:   baud_index = 19;  break;                          
ffc08560:	38 00 00 13 	li      r0,19                                  
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc08564:	41 9e 00 08 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c><== ALWAYS TAKEN
    case B38400:    baud_index = 15;  break;                          
    case B57600:    baud_index = 16;  break;                          
    case B115200:   baud_index = 17;  break;                          
    case B230400:   baud_index = 18;  break;                          
    case B460800:   baud_index = 19;  break;                          
    default:        baud_index = -1;  break;                          
ffc08568:	38 00 ff ff 	li      r0,-1                                  
  }                                                                   
                                                                      
  return baud_index;                                                  
}                                                                     
ffc0856c:	7c 03 03 78 	mr      r3,r0                                  
ffc08570:	4e 80 00 20 	blr                                            
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc08574:	2f 83 00 04 	cmpwi   cr7,r3,4                               
    case B0:        baud_index =  0;  break;                          
    case B50:       baud_index =  1;  break;                          
    case B75:       baud_index =  2;  break;                          
    case B110:      baud_index =  3;  break;                          
    case B134:      baud_index =  4;  break;                          
ffc08578:	38 00 00 04 	li      r0,4                                   
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc0857c:	41 be ff f0 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c>
ffc08580:	41 9d 00 64 	bgt-    cr7,ffc085e4 <rtems_termios_baud_to_index+0xc4>
ffc08584:	2f 83 00 01 	cmpwi   cr7,r3,1                               
    case B0:        baud_index =  0;  break;                          
    case B50:       baud_index =  1;  break;                          
ffc08588:	38 00 00 01 	li      r0,1                                   
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc0858c:	41 be ff e0 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c>
ffc08590:	40 9d 00 ac 	ble-    cr7,ffc0863c <rtems_termios_baud_to_index+0x11c>
ffc08594:	2f 83 00 02 	cmpwi   cr7,r3,2                               
    case B0:        baud_index =  0;  break;                          
    case B50:       baud_index =  1;  break;                          
    case B75:       baud_index =  2;  break;                          
ffc08598:	38 00 00 02 	li      r0,2                                   
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc0859c:	41 be ff d0 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c>
ffc085a0:	2f 83 00 03 	cmpwi   cr7,r3,3                               
    case B0:        baud_index =  0;  break;                          
    case B50:       baud_index =  1;  break;                          
    case B75:       baud_index =  2;  break;                          
    case B110:      baud_index =  3;  break;                          
ffc085a4:	38 00 00 03 	li      r0,3                                   
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc085a8:	41 be ff c4 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c><== ALWAYS TAKEN
    case B38400:    baud_index = 15;  break;                          
    case B57600:    baud_index = 16;  break;                          
    case B115200:   baud_index = 17;  break;                          
    case B230400:   baud_index = 18;  break;                          
    case B460800:   baud_index = 19;  break;                          
    default:        baud_index = -1;  break;                          
ffc085ac:	38 00 ff ff 	li      r0,-1                                  <== NOT EXECUTED
ffc085b0:	4b ff ff bc 	b       ffc0856c <rtems_termios_baud_to_index+0x4c><== NOT EXECUTED
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc085b4:	2f 83 00 0b 	cmpwi   cr7,r3,11                              
    case B200:      baud_index =  6;  break;                          
    case B300:      baud_index =  7;  break;                          
    case B600:      baud_index =  8;  break;                          
    case B1200:     baud_index =  9;  break;                          
    case B1800:     baud_index = 10;  break;                          
    case B2400:     baud_index = 11;  break;                          
ffc085b8:	38 00 00 0b 	li      r0,11                                  
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc085bc:	41 be ff b0 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c>
ffc085c0:	41 9c 00 58 	blt-    cr7,ffc08618 <rtems_termios_baud_to_index+0xf8>
ffc085c4:	2f 83 00 0c 	cmpwi   cr7,r3,12                              
    case B300:      baud_index =  7;  break;                          
    case B600:      baud_index =  8;  break;                          
    case B1200:     baud_index =  9;  break;                          
    case B1800:     baud_index = 10;  break;                          
    case B2400:     baud_index = 11;  break;                          
    case B4800:     baud_index = 12;  break;                          
ffc085c8:	38 00 00 0c 	li      r0,12                                  
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc085cc:	41 be ff a0 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c>
ffc085d0:	2f 83 00 0d 	cmpwi   cr7,r3,13                              
    case B600:      baud_index =  8;  break;                          
    case B1200:     baud_index =  9;  break;                          
    case B1800:     baud_index = 10;  break;                          
    case B2400:     baud_index = 11;  break;                          
    case B4800:     baud_index = 12;  break;                          
    case B9600:     baud_index = 13;  break;                          
ffc085d4:	38 00 00 0d 	li      r0,13                                  
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc085d8:	41 be ff 94 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c><== ALWAYS TAKEN
    case B38400:    baud_index = 15;  break;                          
    case B57600:    baud_index = 16;  break;                          
    case B115200:   baud_index = 17;  break;                          
    case B230400:   baud_index = 18;  break;                          
    case B460800:   baud_index = 19;  break;                          
    default:        baud_index = -1;  break;                          
ffc085dc:	38 00 ff ff 	li      r0,-1                                  <== NOT EXECUTED
ffc085e0:	4b ff ff 8c 	b       ffc0856c <rtems_termios_baud_to_index+0x4c><== NOT EXECUTED
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc085e4:	2f 83 00 06 	cmpwi   cr7,r3,6                               
    case B50:       baud_index =  1;  break;                          
    case B75:       baud_index =  2;  break;                          
    case B110:      baud_index =  3;  break;                          
    case B134:      baud_index =  4;  break;                          
    case B150:      baud_index =  5;  break;                          
    case B200:      baud_index =  6;  break;                          
ffc085e8:	38 00 00 06 	li      r0,6                                   
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc085ec:	41 be ff 80 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c>
ffc085f0:	41 9c 00 20 	blt-    cr7,ffc08610 <rtems_termios_baud_to_index+0xf0>
ffc085f4:	2f 83 00 07 	cmpwi   cr7,r3,7                               
    case B75:       baud_index =  2;  break;                          
    case B110:      baud_index =  3;  break;                          
    case B134:      baud_index =  4;  break;                          
    case B150:      baud_index =  5;  break;                          
    case B200:      baud_index =  6;  break;                          
    case B300:      baud_index =  7;  break;                          
ffc085f8:	38 00 00 07 	li      r0,7                                   
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc085fc:	41 be ff 70 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c>
ffc08600:	2f 83 00 08 	cmpwi   cr7,r3,8                               
    case B110:      baud_index =  3;  break;                          
    case B134:      baud_index =  4;  break;                          
    case B150:      baud_index =  5;  break;                          
    case B200:      baud_index =  6;  break;                          
    case B300:      baud_index =  7;  break;                          
    case B600:      baud_index =  8;  break;                          
ffc08604:	38 00 00 08 	li      r0,8                                   
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc08608:	40 9e ff 60 	bne+    cr7,ffc08568 <rtems_termios_baud_to_index+0x48><== NEVER TAKEN
ffc0860c:	4b ff ff 60 	b       ffc0856c <rtems_termios_baud_to_index+0x4c>
    case B0:        baud_index =  0;  break;                          
    case B50:       baud_index =  1;  break;                          
    case B75:       baud_index =  2;  break;                          
    case B110:      baud_index =  3;  break;                          
    case B134:      baud_index =  4;  break;                          
    case B150:      baud_index =  5;  break;                          
ffc08610:	38 00 00 05 	li      r0,5                                   
ffc08614:	4b ff ff 58 	b       ffc0856c <rtems_termios_baud_to_index+0x4c>
    case B200:      baud_index =  6;  break;                          
    case B300:      baud_index =  7;  break;                          
    case B600:      baud_index =  8;  break;                          
    case B1200:     baud_index =  9;  break;                          
    case B1800:     baud_index = 10;  break;                          
ffc08618:	38 00 00 0a 	li      r0,10                                  
ffc0861c:	4b ff ff 50 	b       ffc0856c <rtems_termios_baud_to_index+0x4c>
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc08620:	2f 83 00 0f 	cmpwi   cr7,r3,15                              
    case B1800:     baud_index = 10;  break;                          
    case B2400:     baud_index = 11;  break;                          
    case B4800:     baud_index = 12;  break;                          
    case B9600:     baud_index = 13;  break;                          
    case B19200:    baud_index = 14;  break;                          
    case B38400:    baud_index = 15;  break;                          
ffc08624:	38 00 00 0f 	li      r0,15                                  
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc08628:	41 be ff 44 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c>
ffc0862c:	2f 83 10 01 	cmpwi   cr7,r3,4097                            
    case B2400:     baud_index = 11;  break;                          
    case B4800:     baud_index = 12;  break;                          
    case B9600:     baud_index = 13;  break;                          
    case B19200:    baud_index = 14;  break;                          
    case B38400:    baud_index = 15;  break;                          
    case B57600:    baud_index = 16;  break;                          
ffc08630:	38 00 00 10 	li      r0,16                                  
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc08634:	40 9e ff 34 	bne+    cr7,ffc08568 <rtems_termios_baud_to_index+0x48><== NEVER TAKEN
ffc08638:	4b ff ff 34 	b       ffc0856c <rtems_termios_baud_to_index+0x4c>
ffc0863c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
    case B0:        baud_index =  0;  break;                          
ffc08640:	38 00 00 00 	li      r0,0                                   
  rtems_termios_baud_t termios_baud                                   
)                                                                     
{                                                                     
  int baud_index;                                                     
                                                                      
  switch (termios_baud) {                                             
ffc08644:	41 be ff 28 	beq-    cr7,ffc0856c <rtems_termios_baud_to_index+0x4c>
ffc08648:	4b ff ff 20 	b       ffc08568 <rtems_termios_baud_to_index+0x48>
                                                                      

ffc064d4 <rtems_termios_close>: } } rtems_status_code rtems_termios_close (void *arg) {
ffc064d4:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc064d8:	7c 08 02 a6 	mflr    r0                                     
  rtems_libio_open_close_args_t *args = arg;                          
  struct rtems_termios_tty *tty = args->iop->data1;                   
  rtems_status_code sc;                                               
                                                                      
  sc = rtems_semaphore_obtain(                                        
ffc064dc:	38 80 00 00 	li      r4,0                                   
  }                                                                   
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_close (void *arg)                                       
{                                                                     
ffc064e0:	90 01 00 1c 	stw     r0,28(r1)                              
  rtems_libio_open_close_args_t *args = arg;                          
  struct rtems_termios_tty *tty = args->iop->data1;                   
  rtems_status_code sc;                                               
                                                                      
  sc = rtems_semaphore_obtain(                                        
ffc064e4:	38 a0 00 00 	li      r5,0                                   
  }                                                                   
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_close (void *arg)                                       
{                                                                     
ffc064e8:	93 c1 00 10 	stw     r30,16(r1)                             
  rtems_libio_open_close_args_t *args = arg;                          
  struct rtems_termios_tty *tty = args->iop->data1;                   
  rtems_status_code sc;                                               
                                                                      
  sc = rtems_semaphore_obtain(                                        
ffc064ec:	3f c0 00 00 	lis     r30,0                                  
                                                                      
rtems_status_code                                                     
rtems_termios_close (void *arg)                                       
{                                                                     
  rtems_libio_open_close_args_t *args = arg;                          
  struct rtems_termios_tty *tty = args->iop->data1;                   
ffc064f0:	81 23 00 00 	lwz     r9,0(r3)                               
  }                                                                   
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_close (void *arg)                                       
{                                                                     
ffc064f4:	93 a1 00 0c 	stw     r29,12(r1)                             
ffc064f8:	7c 7d 1b 78 	mr      r29,r3                                 
  rtems_libio_open_close_args_t *args = arg;                          
  struct rtems_termios_tty *tty = args->iop->data1;                   
  rtems_status_code sc;                                               
                                                                      
  sc = rtems_semaphore_obtain(                                        
ffc064fc:	80 7e 27 18 	lwz     r3,10008(r30)                          
  }                                                                   
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_close (void *arg)                                       
{                                                                     
ffc06500:	93 e1 00 14 	stw     r31,20(r1)                             
  rtems_libio_open_close_args_t *args = arg;                          
  struct rtems_termios_tty *tty = args->iop->data1;                   
ffc06504:	83 e9 00 38 	lwz     r31,56(r9)                             
  rtems_status_code sc;                                               
                                                                      
  sc = rtems_semaphore_obtain(                                        
ffc06508:	48 00 29 79 	bl      ffc08e80 <rtems_semaphore_obtain>      
    rtems_termios_ttyMutex, RTEMS_WAIT, RTEMS_NO_TIMEOUT);            
  if (sc != RTEMS_SUCCESSFUL)                                         
ffc0650c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc06510:	40 9e 01 ac 	bne-    cr7,ffc066bc <rtems_termios_close+0x1e8><== NEVER TAKEN
    rtems_fatal_error_occurred (sc);                                  
  if (--tty->refcount == 0) {                                         
ffc06514:	81 3f 00 08 	lwz     r9,8(r31)                              
ffc06518:	38 09 ff ff 	addi    r0,r9,-1                               
ffc0651c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc06520:	90 1f 00 08 	stw     r0,8(r31)                              
ffc06524:	40 9e 00 d0 	bne-    cr7,ffc065f4 <rtems_termios_close+0x120>
    if (rtems_termios_linesw[tty->t_line].l_close != NULL) {          
ffc06528:	80 1f 00 cc 	lwz     r0,204(r31)                            
ffc0652c:	3d 20 00 00 	lis     r9,0                                   
ffc06530:	39 29 27 d4 	addi    r9,r9,10196                            
ffc06534:	54 00 28 34 	rlwinm  r0,r0,5,0,26                           
ffc06538:	7d 29 02 14 	add     r9,r9,r0                               
ffc0653c:	80 09 00 04 	lwz     r0,4(r9)                               
ffc06540:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc06544:	41 9e 01 1c 	beq-    cr7,ffc06660 <rtems_termios_close+0x18c>
      /*                                                              
       * call discipline-specific close                               
       */                                                             
      sc = rtems_termios_linesw[tty->t_line].l_close(tty);            
ffc06548:	7c 09 03 a6 	mtctr   r0                                     
ffc0654c:	7f e3 fb 78 	mr      r3,r31                                 
ffc06550:	4e 80 04 21 	bctrl                                          
      }                                                               
      drainOutput (tty);                                              
      rtems_semaphore_release (tty->osem);                            
    }                                                                 
                                                                      
    if (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN) {    
ffc06554:	80 1f 00 b4 	lwz     r0,180(r31)                            
ffc06558:	2f 80 00 02 	cmpwi   cr7,r0,2                               
ffc0655c:	41 9e 01 38 	beq-    cr7,ffc06694 <rtems_termios_close+0x1c0><== NEVER TAKEN
        rtems_fatal_error_occurred (sc);                              
      sc = rtems_event_send( tty->txTaskId, TERMIOS_TX_TERMINATE_EVENT );
      if (sc != RTEMS_SUCCESSFUL)                                     
        rtems_fatal_error_occurred (sc);                              
    }                                                                 
    if (tty->device.lastClose)                                        
ffc06560:	80 1f 00 9c 	lwz     r0,156(r31)                            
ffc06564:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc06568:	41 9e 00 18 	beq-    cr7,ffc06580 <rtems_termios_close+0xac><== ALWAYS TAKEN
       (*tty->device.lastClose)(tty->major, tty->minor, arg);         
ffc0656c:	80 7f 00 0c 	lwz     r3,12(r31)                             <== NOT EXECUTED
ffc06570:	7f a5 eb 78 	mr      r5,r29                                 <== NOT EXECUTED
ffc06574:	80 9f 00 10 	lwz     r4,16(r31)                             <== NOT EXECUTED
ffc06578:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc0657c:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
    if (tty->forw == NULL) {                                          
ffc06580:	81 3f 00 00 	lwz     r9,0(r31)                              
ffc06584:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc06588:	41 9e 00 b8 	beq-    cr7,ffc06640 <rtems_termios_close+0x16c>
      rtems_termios_ttyTail = tty->back;                              
      if ( rtems_termios_ttyTail != NULL ) {                          
        rtems_termios_ttyTail->forw = NULL;                           
      }                                                               
    } else {                                                          
      tty->forw->back = tty->back;                                    
ffc0658c:	80 1f 00 04 	lwz     r0,4(r31)                              
ffc06590:	90 09 00 04 	stw     r0,4(r9)                               
ffc06594:	81 7f 00 04 	lwz     r11,4(r31)                             
    }                                                                 
                                                                      
    if (tty->back == NULL) {                                          
ffc06598:	2f 0b 00 00 	cmpwi   cr6,r11,0                              
ffc0659c:	41 9a 00 8c 	beq-    cr6,ffc06628 <rtems_termios_close+0x154><== ALWAYS TAKEN
      rtems_termios_ttyHead = tty->forw;                              
      if ( rtems_termios_ttyHead != NULL ) {                          
        rtems_termios_ttyHead->back = NULL;                           
      }                                                               
    } else {                                                          
      tty->back->forw = tty->forw;                                    
ffc065a0:	91 2b 00 00 	stw     r9,0(r11)                              
    }                                                                 
                                                                      
    rtems_semaphore_delete (tty->isem);                               
ffc065a4:	80 7f 00 14 	lwz     r3,20(r31)                             
ffc065a8:	48 00 27 fd 	bl      ffc08da4 <rtems_semaphore_delete>      
    rtems_semaphore_delete (tty->osem);                               
ffc065ac:	80 7f 00 18 	lwz     r3,24(r31)                             
ffc065b0:	48 00 27 f5 	bl      ffc08da4 <rtems_semaphore_delete>      
    rtems_semaphore_delete (tty->rawOutBuf.Semaphore);                
ffc065b4:	80 7f 00 8c 	lwz     r3,140(r31)                            
ffc065b8:	48 00 27 ed 	bl      ffc08da4 <rtems_semaphore_delete>      
    if ((tty->device.pollRead == NULL) ||                             
ffc065bc:	80 1f 00 a0 	lwz     r0,160(r31)                            
ffc065c0:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc065c4:	41 9e 00 58 	beq-    cr7,ffc0661c <rtems_termios_close+0x148>
ffc065c8:	80 1f 00 b4 	lwz     r0,180(r31)                            
ffc065cc:	2f 80 00 02 	cmpwi   cr7,r0,2                               
ffc065d0:	41 9e 00 4c 	beq-    cr7,ffc0661c <rtems_termios_close+0x148>
        (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN))    
      rtems_semaphore_delete (tty->rawInBuf.Semaphore);               
    free (tty->rawInBuf.theBuf);                                      
ffc065d4:	80 7f 00 58 	lwz     r3,88(r31)                             
ffc065d8:	4b ff e6 a5 	bl      ffc04c7c <free>                        
    free (tty->rawOutBuf.theBuf);                                     
ffc065dc:	80 7f 00 7c 	lwz     r3,124(r31)                            
ffc065e0:	4b ff e6 9d 	bl      ffc04c7c <free>                        
    free (tty->cbuf);                                                 
ffc065e4:	80 7f 00 1c 	lwz     r3,28(r31)                             
ffc065e8:	4b ff e6 95 	bl      ffc04c7c <free>                        
    free (tty);                                                       
ffc065ec:	7f e3 fb 78 	mr      r3,r31                                 
ffc065f0:	4b ff e6 8d 	bl      ffc04c7c <free>                        
  }                                                                   
  rtems_semaphore_release (rtems_termios_ttyMutex);                   
ffc065f4:	80 7e 27 18 	lwz     r3,10008(r30)                          
ffc065f8:	48 00 2a 11 	bl      ffc09008 <rtems_semaphore_release>     
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
ffc065fc:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc06600:	38 60 00 00 	li      r3,0                                   
ffc06604:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc06608:	7c 08 03 a6 	mtlr    r0                                     
ffc0660c:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc06610:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc06614:	38 21 00 18 	addi    r1,r1,24                               
ffc06618:	4e 80 00 20 	blr                                            
    rtems_semaphore_delete (tty->isem);                               
    rtems_semaphore_delete (tty->osem);                               
    rtems_semaphore_delete (tty->rawOutBuf.Semaphore);                
    if ((tty->device.pollRead == NULL) ||                             
        (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN))    
      rtems_semaphore_delete (tty->rawInBuf.Semaphore);               
ffc0661c:	80 7f 00 68 	lwz     r3,104(r31)                            
ffc06620:	48 00 27 85 	bl      ffc08da4 <rtems_semaphore_delete>      
ffc06624:	4b ff ff b0 	b       ffc065d4 <rtems_termios_close+0x100>   
    } else {                                                          
      tty->forw->back = tty->back;                                    
    }                                                                 
                                                                      
    if (tty->back == NULL) {                                          
      rtems_termios_ttyHead = tty->forw;                              
ffc06628:	3d 60 00 00 	lis     r11,0                                  
ffc0662c:	91 2b 27 20 	stw     r9,10016(r11)                          
      if ( rtems_termios_ttyHead != NULL ) {                          
ffc06630:	41 be ff 74 	beq-    cr7,ffc065a4 <rtems_termios_close+0xd0>
        rtems_termios_ttyHead->back = NULL;                           
ffc06634:	38 00 00 00 	li      r0,0                                   
ffc06638:	90 09 00 04 	stw     r0,4(r9)                               
ffc0663c:	4b ff ff 68 	b       ffc065a4 <rtems_termios_close+0xd0>    
        rtems_fatal_error_occurred (sc);                              
    }                                                                 
    if (tty->device.lastClose)                                        
       (*tty->device.lastClose)(tty->major, tty->minor, arg);         
    if (tty->forw == NULL) {                                          
      rtems_termios_ttyTail = tty->back;                              
ffc06640:	81 7f 00 04 	lwz     r11,4(r31)                             
ffc06644:	3d 40 00 00 	lis     r10,0                                  
      if ( rtems_termios_ttyTail != NULL ) {                          
ffc06648:	2f 0b 00 00 	cmpwi   cr6,r11,0                              
        rtems_fatal_error_occurred (sc);                              
    }                                                                 
    if (tty->device.lastClose)                                        
       (*tty->device.lastClose)(tty->major, tty->minor, arg);         
    if (tty->forw == NULL) {                                          
      rtems_termios_ttyTail = tty->back;                              
ffc0664c:	91 6a 27 1c 	stw     r11,10012(r10)                         
      if ( rtems_termios_ttyTail != NULL ) {                          
ffc06650:	41 ba ff d8 	beq-    cr6,ffc06628 <rtems_termios_close+0x154>
        rtems_termios_ttyTail->forw = NULL;                           
ffc06654:	91 2b 00 00 	stw     r9,0(r11)                              
ffc06658:	81 3f 00 00 	lwz     r9,0(r31)                              
ffc0665c:	4b ff ff 44 	b       ffc065a0 <rtems_termios_close+0xcc>    
      sc = rtems_termios_linesw[tty->t_line].l_close(tty);            
    } else {                                                          
      /*                                                              
       * default: just flush output buffer                            
       */                                                             
      sc = rtems_semaphore_obtain(tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
ffc06660:	80 7f 00 18 	lwz     r3,24(r31)                             
ffc06664:	38 80 00 00 	li      r4,0                                   
ffc06668:	38 a0 00 00 	li      r5,0                                   
ffc0666c:	48 00 28 15 	bl      ffc08e80 <rtems_semaphore_obtain>      
      if (sc != RTEMS_SUCCESSFUL) {                                   
ffc06670:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc06674:	40 9e 00 48 	bne-    cr7,ffc066bc <rtems_termios_close+0x1e8><== NEVER TAKEN
        rtems_fatal_error_occurred (sc);                              
      }                                                               
      drainOutput (tty);                                              
ffc06678:	7f e3 fb 78 	mr      r3,r31                                 
ffc0667c:	4b ff f9 05 	bl      ffc05f80 <drainOutput>                 
      rtems_semaphore_release (tty->osem);                            
ffc06680:	80 7f 00 18 	lwz     r3,24(r31)                             
ffc06684:	48 00 29 85 	bl      ffc09008 <rtems_semaphore_release>     
    }                                                                 
                                                                      
    if (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN) {    
ffc06688:	80 1f 00 b4 	lwz     r0,180(r31)                            
ffc0668c:	2f 80 00 02 	cmpwi   cr7,r0,2                               
ffc06690:	40 9e fe d0 	bne+    cr7,ffc06560 <rtems_termios_close+0x8c>
      /*                                                              
       * send "terminate" to I/O tasks                                
       */                                                             
      sc = rtems_event_send( tty->rxTaskId, TERMIOS_RX_TERMINATE_EVENT );
ffc06694:	80 7f 00 c4 	lwz     r3,196(r31)                            
ffc06698:	38 80 00 01 	li      r4,1                                   
ffc0669c:	48 00 22 4d 	bl      ffc088e8 <rtems_event_send>            
      if (sc != RTEMS_SUCCESSFUL)                                     
ffc066a0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc066a4:	40 9e 00 18 	bne-    cr7,ffc066bc <rtems_termios_close+0x1e8><== NEVER TAKEN
        rtems_fatal_error_occurred (sc);                              
      sc = rtems_event_send( tty->txTaskId, TERMIOS_TX_TERMINATE_EVENT );
ffc066a8:	80 7f 00 c8 	lwz     r3,200(r31)                            
ffc066ac:	38 80 00 01 	li      r4,1                                   
ffc066b0:	48 00 22 39 	bl      ffc088e8 <rtems_event_send>            
      if (sc != RTEMS_SUCCESSFUL)                                     
ffc066b4:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc066b8:	41 9e fe a8 	beq+    cr7,ffc06560 <rtems_termios_close+0x8c><== ALWAYS TAKEN
        rtems_fatal_error_occurred (sc);                              
ffc066bc:	48 00 31 39 	bl      ffc097f4 <rtems_fatal_error_occurred>  <== NOT EXECUTED
                                                                      

ffc08134 <rtems_termios_dequeue_characters>: * for each transmitted character. * It returns number of characters left to transmit */ int rtems_termios_dequeue_characters (void *ttyp, int len) {
ffc08134:	94 21 ff f8 	stwu    r1,-8(r1)                              
ffc08138:	7c 08 02 a6 	mflr    r0                                     
ffc0813c:	90 01 00 0c 	stw     r0,12(r1)                              
  /*                                                                  
   * sum up character count already sent                              
   */                                                                 
  tty->t_dqlen += len;                                                
                                                                      
  if (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN) {      
ffc08140:	81 63 00 b4 	lwz     r11,180(r3)                            
  rtems_status_code sc;                                               
                                                                      
  /*                                                                  
   * sum up character count already sent                              
   */                                                                 
  tty->t_dqlen += len;                                                
ffc08144:	80 03 00 90 	lwz     r0,144(r3)                             
                                                                      
  if (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN) {      
ffc08148:	2f 8b 00 02 	cmpwi   cr7,r11,2                              
  rtems_status_code sc;                                               
                                                                      
  /*                                                                  
   * sum up character count already sent                              
   */                                                                 
  tty->t_dqlen += len;                                                
ffc0814c:	7c 00 22 14 	add     r0,r0,r4                               
ffc08150:	90 03 00 90 	stw     r0,144(r3)                             
                                                                      
  if (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN) {      
ffc08154:	41 9e 00 4c 	beq-    cr7,ffc081a0 <rtems_termios_dequeue_characters+0x6c>
    if (sc != RTEMS_SUCCESSFUL)                                       
      rtems_fatal_error_occurred (sc);                                
    return 0; /* nothing to output in IRQ... */                       
  }                                                                   
                                                                      
  if (tty->t_line == PPPDISC ) {                                      
ffc08158:	80 03 00 cc 	lwz     r0,204(r3)                             
ffc0815c:	2f 80 00 05 	cmpwi   cr7,r0,5                               
ffc08160:	41 9e 00 14 	beq-    cr7,ffc08174 <rtems_termios_dequeue_characters+0x40>
    }                                                                 
    return 0; /* nothing to output in IRQ... */                       
  }                                                                   
                                                                      
  return rtems_termios_refill_transmitter(tty);                       
}                                                                     
ffc08164:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc08168:	38 21 00 08 	addi    r1,r1,8                                
ffc0816c:	7c 08 03 a6 	mtlr    r0                                     
      rtems_termios_linesw[tty->t_line].l_start(tty);                 
    }                                                                 
    return 0; /* nothing to output in IRQ... */                       
  }                                                                   
                                                                      
  return rtems_termios_refill_transmitter(tty);                       
ffc08170:	4b ff fc b0 	b       ffc07e20 <rtems_termios_refill_transmitter>
                                                                      
  if (tty->t_line == PPPDISC ) {                                      
    /*                                                                
     * call any line discipline start function                        
     */                                                               
    if (rtems_termios_linesw[tty->t_line].l_start != NULL) {          
ffc08174:	3d 20 00 00 	lis     r9,0                                   
ffc08178:	80 09 28 88 	lwz     r0,10376(r9)                           
ffc0817c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc08180:	41 9e 00 0c 	beq-    cr7,ffc0818c <rtems_termios_dequeue_characters+0x58><== NEVER TAKEN
      rtems_termios_linesw[tty->t_line].l_start(tty);                 
ffc08184:	7c 09 03 a6 	mtctr   r0                                     
ffc08188:	4e 80 04 21 	bctrl                                          
    }                                                                 
    return 0; /* nothing to output in IRQ... */                       
  }                                                                   
                                                                      
  return rtems_termios_refill_transmitter(tty);                       
}                                                                     
ffc0818c:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc08190:	38 60 00 00 	li      r3,0                                   
ffc08194:	38 21 00 08 	addi    r1,r1,8                                
ffc08198:	7c 08 03 a6 	mtlr    r0                                     
ffc0819c:	4e 80 00 20 	blr                                            
                                                                      
  if (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN) {      
    /*                                                                
     * send wake up to transmitter task                               
     */                                                               
    sc = rtems_event_send(tty->txTaskId, TERMIOS_TX_START_EVENT);     
ffc081a0:	80 63 00 c8 	lwz     r3,200(r3)                             
ffc081a4:	38 80 00 02 	li      r4,2                                   
ffc081a8:	48 00 07 41 	bl      ffc088e8 <rtems_event_send>            
    if (sc != RTEMS_SUCCESSFUL)                                       
ffc081ac:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc081b0:	41 9e ff dc 	beq+    cr7,ffc0818c <rtems_termios_dequeue_characters+0x58><== ALWAYS TAKEN
      rtems_fatal_error_occurred (sc);                                
ffc081b4:	48 00 16 41 	bl      ffc097f4 <rtems_fatal_error_occurred>  <== NOT EXECUTED
                                                                      

ffc079c4 <rtems_termios_enqueue_raw_characters>: * device receive interrupt handler. * Returns the number of characters dropped because of overflow. */ int rtems_termios_enqueue_raw_characters (void *ttyp, char *buf, int len) {
ffc079c4:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc079c8:	7c 08 02 a6 	mflr    r0                                     
ffc079cc:	90 01 00 34 	stw     r0,52(r1)                              
  char c;                                                             
  int dropped = 0;                                                    
  bool flow_rcv = false; /* true, if flow control char received */    
  rtems_interrupt_level level;                                        
                                                                      
  if (rtems_termios_linesw[tty->t_line].l_rint != NULL) {             
ffc079d0:	81 23 00 cc 	lwz     r9,204(r3)                             
 *       device receive interrupt handler.                            
 * Returns the number of characters dropped because of overflow.      
 */                                                                   
int                                                                   
rtems_termios_enqueue_raw_characters (void *ttyp, char *buf, int len) 
{                                                                     
ffc079d4:	93 c1 00 28 	stw     r30,40(r1)                             
  char c;                                                             
  int dropped = 0;                                                    
  bool flow_rcv = false; /* true, if flow control char received */    
  rtems_interrupt_level level;                                        
                                                                      
  if (rtems_termios_linesw[tty->t_line].l_rint != NULL) {             
ffc079d8:	3f c0 00 00 	lis     r30,0                                  
ffc079dc:	3b de 27 d4 	addi    r30,r30,10196                          
ffc079e0:	55 29 28 34 	rlwinm  r9,r9,5,0,26                           
 *       device receive interrupt handler.                            
 * Returns the number of characters dropped because of overflow.      
 */                                                                   
int                                                                   
rtems_termios_enqueue_raw_characters (void *ttyp, char *buf, int len) 
{                                                                     
ffc079e4:	93 61 00 1c 	stw     r27,28(r1)                             
  char c;                                                             
  int dropped = 0;                                                    
  bool flow_rcv = false; /* true, if flow control char received */    
  rtems_interrupt_level level;                                        
                                                                      
  if (rtems_termios_linesw[tty->t_line].l_rint != NULL) {             
ffc079e8:	7d 3e 4a 14 	add     r9,r30,r9                              
ffc079ec:	80 09 00 10 	lwz     r0,16(r9)                              
 *       device receive interrupt handler.                            
 * Returns the number of characters dropped because of overflow.      
 */                                                                   
int                                                                   
rtems_termios_enqueue_raw_characters (void *ttyp, char *buf, int len) 
{                                                                     
ffc079f0:	7c bb 2b 78 	mr      r27,r5                                 
ffc079f4:	93 a1 00 24 	stw     r29,36(r1)                             
ffc079f8:	7c 9d 23 78 	mr      r29,r4                                 
  char c;                                                             
  int dropped = 0;                                                    
  bool flow_rcv = false; /* true, if flow control char received */    
  rtems_interrupt_level level;                                        
                                                                      
  if (rtems_termios_linesw[tty->t_line].l_rint != NULL) {             
ffc079fc:	2f 80 00 00 	cmpwi   cr7,r0,0                               
 *       device receive interrupt handler.                            
 * Returns the number of characters dropped because of overflow.      
 */                                                                   
int                                                                   
rtems_termios_enqueue_raw_characters (void *ttyp, char *buf, int len) 
{                                                                     
ffc07a00:	93 e1 00 2c 	stw     r31,44(r1)                             
ffc07a04:	7c 7f 1b 78 	mr      r31,r3                                 
ffc07a08:	92 c1 00 08 	stw     r22,8(r1)                              
ffc07a0c:	92 e1 00 0c 	stw     r23,12(r1)                             
ffc07a10:	93 01 00 10 	stw     r24,16(r1)                             
ffc07a14:	93 21 00 14 	stw     r25,20(r1)                             
ffc07a18:	93 41 00 18 	stw     r26,24(r1)                             
ffc07a1c:	93 81 00 20 	stw     r28,32(r1)                             
  char c;                                                             
  int dropped = 0;                                                    
  bool flow_rcv = false; /* true, if flow control char received */    
  rtems_interrupt_level level;                                        
                                                                      
  if (rtems_termios_linesw[tty->t_line].l_rint != NULL) {             
ffc07a20:	41 9e 00 b0 	beq-    cr7,ffc07ad0 <rtems_termios_enqueue_raw_characters+0x10c>
    while (len--) {                                                   
ffc07a24:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc07a28:	41 9e 00 38 	beq-    cr7,ffc07a60 <rtems_termios_enqueue_raw_characters+0x9c><== NEVER TAKEN
ffc07a2c:	3b 80 00 00 	li      r28,0                                  
ffc07a30:	48 00 00 14 	b       ffc07a44 <rtems_termios_enqueue_raw_characters+0x80>
ffc07a34:	81 3f 00 cc 	lwz     r9,204(r31)                            
ffc07a38:	55 29 28 34 	rlwinm  r9,r9,5,0,26                           
ffc07a3c:	7d 3e 4a 14 	add     r9,r30,r9                              
ffc07a40:	80 09 00 10 	lwz     r0,16(r9)                              
      c = *buf++;                                                     
      rtems_termios_linesw[tty->t_line].l_rint(c,tty);                
ffc07a44:	7c 7d e0 ae 	lbzx    r3,r29,r28                             
ffc07a48:	7f e4 fb 78 	mr      r4,r31                                 
ffc07a4c:	7c 09 03 a6 	mtctr   r0                                     
ffc07a50:	3b 9c 00 01 	addi    r28,r28,1                              
ffc07a54:	4e 80 04 21 	bctrl                                          
  int dropped = 0;                                                    
  bool flow_rcv = false; /* true, if flow control char received */    
  rtems_interrupt_level level;                                        
                                                                      
  if (rtems_termios_linesw[tty->t_line].l_rint != NULL) {             
    while (len--) {                                                   
ffc07a58:	7f 9c d8 00 	cmpw    cr7,r28,r27                            
ffc07a5c:	40 9e ff d8 	bne+    cr7,ffc07a34 <rtems_termios_enqueue_raw_characters+0x70>
    }                                                                 
                                                                      
    /*                                                                
     * check to see if rcv wakeup callback was set                    
     */                                                               
    if (( !tty->tty_rcvwakeup ) && ( tty->tty_rcv.sw_pfn != NULL )) { 
ffc07a60:	80 1f 00 e4 	lwz     r0,228(r31)                            
      (*tty->tty_rcv.sw_pfn)(&tty->termios, tty->tty_rcv.sw_arg);     
      tty->tty_rcvwakeup = 1;                                         
        }                                                             
    return 0;                                                         
ffc07a64:	3b 40 00 00 	li      r26,0                                  
    }                                                                 
                                                                      
    /*                                                                
     * check to see if rcv wakeup callback was set                    
     */                                                               
    if (( !tty->tty_rcvwakeup ) && ( tty->tty_rcv.sw_pfn != NULL )) { 
ffc07a68:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc07a6c:	40 9e 00 28 	bne-    cr7,ffc07a94 <rtems_termios_enqueue_raw_characters+0xd0><== NEVER TAKEN
ffc07a70:	80 1f 00 dc 	lwz     r0,220(r31)                            
ffc07a74:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc07a78:	41 9e 00 1c 	beq-    cr7,ffc07a94 <rtems_termios_enqueue_raw_characters+0xd0><== NEVER TAKEN
      (*tty->tty_rcv.sw_pfn)(&tty->termios, tty->tty_rcv.sw_arg);     
ffc07a7c:	7c 09 03 a6 	mtctr   r0                                     
ffc07a80:	38 7f 00 30 	addi    r3,r31,48                              
ffc07a84:	80 9f 00 e0 	lwz     r4,224(r31)                            
ffc07a88:	4e 80 04 21 	bctrl                                          
      tty->tty_rcvwakeup = 1;                                         
ffc07a8c:	38 00 00 01 	li      r0,1                                   
ffc07a90:	90 1f 00 e4 	stw     r0,228(r31)                            
  }                                                                   
                                                                      
  tty->rawInBufDropped += dropped;                                    
  rtems_semaphore_release (tty->rawInBuf.Semaphore);                  
  return dropped;                                                     
}                                                                     
ffc07a94:	80 01 00 34 	lwz     r0,52(r1)                              
ffc07a98:	7f 43 d3 78 	mr      r3,r26                                 
ffc07a9c:	82 c1 00 08 	lwz     r22,8(r1)                              
ffc07aa0:	7c 08 03 a6 	mtlr    r0                                     
ffc07aa4:	82 e1 00 0c 	lwz     r23,12(r1)                             
ffc07aa8:	83 01 00 10 	lwz     r24,16(r1)                             
ffc07aac:	83 21 00 14 	lwz     r25,20(r1)                             
ffc07ab0:	83 41 00 18 	lwz     r26,24(r1)                             
ffc07ab4:	83 61 00 1c 	lwz     r27,28(r1)                             
ffc07ab8:	83 81 00 20 	lwz     r28,32(r1)                             
ffc07abc:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc07ac0:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc07ac4:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc07ac8:	38 21 00 30 	addi    r1,r1,48                               
ffc07acc:	4e 80 00 20 	blr                                            
  char c;                                                             
  int dropped = 0;                                                    
  bool flow_rcv = false; /* true, if flow control char received */    
  rtems_interrupt_level level;                                        
                                                                      
  if (rtems_termios_linesw[tty->t_line].l_rint != NULL) {             
ffc07ad0:	7c be 2b 78 	mr      r30,r5                                 
      tty->tty_rcvwakeup = 1;                                         
        }                                                             
    return 0;                                                         
  }                                                                   
                                                                      
  while (len--) {                                                     
ffc07ad4:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
 * NOTE: This routine runs in the context of the                      
 *       device receive interrupt handler.                            
 * Returns the number of characters dropped because of overflow.      
 */                                                                   
int                                                                   
rtems_termios_enqueue_raw_characters (void *ttyp, char *buf, int len) 
ffc07ad8:	3b 64 ff ff 	addi    r27,r4,-1                              
ffc07adc:	3b 20 00 00 	li      r25,0                                  
ffc07ae0:	3b 40 00 00 	li      r26,0                                  
                                                                      
        /*                                                            
         * check to see if rcv wakeup callback was set                
         */                                                           
        if (( !tty->tty_rcvwakeup ) && ( tty->tty_rcv.sw_pfn != NULL )) {
          (*tty->tty_rcv.sw_pfn)(&tty->termios, tty->tty_rcv.sw_arg); 
ffc07ae4:	3a e3 00 30 	addi    r23,r3,48                              
          if ((tty->flow_ctrl & FL_OSTOP) ||                          
              (tty->rawOutBufState == rob_idle)) {                    
            /* if tx is stopped due to XOFF or out of data */         
            /*    call write function here                 */         
            tty->flow_ctrl |= FL_ISNTXOF;                             
            (*tty->device.write)(tty->minor,                          
ffc07ae8:	3a c3 00 4a 	addi    r22,r3,74                              
      tty->tty_rcvwakeup = 1;                                         
        }                                                             
    return 0;                                                         
  }                                                                   
                                                                      
  while (len--) {                                                     
ffc07aec:	41 9e 01 18 	beq-    cr7,ffc07c04 <rtems_termios_enqueue_raw_characters+0x240><== NEVER TAKEN
    c = *buf++;                                                       
    /* FIXME: implement IXANY: any character restarts output */       
    /* if incoming XON/XOFF controls outgoing stream: */              
    if (tty->flow_ctrl & FL_MDXON) {                                  
ffc07af0:	80 1f 00 b8 	lwz     r0,184(r31)                            
        }                                                             
    return 0;                                                         
  }                                                                   
                                                                      
  while (len--) {                                                     
    c = *buf++;                                                       
ffc07af4:	8f 9b 00 01 	lbzu    r28,1(r27)                             
    /* FIXME: implement IXANY: any character restarts output */       
    /* if incoming XON/XOFF controls outgoing stream: */              
    if (tty->flow_ctrl & FL_MDXON) {                                  
ffc07af8:	70 09 02 00 	andi.   r9,r0,512                              
ffc07afc:	41 82 00 1c 	beq-    ffc07b18 <rtems_termios_enqueue_raw_characters+0x154>
      /* if received char is V_STOP and V_START (both are equal value) */
      if (c == tty->termios.c_cc[VSTOP]) {                            
ffc07b00:	88 1f 00 4a 	lbz     r0,74(r31)                             
ffc07b04:	7f 80 e0 00 	cmpw    cr7,r0,r28                             
ffc07b08:	41 9e 01 4c 	beq-    cr7,ffc07c54 <rtems_termios_enqueue_raw_characters+0x290>
          /* stop output                             */               
          tty->flow_ctrl |= FL_ORCVXOF;                               
        }                                                             
        flow_rcv = true;                                              
      }                                                               
      else if (c == tty->termios.c_cc[VSTART]) {                      
ffc07b0c:	88 1f 00 49 	lbz     r0,73(r31)                             
ffc07b10:	7f 80 e0 00 	cmpw    cr7,r0,r28                             
ffc07b14:	41 9e 01 d4 	beq-    cr7,ffc07ce8 <rtems_termios_enqueue_raw_characters+0x324><== NEVER TAKEN
        /* restart output  */                                         
        tty->flow_ctrl &= ~FL_ORCVXOF;                                
        flow_rcv = true;                                              
      }                                                               
    }                                                                 
    if (flow_rcv) {                                                   
ffc07b18:	2f 99 00 00 	cmpwi   cr7,r25,0                              
ffc07b1c:	40 9e 01 54 	bne-    cr7,ffc07c70 <rtems_termios_enqueue_raw_characters+0x2ac><== NEVER TAKEN
        }                                                             
        /* reenable interrupts */                                     
        rtems_interrupt_enable(level);                                
      }                                                               
    } else {                                                          
      newTail = (tty->rawInBuf.Tail + 1) % tty->rawInBuf.Size;        
ffc07b20:	83 bf 00 60 	lwz     r29,96(r31)                            
ffc07b24:	81 3f 00 64 	lwz     r9,100(r31)                            
ffc07b28:	38 1d 00 01 	addi    r0,r29,1                               
ffc07b2c:	7f a0 4b 96 	divwu   r29,r0,r9                              
ffc07b30:	7f bd 49 d6 	mullw   r29,r29,r9                             
ffc07b34:	7f bd 00 50 	subf    r29,r29,r0                             
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc07b38:	7f 00 00 a6 	mfmsr   r24                                    
ffc07b3c:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc07b40:	7f 00 00 78 	andc    r0,r24,r0                              
ffc07b44:	7c 00 01 24 	mtmsr   r0                                     
      /* if chars_in_buffer > highwater                */             
      rtems_interrupt_disable(level);                                 
      if ((((newTail - tty->rawInBuf.Head + tty->rawInBuf.Size)       
ffc07b48:	80 1f 00 5c 	lwz     r0,92(r31)                             
ffc07b4c:	81 7f 00 64 	lwz     r11,100(r31)                           
            % tty->rawInBuf.Size) > tty->highwater) &&                
ffc07b50:	81 3f 00 64 	lwz     r9,100(r31)                            
      }                                                               
    } else {                                                          
      newTail = (tty->rawInBuf.Tail + 1) % tty->rawInBuf.Size;        
      /* if chars_in_buffer > highwater                */             
      rtems_interrupt_disable(level);                                 
      if ((((newTail - tty->rawInBuf.Head + tty->rawInBuf.Size)       
ffc07b54:	7c 00 58 50 	subf    r0,r0,r11                              
ffc07b58:	81 7f 00 c0 	lwz     r11,192(r31)                           
ffc07b5c:	7c 00 ea 14 	add     r0,r0,r29                              
            % tty->rawInBuf.Size) > tty->highwater) &&                
ffc07b60:	7d 40 4b 96 	divwu   r10,r0,r9                              
ffc07b64:	7d 2a 49 d6 	mullw   r9,r10,r9                              
ffc07b68:	7c 09 00 50 	subf    r0,r9,r0                               
      }                                                               
    } else {                                                          
      newTail = (tty->rawInBuf.Tail + 1) % tty->rawInBuf.Size;        
      /* if chars_in_buffer > highwater                */             
      rtems_interrupt_disable(level);                                 
      if ((((newTail - tty->rawInBuf.Head + tty->rawInBuf.Size)       
ffc07b6c:	7f 80 58 40 	cmplw   cr7,r0,r11                             
ffc07b70:	40 9d 00 3c 	ble-    cr7,ffc07bac <rtems_termios_enqueue_raw_characters+0x1e8><== ALWAYS TAKEN
            % tty->rawInBuf.Size) > tty->highwater) &&                
          !(tty->flow_ctrl & FL_IREQXOF)) {                           
ffc07b74:	80 1f 00 b8 	lwz     r0,184(r31)                            <== NOT EXECUTED
    } else {                                                          
      newTail = (tty->rawInBuf.Tail + 1) % tty->rawInBuf.Size;        
      /* if chars_in_buffer > highwater                */             
      rtems_interrupt_disable(level);                                 
      if ((((newTail - tty->rawInBuf.Head + tty->rawInBuf.Size)       
            % tty->rawInBuf.Size) > tty->highwater) &&                
ffc07b78:	70 09 00 01 	andi.   r9,r0,1                                <== NOT EXECUTED
ffc07b7c:	40 82 00 30 	bne-    ffc07bac <rtems_termios_enqueue_raw_characters+0x1e8><== NOT EXECUTED
          !(tty->flow_ctrl & FL_IREQXOF)) {                           
        /* incoming data stream should be stopped */                  
        tty->flow_ctrl |= FL_IREQXOF;                                 
ffc07b80:	80 1f 00 b8 	lwz     r0,184(r31)                            <== NOT EXECUTED
ffc07b84:	60 00 00 01 	ori     r0,r0,1                                <== NOT EXECUTED
ffc07b88:	90 1f 00 b8 	stw     r0,184(r31)                            <== NOT EXECUTED
        if ((tty->flow_ctrl & (FL_MDXOF | FL_ISNTXOF))                
ffc07b8c:	80 1f 00 b8 	lwz     r0,184(r31)                            <== NOT EXECUTED
ffc07b90:	70 00 04 02 	andi.   r0,r0,1026                             <== NOT EXECUTED
ffc07b94:	2f 80 04 00 	cmpwi   cr7,r0,1024                            <== NOT EXECUTED
ffc07b98:	41 9e 01 78 	beq-    cr7,ffc07d10 <rtems_termios_enqueue_raw_characters+0x34c><== NOT EXECUTED
            /*    call write function here                 */         
            tty->flow_ctrl |= FL_ISNTXOF;                             
            (*tty->device.write)(tty->minor,                          
                (void *)&(tty->termios.c_cc[VSTOP]), 1);              
          }                                                           
        } else if ((tty->flow_ctrl & (FL_MDRTS | FL_IRTSOFF)) == (FL_MDRTS) ) {
ffc07b9c:	80 1f 00 b8 	lwz     r0,184(r31)                            <== NOT EXECUTED
ffc07ba0:	70 00 01 04 	andi.   r0,r0,260                              <== NOT EXECUTED
ffc07ba4:	2f 80 01 00 	cmpwi   cr7,r0,256                             <== NOT EXECUTED
ffc07ba8:	41 9e 01 a8 	beq-    cr7,ffc07d50 <rtems_termios_enqueue_raw_characters+0x38c><== NOT EXECUTED
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc07bac:	7f 00 01 24 	mtmsr   r24                                    
      }                                                               
                                                                      
      /* reenable interrupts */                                       
      rtems_interrupt_enable(level);                                  
                                                                      
      if (newTail == tty->rawInBuf.Head) {                            
ffc07bb0:	80 1f 00 5c 	lwz     r0,92(r31)                             
ffc07bb4:	7f 80 e8 00 	cmpw    cr7,r0,r29                             
ffc07bb8:	41 9e 01 24 	beq-    cr7,ffc07cdc <rtems_termios_enqueue_raw_characters+0x318><== NEVER TAKEN
        dropped++;                                                    
      } else {                                                        
        tty->rawInBuf.theBuf[newTail] = c;                            
ffc07bbc:	81 3f 00 58 	lwz     r9,88(r31)                             
ffc07bc0:	7f 89 e9 ae 	stbx    r28,r9,r29                             
        tty->rawInBuf.Tail = newTail;                                 
                                                                      
        /*                                                            
         * check to see if rcv wakeup callback was set                
         */                                                           
        if (( !tty->tty_rcvwakeup ) && ( tty->tty_rcv.sw_pfn != NULL )) {
ffc07bc4:	80 1f 00 e4 	lwz     r0,228(r31)                            
                                                                      
      if (newTail == tty->rawInBuf.Head) {                            
        dropped++;                                                    
      } else {                                                        
        tty->rawInBuf.theBuf[newTail] = c;                            
        tty->rawInBuf.Tail = newTail;                                 
ffc07bc8:	93 bf 00 60 	stw     r29,96(r31)                            
                                                                      
        /*                                                            
         * check to see if rcv wakeup callback was set                
         */                                                           
        if (( !tty->tty_rcvwakeup ) && ( tty->tty_rcv.sw_pfn != NULL )) {
ffc07bcc:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc07bd0:	40 9e 00 28 	bne-    cr7,ffc07bf8 <rtems_termios_enqueue_raw_characters+0x234><== NEVER TAKEN
ffc07bd4:	80 1f 00 dc 	lwz     r0,220(r31)                            
ffc07bd8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc07bdc:	41 9e 00 1c 	beq-    cr7,ffc07bf8 <rtems_termios_enqueue_raw_characters+0x234><== ALWAYS TAKEN
          (*tty->tty_rcv.sw_pfn)(&tty->termios, tty->tty_rcv.sw_arg); 
ffc07be0:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc07be4:	7e e3 bb 78 	mr      r3,r23                                 <== NOT EXECUTED
ffc07be8:	80 9f 00 e0 	lwz     r4,224(r31)                            <== NOT EXECUTED
ffc07bec:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
          tty->tty_rcvwakeup = 1;                                     
ffc07bf0:	38 00 00 01 	li      r0,1                                   <== NOT EXECUTED
ffc07bf4:	90 1f 00 e4 	stw     r0,228(r31)                            <== NOT EXECUTED
ffc07bf8:	3b de ff ff 	addi    r30,r30,-1                             
      tty->tty_rcvwakeup = 1;                                         
        }                                                             
    return 0;                                                         
  }                                                                   
                                                                      
  while (len--) {                                                     
ffc07bfc:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc07c00:	40 9e fe f0 	bne+    cr7,ffc07af0 <rtems_termios_enqueue_raw_characters+0x12c><== NEVER TAKEN
        }                                                             
      }                                                               
    }                                                                 
  }                                                                   
                                                                      
  tty->rawInBufDropped += dropped;                                    
ffc07c04:	80 1f 00 78 	lwz     r0,120(r31)                            
  rtems_semaphore_release (tty->rawInBuf.Semaphore);                  
ffc07c08:	80 7f 00 68 	lwz     r3,104(r31)                            
        }                                                             
      }                                                               
    }                                                                 
  }                                                                   
                                                                      
  tty->rawInBufDropped += dropped;                                    
ffc07c0c:	7c 00 d2 14 	add     r0,r0,r26                              
ffc07c10:	90 1f 00 78 	stw     r0,120(r31)                            
  rtems_semaphore_release (tty->rawInBuf.Semaphore);                  
ffc07c14:	48 00 13 f5 	bl      ffc09008 <rtems_semaphore_release>     
  return dropped;                                                     
}                                                                     
ffc07c18:	80 01 00 34 	lwz     r0,52(r1)                              
ffc07c1c:	7f 43 d3 78 	mr      r3,r26                                 
ffc07c20:	82 c1 00 08 	lwz     r22,8(r1)                              
ffc07c24:	7c 08 03 a6 	mtlr    r0                                     
ffc07c28:	82 e1 00 0c 	lwz     r23,12(r1)                             
ffc07c2c:	83 01 00 10 	lwz     r24,16(r1)                             
ffc07c30:	83 21 00 14 	lwz     r25,20(r1)                             
ffc07c34:	83 41 00 18 	lwz     r26,24(r1)                             
ffc07c38:	83 61 00 1c 	lwz     r27,28(r1)                             
ffc07c3c:	83 81 00 20 	lwz     r28,32(r1)                             
ffc07c40:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc07c44:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc07c48:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc07c4c:	38 21 00 30 	addi    r1,r1,48                               
ffc07c50:	4e 80 00 20 	blr                                            
    /* FIXME: implement IXANY: any character restarts output */       
    /* if incoming XON/XOFF controls outgoing stream: */              
    if (tty->flow_ctrl & FL_MDXON) {                                  
      /* if received char is V_STOP and V_START (both are equal value) */
      if (c == tty->termios.c_cc[VSTOP]) {                            
        if (c == tty->termios.c_cc[VSTART]) {                         
ffc07c54:	89 3f 00 49 	lbz     r9,73(r31)                             
ffc07c58:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc07c5c:	41 9e 00 a0 	beq-    cr7,ffc07cfc <rtems_termios_enqueue_raw_characters+0x338><== NEVER TAKEN
          tty->flow_ctrl = tty->flow_ctrl ^ FL_ORCVXOF;               
        }                                                             
        else {                                                        
          /* VSTOP received (other code than VSTART) */               
          /* stop output                             */               
          tty->flow_ctrl |= FL_ORCVXOF;                               
ffc07c60:	80 1f 00 b8 	lwz     r0,184(r31)                            
  int dropped = 0;                                                    
  bool flow_rcv = false; /* true, if flow control char received */    
  rtems_interrupt_level level;                                        
                                                                      
  if (rtems_termios_linesw[tty->t_line].l_rint != NULL) {             
    while (len--) {                                                   
ffc07c64:	3b 20 00 01 	li      r25,1                                  
          tty->flow_ctrl = tty->flow_ctrl ^ FL_ORCVXOF;               
        }                                                             
        else {                                                        
          /* VSTOP received (other code than VSTART) */               
          /* stop output                             */               
          tty->flow_ctrl |= FL_ORCVXOF;                               
ffc07c68:	60 00 00 10 	ori     r0,r0,16                               
ffc07c6c:	90 1f 00 b8 	stw     r0,184(r31)                            
        flow_rcv = true;                                              
      }                                                               
    }                                                                 
    if (flow_rcv) {                                                   
      /* restart output according to FL_ORCVXOF flag */               
      if ((tty->flow_ctrl & (FL_ORCVXOF | FL_OSTOP)) == FL_OSTOP) {   
ffc07c70:	80 1f 00 b8 	lwz     r0,184(r31)                            
ffc07c74:	54 00 06 b6 	rlwinm  r0,r0,0,26,27                          
ffc07c78:	2f 80 00 20 	cmpwi   cr7,r0,32                              
ffc07c7c:	40 9e ff 7c 	bne+    cr7,ffc07bf8 <rtems_termios_enqueue_raw_characters+0x234><== ALWAYS TAKEN
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc07c80:	7f a0 00 a6 	mfmsr   r29                                    <== NOT EXECUTED
ffc07c84:	7c 10 42 a6 	mfsprg  r0,0                                   <== NOT EXECUTED
ffc07c88:	7f a0 00 78 	andc    r0,r29,r0                              <== NOT EXECUTED
ffc07c8c:	7c 00 01 24 	mtmsr   r0                                     <== NOT EXECUTED
        /* disable interrupts    */                                   
        rtems_interrupt_disable(level);                               
        tty->flow_ctrl &= ~FL_OSTOP;                                  
        /* check for chars in output buffer (or rob_state?) */        
        if (tty->rawOutBufState != rob_idle) {                        
ffc07c90:	81 3f 00 94 	lwz     r9,148(r31)                            <== NOT EXECUTED
    if (flow_rcv) {                                                   
      /* restart output according to FL_ORCVXOF flag */               
      if ((tty->flow_ctrl & (FL_ORCVXOF | FL_OSTOP)) == FL_OSTOP) {   
        /* disable interrupts    */                                   
        rtems_interrupt_disable(level);                               
        tty->flow_ctrl &= ~FL_OSTOP;                                  
ffc07c94:	80 1f 00 b8 	lwz     r0,184(r31)                            <== NOT EXECUTED
        /* check for chars in output buffer (or rob_state?) */        
        if (tty->rawOutBufState != rob_idle) {                        
ffc07c98:	2f 89 00 00 	cmpwi   cr7,r9,0                               <== NOT EXECUTED
    if (flow_rcv) {                                                   
      /* restart output according to FL_ORCVXOF flag */               
      if ((tty->flow_ctrl & (FL_ORCVXOF | FL_OSTOP)) == FL_OSTOP) {   
        /* disable interrupts    */                                   
        rtems_interrupt_disable(level);                               
        tty->flow_ctrl &= ~FL_OSTOP;                                  
ffc07c9c:	54 00 06 f2 	rlwinm  r0,r0,0,27,25                          <== NOT EXECUTED
ffc07ca0:	90 1f 00 b8 	stw     r0,184(r31)                            <== NOT EXECUTED
        /* check for chars in output buffer (or rob_state?) */        
        if (tty->rawOutBufState != rob_idle) {                        
ffc07ca4:	40 9e 00 10 	bne-    cr7,ffc07cb4 <rtems_termios_enqueue_raw_characters+0x2f0><== NOT EXECUTED
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc07ca8:	7f a0 01 24 	mtmsr   r29                                    <== NOT EXECUTED
        /*                                                            
         * check to see if rcv wakeup callback was set                
         */                                                           
        if (( !tty->tty_rcvwakeup ) && ( tty->tty_rcv.sw_pfn != NULL )) {
          (*tty->tty_rcv.sw_pfn)(&tty->termios, tty->tty_rcv.sw_arg); 
          tty->tty_rcvwakeup = 1;                                     
ffc07cac:	3b de ff ff 	addi    r30,r30,-1                             <== NOT EXECUTED
ffc07cb0:	4b ff ff 4c 	b       ffc07bfc <rtems_termios_enqueue_raw_characters+0x238><== NOT EXECUTED
        tty->flow_ctrl &= ~FL_OSTOP;                                  
        /* check for chars in output buffer (or rob_state?) */        
        if (tty->rawOutBufState != rob_idle) {                        
          /* if chars available, call write function... */            
          (*tty->device.write)(                                       
            tty->minor, &tty->rawOutBuf.theBuf[tty->rawOutBuf.Tail], 1);
ffc07cb4:	81 3f 00 84 	lwz     r9,132(r31)                            <== NOT EXECUTED
        rtems_interrupt_disable(level);                               
        tty->flow_ctrl &= ~FL_OSTOP;                                  
        /* check for chars in output buffer (or rob_state?) */        
        if (tty->rawOutBufState != rob_idle) {                        
          /* if chars available, call write function... */            
          (*tty->device.write)(                                       
ffc07cb8:	38 a0 00 01 	li      r5,1                                   <== NOT EXECUTED
ffc07cbc:	80 9f 00 7c 	lwz     r4,124(r31)                            <== NOT EXECUTED
ffc07cc0:	80 1f 00 a4 	lwz     r0,164(r31)                            <== NOT EXECUTED
ffc07cc4:	80 7f 00 10 	lwz     r3,16(r31)                             <== NOT EXECUTED
ffc07cc8:	7c 84 4a 14 	add     r4,r4,r9                               <== NOT EXECUTED
ffc07ccc:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc07cd0:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
ffc07cd4:	7f a0 01 24 	mtmsr   r29                                    <== NOT EXECUTED
ffc07cd8:	4b ff ff d4 	b       ffc07cac <rtems_termios_enqueue_raw_characters+0x2e8><== NOT EXECUTED
                                                                      
      /* reenable interrupts */                                       
      rtems_interrupt_enable(level);                                  
                                                                      
      if (newTail == tty->rawInBuf.Head) {                            
        dropped++;                                                    
ffc07cdc:	3b 5a 00 01 	addi    r26,r26,1                              <== NOT EXECUTED
        /*                                                            
         * check to see if rcv wakeup callback was set                
         */                                                           
        if (( !tty->tty_rcvwakeup ) && ( tty->tty_rcv.sw_pfn != NULL )) {
          (*tty->tty_rcv.sw_pfn)(&tty->termios, tty->tty_rcv.sw_arg); 
          tty->tty_rcvwakeup = 1;                                     
ffc07ce0:	3b de ff ff 	addi    r30,r30,-1                             <== NOT EXECUTED
ffc07ce4:	4b ff ff 18 	b       ffc07bfc <rtems_termios_enqueue_raw_characters+0x238><== NOT EXECUTED
        flow_rcv = true;                                              
      }                                                               
      else if (c == tty->termios.c_cc[VSTART]) {                      
        /* VSTART received */                                         
        /* restart output  */                                         
        tty->flow_ctrl &= ~FL_ORCVXOF;                                
ffc07ce8:	80 1f 00 b8 	lwz     r0,184(r31)                            <== NOT EXECUTED
  int dropped = 0;                                                    
  bool flow_rcv = false; /* true, if flow control char received */    
  rtems_interrupt_level level;                                        
                                                                      
  if (rtems_termios_linesw[tty->t_line].l_rint != NULL) {             
    while (len--) {                                                   
ffc07cec:	3b 20 00 01 	li      r25,1                                  <== NOT EXECUTED
        flow_rcv = true;                                              
      }                                                               
      else if (c == tty->termios.c_cc[VSTART]) {                      
        /* VSTART received */                                         
        /* restart output  */                                         
        tty->flow_ctrl &= ~FL_ORCVXOF;                                
ffc07cf0:	54 00 07 34 	rlwinm  r0,r0,0,28,26                          <== NOT EXECUTED
ffc07cf4:	90 1f 00 b8 	stw     r0,184(r31)                            <== NOT EXECUTED
ffc07cf8:	4b ff ff 78 	b       ffc07c70 <rtems_termios_enqueue_raw_characters+0x2ac><== NOT EXECUTED
      /* if received char is V_STOP and V_START (both are equal value) */
      if (c == tty->termios.c_cc[VSTOP]) {                            
        if (c == tty->termios.c_cc[VSTART]) {                         
          /* received VSTOP and VSTART==VSTOP? */                     
          /* then toggle "stop output" status  */                     
          tty->flow_ctrl = tty->flow_ctrl ^ FL_ORCVXOF;               
ffc07cfc:	80 1f 00 b8 	lwz     r0,184(r31)                            <== NOT EXECUTED
  int dropped = 0;                                                    
  bool flow_rcv = false; /* true, if flow control char received */    
  rtems_interrupt_level level;                                        
                                                                      
  if (rtems_termios_linesw[tty->t_line].l_rint != NULL) {             
    while (len--) {                                                   
ffc07d00:	3b 20 00 01 	li      r25,1                                  <== NOT EXECUTED
      /* if received char is V_STOP and V_START (both are equal value) */
      if (c == tty->termios.c_cc[VSTOP]) {                            
        if (c == tty->termios.c_cc[VSTART]) {                         
          /* received VSTOP and VSTART==VSTOP? */                     
          /* then toggle "stop output" status  */                     
          tty->flow_ctrl = tty->flow_ctrl ^ FL_ORCVXOF;               
ffc07d04:	68 00 00 10 	xori    r0,r0,16                               <== NOT EXECUTED
ffc07d08:	90 1f 00 b8 	stw     r0,184(r31)                            <== NOT EXECUTED
ffc07d0c:	4b ff ff 64 	b       ffc07c70 <rtems_termios_enqueue_raw_characters+0x2ac><== NOT EXECUTED
          !(tty->flow_ctrl & FL_IREQXOF)) {                           
        /* incoming data stream should be stopped */                  
        tty->flow_ctrl |= FL_IREQXOF;                                 
        if ((tty->flow_ctrl & (FL_MDXOF | FL_ISNTXOF))                
            ==                (FL_MDXOF             ) ) {             
          if ((tty->flow_ctrl & FL_OSTOP) ||                          
ffc07d10:	80 1f 00 b8 	lwz     r0,184(r31)                            <== NOT EXECUTED
ffc07d14:	70 09 00 20 	andi.   r9,r0,32                               <== NOT EXECUTED
ffc07d18:	40 82 00 10 	bne-    ffc07d28 <rtems_termios_enqueue_raw_characters+0x364><== NOT EXECUTED
ffc07d1c:	80 1f 00 94 	lwz     r0,148(r31)                            <== NOT EXECUTED
ffc07d20:	2f 80 00 00 	cmpwi   cr7,r0,0                               <== NOT EXECUTED
ffc07d24:	40 be fe 88 	bne-    cr7,ffc07bac <rtems_termios_enqueue_raw_characters+0x1e8><== NOT EXECUTED
              (tty->rawOutBufState == rob_idle)) {                    
            /* if tx is stopped due to XOFF or out of data */         
            /*    call write function here                 */         
            tty->flow_ctrl |= FL_ISNTXOF;                             
ffc07d28:	81 3f 00 b8 	lwz     r9,184(r31)                            <== NOT EXECUTED
            (*tty->device.write)(tty->minor,                          
ffc07d2c:	7e c4 b3 78 	mr      r4,r22                                 <== NOT EXECUTED
ffc07d30:	80 1f 00 a4 	lwz     r0,164(r31)                            <== NOT EXECUTED
ffc07d34:	38 a0 00 01 	li      r5,1                                   <== NOT EXECUTED
            ==                (FL_MDXOF             ) ) {             
          if ((tty->flow_ctrl & FL_OSTOP) ||                          
              (tty->rawOutBufState == rob_idle)) {                    
            /* if tx is stopped due to XOFF or out of data */         
            /*    call write function here                 */         
            tty->flow_ctrl |= FL_ISNTXOF;                             
ffc07d38:	61 29 00 02 	ori     r9,r9,2                                <== NOT EXECUTED
            (*tty->device.write)(tty->minor,                          
ffc07d3c:	80 7f 00 10 	lwz     r3,16(r31)                             <== NOT EXECUTED
            ==                (FL_MDXOF             ) ) {             
          if ((tty->flow_ctrl & FL_OSTOP) ||                          
              (tty->rawOutBufState == rob_idle)) {                    
            /* if tx is stopped due to XOFF or out of data */         
            /*    call write function here                 */         
            tty->flow_ctrl |= FL_ISNTXOF;                             
ffc07d40:	91 3f 00 b8 	stw     r9,184(r31)                            <== NOT EXECUTED
            (*tty->device.write)(tty->minor,                          
ffc07d44:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc07d48:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
ffc07d4c:	4b ff fe 60 	b       ffc07bac <rtems_termios_enqueue_raw_characters+0x1e8><== NOT EXECUTED
                (void *)&(tty->termios.c_cc[VSTOP]), 1);              
          }                                                           
        } else if ((tty->flow_ctrl & (FL_MDRTS | FL_IRTSOFF)) == (FL_MDRTS) ) {
          tty->flow_ctrl |= FL_IRTSOFF;                               
          /* deactivate RTS line */                                   
          if (tty->device.stopRemoteTx != NULL) {                     
ffc07d50:	80 1f 00 ac 	lwz     r0,172(r31)                            <== NOT EXECUTED
            tty->flow_ctrl |= FL_ISNTXOF;                             
            (*tty->device.write)(tty->minor,                          
                (void *)&(tty->termios.c_cc[VSTOP]), 1);              
          }                                                           
        } else if ((tty->flow_ctrl & (FL_MDRTS | FL_IRTSOFF)) == (FL_MDRTS) ) {
          tty->flow_ctrl |= FL_IRTSOFF;                               
ffc07d54:	81 3f 00 b8 	lwz     r9,184(r31)                            <== NOT EXECUTED
          /* deactivate RTS line */                                   
          if (tty->device.stopRemoteTx != NULL) {                     
ffc07d58:	2f 80 00 00 	cmpwi   cr7,r0,0                               <== NOT EXECUTED
            tty->flow_ctrl |= FL_ISNTXOF;                             
            (*tty->device.write)(tty->minor,                          
                (void *)&(tty->termios.c_cc[VSTOP]), 1);              
          }                                                           
        } else if ((tty->flow_ctrl & (FL_MDRTS | FL_IRTSOFF)) == (FL_MDRTS) ) {
          tty->flow_ctrl |= FL_IRTSOFF;                               
ffc07d5c:	61 29 00 04 	ori     r9,r9,4                                <== NOT EXECUTED
ffc07d60:	91 3f 00 b8 	stw     r9,184(r31)                            <== NOT EXECUTED
          /* deactivate RTS line */                                   
          if (tty->device.stopRemoteTx != NULL) {                     
ffc07d64:	41 be fe 48 	beq-    cr7,ffc07bac <rtems_termios_enqueue_raw_characters+0x1e8><== NOT EXECUTED
            tty->device.stopRemoteTx(tty->minor);                     
ffc07d68:	80 7f 00 10 	lwz     r3,16(r31)                             <== NOT EXECUTED
ffc07d6c:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc07d70:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
ffc07d74:	4b ff fe 38 	b       ffc07bac <rtems_termios_enqueue_raw_characters+0x1e8><== NOT EXECUTED
                                                                      

ffc066dc <rtems_termios_ioctl>: } } rtems_status_code rtems_termios_ioctl (void *arg) {
ffc066dc:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc066e0:	7c 08 02 a6 	mflr    r0                                     
  struct rtems_termios_tty *tty = args->iop->data1;                   
  struct ttywakeup         *wakeup = (struct ttywakeup *)args->buffer;
  rtems_status_code sc;                                               
                                                                      
   args->ioctl_return = 0;                                            
  sc = rtems_semaphore_obtain (tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
ffc066e4:	38 80 00 00 	li      r4,0                                   
  }                                                                   
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_ioctl (void *arg)                                       
{                                                                     
ffc066e8:	90 01 00 24 	stw     r0,36(r1)                              
  rtems_libio_ioctl_args_t *args = arg;                               
  struct rtems_termios_tty *tty = args->iop->data1;                   
  struct ttywakeup         *wakeup = (struct ttywakeup *)args->buffer;
  rtems_status_code sc;                                               
                                                                      
   args->ioctl_return = 0;                                            
ffc066ec:	38 00 00 00 	li      r0,0                                   
  sc = rtems_semaphore_obtain (tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
ffc066f0:	38 a0 00 00 	li      r5,0                                   
                                                                      
rtems_status_code                                                     
rtems_termios_ioctl (void *arg)                                       
{                                                                     
  rtems_libio_ioctl_args_t *args = arg;                               
  struct rtems_termios_tty *tty = args->iop->data1;                   
ffc066f4:	81 23 00 00 	lwz     r9,0(r3)                               
  }                                                                   
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_ioctl (void *arg)                                       
{                                                                     
ffc066f8:	93 c1 00 18 	stw     r30,24(r1)                             
  rtems_libio_ioctl_args_t *args = arg;                               
  struct rtems_termios_tty *tty = args->iop->data1;                   
ffc066fc:	83 c9 00 38 	lwz     r30,56(r9)                             
  }                                                                   
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_ioctl (void *arg)                                       
{                                                                     
ffc06700:	93 81 00 10 	stw     r28,16(r1)                             
ffc06704:	93 a1 00 14 	stw     r29,20(r1)                             
ffc06708:	93 e1 00 1c 	stw     r31,28(r1)                             
ffc0670c:	7c 7f 1b 78 	mr      r31,r3                                 
ffc06710:	93 41 00 08 	stw     r26,8(r1)                              
ffc06714:	93 61 00 0c 	stw     r27,12(r1)                             
  rtems_libio_ioctl_args_t *args = arg;                               
  struct rtems_termios_tty *tty = args->iop->data1;                   
  struct ttywakeup         *wakeup = (struct ttywakeup *)args->buffer;
  rtems_status_code sc;                                               
                                                                      
   args->ioctl_return = 0;                                            
ffc06718:	90 03 00 0c 	stw     r0,12(r3)                              
  sc = rtems_semaphore_obtain (tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
ffc0671c:	80 7e 00 18 	lwz     r3,24(r30)                             
rtems_status_code                                                     
rtems_termios_ioctl (void *arg)                                       
{                                                                     
  rtems_libio_ioctl_args_t *args = arg;                               
  struct rtems_termios_tty *tty = args->iop->data1;                   
  struct ttywakeup         *wakeup = (struct ttywakeup *)args->buffer;
ffc06720:	83 9f 00 08 	lwz     r28,8(r31)                             
  rtems_status_code sc;                                               
                                                                      
   args->ioctl_return = 0;                                            
  sc = rtems_semaphore_obtain (tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
ffc06724:	48 00 27 5d 	bl      ffc08e80 <rtems_semaphore_obtain>      
  if (sc != RTEMS_SUCCESSFUL) {                                       
ffc06728:	7c 7d 1b 79 	mr.     r29,r3                                 
ffc0672c:	40 82 00 4c 	bne-    ffc06778 <rtems_termios_ioctl+0x9c>    <== NEVER TAKEN
    args->ioctl_return = sc;                                          
    return sc;                                                        
  }                                                                   
  switch (args->command) {                                            
ffc06730:	80 1f 00 04 	lwz     r0,4(r31)                              
ffc06734:	2f 80 00 04 	cmpwi   cr7,r0,4                               
ffc06738:	41 9e 00 28 	beq-    cr7,ffc06760 <rtems_termios_ioctl+0x84>
ffc0673c:	2b 80 00 04 	cmplwi  cr7,r0,4                               
ffc06740:	41 9d 00 68 	bgt-    cr7,ffc067a8 <rtems_termios_ioctl+0xcc>
ffc06744:	2f 80 00 02 	cmpwi   cr7,r0,2                               
ffc06748:	41 9e 00 bc 	beq-    cr7,ffc06804 <rtems_termios_ioctl+0x128>
ffc0674c:	2b 80 00 02 	cmplwi  cr7,r0,2                               
ffc06750:	40 9d 02 4c 	ble-    cr7,ffc0699c <rtems_termios_ioctl+0x2c0>
    if (tty->device.setAttributes)                                    
      (*tty->device.setAttributes)(tty->minor, &tty->termios);        
    break;                                                            
                                                                      
  case RTEMS_IO_TCDRAIN:                                              
    drainOutput (tty);                                                
ffc06754:	7f c3 f3 78 	mr      r3,r30                                 
ffc06758:	4b ff f8 29 	bl      ffc05f80 <drainOutput>                 
    break;                                                            
ffc0675c:	48 00 00 14 	b       ffc06770 <rtems_termios_ioctl+0x94>    
  case RTEMS_IO_SNDWAKEUP:                                            
    tty->tty_snd = *wakeup;                                           
    break;                                                            
                                                                      
  case RTEMS_IO_RCVWAKEUP:                                            
    tty->tty_rcv = *wakeup;                                           
ffc06760:	81 3c 00 00 	lwz     r9,0(r28)                              
ffc06764:	81 5c 00 04 	lwz     r10,4(r28)                             
ffc06768:	91 3e 00 dc 	stw     r9,220(r30)                            
ffc0676c:	91 5e 00 e0 	stw     r10,224(r30)                           
      *(int *)args->buffer = tty->ccount - tty->cindex + rawnc;       
    }                                                                 
    break;                                                            
  }                                                                   
                                                                      
  rtems_semaphore_release (tty->osem);                                
ffc06770:	80 7e 00 18 	lwz     r3,24(r30)                             
ffc06774:	48 00 28 95 	bl      ffc09008 <rtems_semaphore_release>     
  args->ioctl_return = sc;                                            
  return sc;                                                          
}                                                                     
ffc06778:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0677c:	7f a3 eb 78 	mr      r3,r29                                 
    }                                                                 
    break;                                                            
  }                                                                   
                                                                      
  rtems_semaphore_release (tty->osem);                                
  args->ioctl_return = sc;                                            
ffc06780:	93 bf 00 0c 	stw     r29,12(r31)                            
  return sc;                                                          
}                                                                     
ffc06784:	7c 08 03 a6 	mtlr    r0                                     
ffc06788:	83 41 00 08 	lwz     r26,8(r1)                              
ffc0678c:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc06790:	83 81 00 10 	lwz     r28,16(r1)                             
ffc06794:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc06798:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0679c:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc067a0:	38 21 00 20 	addi    r1,r1,32                               
ffc067a4:	4e 80 00 20 	blr                                            
  sc = rtems_semaphore_obtain (tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
  if (sc != RTEMS_SUCCESSFUL) {                                       
    args->ioctl_return = sc;                                          
    return sc;                                                        
  }                                                                   
  switch (args->command) {                                            
ffc067a8:	3d 20 40 04 	lis     r9,16388                               
ffc067ac:	61 29 66 7f 	ori     r9,r9,26239                            
ffc067b0:	7f 80 48 00 	cmpw    cr7,r0,r9                              
ffc067b4:	41 9e 01 bc 	beq-    cr7,ffc06970 <rtems_termios_ioctl+0x294><== NEVER TAKEN
ffc067b8:	7f 80 48 40 	cmplw   cr7,r0,r9                              
ffc067bc:	41 9d 01 fc 	bgt-    cr7,ffc069b8 <rtems_termios_ioctl+0x2dc>
ffc067c0:	2f 80 00 05 	cmpwi   cr7,r0,5                               
ffc067c4:	41 9e 02 84 	beq-    cr7,ffc06a48 <rtems_termios_ioctl+0x36c>
  default:                                                            
    if (rtems_termios_linesw[tty->t_line].l_ioctl != NULL) {          
ffc067c8:	80 1e 00 cc 	lwz     r0,204(r30)                            
ffc067cc:	3d 20 00 00 	lis     r9,0                                   
ffc067d0:	39 29 27 d4 	addi    r9,r9,10196                            
ffc067d4:	54 00 28 34 	rlwinm  r0,r0,5,0,26                           
ffc067d8:	7d 29 02 14 	add     r9,r9,r0                               
ffc067dc:	80 09 00 18 	lwz     r0,24(r9)                              
      sc = rtems_termios_linesw[tty->t_line].l_ioctl(tty,args);       
    }                                                                 
    else {                                                            
      sc = RTEMS_INVALID_NUMBER;                                      
ffc067e0:	3b a0 00 0a 	li      r29,10                                 
    args->ioctl_return = sc;                                          
    return sc;                                                        
  }                                                                   
  switch (args->command) {                                            
  default:                                                            
    if (rtems_termios_linesw[tty->t_line].l_ioctl != NULL) {          
ffc067e4:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc067e8:	41 be ff 88 	beq-    cr7,ffc06770 <rtems_termios_ioctl+0x94><== NEVER TAKEN
      sc = rtems_termios_linesw[tty->t_line].l_ioctl(tty,args);       
ffc067ec:	7f c3 f3 78 	mr      r3,r30                                 
ffc067f0:	7c 09 03 a6 	mtctr   r0                                     
ffc067f4:	7f e4 fb 78 	mr      r4,r31                                 
ffc067f8:	4e 80 04 21 	bctrl                                          
ffc067fc:	7c 7d 1b 78 	mr      r29,r3                                 
ffc06800:	4b ff ff 70 	b       ffc06770 <rtems_termios_ioctl+0x94>    
  case RTEMS_IO_GET_ATTRIBUTES:                                       
    *(struct termios *)args->buffer = tty->termios;                   
    break;                                                            
                                                                      
  case RTEMS_IO_SET_ATTRIBUTES:                                       
    tty->termios = *(struct termios *)args->buffer;                   
ffc06804:	3b 9e 00 30 	addi    r28,r30,48                             
ffc06808:	80 9f 00 08 	lwz     r4,8(r31)                              
ffc0680c:	7f 83 e3 78 	mr      r3,r28                                 
ffc06810:	38 a0 00 24 	li      r5,36                                  
ffc06814:	48 00 c5 95 	bl      ffc12da8 <memcpy>                      
  /*                                                                  
   * check for flow control options to be switched off                
   */                                                                 
                                                                      
  /* check for outgoing XON/XOFF flow control switched off */         
  if (( tty->flow_ctrl & FL_MDXON) &&                                 
ffc06818:	80 1e 00 b8 	lwz     r0,184(r30)                            
ffc0681c:	70 09 02 00 	andi.   r9,r0,512                              
ffc06820:	41 82 00 58 	beq-    ffc06878 <rtems_termios_ioctl+0x19c>   
      !(tty->termios.c_iflag & IXON)) {                               
ffc06824:	80 1e 00 30 	lwz     r0,48(r30)                             
  /*                                                                  
   * check for flow control options to be switched off                
   */                                                                 
                                                                      
  /* check for outgoing XON/XOFF flow control switched off */         
  if (( tty->flow_ctrl & FL_MDXON) &&                                 
ffc06828:	70 09 04 00 	andi.   r9,r0,1024                             
ffc0682c:	40 82 00 4c 	bne-    ffc06878 <rtems_termios_ioctl+0x19c>   <== ALWAYS TAKEN
      !(tty->termios.c_iflag & IXON)) {                               
    /* clear related flags in flow_ctrl */                            
    tty->flow_ctrl &= ~(FL_MDXON | FL_ORCVXOF);                       
ffc06830:	81 3e 00 b8 	lwz     r9,184(r30)                            <== NOT EXECUTED
ffc06834:	38 00 fd ef 	li      r0,-529                                <== NOT EXECUTED
ffc06838:	7d 20 00 38 	and     r0,r9,r0                               <== NOT EXECUTED
ffc0683c:	90 1e 00 b8 	stw     r0,184(r30)                            <== NOT EXECUTED
                                                                      
    /* has output been stopped due to received XOFF? */               
    if (tty->flow_ctrl & FL_OSTOP) {                                  
ffc06840:	80 1e 00 b8 	lwz     r0,184(r30)                            <== NOT EXECUTED
ffc06844:	70 09 00 20 	andi.   r9,r0,32                               <== NOT EXECUTED
ffc06848:	41 82 00 30 	beq-    ffc06878 <rtems_termios_ioctl+0x19c>   <== NOT EXECUTED
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc0684c:	7f 60 00 a6 	mfmsr   r27                                    <== NOT EXECUTED
ffc06850:	7c 10 42 a6 	mfsprg  r0,0                                   <== NOT EXECUTED
ffc06854:	7f 60 00 78 	andc    r0,r27,r0                              <== NOT EXECUTED
ffc06858:	7c 00 01 24 	mtmsr   r0                                     <== NOT EXECUTED
      /* disable interrupts    */                                     
      rtems_interrupt_disable(level);                                 
      tty->flow_ctrl &= ~FL_OSTOP;                                    
      /* check for chars in output buffer (or rob_state?) */          
      if (tty->rawOutBufState != rob_idle) {                          
ffc0685c:	81 3e 00 94 	lwz     r9,148(r30)                            <== NOT EXECUTED
                                                                      
    /* has output been stopped due to received XOFF? */               
    if (tty->flow_ctrl & FL_OSTOP) {                                  
      /* disable interrupts    */                                     
      rtems_interrupt_disable(level);                                 
      tty->flow_ctrl &= ~FL_OSTOP;                                    
ffc06860:	80 1e 00 b8 	lwz     r0,184(r30)                            <== NOT EXECUTED
      /* check for chars in output buffer (or rob_state?) */          
      if (tty->rawOutBufState != rob_idle) {                          
ffc06864:	2f 89 00 00 	cmpwi   cr7,r9,0                               <== NOT EXECUTED
                                                                      
    /* has output been stopped due to received XOFF? */               
    if (tty->flow_ctrl & FL_OSTOP) {                                  
      /* disable interrupts    */                                     
      rtems_interrupt_disable(level);                                 
      tty->flow_ctrl &= ~FL_OSTOP;                                    
ffc06868:	54 00 06 f2 	rlwinm  r0,r0,0,27,25                          <== NOT EXECUTED
ffc0686c:	90 1e 00 b8 	stw     r0,184(r30)                            <== NOT EXECUTED
      /* check for chars in output buffer (or rob_state?) */          
      if (tty->rawOutBufState != rob_idle) {                          
ffc06870:	40 9e 02 04 	bne-    cr7,ffc06a74 <rtems_termios_ioctl+0x398><== NOT EXECUTED
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc06874:	7f 60 01 24 	mtmsr   r27                                    <== NOT EXECUTED
      /* reenable interrupts */                                       
      rtems_interrupt_enable(level);                                  
    }                                                                 
  }                                                                   
  /* check for incoming XON/XOFF flow control switched off */         
  if (( tty->flow_ctrl & FL_MDXOF) && !(tty->termios.c_iflag & IXOFF)) {
ffc06878:	80 1e 00 b8 	lwz     r0,184(r30)                            
ffc0687c:	70 09 04 00 	andi.   r9,r0,1024                             
ffc06880:	41 82 00 28 	beq-    ffc068a8 <rtems_termios_ioctl+0x1cc>   <== ALWAYS TAKEN
ffc06884:	80 1e 00 30 	lwz     r0,48(r30)                             <== NOT EXECUTED
ffc06888:	70 09 10 00 	andi.   r9,r0,4096                             <== NOT EXECUTED
ffc0688c:	40 82 00 1c 	bne-    ffc068a8 <rtems_termios_ioctl+0x1cc>   <== NOT EXECUTED
    /* clear related flags in flow_ctrl */                            
    tty->flow_ctrl &= ~(FL_MDXOF);                                    
ffc06890:	80 1e 00 b8 	lwz     r0,184(r30)                            <== NOT EXECUTED
ffc06894:	54 00 05 a8 	rlwinm  r0,r0,0,22,20                          <== NOT EXECUTED
ffc06898:	90 1e 00 b8 	stw     r0,184(r30)                            <== NOT EXECUTED
    /* FIXME: what happens, if we had sent XOFF but not yet XON? */   
    tty->flow_ctrl &= ~(FL_ISNTXOF);                                  
ffc0689c:	80 1e 00 b8 	lwz     r0,184(r30)                            <== NOT EXECUTED
ffc068a0:	54 00 07 fa 	rlwinm  r0,r0,0,31,29                          <== NOT EXECUTED
ffc068a4:	90 1e 00 b8 	stw     r0,184(r30)                            <== NOT EXECUTED
  }                                                                   
                                                                      
  /* check for incoming RTS/CTS flow control switched off */          
  if (( tty->flow_ctrl & FL_MDRTS) && !(tty->termios.c_cflag & CRTSCTS)) {
ffc068a8:	80 1e 00 b8 	lwz     r0,184(r30)                            
ffc068ac:	70 09 01 00 	andi.   r9,r0,256                              
ffc068b0:	41 82 01 ac 	beq-    ffc06a5c <rtems_termios_ioctl+0x380>   <== ALWAYS TAKEN
ffc068b4:	80 1e 00 38 	lwz     r0,56(r30)                             <== NOT EXECUTED
ffc068b8:	2f 80 00 00 	cmpwi   cr7,r0,0                               <== NOT EXECUTED
ffc068bc:	41 9c 02 28 	blt-    cr7,ffc06ae4 <rtems_termios_ioctl+0x408><== NOT EXECUTED
    /* clear related flags in flow_ctrl */                            
    tty->flow_ctrl &= ~(FL_MDRTS);                                    
ffc068c0:	80 1e 00 b8 	lwz     r0,184(r30)                            <== NOT EXECUTED
ffc068c4:	54 00 06 2c 	rlwinm  r0,r0,0,24,22                          <== NOT EXECUTED
ffc068c8:	90 1e 00 b8 	stw     r0,184(r30)                            <== NOT EXECUTED
                                                                      
    /* restart remote Tx, if it was stopped */                        
    if ((tty->flow_ctrl & FL_IRTSOFF) && (tty->device.startRemoteTx != NULL)) {
ffc068cc:	80 1e 00 b8 	lwz     r0,184(r30)                            <== NOT EXECUTED
ffc068d0:	70 09 00 04 	andi.   r9,r0,4                                <== NOT EXECUTED
ffc068d4:	41 82 00 24 	beq-    ffc068f8 <rtems_termios_ioctl+0x21c>   <== NOT EXECUTED
ffc068d8:	80 1e 00 b0 	lwz     r0,176(r30)                            <== NOT EXECUTED
ffc068dc:	2f 00 00 00 	cmpwi   cr6,r0,0                               <== NOT EXECUTED
ffc068e0:	41 9a 00 18 	beq-    cr6,ffc068f8 <rtems_termios_ioctl+0x21c><== NOT EXECUTED
      tty->device.startRemoteTx(tty->minor);                          
ffc068e4:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc068e8:	80 7e 00 10 	lwz     r3,16(r30)                             <== NOT EXECUTED
ffc068ec:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
ffc068f0:	80 1e 00 38 	lwz     r0,56(r30)                             <== NOT EXECUTED
ffc068f4:	2f 80 00 00 	cmpwi   cr7,r0,0                               <== NOT EXECUTED
    }                                                                 
    tty->flow_ctrl &= ~(FL_IRTSOFF);                                  
ffc068f8:	80 1e 00 b8 	lwz     r0,184(r30)                            <== NOT EXECUTED
ffc068fc:	54 00 07 b8 	rlwinm  r0,r0,0,30,28                          <== NOT EXECUTED
ffc06900:	90 1e 00 b8 	stw     r0,184(r30)                            <== NOT EXECUTED
                                                                      
  /*                                                                  
   * check for flow control options to be switched on                 
   */                                                                 
  /* check for incoming RTS/CTS flow control switched on */           
  if (tty->termios.c_cflag & CRTSCTS) {                               
ffc06904:	41 9c 01 e0 	blt-    cr7,ffc06ae4 <rtems_termios_ioctl+0x408><== NEVER TAKEN
    tty->flow_ctrl |= FL_MDRTS;                                       
  }                                                                   
  /* check for incoming XON/XOF flow control switched on */           
  if (tty->termios.c_iflag & IXOFF) {                                 
ffc06908:	80 1e 00 30 	lwz     r0,48(r30)                             
ffc0690c:	70 09 10 00 	andi.   r9,r0,4096                             
ffc06910:	41 82 00 10 	beq-    ffc06920 <rtems_termios_ioctl+0x244>   
    tty->flow_ctrl |= FL_MDXOF;                                       
ffc06914:	81 3e 00 b8 	lwz     r9,184(r30)                            
ffc06918:	61 29 04 00 	ori     r9,r9,1024                             
ffc0691c:	91 3e 00 b8 	stw     r9,184(r30)                            
  }                                                                   
  /* check for outgoing XON/XOF flow control switched on */           
  if (tty->termios.c_iflag & IXON) {                                  
ffc06920:	70 09 04 00 	andi.   r9,r0,1024                             
ffc06924:	41 82 00 10 	beq-    ffc06934 <rtems_termios_ioctl+0x258>   <== NEVER TAKEN
    tty->flow_ctrl |= FL_MDXON;                                       
ffc06928:	80 1e 00 b8 	lwz     r0,184(r30)                            
ffc0692c:	60 00 02 00 	ori     r0,r0,512                              
ffc06930:	90 1e 00 b8 	stw     r0,184(r30)                            
    tty->termios = *(struct termios *)args->buffer;                   
                                                                      
    /* check for and process change in flow control options */        
    termios_set_flowctrl(tty);                                        
                                                                      
    if (tty->termios.c_lflag & ICANON) {                              
ffc06934:	83 7e 00 3c 	lwz     r27,60(r30)                            
ffc06938:	73 7b 00 02 	andi.   r27,r27,2                              
ffc0693c:	41 82 01 60 	beq-    ffc06a9c <rtems_termios_ioctl+0x3c0>   
      tty->rawInBufSemaphoreOptions = RTEMS_WAIT;                     
ffc06940:	38 00 00 00 	li      r0,0                                   
ffc06944:	90 1e 00 6c 	stw     r0,108(r30)                            
      tty->rawInBufSemaphoreTimeout = RTEMS_NO_TIMEOUT;               
ffc06948:	90 1e 00 70 	stw     r0,112(r30)                            
      tty->rawInBufSemaphoreFirstTimeout = RTEMS_NO_TIMEOUT;          
ffc0694c:	90 1e 00 74 	stw     r0,116(r30)                            
        } else {                                                      
          tty->rawInBufSemaphoreOptions = RTEMS_NO_WAIT;              
        }                                                             
      }                                                               
    }                                                                 
    if (tty->device.setAttributes)                                    
ffc06950:	80 1e 00 a8 	lwz     r0,168(r30)                            
ffc06954:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc06958:	41 be fe 18 	beq-    cr7,ffc06770 <rtems_termios_ioctl+0x94><== NEVER TAKEN
      (*tty->device.setAttributes)(tty->minor, &tty->termios);        
ffc0695c:	80 7e 00 10 	lwz     r3,16(r30)                             
ffc06960:	7f 84 e3 78 	mr      r4,r28                                 
ffc06964:	7c 09 03 a6 	mtctr   r0                                     
ffc06968:	4e 80 04 21 	bctrl                                          
ffc0696c:	4b ff fe 04 	b       ffc06770 <rtems_termios_ioctl+0x94>    
  case TIOCGETD:                                                      
    *(int*)(args->buffer)=tty->t_line;                                
    break;                                                            
#endif                                                                
   case FIONREAD: {                                                   
      int rawnc = tty->rawInBuf.Tail - tty->rawInBuf.Head;            
ffc06970:	81 3e 00 60 	lwz     r9,96(r30)                             <== NOT EXECUTED
ffc06974:	80 1e 00 5c 	lwz     r0,92(r30)                             <== NOT EXECUTED
      if ( rawnc < 0 )                                                
ffc06978:	7c 00 48 51 	subf.   r0,r0,r9                               <== NOT EXECUTED
ffc0697c:	41 80 00 ec 	blt-    ffc06a68 <rtems_termios_ioctl+0x38c>   <== NOT EXECUTED
        rawnc += tty->rawInBuf.Size;                                  
      /* Half guess that this is the right operation */               
      *(int *)args->buffer = tty->ccount - tty->cindex + rawnc;       
ffc06980:	81 5e 00 20 	lwz     r10,32(r30)                            <== NOT EXECUTED
ffc06984:	81 3e 00 24 	lwz     r9,36(r30)                             <== NOT EXECUTED
ffc06988:	81 7f 00 08 	lwz     r11,8(r31)                             <== NOT EXECUTED
ffc0698c:	7d 29 50 50 	subf    r9,r9,r10                              <== NOT EXECUTED
ffc06990:	7c 09 02 14 	add     r0,r9,r0                               <== NOT EXECUTED
ffc06994:	90 0b 00 00 	stw     r0,0(r11)                              <== NOT EXECUTED
    }                                                                 
    break;                                                            
ffc06998:	4b ff fd d8 	b       ffc06770 <rtems_termios_ioctl+0x94>    <== NOT EXECUTED
  sc = rtems_semaphore_obtain (tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
  if (sc != RTEMS_SUCCESSFUL) {                                       
    args->ioctl_return = sc;                                          
    return sc;                                                        
  }                                                                   
  switch (args->command) {                                            
ffc0699c:	2f 80 00 01 	cmpwi   cr7,r0,1                               
ffc069a0:	40 9e fe 28 	bne+    cr7,ffc067c8 <rtems_termios_ioctl+0xec><== NEVER TAKEN
      sc = RTEMS_INVALID_NUMBER;                                      
    }                                                                 
    break;                                                            
                                                                      
  case RTEMS_IO_GET_ATTRIBUTES:                                       
    *(struct termios *)args->buffer = tty->termios;                   
ffc069a4:	80 7f 00 08 	lwz     r3,8(r31)                              
ffc069a8:	38 9e 00 30 	addi    r4,r30,48                              
ffc069ac:	38 a0 00 24 	li      r5,36                                  
ffc069b0:	48 00 c3 f9 	bl      ffc12da8 <memcpy>                      
    break;                                                            
ffc069b4:	4b ff fd bc 	b       ffc06770 <rtems_termios_ioctl+0x94>    
  sc = rtems_semaphore_obtain (tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
  if (sc != RTEMS_SUCCESSFUL) {                                       
    args->ioctl_return = sc;                                          
    return sc;                                                        
  }                                                                   
  switch (args->command) {                                            
ffc069b8:	6c 09 40 04 	xoris   r9,r0,16388                            
ffc069bc:	2f 89 74 1a 	cmpwi   cr7,r9,29722                           
ffc069c0:	41 9e 00 78 	beq-    cr7,ffc06a38 <rtems_termios_ioctl+0x35c>
ffc069c4:	6c 09 80 04 	xoris   r9,r0,32772                            
ffc069c8:	2f 89 74 1b 	cmpwi   cr7,r9,29723                           
ffc069cc:	40 9e fd fc 	bne+    cr7,ffc067c8 <rtems_termios_ioctl+0xec><== NEVER TAKEN
#if 1 /* FIXME */                                                     
  case TIOCSETD:                                                      
    /*                                                                
     * close old line discipline                                      
     */                                                               
    if (rtems_termios_linesw[tty->t_line].l_close != NULL) {          
ffc069d0:	81 3e 00 cc 	lwz     r9,204(r30)                            
ffc069d4:	3f 80 00 00 	lis     r28,0                                  
ffc069d8:	3b 9c 27 d4 	addi    r28,r28,10196                          
ffc069dc:	55 29 28 34 	rlwinm  r9,r9,5,0,26                           
ffc069e0:	7d 3c 4a 14 	add     r9,r28,r9                              
ffc069e4:	80 09 00 04 	lwz     r0,4(r9)                               
ffc069e8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc069ec:	41 9e 00 14 	beq-    cr7,ffc06a00 <rtems_termios_ioctl+0x324>
      sc = rtems_termios_linesw[tty->t_line].l_close(tty);            
ffc069f0:	7f c3 f3 78 	mr      r3,r30                                 
ffc069f4:	7c 09 03 a6 	mtctr   r0                                     
ffc069f8:	4e 80 04 21 	bctrl                                          
ffc069fc:	7c 7d 1b 78 	mr      r29,r3                                 
    }                                                                 
    tty->t_line=*(int*)(args->buffer);                                
ffc06a00:	81 3f 00 08 	lwz     r9,8(r31)                              
    tty->t_sc = NULL; /* ensure that no more valid data */            
ffc06a04:	38 00 00 00 	li      r0,0                                   
     * close old line discipline                                      
     */                                                               
    if (rtems_termios_linesw[tty->t_line].l_close != NULL) {          
      sc = rtems_termios_linesw[tty->t_line].l_close(tty);            
    }                                                                 
    tty->t_line=*(int*)(args->buffer);                                
ffc06a08:	81 29 00 00 	lwz     r9,0(r9)                               
    tty->t_sc = NULL; /* ensure that no more valid data */            
ffc06a0c:	90 1e 00 d0 	stw     r0,208(r30)                            
    /*                                                                
     * open new line discipline                                       
     */                                                               
    if (rtems_termios_linesw[tty->t_line].l_open != NULL) {           
ffc06a10:	55 20 28 34 	rlwinm  r0,r9,5,0,26                           
ffc06a14:	7c 1c 00 2e 	lwzx    r0,r28,r0                              
     * close old line discipline                                      
     */                                                               
    if (rtems_termios_linesw[tty->t_line].l_close != NULL) {          
      sc = rtems_termios_linesw[tty->t_line].l_close(tty);            
    }                                                                 
    tty->t_line=*(int*)(args->buffer);                                
ffc06a18:	91 3e 00 cc 	stw     r9,204(r30)                            
    tty->t_sc = NULL; /* ensure that no more valid data */            
    /*                                                                
     * open new line discipline                                       
     */                                                               
    if (rtems_termios_linesw[tty->t_line].l_open != NULL) {           
ffc06a1c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc06a20:	41 be fd 50 	beq-    cr7,ffc06770 <rtems_termios_ioctl+0x94><== NEVER TAKEN
      sc = rtems_termios_linesw[tty->t_line].l_open(tty);             
ffc06a24:	7f c3 f3 78 	mr      r3,r30                                 
ffc06a28:	7c 09 03 a6 	mtctr   r0                                     
ffc06a2c:	4e 80 04 21 	bctrl                                          
ffc06a30:	7c 7d 1b 78 	mr      r29,r3                                 
ffc06a34:	4b ff fd 3c 	b       ffc06770 <rtems_termios_ioctl+0x94>    
    }                                                                 
    break;                                                            
  case TIOCGETD:                                                      
    *(int*)(args->buffer)=tty->t_line;                                
ffc06a38:	81 3f 00 08 	lwz     r9,8(r31)                              
ffc06a3c:	80 1e 00 cc 	lwz     r0,204(r30)                            
ffc06a40:	90 09 00 00 	stw     r0,0(r9)                               
    break;                                                            
ffc06a44:	4b ff fd 2c 	b       ffc06770 <rtems_termios_ioctl+0x94>    
  case RTEMS_IO_TCDRAIN:                                              
    drainOutput (tty);                                                
    break;                                                            
                                                                      
  case RTEMS_IO_SNDWAKEUP:                                            
    tty->tty_snd = *wakeup;                                           
ffc06a48:	81 3c 00 00 	lwz     r9,0(r28)                              
ffc06a4c:	81 5c 00 04 	lwz     r10,4(r28)                             
ffc06a50:	91 3e 00 d4 	stw     r9,212(r30)                            
ffc06a54:	91 5e 00 d8 	stw     r10,216(r30)                           
    break;                                                            
ffc06a58:	4b ff fd 18 	b       ffc06770 <rtems_termios_ioctl+0x94>    
    /* FIXME: what happens, if we had sent XOFF but not yet XON? */   
    tty->flow_ctrl &= ~(FL_ISNTXOF);                                  
  }                                                                   
                                                                      
  /* check for incoming RTS/CTS flow control switched off */          
  if (( tty->flow_ctrl & FL_MDRTS) && !(tty->termios.c_cflag & CRTSCTS)) {
ffc06a5c:	80 1e 00 38 	lwz     r0,56(r30)                             
ffc06a60:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc06a64:	4b ff fe a0 	b       ffc06904 <rtems_termios_ioctl+0x228>   
    break;                                                            
#endif                                                                
   case FIONREAD: {                                                   
      int rawnc = tty->rawInBuf.Tail - tty->rawInBuf.Head;            
      if ( rawnc < 0 )                                                
        rawnc += tty->rawInBuf.Size;                                  
ffc06a68:	81 3e 00 64 	lwz     r9,100(r30)                            <== NOT EXECUTED
ffc06a6c:	7c 00 4a 14 	add     r0,r0,r9                               <== NOT EXECUTED
ffc06a70:	4b ff ff 10 	b       ffc06980 <rtems_termios_ioctl+0x2a4>   <== NOT EXECUTED
      tty->flow_ctrl &= ~FL_OSTOP;                                    
      /* check for chars in output buffer (or rob_state?) */          
      if (tty->rawOutBufState != rob_idle) {                          
        /* if chars available, call write function... */              
        (*tty->device.write)(                                         
          tty->minor, &tty->rawOutBuf.theBuf[tty->rawOutBuf.Tail],1); 
ffc06a74:	81 3e 00 84 	lwz     r9,132(r30)                            <== NOT EXECUTED
      rtems_interrupt_disable(level);                                 
      tty->flow_ctrl &= ~FL_OSTOP;                                    
      /* check for chars in output buffer (or rob_state?) */          
      if (tty->rawOutBufState != rob_idle) {                          
        /* if chars available, call write function... */              
        (*tty->device.write)(                                         
ffc06a78:	38 a0 00 01 	li      r5,1                                   <== NOT EXECUTED
ffc06a7c:	80 9e 00 7c 	lwz     r4,124(r30)                            <== NOT EXECUTED
ffc06a80:	80 1e 00 a4 	lwz     r0,164(r30)                            <== NOT EXECUTED
ffc06a84:	80 7e 00 10 	lwz     r3,16(r30)                             <== NOT EXECUTED
ffc06a88:	7c 84 4a 14 	add     r4,r4,r9                               <== NOT EXECUTED
ffc06a8c:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc06a90:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
ffc06a94:	7f 60 01 24 	mtmsr   r27                                    <== NOT EXECUTED
ffc06a98:	4b ff fd e0 	b       ffc06878 <rtems_termios_ioctl+0x19c>   <== NOT EXECUTED
    if (tty->termios.c_lflag & ICANON) {                              
      tty->rawInBufSemaphoreOptions = RTEMS_WAIT;                     
      tty->rawInBufSemaphoreTimeout = RTEMS_NO_TIMEOUT;               
      tty->rawInBufSemaphoreFirstTimeout = RTEMS_NO_TIMEOUT;          
    } else {                                                          
      tty->vtimeTicks = tty->termios.c_cc[VTIME] *                    
ffc06a9c:	8b 5e 00 46 	lbz     r26,70(r30)                            
                    rtems_clock_get_ticks_per_second() / 10;          
ffc06aa0:	48 00 1b 99 	bl      ffc08638 <rtems_clock_get_ticks_per_second>
      if (tty->termios.c_cc[VTIME]) {                                 
ffc06aa4:	89 3e 00 46 	lbz     r9,70(r30)                             
      tty->rawInBufSemaphoreOptions = RTEMS_WAIT;                     
      tty->rawInBufSemaphoreTimeout = RTEMS_NO_TIMEOUT;               
      tty->rawInBufSemaphoreFirstTimeout = RTEMS_NO_TIMEOUT;          
    } else {                                                          
      tty->vtimeTicks = tty->termios.c_cc[VTIME] *                    
                    rtems_clock_get_ticks_per_second() / 10;          
ffc06aa8:	3c 00 cc cc 	lis     r0,-13108                              
    if (tty->termios.c_lflag & ICANON) {                              
      tty->rawInBufSemaphoreOptions = RTEMS_WAIT;                     
      tty->rawInBufSemaphoreTimeout = RTEMS_NO_TIMEOUT;               
      tty->rawInBufSemaphoreFirstTimeout = RTEMS_NO_TIMEOUT;          
    } else {                                                          
      tty->vtimeTicks = tty->termios.c_cc[VTIME] *                    
ffc06aac:	7c 63 d1 d6 	mullw   r3,r3,r26                              
                    rtems_clock_get_ticks_per_second() / 10;          
ffc06ab0:	60 00 cc cd 	ori     r0,r0,52429                            
      if (tty->termios.c_cc[VTIME]) {                                 
ffc06ab4:	2f 89 00 00 	cmpwi   cr7,r9,0                               
      tty->rawInBufSemaphoreOptions = RTEMS_WAIT;                     
      tty->rawInBufSemaphoreTimeout = RTEMS_NO_TIMEOUT;               
      tty->rawInBufSemaphoreFirstTimeout = RTEMS_NO_TIMEOUT;          
    } else {                                                          
      tty->vtimeTicks = tty->termios.c_cc[VTIME] *                    
                    rtems_clock_get_ticks_per_second() / 10;          
ffc06ab8:	7c 03 00 16 	mulhwu  r0,r3,r0                               
ffc06abc:	54 00 e8 fe 	rlwinm  r0,r0,29,3,31                          
    if (tty->termios.c_lflag & ICANON) {                              
      tty->rawInBufSemaphoreOptions = RTEMS_WAIT;                     
      tty->rawInBufSemaphoreTimeout = RTEMS_NO_TIMEOUT;               
      tty->rawInBufSemaphoreFirstTimeout = RTEMS_NO_TIMEOUT;          
    } else {                                                          
      tty->vtimeTicks = tty->termios.c_cc[VTIME] *                    
ffc06ac0:	90 1e 00 54 	stw     r0,84(r30)                             
                    rtems_clock_get_ticks_per_second() / 10;          
      if (tty->termios.c_cc[VTIME]) {                                 
ffc06ac4:	41 9e 00 30 	beq-    cr7,ffc06af4 <rtems_termios_ioctl+0x418>
        tty->rawInBufSemaphoreOptions = RTEMS_WAIT;                   
        tty->rawInBufSemaphoreTimeout = tty->vtimeTicks;              
        if (tty->termios.c_cc[VMIN])                                  
ffc06ac8:	89 3e 00 47 	lbz     r9,71(r30)                             
      tty->rawInBufSemaphoreFirstTimeout = RTEMS_NO_TIMEOUT;          
    } else {                                                          
      tty->vtimeTicks = tty->termios.c_cc[VTIME] *                    
                    rtems_clock_get_ticks_per_second() / 10;          
      if (tty->termios.c_cc[VTIME]) {                                 
        tty->rawInBufSemaphoreOptions = RTEMS_WAIT;                   
ffc06acc:	93 7e 00 6c 	stw     r27,108(r30)                           
        tty->rawInBufSemaphoreTimeout = tty->vtimeTicks;              
        if (tty->termios.c_cc[VMIN])                                  
ffc06ad0:	2f 89 00 00 	cmpwi   cr7,r9,0                               
    } else {                                                          
      tty->vtimeTicks = tty->termios.c_cc[VTIME] *                    
                    rtems_clock_get_ticks_per_second() / 10;          
      if (tty->termios.c_cc[VTIME]) {                                 
        tty->rawInBufSemaphoreOptions = RTEMS_WAIT;                   
        tty->rawInBufSemaphoreTimeout = tty->vtimeTicks;              
ffc06ad4:	90 1e 00 70 	stw     r0,112(r30)                            
        if (tty->termios.c_cc[VMIN])                                  
ffc06ad8:	41 9e 00 38 	beq-    cr7,ffc06b10 <rtems_termios_ioctl+0x434>
          tty->rawInBufSemaphoreFirstTimeout = RTEMS_NO_TIMEOUT;      
ffc06adc:	93 7e 00 74 	stw     r27,116(r30)                           
ffc06ae0:	4b ff fe 70 	b       ffc06950 <rtems_termios_ioctl+0x274>   
  /*                                                                  
   * check for flow control options to be switched on                 
   */                                                                 
  /* check for incoming RTS/CTS flow control switched on */           
  if (tty->termios.c_cflag & CRTSCTS) {                               
    tty->flow_ctrl |= FL_MDRTS;                                       
ffc06ae4:	80 1e 00 b8 	lwz     r0,184(r30)                            <== NOT EXECUTED
ffc06ae8:	60 00 01 00 	ori     r0,r0,256                              <== NOT EXECUTED
ffc06aec:	90 1e 00 b8 	stw     r0,184(r30)                            <== NOT EXECUTED
ffc06af0:	4b ff fe 18 	b       ffc06908 <rtems_termios_ioctl+0x22c>   <== NOT EXECUTED
        if (tty->termios.c_cc[VMIN])                                  
          tty->rawInBufSemaphoreFirstTimeout = RTEMS_NO_TIMEOUT;      
        else                                                          
          tty->rawInBufSemaphoreFirstTimeout = tty->vtimeTicks;       
      } else {                                                        
        if (tty->termios.c_cc[VMIN]) {                                
ffc06af4:	88 1e 00 47 	lbz     r0,71(r30)                             
ffc06af8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc06afc:	41 9e 00 1c 	beq-    cr7,ffc06b18 <rtems_termios_ioctl+0x43c><== ALWAYS TAKEN
          tty->rawInBufSemaphoreOptions = RTEMS_WAIT;                 
ffc06b00:	91 3e 00 6c 	stw     r9,108(r30)                            <== NOT EXECUTED
          tty->rawInBufSemaphoreTimeout = RTEMS_NO_TIMEOUT;           
ffc06b04:	91 3e 00 70 	stw     r9,112(r30)                            <== NOT EXECUTED
          tty->rawInBufSemaphoreFirstTimeout = RTEMS_NO_TIMEOUT;      
ffc06b08:	91 3e 00 74 	stw     r9,116(r30)                            <== NOT EXECUTED
ffc06b0c:	4b ff fe 44 	b       ffc06950 <rtems_termios_ioctl+0x274>   <== NOT EXECUTED
        tty->rawInBufSemaphoreOptions = RTEMS_WAIT;                   
        tty->rawInBufSemaphoreTimeout = tty->vtimeTicks;              
        if (tty->termios.c_cc[VMIN])                                  
          tty->rawInBufSemaphoreFirstTimeout = RTEMS_NO_TIMEOUT;      
        else                                                          
          tty->rawInBufSemaphoreFirstTimeout = tty->vtimeTicks;       
ffc06b10:	90 1e 00 74 	stw     r0,116(r30)                            
ffc06b14:	4b ff fe 3c 	b       ffc06950 <rtems_termios_ioctl+0x274>   
        if (tty->termios.c_cc[VMIN]) {                                
          tty->rawInBufSemaphoreOptions = RTEMS_WAIT;                 
          tty->rawInBufSemaphoreTimeout = RTEMS_NO_TIMEOUT;           
          tty->rawInBufSemaphoreFirstTimeout = RTEMS_NO_TIMEOUT;      
        } else {                                                      
          tty->rawInBufSemaphoreOptions = RTEMS_NO_WAIT;              
ffc06b18:	38 00 00 01 	li      r0,1                                   
ffc06b1c:	90 1e 00 6c 	stw     r0,108(r30)                            
ffc06b20:	4b ff fe 30 	b       ffc06950 <rtems_termios_ioctl+0x274>   
                                                                      

ffc06028 <rtems_termios_open>: rtems_device_major_number major, rtems_device_minor_number minor, void *arg, const rtems_termios_callbacks *callbacks ) {
ffc06028:	94 21 ff c0 	stwu    r1,-64(r1)                             
ffc0602c:	7d 80 00 26 	mfcr    r12                                    
ffc06030:	7c 08 02 a6 	mflr    r0                                     
ffc06034:	93 81 00 30 	stw     r28,48(r1)                             
  struct rtems_termios_tty *tty;                                      
                                                                      
  /*                                                                  
   * See if the device has already been opened                        
   */                                                                 
  sc = rtems_semaphore_obtain(                                        
ffc06038:	3f 80 00 00 	lis     r28,0                                  
  rtems_device_major_number      major,                               
  rtems_device_minor_number      minor,                               
  void                          *arg,                                 
  const rtems_termios_callbacks *callbacks                            
)                                                                     
{                                                                     
ffc0603c:	93 c1 00 38 	stw     r30,56(r1)                             
ffc06040:	7c 7e 1b 78 	mr      r30,r3                                 
  struct rtems_termios_tty *tty;                                      
                                                                      
  /*                                                                  
   * See if the device has already been opened                        
   */                                                                 
  sc = rtems_semaphore_obtain(                                        
ffc06044:	80 7c 27 18 	lwz     r3,10008(r28)                          
  rtems_device_major_number      major,                               
  rtems_device_minor_number      minor,                               
  void                          *arg,                                 
  const rtems_termios_callbacks *callbacks                            
)                                                                     
{                                                                     
ffc06048:	93 41 00 28 	stw     r26,40(r1)                             
ffc0604c:	7c ba 2b 78 	mr      r26,r5                                 
  struct rtems_termios_tty *tty;                                      
                                                                      
  /*                                                                  
   * See if the device has already been opened                        
   */                                                                 
  sc = rtems_semaphore_obtain(                                        
ffc06050:	38 a0 00 00 	li      r5,0                                   
  rtems_device_major_number      major,                               
  rtems_device_minor_number      minor,                               
  void                          *arg,                                 
  const rtems_termios_callbacks *callbacks                            
)                                                                     
{                                                                     
ffc06054:	93 a1 00 34 	stw     r29,52(r1)                             
ffc06058:	7c 9d 23 78 	mr      r29,r4                                 
  struct rtems_termios_tty *tty;                                      
                                                                      
  /*                                                                  
   * See if the device has already been opened                        
   */                                                                 
  sc = rtems_semaphore_obtain(                                        
ffc0605c:	38 80 00 00 	li      r4,0                                   
  rtems_device_major_number      major,                               
  rtems_device_minor_number      minor,                               
  void                          *arg,                                 
  const rtems_termios_callbacks *callbacks                            
)                                                                     
{                                                                     
ffc06060:	92 e1 00 1c 	stw     r23,28(r1)                             
ffc06064:	7c d7 33 78 	mr      r23,r6                                 
ffc06068:	93 61 00 2c 	stw     r27,44(r1)                             
ffc0606c:	90 01 00 44 	stw     r0,68(r1)                              
ffc06070:	92 61 00 0c 	stw     r19,12(r1)                             
ffc06074:	92 81 00 10 	stw     r20,16(r1)                             
ffc06078:	92 a1 00 14 	stw     r21,20(r1)                             
ffc0607c:	92 c1 00 18 	stw     r22,24(r1)                             
ffc06080:	93 01 00 20 	stw     r24,32(r1)                             
ffc06084:	93 21 00 24 	stw     r25,36(r1)                             
ffc06088:	93 e1 00 3c 	stw     r31,60(r1)                             
ffc0608c:	91 81 00 08 	stw     r12,8(r1)                              
  struct rtems_termios_tty *tty;                                      
                                                                      
  /*                                                                  
   * See if the device has already been opened                        
   */                                                                 
  sc = rtems_semaphore_obtain(                                        
ffc06090:	48 00 2d f1 	bl      ffc08e80 <rtems_semaphore_obtain>      
    rtems_termios_ttyMutex, RTEMS_WAIT, RTEMS_NO_TIMEOUT);            
  if (sc != RTEMS_SUCCESSFUL)                                         
ffc06094:	7c 7b 1b 79 	mr.     r27,r3                                 
ffc06098:	40 82 00 90 	bne-    ffc06128 <rtems_termios_open+0x100>    <== NEVER TAKEN
    return sc;                                                        
                                                                      
  for (tty = rtems_termios_ttyHead ; tty != NULL ; tty = tty->forw) { 
ffc0609c:	3e a0 00 00 	lis     r21,0                                  
ffc060a0:	82 d5 27 20 	lwz     r22,10016(r21)                         
ffc060a4:	2e 16 00 00 	cmpwi   cr4,r22,0                              
ffc060a8:	41 92 01 0c 	beq-    cr4,ffc061b4 <rtems_termios_open+0x18c>
ffc060ac:	7e df b3 78 	mr      r31,r22                                
ffc060b0:	48 00 00 10 	b       ffc060c0 <rtems_termios_open+0x98>     
ffc060b4:	83 ff 00 00 	lwz     r31,0(r31)                             
ffc060b8:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
ffc060bc:	41 9e 00 f8 	beq-    cr7,ffc061b4 <rtems_termios_open+0x18c><== ALWAYS TAKEN
    if ((tty->major == major) && (tty->minor == minor))               
ffc060c0:	80 1f 00 0c 	lwz     r0,12(r31)                             
ffc060c4:	7f 80 f0 00 	cmpw    cr7,r0,r30                             
ffc060c8:	40 9e ff ec 	bne+    cr7,ffc060b4 <rtems_termios_open+0x8c> 
ffc060cc:	80 1f 00 10 	lwz     r0,16(r31)                             
ffc060d0:	7f 80 e8 00 	cmpw    cr7,r0,r29                             
ffc060d4:	40 9e ff e0 	bne+    cr7,ffc060b4 <rtems_termios_open+0x8c> <== NEVER TAKEN
    if (c++ == 'z')                                                   
      c = 'a';                                                        
                                                                      
  }                                                                   
  args->iop->data1 = tty;                                             
  if (!tty->refcount++) {                                             
ffc060d8:	81 3f 00 08 	lwz     r9,8(r31)                              
     */                                                               
    if (c++ == 'z')                                                   
      c = 'a';                                                        
                                                                      
  }                                                                   
  args->iop->data1 = tty;                                             
ffc060dc:	81 7a 00 00 	lwz     r11,0(r26)                             
  if (!tty->refcount++) {                                             
ffc060e0:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc060e4:	39 29 00 01 	addi    r9,r9,1                                
     */                                                               
    if (c++ == 'z')                                                   
      c = 'a';                                                        
                                                                      
  }                                                                   
  args->iop->data1 = tty;                                             
ffc060e8:	93 eb 00 38 	stw     r31,56(r11)                            
  if (!tty->refcount++) {                                             
ffc060ec:	91 3f 00 08 	stw     r9,8(r31)                              
ffc060f0:	40 9e 00 30 	bne-    cr7,ffc06120 <rtems_termios_open+0xf8> 
    if (tty->device.firstOpen)                                        
ffc060f4:	80 1f 00 98 	lwz     r0,152(r31)                            
ffc060f8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc060fc:	41 9e 00 18 	beq-    cr7,ffc06114 <rtems_termios_open+0xec> <== ALWAYS TAKEN
      (*tty->device.firstOpen)(major, minor, arg);                    
ffc06100:	7f c3 f3 78 	mr      r3,r30                                 <== NOT EXECUTED
ffc06104:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc06108:	7f a4 eb 78 	mr      r4,r29                                 <== NOT EXECUTED
ffc0610c:	7f 45 d3 78 	mr      r5,r26                                 <== NOT EXECUTED
ffc06110:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
                                                                      
    /*                                                                
     * start I/O tasks, if needed                                     
     */                                                               
    if (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN) {    
ffc06114:	80 1f 00 b4 	lwz     r0,180(r31)                            
ffc06118:	2f 80 00 02 	cmpwi   cr7,r0,2                               
ffc0611c:	41 9e 00 5c 	beq-    cr7,ffc06178 <rtems_termios_open+0x150>
        tty->txTaskId, rtems_termios_txdaemon, (rtems_task_argument)tty);
      if (sc != RTEMS_SUCCESSFUL)                                     
        rtems_fatal_error_occurred (sc);                              
    }                                                                 
  }                                                                   
  rtems_semaphore_release (rtems_termios_ttyMutex);                   
ffc06120:	80 7c 27 18 	lwz     r3,10008(r28)                          
ffc06124:	48 00 2e e5 	bl      ffc09008 <rtems_semaphore_release>     
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
ffc06128:	80 01 00 44 	lwz     r0,68(r1)                              
ffc0612c:	7f 63 db 78 	mr      r3,r27                                 
ffc06130:	81 81 00 08 	lwz     r12,8(r1)                              
ffc06134:	7c 08 03 a6 	mtlr    r0                                     
ffc06138:	82 61 00 0c 	lwz     r19,12(r1)                             
ffc0613c:	82 81 00 10 	lwz     r20,16(r1)                             
ffc06140:	7d 80 81 20 	mtcrf   8,r12                                  
ffc06144:	82 a1 00 14 	lwz     r21,20(r1)                             
ffc06148:	82 c1 00 18 	lwz     r22,24(r1)                             
ffc0614c:	82 e1 00 1c 	lwz     r23,28(r1)                             
ffc06150:	83 01 00 20 	lwz     r24,32(r1)                             
ffc06154:	83 21 00 24 	lwz     r25,36(r1)                             
ffc06158:	83 41 00 28 	lwz     r26,40(r1)                             
ffc0615c:	83 61 00 2c 	lwz     r27,44(r1)                             
ffc06160:	83 81 00 30 	lwz     r28,48(r1)                             
ffc06164:	83 a1 00 34 	lwz     r29,52(r1)                             
ffc06168:	83 c1 00 38 	lwz     r30,56(r1)                             
ffc0616c:	83 e1 00 3c 	lwz     r31,60(r1)                             
ffc06170:	38 21 00 40 	addi    r1,r1,64                               
ffc06174:	4e 80 00 20 	blr                                            
                                                                      
    /*                                                                
     * start I/O tasks, if needed                                     
     */                                                               
    if (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN) {    
      sc = rtems_task_start(                                          
ffc06178:	80 7f 00 c4 	lwz     r3,196(r31)                            
ffc0617c:	3c 80 ff c0 	lis     r4,-64                                 
ffc06180:	38 84 7d 78 	addi    r4,r4,32120                            
ffc06184:	7f e5 fb 78 	mr      r5,r31                                 
ffc06188:	48 00 33 1d 	bl      ffc094a4 <rtems_task_start>            
        tty->rxTaskId, rtems_termios_rxdaemon, (rtems_task_argument)tty);
      if (sc != RTEMS_SUCCESSFUL)                                     
ffc0618c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc06190:	40 9e 02 dc 	bne-    cr7,ffc0646c <rtems_termios_open+0x444><== NEVER TAKEN
        rtems_fatal_error_occurred (sc);                              
                                                                      
      sc = rtems_task_start(                                          
ffc06194:	80 7f 00 c8 	lwz     r3,200(r31)                            
ffc06198:	3c 80 ff c1 	lis     r4,-63                                 
ffc0619c:	38 84 80 a8 	addi    r4,r4,-32600                           
ffc061a0:	7f e5 fb 78 	mr      r5,r31                                 
ffc061a4:	48 00 33 01 	bl      ffc094a4 <rtems_task_start>            
        tty->txTaskId, rtems_termios_txdaemon, (rtems_task_argument)tty);
      if (sc != RTEMS_SUCCESSFUL)                                     
ffc061a8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc061ac:	41 9e ff 74 	beq+    cr7,ffc06120 <rtems_termios_open+0xf8> <== ALWAYS TAKEN
ffc061b0:	48 00 02 bc 	b       ffc0646c <rtems_termios_open+0x444>    <== NOT EXECUTED
    static char c = 'a';                                              
                                                                      
    /*                                                                
     * Create a new device                                            
     */                                                               
    tty = calloc (1, sizeof (struct rtems_termios_tty));              
ffc061b4:	38 60 00 01 	li      r3,1                                   
ffc061b8:	38 80 00 e8 	li      r4,232                                 
ffc061bc:	4b ff e8 15 	bl      ffc049d0 <calloc>                      
    if (tty == NULL) {                                                
ffc061c0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
    static char c = 'a';                                              
                                                                      
    /*                                                                
     * Create a new device                                            
     */                                                               
    tty = calloc (1, sizeof (struct rtems_termios_tty));              
ffc061c4:	7c 79 1b 78 	mr      r25,r3                                 
ffc061c8:	7c 7f 1b 78 	mr      r31,r3                                 
    if (tty == NULL) {                                                
ffc061cc:	41 9e 02 68 	beq-    cr7,ffc06434 <rtems_termios_open+0x40c>
      return RTEMS_NO_MEMORY;                                         
    }                                                                 
    /*                                                                
     * allocate raw input buffer                                      
     */                                                               
    tty->rawInBuf.Size = RAW_INPUT_BUFFER_SIZE;                       
ffc061d0:	3f 00 00 00 	lis     r24,0                                  
ffc061d4:	80 18 21 74 	lwz     r0,8564(r24)                           
ffc061d8:	3b 18 21 74 	addi    r24,r24,8564                           
ffc061dc:	90 03 00 64 	stw     r0,100(r3)                             
    tty->rawInBuf.theBuf = malloc (tty->rawInBuf.Size);               
ffc061e0:	80 63 00 64 	lwz     r3,100(r3)                             
ffc061e4:	4b ff ee b5 	bl      ffc05098 <malloc>                      
    if (tty->rawInBuf.theBuf == NULL) {                               
ffc061e8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
    }                                                                 
    /*                                                                
     * allocate raw input buffer                                      
     */                                                               
    tty->rawInBuf.Size = RAW_INPUT_BUFFER_SIZE;                       
    tty->rawInBuf.theBuf = malloc (tty->rawInBuf.Size);               
ffc061ec:	90 79 00 58 	stw     r3,88(r25)                             
ffc061f0:	7c 74 1b 78 	mr      r20,r3                                 
    if (tty->rawInBuf.theBuf == NULL) {                               
ffc061f4:	41 9e 02 38 	beq-    cr7,ffc0642c <rtems_termios_open+0x404>
      return RTEMS_NO_MEMORY;                                         
    }                                                                 
    /*                                                                
     * allocate raw output buffer                                     
     */                                                               
    tty->rawOutBuf.Size = RAW_OUTPUT_BUFFER_SIZE;                     
ffc061f8:	80 18 00 04 	lwz     r0,4(r24)                              
ffc061fc:	90 19 00 88 	stw     r0,136(r25)                            
    tty->rawOutBuf.theBuf = malloc (tty->rawOutBuf.Size);             
ffc06200:	80 79 00 88 	lwz     r3,136(r25)                            
ffc06204:	4b ff ee 95 	bl      ffc05098 <malloc>                      
    if (tty->rawOutBuf.theBuf == NULL) {                              
ffc06208:	2f 83 00 00 	cmpwi   cr7,r3,0                               
    }                                                                 
    /*                                                                
     * allocate raw output buffer                                     
     */                                                               
    tty->rawOutBuf.Size = RAW_OUTPUT_BUFFER_SIZE;                     
    tty->rawOutBuf.theBuf = malloc (tty->rawOutBuf.Size);             
ffc0620c:	90 79 00 7c 	stw     r3,124(r25)                            
ffc06210:	7c 73 1b 78 	mr      r19,r3                                 
    if (tty->rawOutBuf.theBuf == NULL) {                              
ffc06214:	41 9e 02 10 	beq-    cr7,ffc06424 <rtems_termios_open+0x3fc>
      return RTEMS_NO_MEMORY;                                         
    }                                                                 
    /*                                                                
     * allocate cooked buffer                                         
     */                                                               
    tty->cbuf  = malloc (CBUFSIZE);                                   
ffc06218:	80 78 00 08 	lwz     r3,8(r24)                              
ffc0621c:	4b ff ee 7d 	bl      ffc05098 <malloc>                      
    if (tty->cbuf == NULL) {                                          
ffc06220:	2f 83 00 00 	cmpwi   cr7,r3,0                               
      return RTEMS_NO_MEMORY;                                         
    }                                                                 
    /*                                                                
     * allocate cooked buffer                                         
     */                                                               
    tty->cbuf  = malloc (CBUFSIZE);                                   
ffc06224:	90 79 00 1c 	stw     r3,28(r25)                             
    if (tty->cbuf == NULL) {                                          
ffc06228:	41 9e 01 f4 	beq-    cr7,ffc0641c <rtems_termios_open+0x3f4><== NEVER TAKEN
      return RTEMS_NO_MEMORY;                                         
    }                                                                 
    /*                                                                
     * Initialize wakeup callbacks                                    
     */                                                               
    tty->tty_snd.sw_pfn = NULL;                                       
ffc0622c:	38 00 00 00 	li      r0,0                                   
    tty->tty_rcvwakeup  = 0;                                          
                                                                      
    /*                                                                
     * link tty                                                       
     */                                                               
    tty->forw = rtems_termios_ttyHead;                                
ffc06230:	92 d9 00 00 	stw     r22,0(r25)                             
      return RTEMS_NO_MEMORY;                                         
    }                                                                 
    /*                                                                
     * Initialize wakeup callbacks                                    
     */                                                               
    tty->tty_snd.sw_pfn = NULL;                                       
ffc06234:	90 19 00 d4 	stw     r0,212(r25)                            
    tty->tty_snd.sw_arg = NULL;                                       
ffc06238:	90 19 00 d8 	stw     r0,216(r25)                            
    tty->tty_rcv.sw_pfn = NULL;                                       
ffc0623c:	90 19 00 dc 	stw     r0,220(r25)                            
    tty->tty_rcv.sw_arg = NULL;                                       
ffc06240:	90 19 00 e0 	stw     r0,224(r25)                            
    tty->tty_rcvwakeup  = 0;                                          
ffc06244:	90 19 00 e4 	stw     r0,228(r25)                            
                                                                      
    /*                                                                
     * link tty                                                       
     */                                                               
    tty->forw = rtems_termios_ttyHead;                                
    tty->back = NULL;                                                 
ffc06248:	90 19 00 04 	stw     r0,4(r25)                              
    if (rtems_termios_ttyHead != NULL)                                
ffc0624c:	41 92 00 08 	beq-    cr4,ffc06254 <rtems_termios_open+0x22c>
      rtems_termios_ttyHead->back = tty;                              
ffc06250:	93 36 00 04 	stw     r25,4(r22)                             
    rtems_termios_ttyHead = tty;                                      
    if (rtems_termios_ttyTail == NULL)                                
ffc06254:	3d 20 00 00 	lis     r9,0                                   
     */                                                               
    tty->forw = rtems_termios_ttyHead;                                
    tty->back = NULL;                                                 
    if (rtems_termios_ttyHead != NULL)                                
      rtems_termios_ttyHead->back = tty;                              
    rtems_termios_ttyHead = tty;                                      
ffc06258:	93 35 27 20 	stw     r25,10016(r21)                         
    if (rtems_termios_ttyTail == NULL)                                
ffc0625c:	80 09 27 1c 	lwz     r0,10012(r9)                           
ffc06260:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc06264:	41 9e 02 68 	beq-    cr7,ffc064cc <rtems_termios_open+0x4a4>
                                                                      
    /*                                                                
     * Set up mutex semaphores                                        
     */                                                               
    sc = rtems_semaphore_create (                                     
      rtems_build_name ('T', 'R', 'i', c),                            
ffc06268:	88 78 00 0c 	lbz     r3,12(r24)                             
    tty->major = major;                                               
                                                                      
    /*                                                                
     * Set up mutex semaphores                                        
     */                                                               
    sc = rtems_semaphore_create (                                     
ffc0626c:	38 80 00 01 	li      r4,1                                   
ffc06270:	38 a0 00 54 	li      r5,84                                  
      rtems_termios_ttyHead->back = tty;                              
    rtems_termios_ttyHead = tty;                                      
    if (rtems_termios_ttyTail == NULL)                                
      rtems_termios_ttyTail = tty;                                    
                                                                      
    tty->minor = minor;                                               
ffc06274:	93 b9 00 10 	stw     r29,16(r25)                            
    tty->major = major;                                               
                                                                      
    /*                                                                
     * Set up mutex semaphores                                        
     */                                                               
    sc = rtems_semaphore_create (                                     
ffc06278:	64 63 54 52 	oris    r3,r3,21586                            
ffc0627c:	60 63 69 00 	ori     r3,r3,26880                            
    rtems_termios_ttyHead = tty;                                      
    if (rtems_termios_ttyTail == NULL)                                
      rtems_termios_ttyTail = tty;                                    
                                                                      
    tty->minor = minor;                                               
    tty->major = major;                                               
ffc06280:	93 d9 00 0c 	stw     r30,12(r25)                            
                                                                      
    /*                                                                
     * Set up mutex semaphores                                        
     */                                                               
    sc = rtems_semaphore_create (                                     
ffc06284:	38 c0 00 00 	li      r6,0                                   
ffc06288:	38 f9 00 14 	addi    r7,r25,20                              
ffc0628c:	48 00 28 f5 	bl      ffc08b80 <rtems_semaphore_create>      
      rtems_build_name ('T', 'R', 'i', c),                            
      1,                                                              
      RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY,
      RTEMS_NO_PRIORITY,                                              
      &tty->isem);                                                    
    if (sc != RTEMS_SUCCESSFUL)                                       
ffc06290:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc06294:	40 9e 01 d8 	bne-    cr7,ffc0646c <rtems_termios_open+0x444>
      rtems_fatal_error_occurred (sc);                                
    sc = rtems_semaphore_create (                                     
      rtems_build_name ('T', 'R', 'o', c),                            
ffc06298:	88 78 00 0c 	lbz     r3,12(r24)                             
      RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY,
      RTEMS_NO_PRIORITY,                                              
      &tty->isem);                                                    
    if (sc != RTEMS_SUCCESSFUL)                                       
      rtems_fatal_error_occurred (sc);                                
    sc = rtems_semaphore_create (                                     
ffc0629c:	38 80 00 01 	li      r4,1                                   
ffc062a0:	38 a0 00 54 	li      r5,84                                  
ffc062a4:	64 63 54 52 	oris    r3,r3,21586                            
ffc062a8:	60 63 6f 00 	ori     r3,r3,28416                            
ffc062ac:	38 c0 00 00 	li      r6,0                                   
ffc062b0:	38 f9 00 18 	addi    r7,r25,24                              
ffc062b4:	48 00 28 cd 	bl      ffc08b80 <rtems_semaphore_create>      
      rtems_build_name ('T', 'R', 'o', c),                            
      1,                                                              
      RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY,
      RTEMS_NO_PRIORITY,                                              
      &tty->osem);                                                    
    if (sc != RTEMS_SUCCESSFUL)                                       
ffc062b8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc062bc:	40 9e 01 b0 	bne-    cr7,ffc0646c <rtems_termios_open+0x444>
      rtems_fatal_error_occurred (sc);                                
    sc = rtems_semaphore_create (                                     
      rtems_build_name ('T', 'R', 'x', c),                            
ffc062c0:	88 78 00 0c 	lbz     r3,12(r24)                             
      RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY | RTEMS_PRIORITY,
      RTEMS_NO_PRIORITY,                                              
      &tty->osem);                                                    
    if (sc != RTEMS_SUCCESSFUL)                                       
      rtems_fatal_error_occurred (sc);                                
    sc = rtems_semaphore_create (                                     
ffc062c4:	38 80 00 00 	li      r4,0                                   
ffc062c8:	38 a0 00 20 	li      r5,32                                  
ffc062cc:	64 63 54 52 	oris    r3,r3,21586                            
ffc062d0:	60 63 78 00 	ori     r3,r3,30720                            
ffc062d4:	38 c0 00 00 	li      r6,0                                   
ffc062d8:	38 f9 00 8c 	addi    r7,r25,140                             
ffc062dc:	48 00 28 a5 	bl      ffc08b80 <rtems_semaphore_create>      
      rtems_build_name ('T', 'R', 'x', c),                            
      0,                                                              
      RTEMS_SIMPLE_BINARY_SEMAPHORE | RTEMS_FIFO,                     
      RTEMS_NO_PRIORITY,                                              
      &tty->rawOutBuf.Semaphore);                                     
    if (sc != RTEMS_SUCCESSFUL)                                       
ffc062e0:	7c 60 1b 79 	mr.     r0,r3                                  
ffc062e4:	40 82 01 88 	bne-    ffc0646c <rtems_termios_open+0x444>    
    tty->rawOutBufState = rob_idle;                                   
                                                                      
    /*                                                                
     * Set callbacks                                                  
     */                                                               
    tty->device = *callbacks;                                         
ffc062e8:	81 37 00 1c 	lwz     r9,28(r23)                             
ffc062ec:	80 97 00 00 	lwz     r4,0(r23)                              
                                                                      
    /*                                                                
     * Create I/O tasks                                               
     */                                                               
    if (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN) {    
ffc062f0:	2f 89 00 02 	cmpwi   cr7,r9,2                               
    tty->rawOutBufState = rob_idle;                                   
                                                                      
    /*                                                                
     * Set callbacks                                                  
     */                                                               
    tty->device = *callbacks;                                         
ffc062f4:	80 b7 00 04 	lwz     r5,4(r23)                              
ffc062f8:	80 d7 00 08 	lwz     r6,8(r23)                              
ffc062fc:	80 f7 00 0c 	lwz     r7,12(r23)                             
ffc06300:	81 17 00 10 	lwz     r8,16(r23)                             
ffc06304:	81 57 00 14 	lwz     r10,20(r23)                            
ffc06308:	81 77 00 18 	lwz     r11,24(r23)                            
      RTEMS_SIMPLE_BINARY_SEMAPHORE | RTEMS_FIFO,                     
      RTEMS_NO_PRIORITY,                                              
      &tty->rawOutBuf.Semaphore);                                     
    if (sc != RTEMS_SUCCESSFUL)                                       
      rtems_fatal_error_occurred (sc);                                
    tty->rawOutBufState = rob_idle;                                   
ffc0630c:	90 19 00 94 	stw     r0,148(r25)                            
                                                                      
    /*                                                                
     * Set callbacks                                                  
     */                                                               
    tty->device = *callbacks;                                         
ffc06310:	90 99 00 98 	stw     r4,152(r25)                            
ffc06314:	90 b9 00 9c 	stw     r5,156(r25)                            
ffc06318:	90 d9 00 a0 	stw     r6,160(r25)                            
ffc0631c:	90 f9 00 a4 	stw     r7,164(r25)                            
ffc06320:	91 19 00 a8 	stw     r8,168(r25)                            
ffc06324:	91 59 00 ac 	stw     r10,172(r25)                           
ffc06328:	91 79 00 b0 	stw     r11,176(r25)                           
ffc0632c:	91 39 00 b4 	stw     r9,180(r25)                            
                                                                      
    /*                                                                
     * Create I/O tasks                                               
     */                                                               
    if (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN) {    
ffc06330:	41 9e 01 40 	beq-    cr7,ffc06470 <rtems_termios_open+0x448>
           &tty->rxTaskId);                                           
      if (sc != RTEMS_SUCCESSFUL)                                     
        rtems_fatal_error_occurred (sc);                              
                                                                      
    }                                                                 
    if ((tty->device.pollRead == NULL) ||                             
ffc06334:	80 19 00 a0 	lwz     r0,160(r25)                            
ffc06338:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0633c:	41 9e 01 08 	beq-    cr7,ffc06444 <rtems_termios_open+0x41c>
ffc06340:	80 19 00 b4 	lwz     r0,180(r25)                            
ffc06344:	2f 80 00 02 	cmpwi   cr7,r0,2                               
ffc06348:	41 9e 00 fc 	beq-    cr7,ffc06444 <rtems_termios_open+0x41c>
    }                                                                 
                                                                      
    /*                                                                
     * Set default parameters                                         
     */                                                               
    tty->termios.c_iflag = BRKINT | ICRNL | IXON | IMAXBEL;           
ffc0634c:	39 00 25 02 	li      r8,9474                                
    tty->lowwater  = tty->rawInBuf.Size * 1/2;                        
    tty->highwater = tty->rawInBuf.Size * 3/4;                        
    /*                                                                
     * Bump name characer                                             
     */                                                               
    if (c++ == 'z')                                                   
ffc06350:	89 38 00 0c 	lbz     r9,12(r24)                             
    }                                                                 
                                                                      
    /*                                                                
     * Set default parameters                                         
     */                                                               
    tty->termios.c_iflag = BRKINT | ICRNL | IXON | IMAXBEL;           
ffc06354:	91 19 00 30 	stw     r8,48(r25)                             
    tty->termios.c_oflag = OPOST | ONLCR | XTABS;                     
ffc06358:	39 00 18 05 	li      r8,6149                                
    tty->termios.c_cc[VDISCARD] = '\017';                             
    tty->termios.c_cc[VWERASE] = '\027';                              
    tty->termios.c_cc[VLNEXT] = '\026';                               
                                                                      
    /* start with no flow control, clear flow control flags */        
    tty->flow_ctrl = 0;                                               
ffc0635c:	38 00 00 00 	li      r0,0                                   
                                                                      
    /*                                                                
     * Set default parameters                                         
     */                                                               
    tty->termios.c_iflag = BRKINT | ICRNL | IXON | IMAXBEL;           
    tty->termios.c_oflag = OPOST | ONLCR | XTABS;                     
ffc06360:	91 19 00 34 	stw     r8,52(r25)                             
    tty->termios.c_cflag = B9600 | CS8 | CREAD | CLOCAL;              
ffc06364:	39 00 08 bd 	li      r8,2237                                
    tty->lowwater  = tty->rawInBuf.Size * 1/2;                        
    tty->highwater = tty->rawInBuf.Size * 3/4;                        
    /*                                                                
     * Bump name characer                                             
     */                                                               
    if (c++ == 'z')                                                   
ffc06368:	2f 89 00 7a 	cmpwi   cr7,r9,122                             
    tty->termios.c_cc[VDISCARD] = '\017';                             
    tty->termios.c_cc[VWERASE] = '\027';                              
    tty->termios.c_cc[VLNEXT] = '\026';                               
                                                                      
    /* start with no flow control, clear flow control flags */        
    tty->flow_ctrl = 0;                                               
ffc0636c:	90 19 00 b8 	stw     r0,184(r25)                            
    tty->lowwater  = tty->rawInBuf.Size * 1/2;                        
    tty->highwater = tty->rawInBuf.Size * 3/4;                        
    /*                                                                
     * Bump name characer                                             
     */                                                               
    if (c++ == 'z')                                                   
ffc06370:	39 29 00 01 	addi    r9,r9,1                                
    /*                                                                
     * Set default parameters                                         
     */                                                               
    tty->termios.c_iflag = BRKINT | ICRNL | IXON | IMAXBEL;           
    tty->termios.c_oflag = OPOST | ONLCR | XTABS;                     
    tty->termios.c_cflag = B9600 | CS8 | CREAD | CLOCAL;              
ffc06374:	91 19 00 38 	stw     r8,56(r25)                             
    tty->termios.c_lflag =                                            
ffc06378:	39 00 00 00 	li      r8,0                                   
ffc0637c:	61 08 82 3b 	ori     r8,r8,33339                            
    tty->termios.c_cc[VINTR] = '\003';                                
    tty->termios.c_cc[VQUIT] = '\034';                                
    tty->termios.c_cc[VERASE] = '\177';                               
    tty->termios.c_cc[VKILL] = '\025';                                
    tty->termios.c_cc[VEOF] = '\004';                                 
    tty->termios.c_cc[VEOL] = '\000';                                 
ffc06380:	98 19 00 4c 	stb     r0,76(r25)                             
    tty->termios.c_cc[VEOL2] = '\000';                                
ffc06384:	98 19 00 51 	stb     r0,81(r25)                             
    tty->termios.c_cc[VSTART] = '\021';                               
ffc06388:	38 00 00 11 	li      r0,17                                  
ffc0638c:	98 19 00 49 	stb     r0,73(r25)                             
    tty->termios.c_cc[VSTOP] = '\023';                                
ffc06390:	38 00 00 13 	li      r0,19                                  
    /* start with no flow control, clear flow control flags */        
    tty->flow_ctrl = 0;                                               
    /*                                                                
     * set low/highwater mark for XON/XOFF support                    
     */                                                               
    tty->lowwater  = tty->rawInBuf.Size * 1/2;                        
ffc06394:	81 59 00 64 	lwz     r10,100(r25)                           
     * Set default parameters                                         
     */                                                               
    tty->termios.c_iflag = BRKINT | ICRNL | IXON | IMAXBEL;           
    tty->termios.c_oflag = OPOST | ONLCR | XTABS;                     
    tty->termios.c_cflag = B9600 | CS8 | CREAD | CLOCAL;              
    tty->termios.c_lflag =                                            
ffc06398:	91 19 00 3c 	stw     r8,60(r25)                             
       ISIG | ICANON | IEXTEN | ECHO | ECHOK | ECHOE | ECHOCTL;       
                                                                      
    tty->termios.c_cc[VINTR] = '\003';                                
ffc0639c:	39 00 00 03 	li      r8,3                                   
    /* start with no flow control, clear flow control flags */        
    tty->flow_ctrl = 0;                                               
    /*                                                                
     * set low/highwater mark for XON/XOFF support                    
     */                                                               
    tty->lowwater  = tty->rawInBuf.Size * 1/2;                        
ffc063a0:	55 4a f8 7e 	rlwinm  r10,r10,31,1,31                        
    tty->highwater = tty->rawInBuf.Size * 3/4;                        
ffc063a4:	81 79 00 64 	lwz     r11,100(r25)                           
    tty->termios.c_cc[VKILL] = '\025';                                
    tty->termios.c_cc[VEOF] = '\004';                                 
    tty->termios.c_cc[VEOL] = '\000';                                 
    tty->termios.c_cc[VEOL2] = '\000';                                
    tty->termios.c_cc[VSTART] = '\021';                               
    tty->termios.c_cc[VSTOP] = '\023';                                
ffc063a8:	98 19 00 4a 	stb     r0,74(r25)                             
    tty->termios.c_cc[VSUSP] = '\032';                                
ffc063ac:	38 00 00 1a 	li      r0,26                                  
    tty->flow_ctrl = 0;                                               
    /*                                                                
     * set low/highwater mark for XON/XOFF support                    
     */                                                               
    tty->lowwater  = tty->rawInBuf.Size * 1/2;                        
    tty->highwater = tty->rawInBuf.Size * 3/4;                        
ffc063b0:	1d 6b 00 03 	mulli   r11,r11,3                              
    tty->termios.c_oflag = OPOST | ONLCR | XTABS;                     
    tty->termios.c_cflag = B9600 | CS8 | CREAD | CLOCAL;              
    tty->termios.c_lflag =                                            
       ISIG | ICANON | IEXTEN | ECHO | ECHOK | ECHOE | ECHOCTL;       
                                                                      
    tty->termios.c_cc[VINTR] = '\003';                                
ffc063b4:	99 19 00 41 	stb     r8,65(r25)                             
    tty->termios.c_cc[VQUIT] = '\034';                                
ffc063b8:	39 00 00 1c 	li      r8,28                                  
    tty->termios.c_cc[VEOF] = '\004';                                 
    tty->termios.c_cc[VEOL] = '\000';                                 
    tty->termios.c_cc[VEOL2] = '\000';                                
    tty->termios.c_cc[VSTART] = '\021';                               
    tty->termios.c_cc[VSTOP] = '\023';                                
    tty->termios.c_cc[VSUSP] = '\032';                                
ffc063bc:	98 19 00 4b 	stb     r0,75(r25)                             
    tty->termios.c_cc[VREPRINT] = '\022';                             
ffc063c0:	38 00 00 12 	li      r0,18                                  
    tty->flow_ctrl = 0;                                               
    /*                                                                
     * set low/highwater mark for XON/XOFF support                    
     */                                                               
    tty->lowwater  = tty->rawInBuf.Size * 1/2;                        
    tty->highwater = tty->rawInBuf.Size * 3/4;                        
ffc063c4:	55 6b f0 be 	rlwinm  r11,r11,30,2,31                        
    tty->termios.c_cflag = B9600 | CS8 | CREAD | CLOCAL;              
    tty->termios.c_lflag =                                            
       ISIG | ICANON | IEXTEN | ECHO | ECHOK | ECHOE | ECHOCTL;       
                                                                      
    tty->termios.c_cc[VINTR] = '\003';                                
    tty->termios.c_cc[VQUIT] = '\034';                                
ffc063c8:	99 19 00 42 	stb     r8,66(r25)                             
    tty->termios.c_cc[VERASE] = '\177';                               
ffc063cc:	39 00 00 7f 	li      r8,127                                 
    tty->termios.c_cc[VEOL] = '\000';                                 
    tty->termios.c_cc[VEOL2] = '\000';                                
    tty->termios.c_cc[VSTART] = '\021';                               
    tty->termios.c_cc[VSTOP] = '\023';                                
    tty->termios.c_cc[VSUSP] = '\032';                                
    tty->termios.c_cc[VREPRINT] = '\022';                             
ffc063d0:	98 19 00 4d 	stb     r0,77(r25)                             
    tty->termios.c_cc[VDISCARD] = '\017';                             
ffc063d4:	38 00 00 0f 	li      r0,15                                  
    tty->termios.c_lflag =                                            
       ISIG | ICANON | IEXTEN | ECHO | ECHOK | ECHOE | ECHOCTL;       
                                                                      
    tty->termios.c_cc[VINTR] = '\003';                                
    tty->termios.c_cc[VQUIT] = '\034';                                
    tty->termios.c_cc[VERASE] = '\177';                               
ffc063d8:	99 19 00 43 	stb     r8,67(r25)                             
    tty->termios.c_cc[VKILL] = '\025';                                
ffc063dc:	39 00 00 15 	li      r8,21                                  
    tty->termios.c_cc[VEOL2] = '\000';                                
    tty->termios.c_cc[VSTART] = '\021';                               
    tty->termios.c_cc[VSTOP] = '\023';                                
    tty->termios.c_cc[VSUSP] = '\032';                                
    tty->termios.c_cc[VREPRINT] = '\022';                             
    tty->termios.c_cc[VDISCARD] = '\017';                             
ffc063e0:	98 19 00 4e 	stb     r0,78(r25)                             
    tty->termios.c_cc[VWERASE] = '\027';                              
ffc063e4:	38 00 00 17 	li      r0,23                                  
       ISIG | ICANON | IEXTEN | ECHO | ECHOK | ECHOE | ECHOCTL;       
                                                                      
    tty->termios.c_cc[VINTR] = '\003';                                
    tty->termios.c_cc[VQUIT] = '\034';                                
    tty->termios.c_cc[VERASE] = '\177';                               
    tty->termios.c_cc[VKILL] = '\025';                                
ffc063e8:	99 19 00 44 	stb     r8,68(r25)                             
    tty->termios.c_cc[VEOF] = '\004';                                 
ffc063ec:	39 00 00 04 	li      r8,4                                   
    tty->termios.c_cc[VSTART] = '\021';                               
    tty->termios.c_cc[VSTOP] = '\023';                                
    tty->termios.c_cc[VSUSP] = '\032';                                
    tty->termios.c_cc[VREPRINT] = '\022';                             
    tty->termios.c_cc[VDISCARD] = '\017';                             
    tty->termios.c_cc[VWERASE] = '\027';                              
ffc063f0:	98 19 00 4f 	stb     r0,79(r25)                             
    tty->termios.c_cc[VLNEXT] = '\026';                               
ffc063f4:	38 00 00 16 	li      r0,22                                  
                                                                      
    tty->termios.c_cc[VINTR] = '\003';                                
    tty->termios.c_cc[VQUIT] = '\034';                                
    tty->termios.c_cc[VERASE] = '\177';                               
    tty->termios.c_cc[VKILL] = '\025';                                
    tty->termios.c_cc[VEOF] = '\004';                                 
ffc063f8:	99 19 00 45 	stb     r8,69(r25)                             
    tty->termios.c_cc[VSTOP] = '\023';                                
    tty->termios.c_cc[VSUSP] = '\032';                                
    tty->termios.c_cc[VREPRINT] = '\022';                             
    tty->termios.c_cc[VDISCARD] = '\017';                             
    tty->termios.c_cc[VWERASE] = '\027';                              
    tty->termios.c_cc[VLNEXT] = '\026';                               
ffc063fc:	98 19 00 50 	stb     r0,80(r25)                             
    /* start with no flow control, clear flow control flags */        
    tty->flow_ctrl = 0;                                               
    /*                                                                
     * set low/highwater mark for XON/XOFF support                    
     */                                                               
    tty->lowwater  = tty->rawInBuf.Size * 1/2;                        
ffc06400:	91 59 00 bc 	stw     r10,188(r25)                           
    tty->highwater = tty->rawInBuf.Size * 3/4;                        
ffc06404:	91 79 00 c0 	stw     r11,192(r25)                           
    /*                                                                
     * Bump name characer                                             
     */                                                               
    if (c++ == 'z')                                                   
ffc06408:	99 38 00 0c 	stb     r9,12(r24)                             
ffc0640c:	40 9e fc cc 	bne+    cr7,ffc060d8 <rtems_termios_open+0xb0> 
      c = 'a';                                                        
ffc06410:	38 00 00 61 	li      r0,97                                  
ffc06414:	98 18 00 0c 	stb     r0,12(r24)                             
ffc06418:	4b ff fc c0 	b       ffc060d8 <rtems_termios_open+0xb0>     
    /*                                                                
     * allocate cooked buffer                                         
     */                                                               
    tty->cbuf  = malloc (CBUFSIZE);                                   
    if (tty->cbuf == NULL) {                                          
            free((void *)(tty->rawOutBuf.theBuf));                    
ffc0641c:	7e 63 9b 78 	mr      r3,r19                                 <== NOT EXECUTED
ffc06420:	4b ff e8 5d 	bl      ffc04c7c <free>                        <== NOT EXECUTED
            free((void *)(tty->rawInBuf.theBuf));                     
ffc06424:	7e 83 a3 78 	mr      r3,r20                                 
ffc06428:	4b ff e8 55 	bl      ffc04c7c <free>                        
            free(tty);                                                
ffc0642c:	7f 23 cb 78 	mr      r3,r25                                 
ffc06430:	4b ff e8 4d 	bl      ffc04c7c <free>                        
      rtems_semaphore_release (rtems_termios_ttyMutex);               
ffc06434:	80 7c 27 18 	lwz     r3,10008(r28)                          
      return RTEMS_NO_MEMORY;                                         
ffc06438:	3b 60 00 1a 	li      r27,26                                 
    tty->cbuf  = malloc (CBUFSIZE);                                   
    if (tty->cbuf == NULL) {                                          
            free((void *)(tty->rawOutBuf.theBuf));                    
            free((void *)(tty->rawInBuf.theBuf));                     
            free(tty);                                                
      rtems_semaphore_release (rtems_termios_ttyMutex);               
ffc0643c:	48 00 2b cd 	bl      ffc09008 <rtems_semaphore_release>     
      return RTEMS_NO_MEMORY;                                         
ffc06440:	4b ff fc e8 	b       ffc06128 <rtems_termios_open+0x100>    
                                                                      
    }                                                                 
    if ((tty->device.pollRead == NULL) ||                             
        (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN)){   
      sc = rtems_semaphore_create (                                   
        rtems_build_name ('T', 'R', 'r', c),                          
ffc06444:	88 78 00 0c 	lbz     r3,12(r24)                             
        rtems_fatal_error_occurred (sc);                              
                                                                      
    }                                                                 
    if ((tty->device.pollRead == NULL) ||                             
        (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN)){   
      sc = rtems_semaphore_create (                                   
ffc06448:	38 80 00 00 	li      r4,0                                   
ffc0644c:	38 a0 00 24 	li      r5,36                                  
ffc06450:	64 63 54 52 	oris    r3,r3,21586                            
ffc06454:	60 63 72 00 	ori     r3,r3,29184                            
ffc06458:	38 c0 00 00 	li      r6,0                                   
ffc0645c:	38 f9 00 68 	addi    r7,r25,104                             
ffc06460:	48 00 27 21 	bl      ffc08b80 <rtems_semaphore_create>      
        rtems_build_name ('T', 'R', 'r', c),                          
        0,                                                            
        RTEMS_SIMPLE_BINARY_SEMAPHORE | RTEMS_PRIORITY,               
        RTEMS_NO_PRIORITY,                                            
        &tty->rawInBuf.Semaphore);                                    
      if (sc != RTEMS_SUCCESSFUL)                                     
ffc06464:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc06468:	41 9e fe e4 	beq+    cr7,ffc0634c <rtems_termios_open+0x324><== ALWAYS TAKEN
        rtems_fatal_error_occurred (sc);                              
                                                                      
      sc = rtems_task_start(                                          
        tty->txTaskId, rtems_termios_txdaemon, (rtems_task_argument)tty);
      if (sc != RTEMS_SUCCESSFUL)                                     
        rtems_fatal_error_occurred (sc);                              
ffc0646c:	48 00 33 89 	bl      ffc097f4 <rtems_fatal_error_occurred>  
    /*                                                                
     * Create I/O tasks                                               
     */                                                               
    if (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN) {    
      sc = rtems_task_create (                                        
                                   rtems_build_name ('T', 'x', 'T', c),
ffc06470:	88 78 00 0c 	lbz     r3,12(r24)                             
                                                                      
    /*                                                                
     * Create I/O tasks                                               
     */                                                               
    if (tty->device.outputUsesInterrupts == TERMIOS_TASK_DRIVEN) {    
      sc = rtems_task_create (                                        
ffc06474:	38 80 00 0a 	li      r4,10                                  
ffc06478:	38 a0 04 00 	li      r5,1024                                
ffc0647c:	64 63 54 78 	oris    r3,r3,21624                            
ffc06480:	60 63 54 00 	ori     r3,r3,21504                            
ffc06484:	38 c0 05 00 	li      r6,1280                                
ffc06488:	38 e0 00 00 	li      r7,0                                   
ffc0648c:	39 19 00 c8 	addi    r8,r25,200                             
ffc06490:	48 00 2c 65 	bl      ffc090f4 <rtems_task_create>           
           TERMIOS_TXTASK_STACKSIZE,                                  
           RTEMS_NO_PREEMPT | RTEMS_NO_TIMESLICE |                    
           RTEMS_NO_ASR,                                              
           RTEMS_NO_FLOATING_POINT | RTEMS_LOCAL,                     
           &tty->txTaskId);                                           
      if (sc != RTEMS_SUCCESSFUL)                                     
ffc06494:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc06498:	40 be ff d4 	bne-    cr7,ffc0646c <rtems_termios_open+0x444><== NEVER TAKEN
        rtems_fatal_error_occurred (sc);                              
      sc = rtems_task_create (                                        
                                   rtems_build_name ('R', 'x', 'T', c),
ffc0649c:	88 78 00 0c 	lbz     r3,12(r24)                             
           RTEMS_NO_ASR,                                              
           RTEMS_NO_FLOATING_POINT | RTEMS_LOCAL,                     
           &tty->txTaskId);                                           
      if (sc != RTEMS_SUCCESSFUL)                                     
        rtems_fatal_error_occurred (sc);                              
      sc = rtems_task_create (                                        
ffc064a0:	38 80 00 09 	li      r4,9                                   
ffc064a4:	38 a0 04 00 	li      r5,1024                                
ffc064a8:	64 63 52 78 	oris    r3,r3,21112                            
ffc064ac:	60 63 54 00 	ori     r3,r3,21504                            
ffc064b0:	38 c0 05 00 	li      r6,1280                                
ffc064b4:	38 e0 00 00 	li      r7,0                                   
ffc064b8:	39 19 00 c4 	addi    r8,r25,196                             
ffc064bc:	48 00 2c 39 	bl      ffc090f4 <rtems_task_create>           
           TERMIOS_RXTASK_STACKSIZE,                                  
           RTEMS_NO_PREEMPT | RTEMS_NO_TIMESLICE |                    
           RTEMS_NO_ASR,                                              
           RTEMS_NO_FLOATING_POINT | RTEMS_LOCAL,                     
           &tty->rxTaskId);                                           
      if (sc != RTEMS_SUCCESSFUL)                                     
ffc064c0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc064c4:	41 9e fe 70 	beq+    cr7,ffc06334 <rtems_termios_open+0x30c><== ALWAYS TAKEN
ffc064c8:	4b ff ff a4 	b       ffc0646c <rtems_termios_open+0x444>    <== NOT EXECUTED
    tty->back = NULL;                                                 
    if (rtems_termios_ttyHead != NULL)                                
      rtems_termios_ttyHead->back = tty;                              
    rtems_termios_ttyHead = tty;                                      
    if (rtems_termios_ttyTail == NULL)                                
      rtems_termios_ttyTail = tty;                                    
ffc064cc:	93 29 27 1c 	stw     r25,10012(r9)                          
ffc064d0:	4b ff fd 98 	b       ffc06268 <rtems_termios_open+0x240>    
                                                                      

ffc06b24 <rtems_termios_puts>: * Send characters to device-specific code */ void rtems_termios_puts ( const void *_buf, int len, struct rtems_termios_tty *tty) {
ffc06b24:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc06b28:	7c 08 02 a6 	mflr    r0                                     
ffc06b2c:	90 01 00 34 	stw     r0,52(r1)                              
  const unsigned char *buf = _buf;                                    
  unsigned int newHead;                                               
  rtems_interrupt_level level;                                        
  rtems_status_code sc;                                               
                                                                      
  if (tty->device.outputUsesInterrupts == TERMIOS_POLLED) {           
ffc06b30:	80 05 00 b4 	lwz     r0,180(r5)                             
 * Send characters to device-specific code                            
 */                                                                   
void                                                                  
rtems_termios_puts (                                                  
  const void *_buf, int len, struct rtems_termios_tty *tty)           
{                                                                     
ffc06b34:	93 41 00 18 	stw     r26,24(r1)                             
ffc06b38:	7c 7a 1b 78 	mr      r26,r3                                 
  const unsigned char *buf = _buf;                                    
  unsigned int newHead;                                               
  rtems_interrupt_level level;                                        
  rtems_status_code sc;                                               
                                                                      
  if (tty->device.outputUsesInterrupts == TERMIOS_POLLED) {           
ffc06b3c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
 * Send characters to device-specific code                            
 */                                                                   
void                                                                  
rtems_termios_puts (                                                  
  const void *_buf, int len, struct rtems_termios_tty *tty)           
{                                                                     
ffc06b40:	93 e1 00 2c 	stw     r31,44(r1)                             
ffc06b44:	7c bf 2b 78 	mr      r31,r5                                 
ffc06b48:	93 21 00 14 	stw     r25,20(r1)                             
ffc06b4c:	93 61 00 1c 	stw     r27,28(r1)                             
ffc06b50:	93 81 00 20 	stw     r28,32(r1)                             
ffc06b54:	93 a1 00 24 	stw     r29,36(r1)                             
ffc06b58:	93 c1 00 28 	stw     r30,40(r1)                             
ffc06b5c:	90 81 00 08 	stw     r4,8(r1)                               
  const unsigned char *buf = _buf;                                    
  unsigned int newHead;                                               
  rtems_interrupt_level level;                                        
  rtems_status_code sc;                                               
                                                                      
  if (tty->device.outputUsesInterrupts == TERMIOS_POLLED) {           
ffc06b60:	41 9e 01 2c 	beq-    cr7,ffc06c8c <rtems_termios_puts+0x168>
    (*tty->device.write)(tty->minor, (void *)buf, len);               
    return;                                                           
  }                                                                   
  newHead = tty->rawOutBuf.Head;                                      
  while (len) {                                                       
ffc06b64:	80 01 00 08 	lwz     r0,8(r1)                               
                                                                      
  if (tty->device.outputUsesInterrupts == TERMIOS_POLLED) {           
    (*tty->device.write)(tty->minor, (void *)buf, len);               
    return;                                                           
  }                                                                   
  newHead = tty->rawOutBuf.Head;                                      
ffc06b68:	83 65 00 80 	lwz     r27,128(r5)                            
  while (len) {                                                       
ffc06b6c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc06b70:	41 9e 00 cc 	beq-    cr7,ffc06c3c <rtems_termios_puts+0x118><== NEVER TAKEN
                                                                      
/*                                                                    
 * Send characters to device-specific code                            
 */                                                                   
void                                                                  
rtems_termios_puts (                                                  
ffc06b74:	3b 43 ff ff 	addi    r26,r3,-1                              
     * with interrupts enabled.                                       
     */                                                               
    newHead = (newHead + 1) % tty->rawOutBuf.Size;                    
    rtems_interrupt_disable (level);                                  
    while (newHead == tty->rawOutBuf.Tail) {                          
      tty->rawOutBufState = rob_wait;                                 
ffc06b78:	3b 80 00 02 	li      r28,2                                  
      (char *)&tty->rawOutBuf.theBuf[tty->rawOutBuf.Tail],1);         
      } else {                                                        
        /* remember that output has been stopped due to flow ctrl*/   
        tty->flow_ctrl |= FL_OSTOP;                                   
      }                                                               
      tty->rawOutBufState = rob_busy;                                 
ffc06b7c:	3b 20 00 01 	li      r25,1                                  
     *  len -= ncopy                                                  
     *                                                                
     * To minimize latency, the memcpy should be done                 
     * with interrupts enabled.                                       
     */                                                               
    newHead = (newHead + 1) % tty->rawOutBuf.Size;                    
ffc06b80:	80 1f 00 88 	lwz     r0,136(r31)                            
ffc06b84:	3b 7b 00 01 	addi    r27,r27,1                              
ffc06b88:	7d 3b 03 96 	divwu   r9,r27,r0                              
ffc06b8c:	7c 09 01 d6 	mullw   r0,r9,r0                               
ffc06b90:	7f 60 d8 50 	subf    r27,r0,r27                             
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc06b94:	7f c0 00 a6 	mfmsr   r30                                    
ffc06b98:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc06b9c:	7f c0 00 78 	andc    r0,r30,r0                              
ffc06ba0:	7c 00 01 24 	mtmsr   r0                                     
    rtems_interrupt_disable (level);                                  
    while (newHead == tty->rawOutBuf.Tail) {                          
ffc06ba4:	83 bf 00 84 	lwz     r29,132(r31)                           
ffc06ba8:	7f 9d d8 00 	cmpw    cr7,r29,r27                            
ffc06bac:	40 9e 00 40 	bne-    cr7,ffc06bec <rtems_termios_puts+0xc8> 
      tty->rawOutBufState = rob_wait;                                 
ffc06bb0:	93 9f 00 94 	stw     r28,148(r31)                           
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc06bb4:	7f c0 01 24 	mtmsr   r30                                    
      rtems_interrupt_enable (level);                                 
      sc = rtems_semaphore_obtain(                                    
ffc06bb8:	80 7f 00 8c 	lwz     r3,140(r31)                            
ffc06bbc:	38 80 00 00 	li      r4,0                                   
ffc06bc0:	38 a0 00 00 	li      r5,0                                   
ffc06bc4:	48 00 22 bd 	bl      ffc08e80 <rtems_semaphore_obtain>      
        tty->rawOutBuf.Semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT);      
      if (sc != RTEMS_SUCCESSFUL)                                     
ffc06bc8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc06bcc:	40 9e 00 dc 	bne-    cr7,ffc06ca8 <rtems_termios_puts+0x184><== NEVER TAKEN
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc06bd0:	7f c0 00 a6 	mfmsr   r30                                    
ffc06bd4:	7c 10 42 a6 	mfsprg  r0,0                                   
ffc06bd8:	7f c0 00 78 	andc    r0,r30,r0                              
ffc06bdc:	7c 00 01 24 	mtmsr   r0                                     
     * To minimize latency, the memcpy should be done                 
     * with interrupts enabled.                                       
     */                                                               
    newHead = (newHead + 1) % tty->rawOutBuf.Size;                    
    rtems_interrupt_disable (level);                                  
    while (newHead == tty->rawOutBuf.Tail) {                          
ffc06be0:	80 1f 00 84 	lwz     r0,132(r31)                            
ffc06be4:	7f 80 e8 00 	cmpw    cr7,r0,r29                             
ffc06be8:	41 9e ff c8 	beq+    cr7,ffc06bb0 <rtems_termios_puts+0x8c> <== NEVER TAKEN
        tty->rawOutBuf.Semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT);      
      if (sc != RTEMS_SUCCESSFUL)                                     
        rtems_fatal_error_occurred (sc);                              
      rtems_interrupt_disable (level);                                
    }                                                                 
    tty->rawOutBuf.theBuf[tty->rawOutBuf.Head] = *buf++;              
ffc06bec:	80 1f 00 80 	lwz     r0,128(r31)                            
ffc06bf0:	8d 7a 00 01 	lbzu    r11,1(r26)                             
ffc06bf4:	81 3f 00 7c 	lwz     r9,124(r31)                            
ffc06bf8:	7d 69 01 ae 	stbx    r11,r9,r0                              
    tty->rawOutBuf.Head = newHead;                                    
    if (tty->rawOutBufState == rob_idle) {                            
ffc06bfc:	80 1f 00 94 	lwz     r0,148(r31)                            
      if (sc != RTEMS_SUCCESSFUL)                                     
        rtems_fatal_error_occurred (sc);                              
      rtems_interrupt_disable (level);                                
    }                                                                 
    tty->rawOutBuf.theBuf[tty->rawOutBuf.Head] = *buf++;              
    tty->rawOutBuf.Head = newHead;                                    
ffc06c00:	93 7f 00 80 	stw     r27,128(r31)                           
    if (tty->rawOutBufState == rob_idle) {                            
ffc06c04:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc06c08:	40 9e 00 20 	bne-    cr7,ffc06c28 <rtems_termios_puts+0x104>
      /* check, whether XOFF has been received */                     
      if (!(tty->flow_ctrl & FL_ORCVXOF)) {                           
ffc06c0c:	80 1f 00 b8 	lwz     r0,184(r31)                            
ffc06c10:	70 09 00 10 	andi.   r9,r0,16                               
ffc06c14:	41 82 00 54 	beq-    ffc06c68 <rtems_termios_puts+0x144>    <== ALWAYS TAKEN
        (*tty->device.write)(tty->minor,                              
      (char *)&tty->rawOutBuf.theBuf[tty->rawOutBuf.Tail],1);         
      } else {                                                        
        /* remember that output has been stopped due to flow ctrl*/   
        tty->flow_ctrl |= FL_OSTOP;                                   
ffc06c18:	80 1f 00 b8 	lwz     r0,184(r31)                            <== NOT EXECUTED
ffc06c1c:	60 00 00 20 	ori     r0,r0,32                               <== NOT EXECUTED
ffc06c20:	90 1f 00 b8 	stw     r0,184(r31)                            <== NOT EXECUTED
      }                                                               
      tty->rawOutBufState = rob_busy;                                 
ffc06c24:	93 3f 00 94 	stw     r25,148(r31)                           
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc06c28:	7f c0 01 24 	mtmsr   r30                                    
  if (tty->device.outputUsesInterrupts == TERMIOS_POLLED) {           
    (*tty->device.write)(tty->minor, (void *)buf, len);               
    return;                                                           
  }                                                                   
  newHead = tty->rawOutBuf.Head;                                      
  while (len) {                                                       
ffc06c2c:	80 01 00 08 	lwz     r0,8(r1)                               
ffc06c30:	35 20 ff ff 	addic.  r9,r0,-1                               
ffc06c34:	91 21 00 08 	stw     r9,8(r1)                               
ffc06c38:	40 82 ff 48 	bne+    ffc06b80 <rtems_termios_puts+0x5c>     
      tty->rawOutBufState = rob_busy;                                 
    }                                                                 
    rtems_interrupt_enable (level);                                   
    len--;                                                            
  }                                                                   
}                                                                     
ffc06c3c:	80 01 00 34 	lwz     r0,52(r1)                              
ffc06c40:	83 21 00 14 	lwz     r25,20(r1)                             
ffc06c44:	7c 08 03 a6 	mtlr    r0                                     
ffc06c48:	83 41 00 18 	lwz     r26,24(r1)                             
ffc06c4c:	83 61 00 1c 	lwz     r27,28(r1)                             
ffc06c50:	83 81 00 20 	lwz     r28,32(r1)                             
ffc06c54:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc06c58:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc06c5c:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc06c60:	38 21 00 30 	addi    r1,r1,48                               
ffc06c64:	4e 80 00 20 	blr                                            
    tty->rawOutBuf.Head = newHead;                                    
    if (tty->rawOutBufState == rob_idle) {                            
      /* check, whether XOFF has been received */                     
      if (!(tty->flow_ctrl & FL_ORCVXOF)) {                           
        (*tty->device.write)(tty->minor,                              
      (char *)&tty->rawOutBuf.theBuf[tty->rawOutBuf.Tail],1);         
ffc06c68:	81 3f 00 84 	lwz     r9,132(r31)                            
    tty->rawOutBuf.theBuf[tty->rawOutBuf.Head] = *buf++;              
    tty->rawOutBuf.Head = newHead;                                    
    if (tty->rawOutBufState == rob_idle) {                            
      /* check, whether XOFF has been received */                     
      if (!(tty->flow_ctrl & FL_ORCVXOF)) {                           
        (*tty->device.write)(tty->minor,                              
ffc06c6c:	38 a0 00 01 	li      r5,1                                   
ffc06c70:	80 9f 00 7c 	lwz     r4,124(r31)                            
ffc06c74:	80 1f 00 a4 	lwz     r0,164(r31)                            
ffc06c78:	80 7f 00 10 	lwz     r3,16(r31)                             
ffc06c7c:	7c 84 4a 14 	add     r4,r4,r9                               
ffc06c80:	7c 09 03 a6 	mtctr   r0                                     
ffc06c84:	4e 80 04 21 	bctrl                                          
ffc06c88:	4b ff ff 9c 	b       ffc06c24 <rtems_termios_puts+0x100>    
  unsigned int newHead;                                               
  rtems_interrupt_level level;                                        
  rtems_status_code sc;                                               
                                                                      
  if (tty->device.outputUsesInterrupts == TERMIOS_POLLED) {           
    (*tty->device.write)(tty->minor, (void *)buf, len);               
ffc06c8c:	80 05 00 a4 	lwz     r0,164(r5)                             
ffc06c90:	7f 44 d3 78 	mr      r4,r26                                 
ffc06c94:	80 65 00 10 	lwz     r3,16(r5)                              
ffc06c98:	7c 09 03 a6 	mtctr   r0                                     
ffc06c9c:	80 a1 00 08 	lwz     r5,8(r1)                               
ffc06ca0:	4e 80 04 21 	bctrl                                          
    return;                                                           
ffc06ca4:	4b ff ff 98 	b       ffc06c3c <rtems_termios_puts+0x118>    
      tty->rawOutBufState = rob_wait;                                 
      rtems_interrupt_enable (level);                                 
      sc = rtems_semaphore_obtain(                                    
        tty->rawOutBuf.Semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT);      
      if (sc != RTEMS_SUCCESSFUL)                                     
        rtems_fatal_error_occurred (sc);                              
ffc06ca8:	48 00 2b 4d 	bl      ffc097f4 <rtems_fatal_error_occurred>  <== NOT EXECUTED
                                                                      

ffc07534 <rtems_termios_read>: return RTEMS_SUCCESSFUL; } rtems_status_code rtems_termios_read (void *arg) {
ffc07534:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc07538:	7c 08 02 a6 	mflr    r0                                     
  struct rtems_termios_tty *tty = args->iop->data1;                   
  uint32_t   count = args->count;                                     
  char      *buffer = args->buffer;                                   
  rtems_status_code sc;                                               
                                                                      
  sc = rtems_semaphore_obtain (tty->isem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
ffc0753c:	38 80 00 00 	li      r4,0                                   
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_read (void *arg)                                        
{                                                                     
ffc07540:	90 01 00 34 	stw     r0,52(r1)                              
  struct rtems_termios_tty *tty = args->iop->data1;                   
  uint32_t   count = args->count;                                     
  char      *buffer = args->buffer;                                   
  rtems_status_code sc;                                               
                                                                      
  sc = rtems_semaphore_obtain (tty->isem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
ffc07544:	38 a0 00 00 	li      r5,0                                   
                                                                      
rtems_status_code                                                     
rtems_termios_read (void *arg)                                        
{                                                                     
  rtems_libio_rw_args_t *args = arg;                                  
  struct rtems_termios_tty *tty = args->iop->data1;                   
ffc07548:	81 23 00 00 	lwz     r9,0(r3)                               
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_read (void *arg)                                        
{                                                                     
ffc0754c:	93 e1 00 2c 	stw     r31,44(r1)                             
  rtems_libio_rw_args_t *args = arg;                                  
  struct rtems_termios_tty *tty = args->iop->data1;                   
ffc07550:	83 e9 00 38 	lwz     r31,56(r9)                             
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_read (void *arg)                                        
{                                                                     
ffc07554:	93 41 00 18 	stw     r26,24(r1)                             
ffc07558:	7c 7a 1b 78 	mr      r26,r3                                 
  struct rtems_termios_tty *tty = args->iop->data1;                   
  uint32_t   count = args->count;                                     
  char      *buffer = args->buffer;                                   
  rtems_status_code sc;                                               
                                                                      
  sc = rtems_semaphore_obtain (tty->isem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
ffc0755c:	80 7f 00 14 	lwz     r3,20(r31)                             
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_read (void *arg)                                        
{                                                                     
ffc07560:	93 01 00 10 	stw     r24,16(r1)                             
ffc07564:	93 21 00 14 	stw     r25,20(r1)                             
ffc07568:	93 61 00 1c 	stw     r27,28(r1)                             
ffc0756c:	92 c1 00 08 	stw     r22,8(r1)                              
ffc07570:	92 e1 00 0c 	stw     r23,12(r1)                             
ffc07574:	93 81 00 20 	stw     r28,32(r1)                             
ffc07578:	93 a1 00 24 	stw     r29,36(r1)                             
ffc0757c:	93 c1 00 28 	stw     r30,40(r1)                             
  rtems_libio_rw_args_t *args = arg;                                  
  struct rtems_termios_tty *tty = args->iop->data1;                   
  uint32_t   count = args->count;                                     
ffc07580:	83 7a 00 14 	lwz     r27,20(r26)                            
  char      *buffer = args->buffer;                                   
ffc07584:	83 1a 00 10 	lwz     r24,16(r26)                            
  rtems_status_code sc;                                               
                                                                      
  sc = rtems_semaphore_obtain (tty->isem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
ffc07588:	48 00 18 f9 	bl      ffc08e80 <rtems_semaphore_obtain>      
  if (sc != RTEMS_SUCCESSFUL)                                         
ffc0758c:	7c 79 1b 79 	mr.     r25,r3                                 
ffc07590:	40 82 00 48 	bne-    ffc075d8 <rtems_termios_read+0xa4>     <== NEVER TAKEN
    return sc;                                                        
                                                                      
  if (rtems_termios_linesw[tty->t_line].l_read != NULL) {             
ffc07594:	80 1f 00 cc 	lwz     r0,204(r31)                            
ffc07598:	3d 20 00 00 	lis     r9,0                                   
ffc0759c:	39 29 27 d4 	addi    r9,r9,10196                            
ffc075a0:	54 00 28 34 	rlwinm  r0,r0,5,0,26                           
ffc075a4:	7d 29 02 14 	add     r9,r9,r0                               
ffc075a8:	80 09 00 08 	lwz     r0,8(r9)                               
ffc075ac:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc075b0:	41 9e 00 64 	beq-    cr7,ffc07614 <rtems_termios_read+0xe0> 
    sc = rtems_termios_linesw[tty->t_line].l_read(tty,args);          
ffc075b4:	7c 09 03 a6 	mtctr   r0                                     
ffc075b8:	7f e3 fb 78 	mr      r3,r31                                 
ffc075bc:	7f 44 d3 78 	mr      r4,r26                                 
ffc075c0:	4e 80 04 21 	bctrl                                          
    tty->tty_rcvwakeup = 0;                                           
ffc075c4:	38 00 00 00 	li      r0,0                                   
  sc = rtems_semaphore_obtain (tty->isem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
  if (sc != RTEMS_SUCCESSFUL)                                         
    return sc;                                                        
                                                                      
  if (rtems_termios_linesw[tty->t_line].l_read != NULL) {             
    sc = rtems_termios_linesw[tty->t_line].l_read(tty,args);          
ffc075c8:	7c 79 1b 78 	mr      r25,r3                                 
    tty->tty_rcvwakeup = 0;                                           
ffc075cc:	90 1f 00 e4 	stw     r0,228(r31)                            
    rtems_semaphore_release (tty->isem);                              
ffc075d0:	80 7f 00 14 	lwz     r3,20(r31)                             
ffc075d4:	48 00 1a 35 	bl      ffc09008 <rtems_semaphore_release>     
  }                                                                   
  args->bytes_moved = args->count - count;                            
  tty->tty_rcvwakeup = 0;                                             
  rtems_semaphore_release (tty->isem);                                
  return sc;                                                          
}                                                                     
ffc075d8:	80 01 00 34 	lwz     r0,52(r1)                              
ffc075dc:	7f 23 cb 78 	mr      r3,r25                                 
ffc075e0:	82 c1 00 08 	lwz     r22,8(r1)                              
ffc075e4:	7c 08 03 a6 	mtlr    r0                                     
ffc075e8:	82 e1 00 0c 	lwz     r23,12(r1)                             
ffc075ec:	83 01 00 10 	lwz     r24,16(r1)                             
ffc075f0:	83 21 00 14 	lwz     r25,20(r1)                             
ffc075f4:	83 41 00 18 	lwz     r26,24(r1)                             
ffc075f8:	83 61 00 1c 	lwz     r27,28(r1)                             
ffc075fc:	83 81 00 20 	lwz     r28,32(r1)                             
ffc07600:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc07604:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc07608:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc0760c:	38 21 00 30 	addi    r1,r1,48                               
ffc07610:	4e 80 00 20 	blr                                            
    tty->tty_rcvwakeup = 0;                                           
    rtems_semaphore_release (tty->isem);                              
    return sc;                                                        
  }                                                                   
                                                                      
  if (tty->cindex == tty->ccount) {                                   
ffc07614:	81 3f 00 24 	lwz     r9,36(r31)                             
ffc07618:	80 1f 00 20 	lwz     r0,32(r31)                             
ffc0761c:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc07620:	41 9e 00 a8 	beq-    cr7,ffc076c8 <rtems_termios_read+0x194><== ALWAYS TAKEN
      sc = fillBufferQueue (tty);                                     
                                                                      
    if (sc != RTEMS_SUCCESSFUL)                                       
      tty->cindex = tty->ccount = 0;                                  
  }                                                                   
  while (count && (tty->cindex < tty->ccount)) {                      
ffc07624:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
ffc07628:	41 9e 00 48 	beq-    cr7,ffc07670 <rtems_termios_read+0x13c><== NEVER TAKEN
ffc0762c:	81 3f 00 24 	lwz     r9,36(r31)                             
ffc07630:	80 1f 00 20 	lwz     r0,32(r31)                             
ffc07634:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc07638:	40 9c 00 38 	bge-    cr7,ffc07670 <rtems_termios_read+0x13c><== NEVER TAKEN
  }                                                                   
  return RTEMS_SUCCESSFUL;                                            
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_read (void *arg)                                        
ffc0763c:	3b 18 ff ff 	addi    r24,r24,-1                             
ffc07640:	7f 69 03 a6 	mtctr   r27                                    
ffc07644:	48 00 00 10 	b       ffc07654 <rtems_termios_read+0x120>    
      sc = fillBufferQueue (tty);                                     
                                                                      
    if (sc != RTEMS_SUCCESSFUL)                                       
      tty->cindex = tty->ccount = 0;                                  
  }                                                                   
  while (count && (tty->cindex < tty->ccount)) {                      
ffc07648:	80 1f 00 20 	lwz     r0,32(r31)                             
ffc0764c:	7f 80 48 00 	cmpw    cr7,r0,r9                              
ffc07650:	40 9d 00 20 	ble-    cr7,ffc07670 <rtems_termios_read+0x13c>
    *buffer++ = tty->cbuf[tty->cindex++];                             
ffc07654:	81 7f 00 1c 	lwz     r11,28(r31)                            
    count--;                                                          
ffc07658:	3b 7b ff ff 	addi    r27,r27,-1                             
                                                                      
    if (sc != RTEMS_SUCCESSFUL)                                       
      tty->cindex = tty->ccount = 0;                                  
  }                                                                   
  while (count && (tty->cindex < tty->ccount)) {                      
    *buffer++ = tty->cbuf[tty->cindex++];                             
ffc0765c:	7c 0b 48 ae 	lbzx    r0,r11,r9                              
ffc07660:	39 29 00 01 	addi    r9,r9,1                                
ffc07664:	9c 18 00 01 	stbu    r0,1(r24)                              
ffc07668:	91 3f 00 24 	stw     r9,36(r31)                             
      sc = fillBufferQueue (tty);                                     
                                                                      
    if (sc != RTEMS_SUCCESSFUL)                                       
      tty->cindex = tty->ccount = 0;                                  
  }                                                                   
  while (count && (tty->cindex < tty->ccount)) {                      
ffc0766c:	42 00 ff dc 	bdnz+   ffc07648 <rtems_termios_read+0x114>    
    *buffer++ = tty->cbuf[tty->cindex++];                             
    count--;                                                          
  }                                                                   
  args->bytes_moved = args->count - count;                            
ffc07670:	80 1a 00 14 	lwz     r0,20(r26)                             
  tty->tty_rcvwakeup = 0;                                             
  rtems_semaphore_release (tty->isem);                                
ffc07674:	80 7f 00 14 	lwz     r3,20(r31)                             
  }                                                                   
  while (count && (tty->cindex < tty->ccount)) {                      
    *buffer++ = tty->cbuf[tty->cindex++];                             
    count--;                                                          
  }                                                                   
  args->bytes_moved = args->count - count;                            
ffc07678:	7f 7b 00 50 	subf    r27,r27,r0                             
  tty->tty_rcvwakeup = 0;                                             
ffc0767c:	38 00 00 00 	li      r0,0                                   
  }                                                                   
  while (count && (tty->cindex < tty->ccount)) {                      
    *buffer++ = tty->cbuf[tty->cindex++];                             
    count--;                                                          
  }                                                                   
  args->bytes_moved = args->count - count;                            
ffc07680:	93 7a 00 1c 	stw     r27,28(r26)                            
  tty->tty_rcvwakeup = 0;                                             
ffc07684:	90 1f 00 e4 	stw     r0,228(r31)                            
  rtems_semaphore_release (tty->isem);                                
ffc07688:	48 00 19 81 	bl      ffc09008 <rtems_semaphore_release>     
  return sc;                                                          
}                                                                     
ffc0768c:	80 01 00 34 	lwz     r0,52(r1)                              
ffc07690:	7f 23 cb 78 	mr      r3,r25                                 
ffc07694:	82 c1 00 08 	lwz     r22,8(r1)                              
ffc07698:	7c 08 03 a6 	mtlr    r0                                     
ffc0769c:	82 e1 00 0c 	lwz     r23,12(r1)                             
ffc076a0:	83 01 00 10 	lwz     r24,16(r1)                             
ffc076a4:	83 21 00 14 	lwz     r25,20(r1)                             
ffc076a8:	83 41 00 18 	lwz     r26,24(r1)                             
ffc076ac:	83 61 00 1c 	lwz     r27,28(r1)                             
ffc076b0:	83 81 00 20 	lwz     r28,32(r1)                             
ffc076b4:	83 a1 00 24 	lwz     r29,36(r1)                             
ffc076b8:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc076bc:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc076c0:	38 21 00 30 	addi    r1,r1,48                               
ffc076c4:	4e 80 00 20 	blr                                            
  }                                                                   
                                                                      
  if (tty->cindex == tty->ccount) {                                   
    tty->cindex = tty->ccount = 0;                                    
    tty->read_start_column = tty->column;                             
    if (tty->device.pollRead != NULL &&                               
ffc076c8:	80 1f 00 a0 	lwz     r0,160(r31)                            
    return sc;                                                        
  }                                                                   
                                                                      
  if (tty->cindex == tty->ccount) {                                   
    tty->cindex = tty->ccount = 0;                                    
    tty->read_start_column = tty->column;                             
ffc076cc:	81 3f 00 28 	lwz     r9,40(r31)                             
    if (tty->device.pollRead != NULL &&                               
ffc076d0:	2f 80 00 00 	cmpwi   cr7,r0,0                               
    rtems_semaphore_release (tty->isem);                              
    return sc;                                                        
  }                                                                   
                                                                      
  if (tty->cindex == tty->ccount) {                                   
    tty->cindex = tty->ccount = 0;                                    
ffc076d4:	93 3f 00 20 	stw     r25,32(r31)                            
ffc076d8:	93 3f 00 24 	stw     r25,36(r31)                            
    tty->read_start_column = tty->column;                             
ffc076dc:	91 3f 00 2c 	stw     r9,44(r31)                             
    if (tty->device.pollRead != NULL &&                               
ffc076e0:	41 9e 00 10 	beq-    cr7,ffc076f0 <rtems_termios_read+0x1bc>
ffc076e4:	81 3f 00 b4 	lwz     r9,180(r31)                            
ffc076e8:	2f 89 00 00 	cmpwi   cr7,r9,0                               
ffc076ec:	41 9e 01 bc 	beq-    cr7,ffc078a8 <rtems_termios_read+0x374>
 * Fill the input buffer from the raw input queue                     
 */                                                                   
static rtems_status_code                                              
fillBufferQueue (struct rtems_termios_tty *tty)                       
{                                                                     
  rtems_interval timeout = tty->rawInBufSemaphoreFirstTimeout;        
ffc076f0:	83 bf 00 74 	lwz     r29,116(r31)                           
  rtems_status_code sc;                                               
  int               wait = (int)1;                                    
ffc076f4:	3b c0 00 01 	li      r30,1                                  
  while ( wait ) {                                                    
    /*                                                                
     * Process characters read from raw queue                         
     */                                                               
    while ((tty->rawInBuf.Head != tty->rawInBuf.Tail) &&              
                       (tty->ccount < (CBUFSIZE-1))) {                
ffc076f8:	3e e0 00 00 	lis     r23,0                                  
        if (((tty->flow_ctrl & (FL_MDXON | FL_ISNTXOF))               
             ==                (FL_MDXON | FL_ISNTXOF))               
            && ((tty->rawOutBufState == rob_idle)                     
          || (tty->flow_ctrl & FL_OSTOP))) {                          
          /* XON should be sent now... */                             
          (*tty->device.write)(                                       
ffc076fc:	3a df 00 49 	addi    r22,r31,73                             
                                                                      
  while ( wait ) {                                                    
    /*                                                                
     * Process characters read from raw queue                         
     */                                                               
    while ((tty->rawInBuf.Head != tty->rawInBuf.Tail) &&              
ffc07700:	81 3f 00 5c 	lwz     r9,92(r31)                             
ffc07704:	80 1f 00 60 	lwz     r0,96(r31)                             
ffc07708:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc0770c:	41 9e 01 44 	beq-    cr7,ffc07850 <rtems_termios_read+0x31c>
                       (tty->ccount < (CBUFSIZE-1))) {                
ffc07710:	3b 97 21 74 	addi    r28,r23,8564                           
                                                                      
  while ( wait ) {                                                    
    /*                                                                
     * Process characters read from raw queue                         
     */                                                               
    while ((tty->rawInBuf.Head != tty->rawInBuf.Tail) &&              
ffc07714:	80 1f 00 20 	lwz     r0,32(r31)                             
                       (tty->ccount < (CBUFSIZE-1))) {                
ffc07718:	81 3c 00 08 	lwz     r9,8(r28)                              
ffc0771c:	39 29 ff ff 	addi    r9,r9,-1                               
                                                                      
  while ( wait ) {                                                    
    /*                                                                
     * Process characters read from raw queue                         
     */                                                               
    while ((tty->rawInBuf.Head != tty->rawInBuf.Tail) &&              
ffc07720:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc07724:	41 bd 00 48 	bgt+    cr7,ffc0776c <rtems_termios_read+0x238><== ALWAYS TAKEN
ffc07728:	48 00 01 28 	b       ffc07850 <rtems_termios_read+0x31c>    <== NOT EXECUTED
        }                                                             
      }                                                               
                                                                      
      /* continue processing new character */                         
      if (tty->termios.c_lflag & ICANON) {                            
        if (siproc (c, tty))                                          
ffc0772c:	7f a3 eb 78 	mr      r3,r29                                 
ffc07730:	7f e4 fb 78 	mr      r4,r31                                 
ffc07734:	4b ff fc 41 	bl      ffc07374 <siproc>                      
                                                                      
  while ( wait ) {                                                    
    /*                                                                
     * Process characters read from raw queue                         
     */                                                               
    while ((tty->rawInBuf.Head != tty->rawInBuf.Tail) &&              
ffc07738:	81 3f 00 5c 	lwz     r9,92(r31)                             
ffc0773c:	80 1f 00 60 	lwz     r0,96(r31)                             
      }                                                               
                                                                      
      /* continue processing new character */                         
      if (tty->termios.c_lflag & ICANON) {                            
        if (siproc (c, tty))                                          
          wait = 0;                                                   
ffc07740:	30 63 ff ff 	addic   r3,r3,-1                               
ffc07744:	7c 63 19 10 	subfe   r3,r3,r3                               
      } else {                                                        
        siproc (c, tty);                                              
        if (tty->ccount >= tty->termios.c_cc[VMIN])                   
          wait = 0;                                                   
      }                                                               
      timeout = tty->rawInBufSemaphoreTimeout;                        
ffc07748:	83 bf 00 70 	lwz     r29,112(r31)                           
                                                                      
  while ( wait ) {                                                    
    /*                                                                
     * Process characters read from raw queue                         
     */                                                               
    while ((tty->rawInBuf.Head != tty->rawInBuf.Tail) &&              
ffc0774c:	7f 89 00 00 	cmpw    cr7,r9,r0                              
      }                                                               
                                                                      
      /* continue processing new character */                         
      if (tty->termios.c_lflag & ICANON) {                            
        if (siproc (c, tty))                                          
          wait = 0;                                                   
ffc07750:	7f de 18 38 	and     r30,r30,r3                             
                                                                      
  while ( wait ) {                                                    
    /*                                                                
     * Process characters read from raw queue                         
     */                                                               
    while ((tty->rawInBuf.Head != tty->rawInBuf.Tail) &&              
ffc07754:	41 9e 00 fc 	beq-    cr7,ffc07850 <rtems_termios_read+0x31c>
                       (tty->ccount < (CBUFSIZE-1))) {                
ffc07758:	81 7c 00 08 	lwz     r11,8(r28)                             
                                                                      
  while ( wait ) {                                                    
    /*                                                                
     * Process characters read from raw queue                         
     */                                                               
    while ((tty->rawInBuf.Head != tty->rawInBuf.Tail) &&              
ffc0775c:	81 3f 00 20 	lwz     r9,32(r31)                             
                       (tty->ccount < (CBUFSIZE-1))) {                
ffc07760:	38 0b ff ff 	addi    r0,r11,-1                              
                                                                      
  while ( wait ) {                                                    
    /*                                                                
     * Process characters read from raw queue                         
     */                                                               
    while ((tty->rawInBuf.Head != tty->rawInBuf.Tail) &&              
ffc07764:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc07768:	40 9c 00 e8 	bge-    cr7,ffc07850 <rtems_termios_read+0x31c><== NEVER TAKEN
                       (tty->ccount < (CBUFSIZE-1))) {                
      unsigned char c;                                                
      unsigned int newHead;                                           
                                                                      
      newHead = (tty->rawInBuf.Head + 1) % tty->rawInBuf.Size;        
ffc0776c:	81 3f 00 5c 	lwz     r9,92(r31)                             
ffc07770:	81 7f 00 64 	lwz     r11,100(r31)                           
ffc07774:	39 29 00 01 	addi    r9,r9,1                                
      c = tty->rawInBuf.theBuf[newHead];                              
ffc07778:	81 1f 00 58 	lwz     r8,88(r31)                             
    while ((tty->rawInBuf.Head != tty->rawInBuf.Tail) &&              
                       (tty->ccount < (CBUFSIZE-1))) {                
      unsigned char c;                                                
      unsigned int newHead;                                           
                                                                      
      newHead = (tty->rawInBuf.Head + 1) % tty->rawInBuf.Size;        
ffc0777c:	7c 09 5b 96 	divwu   r0,r9,r11                              
      c = tty->rawInBuf.theBuf[newHead];                              
      tty->rawInBuf.Head = newHead;                                   
      if(((tty->rawInBuf.Tail-newHead+tty->rawInBuf.Size)             
ffc07780:	81 5f 00 bc 	lwz     r10,188(r31)                           
    while ((tty->rawInBuf.Head != tty->rawInBuf.Tail) &&              
                       (tty->ccount < (CBUFSIZE-1))) {                
      unsigned char c;                                                
      unsigned int newHead;                                           
                                                                      
      newHead = (tty->rawInBuf.Head + 1) % tty->rawInBuf.Size;        
ffc07784:	7c 00 59 d6 	mullw   r0,r0,r11                              
ffc07788:	7c 00 48 50 	subf    r0,r0,r9                               
      c = tty->rawInBuf.theBuf[newHead];                              
ffc0778c:	7f a8 00 ae 	lbzx    r29,r8,r0                              
      tty->rawInBuf.Head = newHead;                                   
ffc07790:	90 1f 00 5c 	stw     r0,92(r31)                             
      if(((tty->rawInBuf.Tail-newHead+tty->rawInBuf.Size)             
ffc07794:	81 7f 00 60 	lwz     r11,96(r31)                            
ffc07798:	81 1f 00 64 	lwz     r8,100(r31)                            
          % tty->rawInBuf.Size)                                       
ffc0779c:	81 3f 00 64 	lwz     r9,100(r31)                            
      unsigned int newHead;                                           
                                                                      
      newHead = (tty->rawInBuf.Head + 1) % tty->rawInBuf.Size;        
      c = tty->rawInBuf.theBuf[newHead];                              
      tty->rawInBuf.Head = newHead;                                   
      if(((tty->rawInBuf.Tail-newHead+tty->rawInBuf.Size)             
ffc077a0:	7d 68 5a 14 	add     r11,r8,r11                             
ffc077a4:	7c 00 58 50 	subf    r0,r0,r11                              
          % tty->rawInBuf.Size)                                       
ffc077a8:	7d 60 4b 96 	divwu   r11,r0,r9                              
ffc077ac:	7d 2b 49 d6 	mullw   r9,r11,r9                              
ffc077b0:	7c 09 00 50 	subf    r0,r9,r0                               
      unsigned int newHead;                                           
                                                                      
      newHead = (tty->rawInBuf.Head + 1) % tty->rawInBuf.Size;        
      c = tty->rawInBuf.theBuf[newHead];                              
      tty->rawInBuf.Head = newHead;                                   
      if(((tty->rawInBuf.Tail-newHead+tty->rawInBuf.Size)             
ffc077b4:	7f 80 50 40 	cmplw   cr7,r0,r10                             
ffc077b8:	40 9c 00 50 	bge-    cr7,ffc07808 <rtems_termios_read+0x2d4><== NEVER TAKEN
          % tty->rawInBuf.Size)                                       
         < tty->lowwater) {                                           
        tty->flow_ctrl &= ~FL_IREQXOF;                                
ffc077bc:	80 1f 00 b8 	lwz     r0,184(r31)                            
ffc077c0:	54 00 00 3c 	rlwinm  r0,r0,0,0,30                           
ffc077c4:	90 1f 00 b8 	stw     r0,184(r31)                            
        /* if tx stopped and XON should be sent... */                 
        if (((tty->flow_ctrl & (FL_MDXON | FL_ISNTXOF))               
ffc077c8:	80 1f 00 b8 	lwz     r0,184(r31)                            
ffc077cc:	70 00 02 02 	andi.   r0,r0,514                              
ffc077d0:	2f 80 02 02 	cmpwi   cr7,r0,514                             
ffc077d4:	41 9e 00 a0 	beq-    cr7,ffc07874 <rtems_termios_read+0x340><== NEVER TAKEN
            && ((tty->rawOutBufState == rob_idle)                     
          || (tty->flow_ctrl & FL_OSTOP))) {                          
          /* XON should be sent now... */                             
          (*tty->device.write)(                                       
            tty->minor, (void *)&(tty->termios.c_cc[VSTART]), 1);     
        } else if (tty->flow_ctrl & FL_MDRTS) {                       
ffc077d8:	80 1f 00 b8 	lwz     r0,184(r31)                            
ffc077dc:	70 09 01 00 	andi.   r9,r0,256                              
ffc077e0:	41 82 00 28 	beq-    ffc07808 <rtems_termios_read+0x2d4>    <== ALWAYS TAKEN
          tty->flow_ctrl &= ~FL_IRTSOFF;                              
          /* activate RTS line */                                     
          if (tty->device.startRemoteTx != NULL) {                    
ffc077e4:	80 1f 00 b0 	lwz     r0,176(r31)                            <== NOT EXECUTED
          || (tty->flow_ctrl & FL_OSTOP))) {                          
          /* XON should be sent now... */                             
          (*tty->device.write)(                                       
            tty->minor, (void *)&(tty->termios.c_cc[VSTART]), 1);     
        } else if (tty->flow_ctrl & FL_MDRTS) {                       
          tty->flow_ctrl &= ~FL_IRTSOFF;                              
ffc077e8:	81 3f 00 b8 	lwz     r9,184(r31)                            <== NOT EXECUTED
          /* activate RTS line */                                     
          if (tty->device.startRemoteTx != NULL) {                    
ffc077ec:	2f 80 00 00 	cmpwi   cr7,r0,0                               <== NOT EXECUTED
          || (tty->flow_ctrl & FL_OSTOP))) {                          
          /* XON should be sent now... */                             
          (*tty->device.write)(                                       
            tty->minor, (void *)&(tty->termios.c_cc[VSTART]), 1);     
        } else if (tty->flow_ctrl & FL_MDRTS) {                       
          tty->flow_ctrl &= ~FL_IRTSOFF;                              
ffc077f0:	55 29 07 b8 	rlwinm  r9,r9,0,30,28                          <== NOT EXECUTED
ffc077f4:	91 3f 00 b8 	stw     r9,184(r31)                            <== NOT EXECUTED
          /* activate RTS line */                                     
          if (tty->device.startRemoteTx != NULL) {                    
ffc077f8:	41 9e 00 10 	beq-    cr7,ffc07808 <rtems_termios_read+0x2d4><== NOT EXECUTED
            tty->device.startRemoteTx(tty->minor);                    
ffc077fc:	80 7f 00 10 	lwz     r3,16(r31)                             <== NOT EXECUTED
ffc07800:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc07804:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
          }                                                           
        }                                                             
      }                                                               
                                                                      
      /* continue processing new character */                         
      if (tty->termios.c_lflag & ICANON) {                            
ffc07808:	80 1f 00 3c 	lwz     r0,60(r31)                             
ffc0780c:	70 09 00 02 	andi.   r9,r0,2                                
ffc07810:	40 a2 ff 1c 	bne-    ffc0772c <rtems_termios_read+0x1f8>    <== ALWAYS TAKEN
        if (siproc (c, tty))                                          
          wait = 0;                                                   
      } else {                                                        
        siproc (c, tty);                                              
ffc07814:	7f a3 eb 78 	mr      r3,r29                                 <== NOT EXECUTED
ffc07818:	7f e4 fb 78 	mr      r4,r31                                 <== NOT EXECUTED
ffc0781c:	4b ff fb 59 	bl      ffc07374 <siproc>                      <== NOT EXECUTED
        if (tty->ccount >= tty->termios.c_cc[VMIN])                   
ffc07820:	88 1f 00 47 	lbz     r0,71(r31)                             <== NOT EXECUTED
ffc07824:	81 3f 00 20 	lwz     r9,32(r31)                             <== NOT EXECUTED
          wait = 0;                                                   
      }                                                               
      timeout = tty->rawInBufSemaphoreTimeout;                        
ffc07828:	83 bf 00 70 	lwz     r29,112(r31)                           <== NOT EXECUTED
        if (siproc (c, tty))                                          
          wait = 0;                                                   
      } else {                                                        
        siproc (c, tty);                                              
        if (tty->ccount >= tty->termios.c_cc[VMIN])                   
          wait = 0;                                                   
ffc0782c:	7f 89 00 00 	cmpw    cr7,r9,r0                              <== NOT EXECUTED
                                                                      
  while ( wait ) {                                                    
    /*                                                                
     * Process characters read from raw queue                         
     */                                                               
    while ((tty->rawInBuf.Head != tty->rawInBuf.Tail) &&              
ffc07830:	81 3f 00 5c 	lwz     r9,92(r31)                             <== NOT EXECUTED
        if (siproc (c, tty))                                          
          wait = 0;                                                   
      } else {                                                        
        siproc (c, tty);                                              
        if (tty->ccount >= tty->termios.c_cc[VMIN])                   
          wait = 0;                                                   
ffc07834:	7c 00 00 26 	mfcr    r0                                     <== NOT EXECUTED
ffc07838:	54 00 ef fe 	rlwinm  r0,r0,29,31,31                         <== NOT EXECUTED
ffc0783c:	7c 00 00 d0 	neg     r0,r0                                  <== NOT EXECUTED
ffc07840:	7f de 00 38 	and     r30,r30,r0                             <== NOT EXECUTED
                                                                      
  while ( wait ) {                                                    
    /*                                                                
     * Process characters read from raw queue                         
     */                                                               
    while ((tty->rawInBuf.Head != tty->rawInBuf.Tail) &&              
ffc07844:	80 1f 00 60 	lwz     r0,96(r31)                             <== NOT EXECUTED
ffc07848:	7f 89 00 00 	cmpw    cr7,r9,r0                              <== NOT EXECUTED
ffc0784c:	40 9e ff 0c 	bne+    cr7,ffc07758 <rtems_termios_read+0x224><== NOT EXECUTED
    }                                                                 
                                                                      
    /*                                                                
     * Wait for characters                                            
     */                                                               
    if ( wait ) {                                                     
ffc07850:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc07854:	41 9e fd d0 	beq+    cr7,ffc07624 <rtems_termios_read+0xf0> 
      sc = rtems_semaphore_obtain(                                    
ffc07858:	80 7f 00 68 	lwz     r3,104(r31)                            
ffc0785c:	7f a5 eb 78 	mr      r5,r29                                 
ffc07860:	80 9f 00 6c 	lwz     r4,108(r31)                            
ffc07864:	48 00 16 1d 	bl      ffc08e80 <rtems_semaphore_obtain>      
        tty->rawInBuf.Semaphore, tty->rawInBufSemaphoreOptions, timeout);
      if (sc != RTEMS_SUCCESSFUL)                                     
ffc07868:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0786c:	41 9e fe 94 	beq+    cr7,ffc07700 <rtems_termios_read+0x1cc><== ALWAYS TAKEN
ffc07870:	4b ff fd b4 	b       ffc07624 <rtems_termios_read+0xf0>     <== NOT EXECUTED
         < tty->lowwater) {                                           
        tty->flow_ctrl &= ~FL_IREQXOF;                                
        /* if tx stopped and XON should be sent... */                 
        if (((tty->flow_ctrl & (FL_MDXON | FL_ISNTXOF))               
             ==                (FL_MDXON | FL_ISNTXOF))               
            && ((tty->rawOutBufState == rob_idle)                     
ffc07874:	80 1f 00 94 	lwz     r0,148(r31)                            <== NOT EXECUTED
ffc07878:	2f 80 00 00 	cmpwi   cr7,r0,0                               <== NOT EXECUTED
ffc0787c:	41 9e 00 10 	beq-    cr7,ffc0788c <rtems_termios_read+0x358><== NOT EXECUTED
          || (tty->flow_ctrl & FL_OSTOP))) {                          
ffc07880:	80 1f 00 b8 	lwz     r0,184(r31)                            <== NOT EXECUTED
ffc07884:	70 09 00 20 	andi.   r9,r0,32                               <== NOT EXECUTED
ffc07888:	41 a2 ff 50 	beq-    ffc077d8 <rtems_termios_read+0x2a4>    <== NOT EXECUTED
          /* XON should be sent now... */                             
          (*tty->device.write)(                                       
ffc0788c:	80 1f 00 a4 	lwz     r0,164(r31)                            <== NOT EXECUTED
ffc07890:	7e c4 b3 78 	mr      r4,r22                                 <== NOT EXECUTED
ffc07894:	80 7f 00 10 	lwz     r3,16(r31)                             <== NOT EXECUTED
ffc07898:	38 a0 00 01 	li      r5,1                                   <== NOT EXECUTED
ffc0789c:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc078a0:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
ffc078a4:	4b ff ff 64 	b       ffc07808 <rtems_termios_read+0x2d4>    <== NOT EXECUTED
static rtems_status_code                                              
fillBufferPoll (struct rtems_termios_tty *tty)                        
{                                                                     
  int n;                                                              
                                                                      
  if (tty->termios.c_lflag & ICANON) {                                
ffc078a8:	81 3f 00 3c 	lwz     r9,60(r31)                             
ffc078ac:	71 2b 00 02 	andi.   r11,r9,2                               
ffc078b0:	41 82 00 34 	beq-    ffc078e4 <rtems_termios_read+0x3b0>    
    for (;;) {                                                        
      n = (*tty->device.pollRead)(tty->minor);                        
ffc078b4:	80 7f 00 10 	lwz     r3,16(r31)                             
ffc078b8:	7c 09 03 a6 	mtctr   r0                                     
ffc078bc:	4e 80 04 21 	bctrl                                          
      if (n < 0) {                                                    
        rtems_task_wake_after (1);                                    
      } else {                                                        
        if  (siproc (n, tty))                                         
ffc078c0:	7f e4 fb 78 	mr      r4,r31                                 
  int n;                                                              
                                                                      
  if (tty->termios.c_lflag & ICANON) {                                
    for (;;) {                                                        
      n = (*tty->device.pollRead)(tty->minor);                        
      if (n < 0) {                                                    
ffc078c4:	2c 03 00 00 	cmpwi   r3,0                                   
        rtems_task_wake_after (1);                                    
      } else {                                                        
        if  (siproc (n, tty))                                         
ffc078c8:	54 63 06 3e 	clrlwi  r3,r3,24                               
  int n;                                                              
                                                                      
  if (tty->termios.c_lflag & ICANON) {                                
    for (;;) {                                                        
      n = (*tty->device.pollRead)(tty->minor);                        
      if (n < 0) {                                                    
ffc078cc:	41 80 00 c0 	blt-    ffc0798c <rtems_termios_read+0x458>    
        rtems_task_wake_after (1);                                    
      } else {                                                        
        if  (siproc (n, tty))                                         
ffc078d0:	4b ff fa a5 	bl      ffc07374 <siproc>                      
ffc078d4:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc078d8:	40 be fd 4c 	bne-    cr7,ffc07624 <rtems_termios_read+0xf0> 
static rtems_status_code                                              
fillBufferPoll (struct rtems_termios_tty *tty)                        
{                                                                     
  int n;                                                              
                                                                      
  if (tty->termios.c_lflag & ICANON) {                                
ffc078dc:	80 1f 00 a0 	lwz     r0,160(r31)                            
ffc078e0:	4b ff ff d4 	b       ffc078b4 <rtems_termios_read+0x380>    
      }                                                               
    }                                                                 
  } else {                                                            
    rtems_interval then, now;                                         
                                                                      
    then = rtems_clock_get_ticks_since_boot();                        
ffc078e4:	48 00 0d 6d 	bl      ffc08650 <rtems_clock_get_ticks_since_boot>
ffc078e8:	7c 7e 1b 78 	mr      r30,r3                                 
    for (;;) {                                                        
      n = (*tty->device.pollRead)(tty->minor);                        
ffc078ec:	80 1f 00 a0 	lwz     r0,160(r31)                            
ffc078f0:	80 7f 00 10 	lwz     r3,16(r31)                             
ffc078f4:	7c 09 03 a6 	mtctr   r0                                     
ffc078f8:	4e 80 04 21 	bctrl                                          
      if (n < 0) {                                                    
ffc078fc:	2c 03 00 00 	cmpwi   r3,0                                   
ffc07900:	41 80 00 38 	blt-    ffc07938 <rtems_termios_read+0x404>    
            break;                                                    
          }                                                           
        }                                                             
        rtems_task_wake_after (1);                                    
      } else {                                                        
        siproc (n, tty);                                              
ffc07904:	54 63 06 3e 	clrlwi  r3,r3,24                               
ffc07908:	7f e4 fb 78 	mr      r4,r31                                 
ffc0790c:	4b ff fa 69 	bl      ffc07374 <siproc>                      
        if (tty->ccount >= tty->termios.c_cc[VMIN])                   
ffc07910:	88 1f 00 47 	lbz     r0,71(r31)                             
ffc07914:	81 3f 00 20 	lwz     r9,32(r31)                             
ffc07918:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc0791c:	40 bc fd 08 	bge-    cr7,ffc07624 <rtems_termios_read+0xf0> <== NEVER TAKEN
          break;                                                      
        if (tty->termios.c_cc[VMIN] && tty->termios.c_cc[VTIME])      
ffc07920:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc07924:	41 be ff c8 	beq-    cr7,ffc078ec <rtems_termios_read+0x3b8><== NEVER TAKEN
ffc07928:	88 1f 00 46 	lbz     r0,70(r31)                             
ffc0792c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc07930:	41 9e ff bc 	beq+    cr7,ffc078ec <rtems_termios_read+0x3b8><== NEVER TAKEN
ffc07934:	4b ff ff b0 	b       ffc078e4 <rtems_termios_read+0x3b0>    
                                                                      
    then = rtems_clock_get_ticks_since_boot();                        
    for (;;) {                                                        
      n = (*tty->device.pollRead)(tty->minor);                        
      if (n < 0) {                                                    
        if (tty->termios.c_cc[VMIN]) {                                
ffc07938:	88 1f 00 47 	lbz     r0,71(r31)                             
ffc0793c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc07940:	41 9e 00 28 	beq-    cr7,ffc07968 <rtems_termios_read+0x434><== NEVER TAKEN
          if (tty->termios.c_cc[VTIME] && tty->ccount) {              
ffc07944:	88 1f 00 46 	lbz     r0,70(r31)                             
ffc07948:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0794c:	41 9e 00 10 	beq-    cr7,ffc0795c <rtems_termios_read+0x428><== NEVER TAKEN
ffc07950:	80 1f 00 20 	lwz     r0,32(r31)                             
ffc07954:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc07958:	40 9e 00 1c 	bne-    cr7,ffc07974 <rtems_termios_read+0x440>
          now = rtems_clock_get_ticks_since_boot();                   
          if ((now - then) > tty->vtimeTicks) {                       
            break;                                                    
          }                                                           
        }                                                             
        rtems_task_wake_after (1);                                    
ffc0795c:	38 60 00 01 	li      r3,1                                   
ffc07960:	48 00 1c 75 	bl      ffc095d4 <rtems_task_wake_after>       
ffc07964:	4b ff ff 88 	b       ffc078ec <rtems_termios_read+0x3b8>    
            if ((now - then) > tty->vtimeTicks) {                     
              break;                                                  
            }                                                         
          }                                                           
        } else {                                                      
          if (!tty->termios.c_cc[VTIME])                              
ffc07968:	88 1f 00 46 	lbz     r0,70(r31)                             <== NOT EXECUTED
ffc0796c:	2f 80 00 00 	cmpwi   cr7,r0,0                               <== NOT EXECUTED
ffc07970:	41 be fc b4 	beq-    cr7,ffc07624 <rtems_termios_read+0xf0> <== NOT EXECUTED
            break;                                                    
          now = rtems_clock_get_ticks_since_boot();                   
ffc07974:	48 00 0c dd 	bl      ffc08650 <rtems_clock_get_ticks_since_boot>
          if ((now - then) > tty->vtimeTicks) {                       
ffc07978:	80 1f 00 54 	lwz     r0,84(r31)                             
ffc0797c:	7c 7e 18 50 	subf    r3,r30,r3                              
ffc07980:	7f 83 00 40 	cmplw   cr7,r3,r0                              
ffc07984:	40 9d ff d8 	ble+    cr7,ffc0795c <rtems_termios_read+0x428>
ffc07988:	4b ff fc 9c 	b       ffc07624 <rtems_termios_read+0xf0>     
                                                                      
  if (tty->termios.c_lflag & ICANON) {                                
    for (;;) {                                                        
      n = (*tty->device.pollRead)(tty->minor);                        
      if (n < 0) {                                                    
        rtems_task_wake_after (1);                                    
ffc0798c:	38 60 00 01 	li      r3,1                                   
ffc07990:	48 00 1c 45 	bl      ffc095d4 <rtems_task_wake_after>       
static rtems_status_code                                              
fillBufferPoll (struct rtems_termios_tty *tty)                        
{                                                                     
  int n;                                                              
                                                                      
  if (tty->termios.c_lflag & ICANON) {                                
ffc07994:	80 1f 00 a0 	lwz     r0,160(r31)                            
ffc07998:	4b ff ff 1c 	b       ffc078b4 <rtems_termios_read+0x380>    
                                                                      

ffc07e20 <rtems_termios_refill_transmitter>: * in task-driven mode, this function is called in Tx task context * in interrupt-driven mode, this function is called in TxIRQ context */ int rtems_termios_refill_transmitter (struct rtems_termios_tty *tty) {
ffc07e20:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc07e24:	7c 08 02 a6 	mflr    r0                                     
ffc07e28:	90 01 00 1c 	stw     r0,28(r1)                              
  int nToSend;                                                        
  rtems_interrupt_level level;                                        
  int len;                                                            
                                                                      
  /* check for XOF/XON to send */                                     
  if ((tty->flow_ctrl & (FL_MDXOF | FL_IREQXOF | FL_ISNTXOF))         
ffc07e2c:	80 03 00 b8 	lwz     r0,184(r3)                             
 * in task-driven mode, this function is called in Tx task context    
 * in interrupt-driven mode, this function is called in TxIRQ context 
 */                                                                   
int                                                                   
rtems_termios_refill_transmitter (struct rtems_termios_tty *tty)      
{                                                                     
ffc07e30:	93 e1 00 14 	stw     r31,20(r1)                             
ffc07e34:	7c 7f 1b 78 	mr      r31,r3                                 
  int nToSend;                                                        
  rtems_interrupt_level level;                                        
  int len;                                                            
                                                                      
  /* check for XOF/XON to send */                                     
  if ((tty->flow_ctrl & (FL_MDXOF | FL_IREQXOF | FL_ISNTXOF))         
ffc07e38:	70 00 04 03 	andi.   r0,r0,1027                             
 * in task-driven mode, this function is called in Tx task context    
 * in interrupt-driven mode, this function is called in TxIRQ context 
 */                                                                   
int                                                                   
rtems_termios_refill_transmitter (struct rtems_termios_tty *tty)      
{                                                                     
ffc07e3c:	93 a1 00 0c 	stw     r29,12(r1)                             
  int nToSend;                                                        
  rtems_interrupt_level level;                                        
  int len;                                                            
                                                                      
  /* check for XOF/XON to send */                                     
  if ((tty->flow_ctrl & (FL_MDXOF | FL_IREQXOF | FL_ISNTXOF))         
ffc07e40:	2f 80 04 01 	cmpwi   cr7,r0,1025                            
 * in task-driven mode, this function is called in Tx task context    
 * in interrupt-driven mode, this function is called in TxIRQ context 
 */                                                                   
int                                                                   
rtems_termios_refill_transmitter (struct rtems_termios_tty *tty)      
{                                                                     
ffc07e44:	93 c1 00 10 	stw     r30,16(r1)                             
  int nToSend;                                                        
  rtems_interrupt_level level;                                        
  int len;                                                            
                                                                      
  /* check for XOF/XON to send */                                     
  if ((tty->flow_ctrl & (FL_MDXOF | FL_IREQXOF | FL_ISNTXOF))         
ffc07e48:	41 9e 01 5c 	beq-    cr7,ffc07fa4 <rtems_termios_refill_transmitter+0x184><== NEVER TAKEN
    tty->flow_ctrl |= FL_ISNTXOF;                                     
    rtems_interrupt_enable(level);                                    
                                                                      
    nToSend = 1;                                                      
                                                                      
  } else if ((tty->flow_ctrl & (FL_IREQXOF | FL_ISNTXOF)) == FL_ISNTXOF) {
ffc07e4c:	80 03 00 b8 	lwz     r0,184(r3)                             
ffc07e50:	54 00 07 be 	clrlwi  r0,r0,30                               
ffc07e54:	2f 80 00 02 	cmpwi   cr7,r0,2                               
ffc07e58:	41 9e 01 b4 	beq-    cr7,ffc0800c <rtems_termios_refill_transmitter+0x1ec><== NEVER TAKEN
    tty->flow_ctrl &= ~FL_ISNTXOF;                                    
    rtems_interrupt_enable(level);                                    
                                                                      
    nToSend = 1;                                                      
  } else {                                                            
    if ( tty->rawOutBuf.Head == tty->rawOutBuf.Tail ) {               
ffc07e5c:	81 23 00 80 	lwz     r9,128(r3)                             
ffc07e60:	80 03 00 84 	lwz     r0,132(r3)                             
ffc07e64:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc07e68:	41 9e 00 d8 	beq-    cr7,ffc07f40 <rtems_termios_refill_transmitter+0x120>
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc07e6c:	7c 00 00 a6 	mfmsr   r0                                     
ffc07e70:	7d 30 42 a6 	mfsprg  r9,0                                   
ffc07e74:	7c 09 48 78 	andc    r9,r0,r9                               
ffc07e78:	7d 20 01 24 	mtmsr   r9                                     
      return 0;                                                       
    }                                                                 
                                                                      
    rtems_interrupt_disable(level);                                   
    len = tty->t_dqlen;                                               
    tty->t_dqlen = 0;                                                 
ffc07e7c:	39 20 00 00 	li      r9,0                                   
      }                                                               
      return 0;                                                       
    }                                                                 
                                                                      
    rtems_interrupt_disable(level);                                   
    len = tty->t_dqlen;                                               
ffc07e80:	83 c3 00 90 	lwz     r30,144(r3)                            
    tty->t_dqlen = 0;                                                 
ffc07e84:	91 23 00 90 	stw     r9,144(r3)                             
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc07e88:	7c 00 01 24 	mtmsr   r0                                     
    rtems_interrupt_enable(level);                                    
                                                                      
    newTail = (tty->rawOutBuf.Tail + len) % tty->rawOutBuf.Size;      
ffc07e8c:	80 03 00 84 	lwz     r0,132(r3)                             
ffc07e90:	81 23 00 88 	lwz     r9,136(r3)                             
ffc07e94:	7c 1e 02 14 	add     r0,r30,r0                              
    tty->rawOutBuf.Tail = newTail;                                    
    if (tty->rawOutBufState == rob_wait) {                            
ffc07e98:	81 63 00 94 	lwz     r11,148(r3)                            
    rtems_interrupt_disable(level);                                   
    len = tty->t_dqlen;                                               
    tty->t_dqlen = 0;                                                 
    rtems_interrupt_enable(level);                                    
                                                                      
    newTail = (tty->rawOutBuf.Tail + len) % tty->rawOutBuf.Size;      
ffc07e9c:	7f c0 4b 96 	divwu   r30,r0,r9                              
    tty->rawOutBuf.Tail = newTail;                                    
    if (tty->rawOutBufState == rob_wait) {                            
ffc07ea0:	2f 8b 00 02 	cmpwi   cr7,r11,2                              
    rtems_interrupt_disable(level);                                   
    len = tty->t_dqlen;                                               
    tty->t_dqlen = 0;                                                 
    rtems_interrupt_enable(level);                                    
                                                                      
    newTail = (tty->rawOutBuf.Tail + len) % tty->rawOutBuf.Size;      
ffc07ea4:	7f de 49 d6 	mullw   r30,r30,r9                             
ffc07ea8:	7f de 00 50 	subf    r30,r30,r0                             
    tty->rawOutBuf.Tail = newTail;                                    
ffc07eac:	93 c3 00 84 	stw     r30,132(r3)                            
    if (tty->rawOutBufState == rob_wait) {                            
ffc07eb0:	41 9e 00 e8 	beq-    cr7,ffc07f98 <rtems_termios_refill_transmitter+0x178>
       * wake up any pending writer task                              
       */                                                             
      rtems_semaphore_release (tty->rawOutBuf.Semaphore);             
    }                                                                 
                                                                      
    if (newTail == tty->rawOutBuf.Head) {                             
ffc07eb4:	80 1f 00 80 	lwz     r0,128(r31)                            
ffc07eb8:	7f 80 f0 00 	cmpw    cr7,r0,r30                             
ffc07ebc:	41 9e 00 a0 	beq-    cr7,ffc07f5c <rtems_termios_refill_transmitter+0x13c>
      if ( tty->tty_snd.sw_pfn != NULL) {                             
        (*tty->tty_snd.sw_pfn)(&tty->termios, tty->tty_snd.sw_arg);   
      }                                                               
    }                                                                 
    /* check, whether output should stop due to received XOFF */      
    else if ((tty->flow_ctrl & (FL_MDXON | FL_ORCVXOF))               
ffc07ec0:	80 1f 00 b8 	lwz     r0,184(r31)                            
ffc07ec4:	70 00 02 10 	andi.   r0,r0,528                              
ffc07ec8:	2f 80 02 10 	cmpwi   cr7,r0,528                             
ffc07ecc:	41 9e 01 a8 	beq-    cr7,ffc08074 <rtems_termios_refill_transmitter+0x254><== NEVER TAKEN
      nToSend = 0;                                                    
    } else {                                                          
      /*                                                              
       * Buffer not empty, start tranmitter                           
       */                                                             
      if (newTail > tty->rawOutBuf.Head)                              
ffc07ed0:	80 1f 00 80 	lwz     r0,128(r31)                            
ffc07ed4:	7f 9e 00 40 	cmplw   cr7,r30,r0                             
ffc07ed8:	41 9d 00 b4 	bgt-    cr7,ffc07f8c <rtems_termios_refill_transmitter+0x16c>
        nToSend = tty->rawOutBuf.Size - newTail;                      
      else                                                            
        nToSend = tty->rawOutBuf.Head - newTail;                      
ffc07edc:	83 bf 00 80 	lwz     r29,128(r31)                           
ffc07ee0:	7f be e8 50 	subf    r29,r30,r29                            
      /* when flow control XON or XOF, don't send blocks of data     */
      /* to allow fast reaction on incoming flow ctrl and low latency*/
      /* for outgoing flow control                                   */
      if (tty->flow_ctrl & (FL_MDXON | FL_MDXOF)) {                   
ffc07ee4:	80 1f 00 b8 	lwz     r0,184(r31)                            
ffc07ee8:	7f a5 eb 78 	mr      r5,r29                                 
ffc07eec:	70 09 06 00 	andi.   r9,r0,1536                             
ffc07ef0:	41 82 00 0c 	beq-    ffc07efc <rtems_termios_refill_transmitter+0xdc>
ffc07ef4:	38 a0 00 01 	li      r5,1                                   
        nToSend = 1;                                                  
ffc07ef8:	3b a0 00 01 	li      r29,1                                  
      }                                                               
      tty->rawOutBufState = rob_busy; /*apm*/                         
ffc07efc:	38 00 00 01 	li      r0,1                                   
      (*tty->device.write)(                                           
ffc07f00:	80 9f 00 7c 	lwz     r4,124(r31)                            
      /* to allow fast reaction on incoming flow ctrl and low latency*/
      /* for outgoing flow control                                   */
      if (tty->flow_ctrl & (FL_MDXON | FL_MDXOF)) {                   
        nToSend = 1;                                                  
      }                                                               
      tty->rawOutBufState = rob_busy; /*apm*/                         
ffc07f04:	90 1f 00 94 	stw     r0,148(r31)                            
      (*tty->device.write)(                                           
ffc07f08:	7c 84 f2 14 	add     r4,r4,r30                              
ffc07f0c:	80 1f 00 a4 	lwz     r0,164(r31)                            
ffc07f10:	80 7f 00 10 	lwz     r3,16(r31)                             
ffc07f14:	7c 09 03 a6 	mtctr   r0                                     
ffc07f18:	4e 80 04 21 	bctrl                                          
        tty->minor, &tty->rawOutBuf.theBuf[newTail], nToSend);        
    }                                                                 
    tty->rawOutBuf.Tail = newTail; /*apm*/                            
ffc07f1c:	93 df 00 84 	stw     r30,132(r31)                           
  }                                                                   
  return nToSend;                                                     
}                                                                     
ffc07f20:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc07f24:	7f a3 eb 78 	mr      r3,r29                                 
ffc07f28:	83 c1 00 10 	lwz     r30,16(r1)                             
ffc07f2c:	7c 08 03 a6 	mtlr    r0                                     
ffc07f30:	83 a1 00 0c 	lwz     r29,12(r1)                             
ffc07f34:	83 e1 00 14 	lwz     r31,20(r1)                             
ffc07f38:	38 21 00 18 	addi    r1,r1,24                               
ffc07f3c:	4e 80 00 20 	blr                                            
  } else {                                                            
    if ( tty->rawOutBuf.Head == tty->rawOutBuf.Tail ) {               
      /*                                                              
       * buffer was empty                                             
       */                                                             
      if (tty->rawOutBufState == rob_wait) {                          
ffc07f40:	80 03 00 94 	lwz     r0,148(r3)                             
        /*                                                            
         * this should never happen...                                
         */                                                           
        rtems_semaphore_release (tty->rawOutBuf.Semaphore);           
      }                                                               
      return 0;                                                       
ffc07f44:	3b a0 00 00 	li      r29,0                                  
  } else {                                                            
    if ( tty->rawOutBuf.Head == tty->rawOutBuf.Tail ) {               
      /*                                                              
       * buffer was empty                                             
       */                                                             
      if (tty->rawOutBufState == rob_wait) {                          
ffc07f48:	2f 80 00 02 	cmpwi   cr7,r0,2                               
ffc07f4c:	40 9e ff d4 	bne+    cr7,ffc07f20 <rtems_termios_refill_transmitter+0x100><== ALWAYS TAKEN
        /*                                                            
         * this should never happen...                                
         */                                                           
        rtems_semaphore_release (tty->rawOutBuf.Semaphore);           
ffc07f50:	80 63 00 8c 	lwz     r3,140(r3)                             <== NOT EXECUTED
ffc07f54:	48 00 10 b5 	bl      ffc09008 <rtems_semaphore_release>     <== NOT EXECUTED
ffc07f58:	4b ff ff c8 	b       ffc07f20 <rtems_termios_refill_transmitter+0x100><== NOT EXECUTED
      nToSend = 0;                                                    
                                                                      
      /*                                                              
       * check to see if snd wakeup callback was set                  
       */                                                             
      if ( tty->tty_snd.sw_pfn != NULL) {                             
ffc07f5c:	80 1f 00 d4 	lwz     r0,212(r31)                            
                                                                      
    if (newTail == tty->rawOutBuf.Head) {                             
      /*                                                              
       * Buffer has become empty                                      
       */                                                             
      tty->rawOutBufState = rob_idle;                                 
ffc07f60:	39 20 00 00 	li      r9,0                                   
ffc07f64:	91 3f 00 94 	stw     r9,148(r31)                            
      nToSend = 0;                                                    
ffc07f68:	3b a0 00 00 	li      r29,0                                  
                                                                      
      /*                                                              
       * check to see if snd wakeup callback was set                  
       */                                                             
      if ( tty->tty_snd.sw_pfn != NULL) {                             
ffc07f6c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc07f70:	41 be ff ac 	beq-    cr7,ffc07f1c <rtems_termios_refill_transmitter+0xfc><== ALWAYS TAKEN
        (*tty->tty_snd.sw_pfn)(&tty->termios, tty->tty_snd.sw_arg);   
ffc07f74:	38 7f 00 30 	addi    r3,r31,48                              <== NOT EXECUTED
ffc07f78:	80 9f 00 d8 	lwz     r4,216(r31)                            <== NOT EXECUTED
ffc07f7c:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc07f80:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
      }                                                               
      tty->rawOutBufState = rob_busy; /*apm*/                         
      (*tty->device.write)(                                           
        tty->minor, &tty->rawOutBuf.theBuf[newTail], nToSend);        
    }                                                                 
    tty->rawOutBuf.Tail = newTail; /*apm*/                            
ffc07f84:	93 df 00 84 	stw     r30,132(r31)                           <== NOT EXECUTED
ffc07f88:	4b ff ff 98 	b       ffc07f20 <rtems_termios_refill_transmitter+0x100><== NOT EXECUTED
    } else {                                                          
      /*                                                              
       * Buffer not empty, start tranmitter                           
       */                                                             
      if (newTail > tty->rawOutBuf.Head)                              
        nToSend = tty->rawOutBuf.Size - newTail;                      
ffc07f8c:	83 bf 00 88 	lwz     r29,136(r31)                           
ffc07f90:	7f be e8 50 	subf    r29,r30,r29                            
ffc07f94:	4b ff ff 50 	b       ffc07ee4 <rtems_termios_refill_transmitter+0xc4>
    tty->rawOutBuf.Tail = newTail;                                    
    if (tty->rawOutBufState == rob_wait) {                            
      /*                                                              
       * wake up any pending writer task                              
       */                                                             
      rtems_semaphore_release (tty->rawOutBuf.Semaphore);             
ffc07f98:	80 63 00 8c 	lwz     r3,140(r3)                             
ffc07f9c:	48 00 10 6d 	bl      ffc09008 <rtems_semaphore_release>     
ffc07fa0:	4b ff ff 14 	b       ffc07eb4 <rtems_termios_refill_transmitter+0x94>
                                                                      
  /* check for XOF/XON to send */                                     
  if ((tty->flow_ctrl & (FL_MDXOF | FL_IREQXOF | FL_ISNTXOF))         
      == (FL_MDXOF | FL_IREQXOF)) {                                   
    /* XOFF should be sent now... */                                  
    (*tty->device.write)(tty->minor, (void *)&(tty->termios.c_cc[VSTOP]), 1);
ffc07fa4:	80 03 00 a4 	lwz     r0,164(r3)                             <== NOT EXECUTED
ffc07fa8:	38 9f 00 4a 	addi    r4,r31,74                              <== NOT EXECUTED
ffc07fac:	38 a0 00 01 	li      r5,1                                   <== NOT EXECUTED
ffc07fb0:	80 63 00 10 	lwz     r3,16(r3)                              <== NOT EXECUTED
ffc07fb4:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc07fb8:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc07fbc:	7c 00 00 a6 	mfmsr   r0                                     <== NOT EXECUTED
ffc07fc0:	7d 30 42 a6 	mfsprg  r9,0                                   <== NOT EXECUTED
ffc07fc4:	7c 09 48 78 	andc    r9,r0,r9                               <== NOT EXECUTED
ffc07fc8:	7d 20 01 24 	mtmsr   r9                                     <== NOT EXECUTED
                                                                      
    rtems_interrupt_disable(level);                                   
    tty->t_dqlen--;                                                   
ffc07fcc:	81 7f 00 90 	lwz     r11,144(r31)                           <== NOT EXECUTED
    tty->flow_ctrl |= FL_ISNTXOF;                                     
ffc07fd0:	81 3f 00 b8 	lwz     r9,184(r31)                            <== NOT EXECUTED
      == (FL_MDXOF | FL_IREQXOF)) {                                   
    /* XOFF should be sent now... */                                  
    (*tty->device.write)(tty->minor, (void *)&(tty->termios.c_cc[VSTOP]), 1);
                                                                      
    rtems_interrupt_disable(level);                                   
    tty->t_dqlen--;                                                   
ffc07fd4:	39 6b ff ff 	addi    r11,r11,-1                             <== NOT EXECUTED
    tty->flow_ctrl |= FL_ISNTXOF;                                     
ffc07fd8:	61 29 00 02 	ori     r9,r9,2                                <== NOT EXECUTED
      == (FL_MDXOF | FL_IREQXOF)) {                                   
    /* XOFF should be sent now... */                                  
    (*tty->device.write)(tty->minor, (void *)&(tty->termios.c_cc[VSTOP]), 1);
                                                                      
    rtems_interrupt_disable(level);                                   
    tty->t_dqlen--;                                                   
ffc07fdc:	91 7f 00 90 	stw     r11,144(r31)                           <== NOT EXECUTED
    tty->flow_ctrl |= FL_ISNTXOF;                                     
ffc07fe0:	91 3f 00 b8 	stw     r9,184(r31)                            <== NOT EXECUTED
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc07fe4:	7c 00 01 24 	mtmsr   r0                                     <== NOT EXECUTED
        tty->minor, &tty->rawOutBuf.theBuf[newTail], nToSend);        
    }                                                                 
    tty->rawOutBuf.Tail = newTail; /*apm*/                            
  }                                                                   
  return nToSend;                                                     
}                                                                     
ffc07fe8:	80 01 00 1c 	lwz     r0,28(r1)                              <== NOT EXECUTED
    rtems_interrupt_disable(level);                                   
    tty->t_dqlen--;                                                   
    tty->flow_ctrl |= FL_ISNTXOF;                                     
    rtems_interrupt_enable(level);                                    
                                                                      
    nToSend = 1;                                                      
ffc07fec:	3b a0 00 01 	li      r29,1                                  <== NOT EXECUTED
        tty->minor, &tty->rawOutBuf.theBuf[newTail], nToSend);        
    }                                                                 
    tty->rawOutBuf.Tail = newTail; /*apm*/                            
  }                                                                   
  return nToSend;                                                     
}                                                                     
ffc07ff0:	7f a3 eb 78 	mr      r3,r29                                 <== NOT EXECUTED
ffc07ff4:	83 c1 00 10 	lwz     r30,16(r1)                             <== NOT EXECUTED
ffc07ff8:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc07ffc:	83 a1 00 0c 	lwz     r29,12(r1)                             <== NOT EXECUTED
ffc08000:	83 e1 00 14 	lwz     r31,20(r1)                             <== NOT EXECUTED
ffc08004:	38 21 00 18 	addi    r1,r1,24                               <== NOT EXECUTED
ffc08008:	4e 80 00 20 	blr                                            <== NOT EXECUTED
     * FIXME: this .write call will generate another                  
     * dequeue callback. This will advance the "Tail" in the data     
     * buffer, although the corresponding data is not yet out!        
     * Therefore the dequeue "length" should be reduced by 1          
     */                                                               
    (*tty->device.write)(tty->minor, (void *)&(tty->termios.c_cc[VSTART]), 1);
ffc0800c:	80 03 00 a4 	lwz     r0,164(r3)                             <== NOT EXECUTED
ffc08010:	38 9f 00 49 	addi    r4,r31,73                              <== NOT EXECUTED
ffc08014:	38 a0 00 01 	li      r5,1                                   <== NOT EXECUTED
ffc08018:	80 63 00 10 	lwz     r3,16(r3)                              <== NOT EXECUTED
ffc0801c:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc08020:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc08024:	7c 00 00 a6 	mfmsr   r0                                     <== NOT EXECUTED
ffc08028:	7d 30 42 a6 	mfsprg  r9,0                                   <== NOT EXECUTED
ffc0802c:	7c 09 48 78 	andc    r9,r0,r9                               <== NOT EXECUTED
ffc08030:	7d 20 01 24 	mtmsr   r9                                     <== NOT EXECUTED
                                                                      
    rtems_interrupt_disable(level);                                   
    tty->t_dqlen--;                                                   
ffc08034:	81 7f 00 90 	lwz     r11,144(r31)                           <== NOT EXECUTED
    tty->flow_ctrl &= ~FL_ISNTXOF;                                    
ffc08038:	81 3f 00 b8 	lwz     r9,184(r31)                            <== NOT EXECUTED
     * Therefore the dequeue "length" should be reduced by 1          
     */                                                               
    (*tty->device.write)(tty->minor, (void *)&(tty->termios.c_cc[VSTART]), 1);
                                                                      
    rtems_interrupt_disable(level);                                   
    tty->t_dqlen--;                                                   
ffc0803c:	39 6b ff ff 	addi    r11,r11,-1                             <== NOT EXECUTED
    tty->flow_ctrl &= ~FL_ISNTXOF;                                    
ffc08040:	55 29 07 fa 	rlwinm  r9,r9,0,31,29                          <== NOT EXECUTED
     * Therefore the dequeue "length" should be reduced by 1          
     */                                                               
    (*tty->device.write)(tty->minor, (void *)&(tty->termios.c_cc[VSTART]), 1);
                                                                      
    rtems_interrupt_disable(level);                                   
    tty->t_dqlen--;                                                   
ffc08044:	91 7f 00 90 	stw     r11,144(r31)                           <== NOT EXECUTED
    tty->flow_ctrl &= ~FL_ISNTXOF;                                    
ffc08048:	91 3f 00 b8 	stw     r9,184(r31)                            <== NOT EXECUTED
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc0804c:	7c 00 01 24 	mtmsr   r0                                     <== NOT EXECUTED
        tty->minor, &tty->rawOutBuf.theBuf[newTail], nToSend);        
    }                                                                 
    tty->rawOutBuf.Tail = newTail; /*apm*/                            
  }                                                                   
  return nToSend;                                                     
}                                                                     
ffc08050:	80 01 00 1c 	lwz     r0,28(r1)                              <== NOT EXECUTED
    rtems_interrupt_disable(level);                                   
    tty->t_dqlen--;                                                   
    tty->flow_ctrl &= ~FL_ISNTXOF;                                    
    rtems_interrupt_enable(level);                                    
                                                                      
    nToSend = 1;                                                      
ffc08054:	3b a0 00 01 	li      r29,1                                  <== NOT EXECUTED
        tty->minor, &tty->rawOutBuf.theBuf[newTail], nToSend);        
    }                                                                 
    tty->rawOutBuf.Tail = newTail; /*apm*/                            
  }                                                                   
  return nToSend;                                                     
}                                                                     
ffc08058:	7f a3 eb 78 	mr      r3,r29                                 <== NOT EXECUTED
ffc0805c:	83 c1 00 10 	lwz     r30,16(r1)                             <== NOT EXECUTED
ffc08060:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc08064:	83 a1 00 0c 	lwz     r29,12(r1)                             <== NOT EXECUTED
ffc08068:	83 e1 00 14 	lwz     r31,20(r1)                             <== NOT EXECUTED
ffc0806c:	38 21 00 18 	addi    r1,r1,24                               <== NOT EXECUTED
ffc08070:	4e 80 00 20 	blr                                            <== NOT EXECUTED
static inline uint32_t ppc_interrupt_disable( void )                  
{                                                                     
  uint32_t level;                                                     
  uint32_t mask;                                                      
                                                                      
  asm volatile (                                                      
ffc08074:	7c 00 00 a6 	mfmsr   r0                                     <== NOT EXECUTED
ffc08078:	7d 30 42 a6 	mfsprg  r9,0                                   <== NOT EXECUTED
ffc0807c:	7c 09 48 78 	andc    r9,r0,r9                               <== NOT EXECUTED
ffc08080:	7d 20 01 24 	mtmsr   r9                                     <== NOT EXECUTED
    else if ((tty->flow_ctrl & (FL_MDXON | FL_ORCVXOF))               
       ==                (FL_MDXON | FL_ORCVXOF)) {                   
      /* Buffer not empty, but output stops due to XOFF */            
      /* set flag, that output has been stopped */                    
      rtems_interrupt_disable(level);                                 
      tty->flow_ctrl |= FL_OSTOP;                                     
ffc08084:	81 3f 00 b8 	lwz     r9,184(r31)                            <== NOT EXECUTED
ffc08088:	61 29 00 20 	ori     r9,r9,32                               <== NOT EXECUTED
ffc0808c:	91 3f 00 b8 	stw     r9,184(r31)                            <== NOT EXECUTED
      tty->rawOutBufState = rob_busy; /*apm*/                         
ffc08090:	39 20 00 01 	li      r9,1                                   <== NOT EXECUTED
ffc08094:	91 3f 00 94 	stw     r9,148(r31)                            <== NOT EXECUTED
  return level;                                                       
}                                                                     
                                                                      
static inline void ppc_interrupt_enable( uint32_t level )             
{                                                                     
  asm volatile (                                                      
ffc08098:	7c 00 01 24 	mtmsr   r0                                     <== NOT EXECUTED
      rtems_interrupt_enable(level);                                  
      nToSend = 0;                                                    
ffc0809c:	3b a0 00 00 	li      r29,0                                  <== NOT EXECUTED
      }                                                               
      tty->rawOutBufState = rob_busy; /*apm*/                         
      (*tty->device.write)(                                           
        tty->minor, &tty->rawOutBuf.theBuf[newTail], nToSend);        
    }                                                                 
    tty->rawOutBuf.Tail = newTail; /*apm*/                            
ffc080a0:	93 df 00 84 	stw     r30,132(r31)                           <== NOT EXECUTED
ffc080a4:	4b ff fe 7c 	b       ffc07f20 <rtems_termios_refill_transmitter+0x100><== NOT EXECUTED
                                                                      

ffc07d78 <rtems_termios_rxdaemon>: /* * this task actually processes any receive events */ static rtems_task rtems_termios_rxdaemon(rtems_task_argument argument) {
ffc07d78:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc07d7c:	7c 08 02 a6 	mflr    r0                                     
ffc07d80:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc07d84:	3b a1 00 08 	addi    r29,r1,8                               
ffc07d88:	93 c1 00 20 	stw     r30,32(r1)                             
ffc07d8c:	3b c1 00 0c 	addi    r30,r1,12                              
ffc07d90:	93 e1 00 24 	stw     r31,36(r1)                             
ffc07d94:	7c 7f 1b 78 	mr      r31,r3                                 
ffc07d98:	90 01 00 2c 	stw     r0,44(r1)                              
ffc07d9c:	48 00 00 20 	b       ffc07dbc <rtems_termios_rxdaemon+0x44> 
    }                                                                 
                                                                      
    /*                                                                
     * do something                                                   
     */                                                               
    c = tty->device.pollRead(tty->minor);                             
ffc07da0:	80 1f 00 a0 	lwz     r0,160(r31)                            
ffc07da4:	80 7f 00 10 	lwz     r3,16(r31)                             
ffc07da8:	7c 09 03 a6 	mtctr   r0                                     
ffc07dac:	4e 80 04 21 	bctrl                                          
    if (c != EOF) {                                                   
ffc07db0:	2f 83 ff ff 	cmpwi   cr7,r3,-1                              
    }                                                                 
                                                                      
    /*                                                                
     * do something                                                   
     */                                                               
    c = tty->device.pollRead(tty->minor);                             
ffc07db4:	7c 60 1b 78 	mr      r0,r3                                  
    if (c != EOF) {                                                   
ffc07db8:	40 9e 00 50 	bne-    cr7,ffc07e08 <rtems_termios_rxdaemon+0x90>
                                                                      
  while (1) {                                                         
    /*                                                                
     * wait for rtems event                                           
     */                                                               
    rtems_event_receive(                                              
ffc07dbc:	7f c6 f3 78 	mr      r6,r30                                 
ffc07dc0:	38 80 00 02 	li      r4,2                                   
ffc07dc4:	38 a0 00 00 	li      r5,0                                   
ffc07dc8:	38 60 00 03 	li      r3,3                                   
ffc07dcc:	48 00 09 19 	bl      ffc086e4 <rtems_event_receive>         
      (TERMIOS_RX_PROC_EVENT | TERMIOS_RX_TERMINATE_EVENT),           
      RTEMS_EVENT_ANY | RTEMS_WAIT,                                   
      RTEMS_NO_TIMEOUT,                                               
      &the_event                                                      
    );                                                                
    if ((the_event & TERMIOS_RX_TERMINATE_EVENT) != 0) {              
ffc07dd0:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc07dd4:	70 09 00 01 	andi.   r9,r0,1                                
ffc07dd8:	41 82 ff c8 	beq+    ffc07da0 <rtems_termios_rxdaemon+0x28> <== ALWAYS TAKEN
      tty->rxTaskId = 0;                                              
ffc07ddc:	38 00 00 00 	li      r0,0                                   <== NOT EXECUTED
ffc07de0:	90 1f 00 c4 	stw     r0,196(r31)                            <== NOT EXECUTED
      rtems_task_delete(RTEMS_SELF);                                  
ffc07de4:	38 60 00 00 	li      r3,0                                   <== NOT EXECUTED
ffc07de8:	48 00 14 d9 	bl      ffc092c0 <rtems_task_delete>           <== NOT EXECUTED
    }                                                                 
                                                                      
    /*                                                                
     * do something                                                   
     */                                                               
    c = tty->device.pollRead(tty->minor);                             
ffc07dec:	80 1f 00 a0 	lwz     r0,160(r31)                            <== NOT EXECUTED
ffc07df0:	80 7f 00 10 	lwz     r3,16(r31)                             <== NOT EXECUTED
ffc07df4:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc07df8:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
    if (c != EOF) {                                                   
ffc07dfc:	2f 83 ff ff 	cmpwi   cr7,r3,-1                              <== NOT EXECUTED
    }                                                                 
                                                                      
    /*                                                                
     * do something                                                   
     */                                                               
    c = tty->device.pollRead(tty->minor);                             
ffc07e00:	7c 60 1b 78 	mr      r0,r3                                  <== NOT EXECUTED
    if (c != EOF) {                                                   
ffc07e04:	41 9e ff b8 	beq+    cr7,ffc07dbc <rtems_termios_rxdaemon+0x44><== NOT EXECUTED
      /*                                                              
       * pollRead did call enqueue on its own                         
       */                                                             
      c_buf = c;                                                      
      rtems_termios_enqueue_raw_characters ( tty,&c_buf,1);           
ffc07e08:	7f e3 fb 78 	mr      r3,r31                                 
    c = tty->device.pollRead(tty->minor);                             
    if (c != EOF) {                                                   
      /*                                                              
       * pollRead did call enqueue on its own                         
       */                                                             
      c_buf = c;                                                      
ffc07e0c:	98 01 00 08 	stb     r0,8(r1)                               
      rtems_termios_enqueue_raw_characters ( tty,&c_buf,1);           
ffc07e10:	7f a4 eb 78 	mr      r4,r29                                 
ffc07e14:	38 a0 00 01 	li      r5,1                                   
ffc07e18:	4b ff fb ad 	bl      ffc079c4 <rtems_termios_enqueue_raw_characters>
ffc07e1c:	4b ff ff a0 	b       ffc07dbc <rtems_termios_rxdaemon+0x44> 
                                                                      

ffc080a8 <rtems_termios_txdaemon>: /* * this task actually processes any transmit events */ static rtems_task rtems_termios_txdaemon(rtems_task_argument argument) {
ffc080a8:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc080ac:	7c 08 02 a6 	mflr    r0                                     
ffc080b0:	93 c1 00 20 	stw     r30,32(r1)                             
ffc080b4:	3f c0 00 00 	lis     r30,0                                  
ffc080b8:	3b de 27 d4 	addi    r30,r30,10196                          
ffc080bc:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc080c0:	3b a1 00 08 	addi    r29,r1,8                               
ffc080c4:	93 e1 00 24 	stw     r31,36(r1)                             
ffc080c8:	7c 7f 1b 78 	mr      r31,r3                                 
ffc080cc:	90 01 00 2c 	stw     r0,44(r1)                              
ffc080d0:	48 00 00 30 	b       ffc08100 <rtems_termios_txdaemon+0x58> 
    }                                                                 
                                                                      
    /*                                                                
     * call any line discipline start function                        
     */                                                               
    if (rtems_termios_linesw[tty->t_line].l_start != NULL) {          
ffc080d4:	81 3f 00 cc 	lwz     r9,204(r31)                            
      rtems_termios_linesw[tty->t_line].l_start(tty);                 
ffc080d8:	7f e3 fb 78 	mr      r3,r31                                 
    }                                                                 
                                                                      
    /*                                                                
     * call any line discipline start function                        
     */                                                               
    if (rtems_termios_linesw[tty->t_line].l_start != NULL) {          
ffc080dc:	55 29 28 34 	rlwinm  r9,r9,5,0,26                           
ffc080e0:	7d 3e 4a 14 	add     r9,r30,r9                              
ffc080e4:	80 09 00 14 	lwz     r0,20(r9)                              
ffc080e8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc080ec:	41 9e 00 0c 	beq-    cr7,ffc080f8 <rtems_termios_txdaemon+0x50><== ALWAYS TAKEN
      rtems_termios_linesw[tty->t_line].l_start(tty);                 
ffc080f0:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc080f4:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
    }                                                                 
                                                                      
    /*                                                                
     * try to push further characters to device                       
     */                                                               
    rtems_termios_refill_transmitter(tty);                            
ffc080f8:	7f e3 fb 78 	mr      r3,r31                                 
ffc080fc:	4b ff fd 25 	bl      ffc07e20 <rtems_termios_refill_transmitter>
                                                                      
  while (1) {                                                         
    /*                                                                
     * wait for rtems event                                           
     */                                                               
    rtems_event_receive(                                              
ffc08100:	38 80 00 02 	li      r4,2                                   
ffc08104:	38 a0 00 00 	li      r5,0                                   
ffc08108:	7f a6 eb 78 	mr      r6,r29                                 
ffc0810c:	38 60 00 03 	li      r3,3                                   
ffc08110:	48 00 05 d5 	bl      ffc086e4 <rtems_event_receive>         
       (TERMIOS_TX_START_EVENT | TERMIOS_TX_TERMINATE_EVENT),         
       RTEMS_EVENT_ANY | RTEMS_WAIT,                                  
       RTEMS_NO_TIMEOUT,                                              
       &the_event                                                     
    );                                                                
    if ((the_event & TERMIOS_TX_TERMINATE_EVENT) != 0) {              
ffc08114:	80 01 00 08 	lwz     r0,8(r1)                               
ffc08118:	70 09 00 01 	andi.   r9,r0,1                                
ffc0811c:	41 82 ff b8 	beq+    ffc080d4 <rtems_termios_txdaemon+0x2c> <== ALWAYS TAKEN
      tty->txTaskId = 0;                                              
ffc08120:	38 00 00 00 	li      r0,0                                   <== NOT EXECUTED
ffc08124:	90 1f 00 c8 	stw     r0,200(r31)                            <== NOT EXECUTED
      rtems_task_delete(RTEMS_SELF);                                  
ffc08128:	38 60 00 00 	li      r3,0                                   <== NOT EXECUTED
ffc0812c:	48 00 11 95 	bl      ffc092c0 <rtems_task_delete>           <== NOT EXECUTED
ffc08130:	4b ff ff a4 	b       ffc080d4 <rtems_termios_txdaemon+0x2c> <== NOT EXECUTED
                                                                      

ffc073f8 <rtems_termios_write>: rtems_termios_puts (&c, 1, tty); } rtems_status_code rtems_termios_write (void *arg) {
ffc073f8:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc073fc:	7c 08 02 a6 	mflr    r0                                     
  rtems_libio_rw_args_t *args = arg;                                  
  struct rtems_termios_tty *tty = args->iop->data1;                   
  rtems_status_code sc;                                               
                                                                      
  sc = rtems_semaphore_obtain (tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
ffc07400:	38 80 00 00 	li      r4,0                                   
  rtems_termios_puts (&c, 1, tty);                                    
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_write (void *arg)                                       
{                                                                     
ffc07404:	90 01 00 24 	stw     r0,36(r1)                              
  rtems_libio_rw_args_t *args = arg;                                  
  struct rtems_termios_tty *tty = args->iop->data1;                   
  rtems_status_code sc;                                               
                                                                      
  sc = rtems_semaphore_obtain (tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
ffc07408:	38 a0 00 00 	li      r5,0                                   
                                                                      
rtems_status_code                                                     
rtems_termios_write (void *arg)                                       
{                                                                     
  rtems_libio_rw_args_t *args = arg;                                  
  struct rtems_termios_tty *tty = args->iop->data1;                   
ffc0740c:	81 23 00 00 	lwz     r9,0(r3)                               
  rtems_termios_puts (&c, 1, tty);                                    
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_write (void *arg)                                       
{                                                                     
ffc07410:	93 e1 00 1c 	stw     r31,28(r1)                             
  rtems_libio_rw_args_t *args = arg;                                  
  struct rtems_termios_tty *tty = args->iop->data1;                   
ffc07414:	83 e9 00 38 	lwz     r31,56(r9)                             
  rtems_termios_puts (&c, 1, tty);                                    
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_write (void *arg)                                       
{                                                                     
ffc07418:	93 c1 00 18 	stw     r30,24(r1)                             
ffc0741c:	7c 7e 1b 78 	mr      r30,r3                                 
  rtems_libio_rw_args_t *args = arg;                                  
  struct rtems_termios_tty *tty = args->iop->data1;                   
  rtems_status_code sc;                                               
                                                                      
  sc = rtems_semaphore_obtain (tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
ffc07420:	80 7f 00 18 	lwz     r3,24(r31)                             
  rtems_termios_puts (&c, 1, tty);                                    
}                                                                     
                                                                      
rtems_status_code                                                     
rtems_termios_write (void *arg)                                       
{                                                                     
ffc07424:	93 a1 00 14 	stw     r29,20(r1)                             
ffc07428:	93 41 00 08 	stw     r26,8(r1)                              
ffc0742c:	93 61 00 0c 	stw     r27,12(r1)                             
ffc07430:	93 81 00 10 	stw     r28,16(r1)                             
  rtems_libio_rw_args_t *args = arg;                                  
  struct rtems_termios_tty *tty = args->iop->data1;                   
  rtems_status_code sc;                                               
                                                                      
  sc = rtems_semaphore_obtain (tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
ffc07434:	48 00 1a 4d 	bl      ffc08e80 <rtems_semaphore_obtain>      
  if (sc != RTEMS_SUCCESSFUL)                                         
ffc07438:	7c 7d 1b 79 	mr.     r29,r3                                 
ffc0743c:	40 82 00 40 	bne-    ffc0747c <rtems_termios_write+0x84>    <== NEVER TAKEN
    return sc;                                                        
  if (rtems_termios_linesw[tty->t_line].l_write != NULL) {            
ffc07440:	80 1f 00 cc 	lwz     r0,204(r31)                            
ffc07444:	3d 20 00 00 	lis     r9,0                                   
ffc07448:	39 29 27 d4 	addi    r9,r9,10196                            
ffc0744c:	54 00 28 34 	rlwinm  r0,r0,5,0,26                           
ffc07450:	7d 29 02 14 	add     r9,r9,r0                               
ffc07454:	80 09 00 0c 	lwz     r0,12(r9)                              
ffc07458:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0745c:	41 9e 00 4c 	beq-    cr7,ffc074a8 <rtems_termios_write+0xb0>
    sc = rtems_termios_linesw[tty->t_line].l_write(tty,args);         
ffc07460:	7f e3 fb 78 	mr      r3,r31                                 
ffc07464:	7c 09 03 a6 	mtctr   r0                                     
ffc07468:	7f c4 f3 78 	mr      r4,r30                                 
ffc0746c:	4e 80 04 21 	bctrl                                          
ffc07470:	7c 7d 1b 78 	mr      r29,r3                                 
    rtems_semaphore_release (tty->osem);                              
ffc07474:	80 7f 00 18 	lwz     r3,24(r31)                             
ffc07478:	48 00 1b 91 	bl      ffc09008 <rtems_semaphore_release>     
    rtems_termios_puts (args->buffer, args->count, tty);              
    args->bytes_moved = args->count;                                  
  }                                                                   
  rtems_semaphore_release (tty->osem);                                
  return sc;                                                          
}                                                                     
ffc0747c:	80 01 00 24 	lwz     r0,36(r1)                              
ffc07480:	7f a3 eb 78 	mr      r3,r29                                 
ffc07484:	83 41 00 08 	lwz     r26,8(r1)                              
ffc07488:	7c 08 03 a6 	mtlr    r0                                     
ffc0748c:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc07490:	83 81 00 10 	lwz     r28,16(r1)                             
ffc07494:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc07498:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0749c:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc074a0:	38 21 00 20 	addi    r1,r1,32                               
ffc074a4:	4e 80 00 20 	blr                                            
  if (rtems_termios_linesw[tty->t_line].l_write != NULL) {            
    sc = rtems_termios_linesw[tty->t_line].l_write(tty,args);         
    rtems_semaphore_release (tty->osem);                              
    return sc;                                                        
  }                                                                   
  if (tty->termios.c_oflag & OPOST) {                                 
ffc074a8:	80 1f 00 34 	lwz     r0,52(r31)                             
ffc074ac:	70 09 00 01 	andi.   r9,r0,1                                
ffc074b0:	41 82 00 70 	beq-    ffc07520 <rtems_termios_write+0x128>   <== NEVER TAKEN
    uint32_t   count = args->count;                                   
ffc074b4:	83 7e 00 14 	lwz     r27,20(r30)                            
    char      *buffer = args->buffer;                                 
    while (count--)                                                   
ffc074b8:	38 00 00 00 	li      r0,0                                   
    rtems_semaphore_release (tty->osem);                              
    return sc;                                                        
  }                                                                   
  if (tty->termios.c_oflag & OPOST) {                                 
    uint32_t   count = args->count;                                   
    char      *buffer = args->buffer;                                 
ffc074bc:	83 5e 00 10 	lwz     r26,16(r30)                            
    while (count--)                                                   
ffc074c0:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
ffc074c4:	41 9e 00 24 	beq-    cr7,ffc074e8 <rtems_termios_write+0xf0><== NEVER TAKEN
ffc074c8:	3b 80 00 00 	li      r28,0                                  
      oproc (*buffer++, tty);                                         
ffc074cc:	7c 7a e0 ae 	lbzx    r3,r26,r28                             
ffc074d0:	7f e4 fb 78 	mr      r4,r31                                 
ffc074d4:	3b 9c 00 01 	addi    r28,r28,1                              
ffc074d8:	4b ff f7 d5 	bl      ffc06cac <oproc>                       
    return sc;                                                        
  }                                                                   
  if (tty->termios.c_oflag & OPOST) {                                 
    uint32_t   count = args->count;                                   
    char      *buffer = args->buffer;                                 
    while (count--)                                                   
ffc074dc:	7f 9c d8 00 	cmpw    cr7,r28,r27                            
ffc074e0:	40 9e ff ec 	bne+    cr7,ffc074cc <rtems_termios_write+0xd4>
      oproc (*buffer++, tty);                                         
    args->bytes_moved = args->count;                                  
  } else {                                                            
    rtems_termios_puts (args->buffer, args->count, tty);              
    args->bytes_moved = args->count;                                  
ffc074e4:	80 1e 00 14 	lwz     r0,20(r30)                             
ffc074e8:	90 1e 00 1c 	stw     r0,28(r30)                             
  }                                                                   
  rtems_semaphore_release (tty->osem);                                
ffc074ec:	80 7f 00 18 	lwz     r3,24(r31)                             
ffc074f0:	48 00 1b 19 	bl      ffc09008 <rtems_semaphore_release>     
  return sc;                                                          
}                                                                     
ffc074f4:	80 01 00 24 	lwz     r0,36(r1)                              
ffc074f8:	7f a3 eb 78 	mr      r3,r29                                 
ffc074fc:	83 41 00 08 	lwz     r26,8(r1)                              
ffc07500:	7c 08 03 a6 	mtlr    r0                                     
ffc07504:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc07508:	83 81 00 10 	lwz     r28,16(r1)                             
ffc0750c:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc07510:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc07514:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc07518:	38 21 00 20 	addi    r1,r1,32                               
ffc0751c:	4e 80 00 20 	blr                                            
    char      *buffer = args->buffer;                                 
    while (count--)                                                   
      oproc (*buffer++, tty);                                         
    args->bytes_moved = args->count;                                  
  } else {                                                            
    rtems_termios_puts (args->buffer, args->count, tty);              
ffc07520:	80 7e 00 10 	lwz     r3,16(r30)                             <== NOT EXECUTED
ffc07524:	7f e5 fb 78 	mr      r5,r31                                 <== NOT EXECUTED
ffc07528:	80 9e 00 14 	lwz     r4,20(r30)                             <== NOT EXECUTED
ffc0752c:	4b ff f5 f9 	bl      ffc06b24 <rtems_termios_puts>          <== NOT EXECUTED
ffc07530:	4b ff ff b4 	b       ffc074e4 <rtems_termios_write+0xec>    <== NOT EXECUTED
                                                                      

ffc1b16c <rtems_timer_cancel>: */ rtems_status_code rtems_timer_cancel( rtems_id id ) {
ffc1b16c:	94 21 ff e8 	stwu    r1,-24(r1)                             
ffc1b170:	7c 08 02 a6 	mflr    r0                                     
ffc1b174:	7c 64 1b 78 	mr      r4,r3                                  
  Objects_Id         id,                                              
  Objects_Locations *location                                         
)                                                                     
{                                                                     
  return (Timer_Control *)                                            
    _Objects_Get( &_Timer_Information, id, location );                
ffc1b178:	3c 60 00 00 	lis     r3,0                                   
ffc1b17c:	90 01 00 1c 	stw     r0,28(r1)                              
ffc1b180:	38 63 72 00 	addi    r3,r3,29184                            
ffc1b184:	38 a1 00 08 	addi    r5,r1,8                                
ffc1b188:	48 00 3a e1 	bl      ffc1ec68 <_Objects_Get>                
  Timer_Control   *the_timer;                                         
  Objects_Locations       location;                                   
                                                                      
  the_timer = _Timer_Get( id, &location );                            
  switch ( location ) {                                               
ffc1b18c:	80 01 00 08 	lwz     r0,8(r1)                               
ffc1b190:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc1b194:	41 9e 00 18 	beq-    cr7,ffc1b1ac <rtems_timer_cancel+0x40> 
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc1b198:	80 01 00 1c 	lwz     r0,28(r1)                              
#endif                                                                
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
ffc1b19c:	38 60 00 04 	li      r3,4                                   
}                                                                     
ffc1b1a0:	38 21 00 18 	addi    r1,r1,24                               
ffc1b1a4:	7c 08 03 a6 	mtlr    r0                                     
ffc1b1a8:	4e 80 00 20 	blr                                            
                                                                      
  the_timer = _Timer_Get( id, &location );                            
  switch ( location ) {                                               
                                                                      
    case OBJECTS_LOCAL:                                               
      if ( !_Timer_Is_dormant_class( the_timer->the_class ) )         
ffc1b1ac:	80 03 00 38 	lwz     r0,56(r3)                              
ffc1b1b0:	2f 80 00 04 	cmpwi   cr7,r0,4                               
ffc1b1b4:	41 9e 00 0c 	beq-    cr7,ffc1b1c0 <rtems_timer_cancel+0x54> <== NEVER TAKEN
        (void) _Watchdog_Remove( &the_timer->Ticker );                
ffc1b1b8:	38 63 00 10 	addi    r3,r3,16                               
ffc1b1bc:	48 00 62 d5 	bl      ffc21490 <_Watchdog_Remove>            
      _Thread_Enable_dispatch();                                      
ffc1b1c0:	48 00 45 fd 	bl      ffc1f7bc <_Thread_Enable_dispatch>     
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc1b1c4:	80 01 00 1c 	lwz     r0,28(r1)                              
                                                                      
    case OBJECTS_LOCAL:                                               
      if ( !_Timer_Is_dormant_class( the_timer->the_class ) )         
        (void) _Watchdog_Remove( &the_timer->Ticker );                
      _Thread_Enable_dispatch();                                      
      return RTEMS_SUCCESSFUL;                                        
ffc1b1c8:	38 60 00 00 	li      r3,0                                   
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc1b1cc:	7c 08 03 a6 	mtlr    r0                                     
ffc1b1d0:	38 21 00 18 	addi    r1,r1,24                               
ffc1b1d4:	4e 80 00 20 	blr                                            
                                                                      

ffc1b838 <rtems_timer_server_fire_when>: rtems_id id, rtems_time_of_day *wall_time, rtems_timer_service_routine_entry routine, void *user_data ) {
ffc1b838:	94 21 ff c8 	stwu    r1,-56(r1)                             
  Timer_Control        *the_timer;                                    
  Objects_Locations     location;                                     
  rtems_interval        seconds;                                      
  Timer_server_Control *timer_server = _Timer_server;                 
ffc1b83c:	3d 20 00 00 	lis     r9,0                                   
  rtems_id                           id,                              
  rtems_time_of_day                  *wall_time,                      
  rtems_timer_service_routine_entry  routine,                         
  void                              *user_data                        
)                                                                     
{                                                                     
ffc1b840:	7c 08 02 a6 	mflr    r0                                     
ffc1b844:	93 e1 00 34 	stw     r31,52(r1)                             
  Timer_Control        *the_timer;                                    
  Objects_Locations     location;                                     
  rtems_interval        seconds;                                      
  Timer_server_Control *timer_server = _Timer_server;                 
ffc1b848:	83 e9 28 80 	lwz     r31,10368(r9)                          
  rtems_id                           id,                              
  rtems_time_of_day                  *wall_time,                      
  rtems_timer_service_routine_entry  routine,                         
  void                              *user_data                        
)                                                                     
{                                                                     
ffc1b84c:	93 21 00 1c 	stw     r25,28(r1)                             
  Objects_Locations     location;                                     
  rtems_interval        seconds;                                      
  Timer_server_Control *timer_server = _Timer_server;                 
                                                                      
  if ( !timer_server )                                                
    return RTEMS_INCORRECT_STATE;                                     
ffc1b850:	3b 20 00 0e 	li      r25,14                                 
  Timer_Control        *the_timer;                                    
  Objects_Locations     location;                                     
  rtems_interval        seconds;                                      
  Timer_server_Control *timer_server = _Timer_server;                 
                                                                      
  if ( !timer_server )                                                
ffc1b854:	2f 9f 00 00 	cmpwi   cr7,r31,0                              
  rtems_id                           id,                              
  rtems_time_of_day                  *wall_time,                      
  rtems_timer_service_routine_entry  routine,                         
  void                              *user_data                        
)                                                                     
{                                                                     
ffc1b858:	93 61 00 24 	stw     r27,36(r1)                             
ffc1b85c:	7c db 33 78 	mr      r27,r6                                 
ffc1b860:	93 81 00 28 	stw     r28,40(r1)                             
ffc1b864:	7c 9c 23 78 	mr      r28,r4                                 
ffc1b868:	93 a1 00 2c 	stw     r29,44(r1)                             
ffc1b86c:	7c 7d 1b 78 	mr      r29,r3                                 
ffc1b870:	93 c1 00 30 	stw     r30,48(r1)                             
ffc1b874:	7c be 2b 78 	mr      r30,r5                                 
ffc1b878:	90 01 00 3c 	stw     r0,60(r1)                              
ffc1b87c:	93 01 00 18 	stw     r24,24(r1)                             
ffc1b880:	93 41 00 20 	stw     r26,32(r1)                             
  Timer_Control        *the_timer;                                    
  Objects_Locations     location;                                     
  rtems_interval        seconds;                                      
  Timer_server_Control *timer_server = _Timer_server;                 
                                                                      
  if ( !timer_server )                                                
ffc1b884:	41 9e 00 38 	beq-    cr7,ffc1b8bc <rtems_timer_server_fire_when+0x84>
    return RTEMS_INCORRECT_STATE;                                     
                                                                      
  if ( !_TOD_Is_set )                                                 
ffc1b888:	3d 20 00 00 	lis     r9,0                                   
ffc1b88c:	88 09 28 28 	lbz     r0,10280(r9)                           
    return RTEMS_NOT_DEFINED;                                         
ffc1b890:	3b 20 00 0b 	li      r25,11                                 
  Timer_server_Control *timer_server = _Timer_server;                 
                                                                      
  if ( !timer_server )                                                
    return RTEMS_INCORRECT_STATE;                                     
                                                                      
  if ( !_TOD_Is_set )                                                 
ffc1b894:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc1b898:	41 9e 00 24 	beq-    cr7,ffc1b8bc <rtems_timer_server_fire_when+0x84><== NEVER TAKEN
    return RTEMS_NOT_DEFINED;                                         
                                                                      
  if ( !routine )                                                     
ffc1b89c:	2f 85 00 00 	cmpwi   cr7,r5,0                               
    return RTEMS_INVALID_ADDRESS;                                     
ffc1b8a0:	3b 20 00 09 	li      r25,9                                  
    return RTEMS_INCORRECT_STATE;                                     
                                                                      
  if ( !_TOD_Is_set )                                                 
    return RTEMS_NOT_DEFINED;                                         
                                                                      
  if ( !routine )                                                     
ffc1b8a4:	41 9e 00 18 	beq-    cr7,ffc1b8bc <rtems_timer_server_fire_when+0x84>
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !_TOD_Validate( wall_time ) )                                  
ffc1b8a8:	7c 83 23 78 	mr      r3,r4                                  
ffc1b8ac:	4b ff bf 69 	bl      ffc17814 <_TOD_Validate>               
    return RTEMS_INVALID_CLOCK;                                       
ffc1b8b0:	3b 20 00 14 	li      r25,20                                 
    return RTEMS_NOT_DEFINED;                                         
                                                                      
  if ( !routine )                                                     
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !_TOD_Validate( wall_time ) )                                  
ffc1b8b4:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc1b8b8:	40 9e 00 38 	bne-    cr7,ffc1b8f0 <rtems_timer_server_fire_when+0xb8>
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
}                                                                     
ffc1b8bc:	80 01 00 3c 	lwz     r0,60(r1)                              
ffc1b8c0:	7f 23 cb 78 	mr      r3,r25                                 
ffc1b8c4:	83 01 00 18 	lwz     r24,24(r1)                             
ffc1b8c8:	7c 08 03 a6 	mtlr    r0                                     
ffc1b8cc:	83 21 00 1c 	lwz     r25,28(r1)                             
ffc1b8d0:	83 41 00 20 	lwz     r26,32(r1)                             
ffc1b8d4:	83 61 00 24 	lwz     r27,36(r1)                             
ffc1b8d8:	83 81 00 28 	lwz     r28,40(r1)                             
ffc1b8dc:	83 a1 00 2c 	lwz     r29,44(r1)                             
ffc1b8e0:	83 c1 00 30 	lwz     r30,48(r1)                             
ffc1b8e4:	83 e1 00 34 	lwz     r31,52(r1)                             
ffc1b8e8:	38 21 00 38 	addi    r1,r1,56                               
ffc1b8ec:	4e 80 00 20 	blr                                            
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !_TOD_Validate( wall_time ) )                                  
    return RTEMS_INVALID_CLOCK;                                       
                                                                      
  seconds = _TOD_To_seconds( wall_time );                             
ffc1b8f0:	7f 83 e3 78 	mr      r3,r28                                 
  if ( seconds <= _TOD_Seconds_since_epoch() )                        
ffc1b8f4:	3f 40 00 00 	lis     r26,0                                  
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !_TOD_Validate( wall_time ) )                                  
    return RTEMS_INVALID_CLOCK;                                       
                                                                      
  seconds = _TOD_To_seconds( wall_time );                             
ffc1b8f8:	4b ff be 79 	bl      ffc17770 <_TOD_To_seconds>             
  if ( seconds <= _TOD_Seconds_since_epoch() )                        
ffc1b8fc:	80 1a 28 3c 	lwz     r0,10300(r26)                          
    return RTEMS_INVALID_ADDRESS;                                     
                                                                      
  if ( !_TOD_Validate( wall_time ) )                                  
    return RTEMS_INVALID_CLOCK;                                       
                                                                      
  seconds = _TOD_To_seconds( wall_time );                             
ffc1b900:	7c 7c 1b 78 	mr      r28,r3                                 
  if ( seconds <= _TOD_Seconds_since_epoch() )                        
ffc1b904:	7f 83 00 40 	cmplw   cr7,r3,r0                              
ffc1b908:	40 bd ff b4 	ble-    cr7,ffc1b8bc <rtems_timer_server_fire_when+0x84>
ffc1b90c:	3c 60 00 00 	lis     r3,0                                   
ffc1b910:	38 63 72 00 	addi    r3,r3,29184                            
ffc1b914:	7f a4 eb 78 	mr      r4,r29                                 
ffc1b918:	38 a1 00 08 	addi    r5,r1,8                                
ffc1b91c:	48 00 33 4d 	bl      ffc1ec68 <_Objects_Get>                
    return RTEMS_INVALID_CLOCK;                                       
                                                                      
  the_timer = _Timer_Get( id, &location );                            
  switch ( location ) {                                               
ffc1b920:	83 01 00 08 	lwz     r24,8(r1)                              
ffc1b924:	7c 79 1b 78 	mr      r25,r3                                 
ffc1b928:	2f 98 00 00 	cmpwi   cr7,r24,0                              
ffc1b92c:	40 9e 00 50 	bne-    cr7,ffc1b97c <rtems_timer_server_fire_when+0x144>
                                                                      
    case OBJECTS_LOCAL:                                               
      (void) _Watchdog_Remove( &the_timer->Ticker );                  
ffc1b930:	38 63 00 10 	addi    r3,r3,16                               
ffc1b934:	48 00 5b 5d 	bl      ffc21490 <_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();
ffc1b938:	80 1a 28 3c 	lwz     r0,10300(r26)                          
  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;               
ffc1b93c:	39 20 00 03 	li      r9,3                                   
      _Watchdog_Initialize( &the_timer->Ticker, routine, id, user_data );
      the_timer->Ticker.initial = seconds - _TOD_Seconds_since_epoch();
ffc1b940:	7f 80 e0 50 	subf    r28,r0,r28                             
                                                                      
      (*timer_server->schedule_operation)( timer_server, the_timer ); 
ffc1b944:	80 1f 00 04 	lwz     r0,4(r31)                              
ffc1b948:	7f 24 cb 78 	mr      r4,r25                                 
  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;               
ffc1b94c:	91 39 00 38 	stw     r9,56(r25)                             
      _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 ); 
ffc1b950:	7f e3 fb 78 	mr      r3,r31                                 
ffc1b954:	7c 09 03 a6 	mtctr   r0                                     
  Watchdog_Service_routine_entry  routine,                            
  Objects_Id                      id,                                 
  void                           *user_data                           
)                                                                     
{                                                                     
  the_watchdog->state     = WATCHDOG_INACTIVE;                        
ffc1b958:	93 19 00 18 	stw     r24,24(r25)                            
  the_watchdog->routine   = routine;                                  
ffc1b95c:	93 d9 00 2c 	stw     r30,44(r25)                            
  the_watchdog->id        = id;                                       
ffc1b960:	93 b9 00 30 	stw     r29,48(r25)                            
  the_watchdog->user_data = user_data;                                
ffc1b964:	93 79 00 34 	stw     r27,52(r25)                            
                                                                      
    case OBJECTS_LOCAL:                                               
      (void) _Watchdog_Remove( &the_timer->Ticker );                  
      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();
ffc1b968:	93 99 00 1c 	stw     r28,28(r25)                            
                                                                      
      (*timer_server->schedule_operation)( timer_server, the_timer ); 
                                                                      
      _Thread_Enable_dispatch();                                      
      return RTEMS_SUCCESSFUL;                                        
ffc1b96c:	3b 20 00 00 	li      r25,0                                  
      (void) _Watchdog_Remove( &the_timer->Ticker );                  
      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();
                                                                      
      (*timer_server->schedule_operation)( timer_server, the_timer ); 
ffc1b970:	4e 80 04 21 	bctrl                                          
                                                                      
      _Thread_Enable_dispatch();                                      
ffc1b974:	48 00 3e 49 	bl      ffc1f7bc <_Thread_Enable_dispatch>     
      return RTEMS_SUCCESSFUL;                                        
ffc1b978:	4b ff ff 44 	b       ffc1b8bc <rtems_timer_server_fire_when+0x84>
#endif                                                                
    case OBJECTS_ERROR:                                               
      break;                                                          
  }                                                                   
                                                                      
  return RTEMS_INVALID_ID;                                            
ffc1b97c:	3b 20 00 04 	li      r25,4                                  
ffc1b980:	4b ff ff 3c 	b       ffc1b8bc <rtems_timer_server_fire_when+0x84>
                                                                      

ffc0ad34 <rtems_verror>: static int rtems_verror( rtems_error_code_t error_flag, const char *printf_format, va_list arglist ) {
ffc0ad34:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc0ad38:	7c 08 02 a6 	mflr    r0                                     
ffc0ad3c:	90 01 00 24 	stw     r0,36(r1)                              
  int               local_errno = 0;                                  
  int               chars_written = 0;                                
  rtems_status_code status;                                           
                                                                      
  if (error_flag & RTEMS_ERROR_PANIC) {                               
ffc0ad40:	74 60 20 00 	andis.  r0,r3,8192                             
static int rtems_verror(                                              
  rtems_error_code_t  error_flag,                                     
  const char         *printf_format,                                  
  va_list             arglist                                         
)                                                                     
{                                                                     
ffc0ad44:	93 41 00 08 	stw     r26,8(r1)                              
ffc0ad48:	7c 9a 23 78 	mr      r26,r4                                 
ffc0ad4c:	93 61 00 0c 	stw     r27,12(r1)                             
ffc0ad50:	7c bb 2b 78 	mr      r27,r5                                 
ffc0ad54:	93 c1 00 18 	stw     r30,24(r1)                             
ffc0ad58:	7c 7e 1b 78 	mr      r30,r3                                 
ffc0ad5c:	93 81 00 10 	stw     r28,16(r1)                             
ffc0ad60:	93 a1 00 14 	stw     r29,20(r1)                             
ffc0ad64:	93 e1 00 1c 	stw     r31,28(r1)                             
  int               local_errno = 0;                                  
  int               chars_written = 0;                                
  rtems_status_code status;                                           
                                                                      
  if (error_flag & RTEMS_ERROR_PANIC) {                               
ffc0ad68:	41 82 00 3c 	beq-    ffc0ada4 <rtems_verror+0x70>           
    if (rtems_panic_in_progress++)                                    
ffc0ad6c:	3d 20 00 00 	lis     r9,0                                   
ffc0ad70:	81 69 27 8c 	lwz     r11,10124(r9)                          
ffc0ad74:	2f 8b 00 00 	cmpwi   cr7,r11,0                              
ffc0ad78:	38 0b 00 01 	addi    r0,r11,1                               
ffc0ad7c:	90 09 27 8c 	stw     r0,10124(r9)                           
ffc0ad80:	41 9e 00 18 	beq-    cr7,ffc0ad98 <rtems_verror+0x64>       <== ALWAYS TAKEN
	rtems_fatal_error_occurred( 99 );                                    
      }                                                               
    }                                                                 
  #endif                                                              
                                                                      
  _Thread_Dispatch_disable_level += 1;                                
ffc0ad84:	3d 60 00 00 	lis     r11,0                                  <== NOT EXECUTED
ffc0ad88:	81 4b 27 b0 	lwz     r10,10160(r11)                         <== NOT EXECUTED
ffc0ad8c:	38 0a 00 01 	addi    r0,r10,1                               <== NOT EXECUTED
ffc0ad90:	90 0b 27 b0 	stw     r0,10160(r11)                          <== NOT EXECUTED
  RTEMS_COMPILER_MEMORY_BARRIER();                                    
ffc0ad94:	80 09 27 8c 	lwz     r0,10124(r9)                           <== NOT EXECUTED
      _Thread_Disable_dispatch();       /* disable task switches */   
                                                                      
    /* don't aggravate things */                                      
    if (rtems_panic_in_progress > 2)                                  
ffc0ad98:	2f 80 00 02 	cmpwi   cr7,r0,2                               
      return 0;                                                       
ffc0ad9c:	3b a0 00 00 	li      r29,0                                  
  if (error_flag & RTEMS_ERROR_PANIC) {                               
    if (rtems_panic_in_progress++)                                    
      _Thread_Disable_dispatch();       /* disable task switches */   
                                                                      
    /* don't aggravate things */                                      
    if (rtems_panic_in_progress > 2)                                  
ffc0ada0:	41 9d 00 ac 	bgt-    cr7,ffc0ae4c <rtems_verror+0x118>      <== NEVER TAKEN
      return 0;                                                       
  }                                                                   
                                                                      
  (void) fflush(stdout);            /* in case stdout/stderr same */  
ffc0ada4:	3f e0 00 00 	lis     r31,0                                  
ffc0ada8:	81 3f 27 24 	lwz     r9,10020(r31)                          
  rtems_error_code_t  error_flag,                                     
  const char         *printf_format,                                  
  va_list             arglist                                         
)                                                                     
{                                                                     
  int               local_errno = 0;                                  
ffc0adac:	3b 80 00 00 	li      r28,0                                  
    /* don't aggravate things */                                      
    if (rtems_panic_in_progress > 2)                                  
      return 0;                                                       
  }                                                                   
                                                                      
  (void) fflush(stdout);            /* in case stdout/stderr same */  
ffc0adb0:	80 69 00 08 	lwz     r3,8(r9)                               
ffc0adb4:	48 00 ea 75 	bl      ffc19828 <fflush>                      
                                                                      
  status = error_flag & ~RTEMS_ERROR_MASK;                            
  if (error_flag & RTEMS_ERROR_ERRNO)     /* include errno? */        
ffc0adb8:	77 c0 40 00 	andis.  r0,r30,16384                           
      return 0;                                                       
  }                                                                   
                                                                      
  (void) fflush(stdout);            /* in case stdout/stderr same */  
                                                                      
  status = error_flag & ~RTEMS_ERROR_MASK;                            
ffc0adbc:	57 de 01 00 	rlwinm  r30,r30,0,4,0                          
  if (error_flag & RTEMS_ERROR_ERRNO)     /* include errno? */        
ffc0adc0:	40 82 00 ec 	bne-    ffc0aeac <rtems_verror+0x178>          
  #if defined(RTEMS_MULTIPROCESSING)                                  
    if (_System_state_Is_multiprocessing)                             
      fprintf(stderr, "[%" PRIu32 "] ", _Configuration_MP_table->node);
  #endif                                                              
                                                                      
  chars_written += vfprintf(stderr, printf_format, arglist);          
ffc0adc4:	81 3f 27 24 	lwz     r9,10020(r31)                          
ffc0adc8:	7f 44 d3 78 	mr      r4,r26                                 
ffc0adcc:	7f 65 db 78 	mr      r5,r27                                 
ffc0add0:	80 69 00 0c 	lwz     r3,12(r9)                              
ffc0add4:	48 01 51 59 	bl      ffc1ff2c <vfprintf>                    
                                                                      
  if (status)                                                         
ffc0add8:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
  #if defined(RTEMS_MULTIPROCESSING)                                  
    if (_System_state_Is_multiprocessing)                             
      fprintf(stderr, "[%" PRIu32 "] ", _Configuration_MP_table->node);
  #endif                                                              
                                                                      
  chars_written += vfprintf(stderr, printf_format, arglist);          
ffc0addc:	7c 7d 1b 78 	mr      r29,r3                                 
                                                                      
  if (status)                                                         
ffc0ade0:	40 9e 00 98 	bne-    cr7,ffc0ae78 <rtems_verror+0x144>      
    chars_written +=                                                  
      fprintf(stderr, " (status: %s)", rtems_status_text(status));    
                                                                      
  if (local_errno) {                                                  
ffc0ade4:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
ffc0ade8:	41 9e 00 3c 	beq-    cr7,ffc0ae24 <rtems_verror+0xf0>       
    if ((local_errno > 0) && *strerror(local_errno))                  
ffc0adec:	40 9d 00 18 	ble-    cr7,ffc0ae04 <rtems_verror+0xd0>       
ffc0adf0:	7f 83 e3 78 	mr      r3,r28                                 
ffc0adf4:	48 00 fe 65 	bl      ffc1ac58 <strerror>                    
ffc0adf8:	88 03 00 00 	lbz     r0,0(r3)                               
ffc0adfc:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0ae00:	40 9e 00 b8 	bne-    cr7,ffc0aeb8 <rtems_verror+0x184>      <== ALWAYS TAKEN
      chars_written += fprintf(stderr, " (errno: %s)", strerror(local_errno));
    else                                                              
      chars_written += fprintf(stderr, " (unknown errno=%d)", local_errno);
ffc0ae04:	81 3f 27 24 	lwz     r9,10020(r31)                          
ffc0ae08:	3c 80 ff c3 	lis     r4,-61                                 
ffc0ae0c:	38 84 97 e4 	addi    r4,r4,-26652                           
ffc0ae10:	80 69 00 0c 	lwz     r3,12(r9)                              
ffc0ae14:	7f 85 e3 78 	mr      r5,r28                                 
ffc0ae18:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0ae1c:	48 00 ef 41 	bl      ffc19d5c <fprintf>                     
ffc0ae20:	7f bd 1a 14 	add     r29,r29,r3                             
  }                                                                   
                                                                      
  chars_written += fprintf(stderr, "\n");                             
ffc0ae24:	81 3f 27 24 	lwz     r9,10020(r31)                          
ffc0ae28:	3c 80 ff c3 	lis     r4,-61                                 
ffc0ae2c:	38 84 91 58 	addi    r4,r4,-28328                           
ffc0ae30:	80 69 00 0c 	lwz     r3,12(r9)                              
ffc0ae34:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0ae38:	48 00 ef 25 	bl      ffc19d5c <fprintf>                     
                                                                      
  (void) fflush(stderr);                                              
ffc0ae3c:	81 3f 27 24 	lwz     r9,10020(r31)                          
      chars_written += fprintf(stderr, " (errno: %s)", strerror(local_errno));
    else                                                              
      chars_written += fprintf(stderr, " (unknown errno=%d)", local_errno);
  }                                                                   
                                                                      
  chars_written += fprintf(stderr, "\n");                             
ffc0ae40:	7f a3 ea 14 	add     r29,r3,r29                             
                                                                      
  (void) fflush(stderr);                                              
ffc0ae44:	80 69 00 0c 	lwz     r3,12(r9)                              
ffc0ae48:	48 00 e9 e1 	bl      ffc19828 <fflush>                      
                                                                      
  return chars_written;                                               
}                                                                     
ffc0ae4c:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0ae50:	7f a3 eb 78 	mr      r3,r29                                 
ffc0ae54:	83 41 00 08 	lwz     r26,8(r1)                              
ffc0ae58:	7c 08 03 a6 	mtlr    r0                                     
ffc0ae5c:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc0ae60:	83 81 00 10 	lwz     r28,16(r1)                             
ffc0ae64:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc0ae68:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc0ae6c:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc0ae70:	38 21 00 20 	addi    r1,r1,32                               
ffc0ae74:	4e 80 00 20 	blr                                            
                                                                      
  chars_written += vfprintf(stderr, printf_format, arglist);          
                                                                      
  if (status)                                                         
    chars_written +=                                                  
      fprintf(stderr, " (status: %s)", rtems_status_text(status));    
ffc0ae78:	3d 20 00 00 	lis     r9,0                                   
ffc0ae7c:	81 29 27 24 	lwz     r9,10020(r9)                           
ffc0ae80:	7f c3 f3 78 	mr      r3,r30                                 
ffc0ae84:	83 c9 00 0c 	lwz     r30,12(r9)                             
ffc0ae88:	4b ff fe 81 	bl      ffc0ad08 <rtems_status_text>           
ffc0ae8c:	3c 80 ff c3 	lis     r4,-61                                 
ffc0ae90:	7c 65 1b 78 	mr      r5,r3                                  
ffc0ae94:	38 84 97 c4 	addi    r4,r4,-26684                           
ffc0ae98:	7f c3 f3 78 	mr      r3,r30                                 
ffc0ae9c:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0aea0:	48 00 ee bd 	bl      ffc19d5c <fprintf>                     
  #endif                                                              
                                                                      
  chars_written += vfprintf(stderr, printf_format, arglist);          
                                                                      
  if (status)                                                         
    chars_written +=                                                  
ffc0aea4:	7f bd 1a 14 	add     r29,r29,r3                             
ffc0aea8:	4b ff ff 3c 	b       ffc0ade4 <rtems_verror+0xb0>           
                                                                      
  (void) fflush(stdout);            /* in case stdout/stderr same */  
                                                                      
  status = error_flag & ~RTEMS_ERROR_MASK;                            
  if (error_flag & RTEMS_ERROR_ERRNO)     /* include errno? */        
    local_errno = errno;                                              
ffc0aeac:	48 00 e4 e9 	bl      ffc19394 <__errno>                     
ffc0aeb0:	83 83 00 00 	lwz     r28,0(r3)                              
ffc0aeb4:	4b ff ff 10 	b       ffc0adc4 <rtems_verror+0x90>           
    chars_written +=                                                  
      fprintf(stderr, " (status: %s)", rtems_status_text(status));    
                                                                      
  if (local_errno) {                                                  
    if ((local_errno > 0) && *strerror(local_errno))                  
      chars_written += fprintf(stderr, " (errno: %s)", strerror(local_errno));
ffc0aeb8:	81 3f 27 24 	lwz     r9,10020(r31)                          
ffc0aebc:	7f 83 e3 78 	mr      r3,r28                                 
ffc0aec0:	83 c9 00 0c 	lwz     r30,12(r9)                             
ffc0aec4:	48 00 fd 95 	bl      ffc1ac58 <strerror>                    
ffc0aec8:	3c 80 ff c3 	lis     r4,-61                                 
ffc0aecc:	7c 65 1b 78 	mr      r5,r3                                  
ffc0aed0:	38 84 97 d4 	addi    r4,r4,-26668                           
ffc0aed4:	7f c3 f3 78 	mr      r3,r30                                 
ffc0aed8:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc0aedc:	48 00 ee 81 	bl      ffc19d5c <fprintf>                     
ffc0aee0:	7f bd 1a 14 	add     r29,r29,r3                             
ffc0aee4:	4b ff ff 40 	b       ffc0ae24 <rtems_verror+0xf0>           
                                                                      

ffc0555c <scanInt>: /* * Extract an integer value from the database */ static int scanInt(FILE *fp, int *val) {
ffc0555c:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc05560:	7c 08 02 a6 	mflr    r0                                     
ffc05564:	93 41 00 10 	stw     r26,16(r1)                             
      sign = 1;                                                       
    }                                                                 
    if (!isdigit(c))                                                  
      return 0;                                                       
    d = c - '0';                                                      
    if ((i > (limit / 10))                                            
ffc05568:	3f 40 cc cc 	lis     r26,-13108                             
ffc0556c:	63 5a cc cd 	ori     r26,r26,52429                          
/*                                                                    
 * Extract an integer value from the database                         
 */                                                                   
static int                                                            
scanInt(FILE *fp, int *val)                                           
{                                                                     
ffc05570:	93 81 00 18 	stw     r28,24(r1)                             
  int c;                                                              
  unsigned int i = 0;                                                 
  unsigned int limit = INT_MAX;                                       
ffc05574:	3f 80 7f ff 	lis     r28,32767                              
ffc05578:	63 9c ff ff 	ori     r28,r28,65535                          
/*                                                                    
 * Extract an integer value from the database                         
 */                                                                   
static int                                                            
scanInt(FILE *fp, int *val)                                           
{                                                                     
ffc0557c:	90 01 00 2c 	stw     r0,44(r1)                              
ffc05580:	93 01 00 08 	stw     r24,8(r1)                              
ffc05584:	7c 98 23 78 	mr      r24,r4                                 
ffc05588:	93 21 00 0c 	stw     r25,12(r1)                             
  unsigned int limit = INT_MAX;                                       
  int sign = 0;                                                       
  int d;                                                              
                                                                      
  for (;;) {                                                          
    c = getc(fp);                                                     
ffc0558c:	3f 20 00 00 	lis     r25,0                                  
/*                                                                    
 * Extract an integer value from the database                         
 */                                                                   
static int                                                            
scanInt(FILE *fp, int *val)                                           
{                                                                     
ffc05590:	93 61 00 14 	stw     r27,20(r1)                             
        limit++;                                                      
        continue;                                                     
      }                                                               
      sign = 1;                                                       
    }                                                                 
    if (!isdigit(c))                                                  
ffc05594:	3f 60 00 00 	lis     r27,0                                  
/*                                                                    
 * Extract an integer value from the database                         
 */                                                                   
static int                                                            
scanInt(FILE *fp, int *val)                                           
{                                                                     
ffc05598:	93 a1 00 1c 	stw     r29,28(r1)                             
  int c;                                                              
  unsigned int i = 0;                                                 
  unsigned int limit = INT_MAX;                                       
  int sign = 0;                                                       
ffc0559c:	3b a0 00 00 	li      r29,0                                  
/*                                                                    
 * Extract an integer value from the database                         
 */                                                                   
static int                                                            
scanInt(FILE *fp, int *val)                                           
{                                                                     
ffc055a0:	93 c1 00 20 	stw     r30,32(r1)                             
  int c;                                                              
  unsigned int i = 0;                                                 
ffc055a4:	3b c0 00 00 	li      r30,0                                  
/*                                                                    
 * Extract an integer value from the database                         
 */                                                                   
static int                                                            
scanInt(FILE *fp, int *val)                                           
{                                                                     
ffc055a8:	93 e1 00 24 	stw     r31,36(r1)                             
ffc055ac:	7c 7f 1b 78 	mr      r31,r3                                 
  unsigned int limit = INT_MAX;                                       
  int sign = 0;                                                       
  int d;                                                              
                                                                      
  for (;;) {                                                          
    c = getc(fp);                                                     
ffc055b0:	81 3f 00 04 	lwz     r9,4(r31)                              
ffc055b4:	38 09 ff ff 	addi    r0,r9,-1                               
ffc055b8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc055bc:	90 1f 00 04 	stw     r0,4(r31)                              
ffc055c0:	41 9c 00 7c 	blt-    cr7,ffc0563c <scanInt+0xe0>            <== NEVER TAKEN
ffc055c4:	81 3f 00 00 	lwz     r9,0(r31)                              
ffc055c8:	88 69 00 00 	lbz     r3,0(r9)                               
ffc055cc:	38 09 00 01 	addi    r0,r9,1                                
ffc055d0:	90 1f 00 00 	stw     r0,0(r31)                              
    if (c == ':')                                                     
ffc055d4:	2f 83 00 3a 	cmpwi   cr7,r3,58                              
ffc055d8:	41 9e 00 78 	beq-    cr7,ffc05650 <scanInt+0xf4>            
      break;                                                          
    if (sign == 0) {                                                  
ffc055dc:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
ffc055e0:	40 9e 00 10 	bne-    cr7,ffc055f0 <scanInt+0x94>            
      if (c == '-') {                                                 
ffc055e4:	2f 83 00 2d 	cmpwi   cr7,r3,45                              
        sign = -1;                                                    
        limit++;                                                      
        continue;                                                     
      }                                                               
      sign = 1;                                                       
ffc055e8:	3b a0 00 01 	li      r29,1                                  
  for (;;) {                                                          
    c = getc(fp);                                                     
    if (c == ':')                                                     
      break;                                                          
    if (sign == 0) {                                                  
      if (c == '-') {                                                 
ffc055ec:	41 9e 00 f0 	beq-    cr7,ffc056dc <scanInt+0x180>           
        limit++;                                                      
        continue;                                                     
      }                                                               
      sign = 1;                                                       
    }                                                                 
    if (!isdigit(c))                                                  
ffc055f0:	81 3b 26 a0 	lwz     r9,9888(r27)                           
ffc055f4:	7d 29 1a 14 	add     r9,r9,r3                               
ffc055f8:	88 09 00 01 	lbz     r0,1(r9)                               
ffc055fc:	70 09 00 04 	andi.   r9,r0,4                                
ffc05600:	41 82 00 a8 	beq-    ffc056a8 <scanInt+0x14c>               
      return 0;                                                       
    d = c - '0';                                                      
    if ((i > (limit / 10))                                            
ffc05604:	7c 1c d0 16 	mulhwu  r0,r28,r26                             
ffc05608:	54 00 e8 fe 	rlwinm  r0,r0,29,3,31                          
ffc0560c:	7f 9e 00 40 	cmplw   cr7,r30,r0                             
ffc05610:	41 9d 00 98 	bgt-    cr7,ffc056a8 <scanInt+0x14c>           
     || ((i == (limit / 10)) && (d > (limit % 10))))                  
ffc05614:	7f 9e 00 00 	cmpw    cr7,r30,r0                             
      }                                                               
      sign = 1;                                                       
    }                                                                 
    if (!isdigit(c))                                                  
      return 0;                                                       
    d = c - '0';                                                      
ffc05618:	38 63 ff d0 	addi    r3,r3,-48                              
    if ((i > (limit / 10))                                            
     || ((i == (limit / 10)) && (d > (limit % 10))))                  
ffc0561c:	41 9e 00 7c 	beq-    cr7,ffc05698 <scanInt+0x13c>           
ffc05620:	1f de 00 0a 	mulli   r30,r30,10                             
  unsigned int limit = INT_MAX;                                       
  int sign = 0;                                                       
  int d;                                                              
                                                                      
  for (;;) {                                                          
    c = getc(fp);                                                     
ffc05624:	81 3f 00 04 	lwz     r9,4(r31)                              
      return 0;                                                       
    d = c - '0';                                                      
    if ((i > (limit / 10))                                            
     || ((i == (limit / 10)) && (d > (limit % 10))))                  
      return 0;                                                       
    i = i * 10 + d;                                                   
ffc05628:	7f c3 f2 14 	add     r30,r3,r30                             
  unsigned int limit = INT_MAX;                                       
  int sign = 0;                                                       
  int d;                                                              
                                                                      
  for (;;) {                                                          
    c = getc(fp);                                                     
ffc0562c:	38 09 ff ff 	addi    r0,r9,-1                               
ffc05630:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc05634:	90 1f 00 04 	stw     r0,4(r31)                              
ffc05638:	40 9c ff 8c 	bge+    cr7,ffc055c4 <scanInt+0x68>            <== ALWAYS TAKEN
ffc0563c:	80 79 26 a4 	lwz     r3,9892(r25)                           <== NOT EXECUTED
ffc05640:	7f e4 fb 78 	mr      r4,r31                                 <== NOT EXECUTED
ffc05644:	48 00 fc 55 	bl      ffc15298 <__srget_r>                   <== NOT EXECUTED
    if (c == ':')                                                     
ffc05648:	2f 83 00 3a 	cmpwi   cr7,r3,58                              <== NOT EXECUTED
ffc0564c:	40 9e ff 90 	bne+    cr7,ffc055dc <scanInt+0x80>            <== NOT EXECUTED
    if ((i > (limit / 10))                                            
     || ((i == (limit / 10)) && (d > (limit % 10))))                  
      return 0;                                                       
    i = i * 10 + d;                                                   
  }                                                                   
  if (sign == 0)                                                      
ffc05650:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
    return 0;                                                         
ffc05654:	38 60 00 00 	li      r3,0                                   
    if ((i > (limit / 10))                                            
     || ((i == (limit / 10)) && (d > (limit % 10))))                  
      return 0;                                                       
    i = i * 10 + d;                                                   
  }                                                                   
  if (sign == 0)                                                      
ffc05658:	41 9e 00 54 	beq-    cr7,ffc056ac <scanInt+0x150>           <== NEVER TAKEN
    return 0;                                                         
  *val = i * sign;                                                    
  return 1;                                                           
}                                                                     
ffc0565c:	80 01 00 2c 	lwz     r0,44(r1)                              
      return 0;                                                       
    i = i * 10 + d;                                                   
  }                                                                   
  if (sign == 0)                                                      
    return 0;                                                         
  *val = i * sign;                                                    
ffc05660:	7f dd f1 d6 	mullw   r30,r29,r30                            
  return 1;                                                           
}                                                                     
ffc05664:	83 21 00 0c 	lwz     r25,12(r1)                             
ffc05668:	7c 08 03 a6 	mtlr    r0                                     
    i = i * 10 + d;                                                   
  }                                                                   
  if (sign == 0)                                                      
    return 0;                                                         
  *val = i * sign;                                                    
  return 1;                                                           
ffc0566c:	38 60 00 01 	li      r3,1                                   
      return 0;                                                       
    i = i * 10 + d;                                                   
  }                                                                   
  if (sign == 0)                                                      
    return 0;                                                         
  *val = i * sign;                                                    
ffc05670:	93 d8 00 00 	stw     r30,0(r24)                             
  return 1;                                                           
}                                                                     
ffc05674:	83 01 00 08 	lwz     r24,8(r1)                              
ffc05678:	83 41 00 10 	lwz     r26,16(r1)                             
ffc0567c:	83 61 00 14 	lwz     r27,20(r1)                             
ffc05680:	83 81 00 18 	lwz     r28,24(r1)                             
ffc05684:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc05688:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc0568c:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc05690:	38 21 00 28 	addi    r1,r1,40                               
ffc05694:	4e 80 00 20 	blr                                            
    }                                                                 
    if (!isdigit(c))                                                  
      return 0;                                                       
    d = c - '0';                                                      
    if ((i > (limit / 10))                                            
     || ((i == (limit / 10)) && (d > (limit % 10))))                  
ffc05698:	1f de 00 0a 	mulli   r30,r30,10                             
ffc0569c:	7c 1e e0 50 	subf    r0,r30,r28                             
ffc056a0:	7f 83 00 40 	cmplw   cr7,r3,r0                              
ffc056a4:	40 9d ff 80 	ble+    cr7,ffc05624 <scanInt+0xc8>            <== NEVER TAKEN
      return 0;                                                       
ffc056a8:	38 60 00 00 	li      r3,0                                   
  }                                                                   
  if (sign == 0)                                                      
    return 0;                                                         
  *val = i * sign;                                                    
  return 1;                                                           
}                                                                     
ffc056ac:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc056b0:	83 01 00 08 	lwz     r24,8(r1)                              
ffc056b4:	7c 08 03 a6 	mtlr    r0                                     
ffc056b8:	83 21 00 0c 	lwz     r25,12(r1)                             
ffc056bc:	83 41 00 10 	lwz     r26,16(r1)                             
ffc056c0:	83 61 00 14 	lwz     r27,20(r1)                             
ffc056c4:	83 81 00 18 	lwz     r28,24(r1)                             
ffc056c8:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc056cc:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc056d0:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc056d4:	38 21 00 28 	addi    r1,r1,40                               
ffc056d8:	4e 80 00 20 	blr                                            
    if (c == ':')                                                     
      break;                                                          
    if (sign == 0) {                                                  
      if (c == '-') {                                                 
        sign = -1;                                                    
        limit++;                                                      
ffc056dc:	3b 9c 00 01 	addi    r28,r28,1                              
    c = getc(fp);                                                     
    if (c == ':')                                                     
      break;                                                          
    if (sign == 0) {                                                  
      if (c == '-') {                                                 
        sign = -1;                                                    
ffc056e0:	3b a0 ff ff 	li      r29,-1                                 
        limit++;                                                      
        continue;                                                     
ffc056e4:	4b ff fe cc 	b       ffc055b0 <scanInt+0x54>                
                                                                      

ffc056e8 <scanString>: /* * Extract a string value from the database */ static int scanString(FILE *fp, char **name, char **bufp, size_t *nleft, int nlFlag) {
ffc056e8:	94 21 ff e0 	stwu    r1,-32(r1)                             
ffc056ec:	7c 08 02 a6 	mflr    r0                                     
ffc056f0:	90 01 00 24 	stw     r0,36(r1)                              
  int c;                                                              
                                                                      
  *name = *bufp;                                                      
ffc056f4:	80 05 00 00 	lwz     r0,0(r5)                               
/*                                                                    
 * Extract a string value from the database                           
 */                                                                   
static int                                                            
scanString(FILE *fp, char **name, char **bufp, size_t *nleft, int nlFlag)
{                                                                     
ffc056f8:	93 61 00 0c 	stw     r27,12(r1)                             
ffc056fc:	7c fb 3b 78 	mr      r27,r7                                 
ffc05700:	93 81 00 10 	stw     r28,16(r1)                             
  int c;                                                              
                                                                      
  *name = *bufp;                                                      
  for (;;) {                                                          
    c = getc(fp);                                                     
ffc05704:	3f 80 00 00 	lis     r28,0                                  
/*                                                                    
 * Extract a string value from the database                           
 */                                                                   
static int                                                            
scanString(FILE *fp, char **name, char **bufp, size_t *nleft, int nlFlag)
{                                                                     
ffc05708:	93 a1 00 14 	stw     r29,20(r1)                             
ffc0570c:	7c dd 33 78 	mr      r29,r6                                 
ffc05710:	93 c1 00 18 	stw     r30,24(r1)                             
ffc05714:	7c be 2b 78 	mr      r30,r5                                 
ffc05718:	93 e1 00 1c 	stw     r31,28(r1)                             
ffc0571c:	7c 7f 1b 78 	mr      r31,r3                                 
  int c;                                                              
                                                                      
  *name = *bufp;                                                      
ffc05720:	90 04 00 00 	stw     r0,0(r4)                               
ffc05724:	48 00 00 58 	b       ffc0577c <scanString+0x94>             
  for (;;) {                                                          
    c = getc(fp);                                                     
ffc05728:	81 3f 00 00 	lwz     r9,0(r31)                              
ffc0572c:	88 69 00 00 	lbz     r3,0(r9)                               
ffc05730:	38 09 00 01 	addi    r0,r9,1                                
ffc05734:	90 1f 00 00 	stw     r0,0(r31)                              
    if (c == ':') {                                                   
ffc05738:	2f 83 00 3a 	cmpwi   cr7,r3,58                              
        if (nlFlag)                                                   
            return 0;                                                 
        break;                                                        
    }                                                                 
    if (c == '\n') {                                                  
ffc0573c:	2f 03 00 0a 	cmpwi   cr6,r3,10                              
        if (!nlFlag)                                                  
            return 0;                                                 
        break;                                                        
    }                                                                 
    if (c == EOF)                                                     
ffc05740:	2c 83 ff ff 	cmpwi   cr1,r3,-1                              
  int c;                                                              
                                                                      
  *name = *bufp;                                                      
  for (;;) {                                                          
    c = getc(fp);                                                     
    if (c == ':') {                                                   
ffc05744:	41 9e 00 68 	beq-    cr7,ffc057ac <scanString+0xc4>         
        if (nlFlag)                                                   
            return 0;                                                 
        break;                                                        
    }                                                                 
    if (c == '\n') {                                                  
ffc05748:	41 9a 00 e4 	beq-    cr6,ffc0582c <scanString+0x144>        
        if (!nlFlag)                                                  
            return 0;                                                 
        break;                                                        
    }                                                                 
    if (c == EOF)                                                     
ffc0574c:	41 86 00 b8 	beq-    cr1,ffc05804 <scanString+0x11c>        
      return 0;                                                       
    if (*nleft < 2)                                                   
ffc05750:	80 1d 00 00 	lwz     r0,0(r29)                              
ffc05754:	2b 80 00 01 	cmplwi  cr7,r0,1                               
ffc05758:	40 9d 00 ac 	ble-    cr7,ffc05804 <scanString+0x11c>        
      return 0;                                                       
    **bufp = c;                                                       
ffc0575c:	81 3e 00 00 	lwz     r9,0(r30)                              
ffc05760:	98 69 00 00 	stb     r3,0(r9)                               
    ++(*bufp);                                                        
ffc05764:	81 3e 00 00 	lwz     r9,0(r30)                              
    --(*nleft);                                                       
ffc05768:	81 7d 00 00 	lwz     r11,0(r29)                             
    if (c == EOF)                                                     
      return 0;                                                       
    if (*nleft < 2)                                                   
      return 0;                                                       
    **bufp = c;                                                       
    ++(*bufp);                                                        
ffc0576c:	39 29 00 01 	addi    r9,r9,1                                
    --(*nleft);                                                       
ffc05770:	38 0b ff ff 	addi    r0,r11,-1                              
    if (c == EOF)                                                     
      return 0;                                                       
    if (*nleft < 2)                                                   
      return 0;                                                       
    **bufp = c;                                                       
    ++(*bufp);                                                        
ffc05774:	91 3e 00 00 	stw     r9,0(r30)                              
    --(*nleft);                                                       
ffc05778:	90 1d 00 00 	stw     r0,0(r29)                              
{                                                                     
  int c;                                                              
                                                                      
  *name = *bufp;                                                      
  for (;;) {                                                          
    c = getc(fp);                                                     
ffc0577c:	81 3f 00 04 	lwz     r9,4(r31)                              
ffc05780:	38 09 ff ff 	addi    r0,r9,-1                               
ffc05784:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc05788:	90 1f 00 04 	stw     r0,4(r31)                              
ffc0578c:	40 9c ff 9c 	bge+    cr7,ffc05728 <scanString+0x40>         
ffc05790:	80 7c 26 a4 	lwz     r3,9892(r28)                           
ffc05794:	7f e4 fb 78 	mr      r4,r31                                 
ffc05798:	48 00 fb 01 	bl      ffc15298 <__srget_r>                   
    if (c == ':') {                                                   
ffc0579c:	2f 83 00 3a 	cmpwi   cr7,r3,58                              
        if (nlFlag)                                                   
            return 0;                                                 
        break;                                                        
    }                                                                 
    if (c == '\n') {                                                  
ffc057a0:	2f 03 00 0a 	cmpwi   cr6,r3,10                              
        if (!nlFlag)                                                  
            return 0;                                                 
        break;                                                        
    }                                                                 
    if (c == EOF)                                                     
ffc057a4:	2c 83 ff ff 	cmpwi   cr1,r3,-1                              
  int c;                                                              
                                                                      
  *name = *bufp;                                                      
  for (;;) {                                                          
    c = getc(fp);                                                     
    if (c == ':') {                                                   
ffc057a8:	40 9e ff a0 	bne+    cr7,ffc05748 <scanString+0x60>         <== ALWAYS TAKEN
        if (nlFlag)                                                   
ffc057ac:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
            return 0;                                                 
ffc057b0:	38 60 00 00 	li      r3,0                                   
                                                                      
  *name = *bufp;                                                      
  for (;;) {                                                          
    c = getc(fp);                                                     
    if (c == ':') {                                                   
        if (nlFlag)                                                   
ffc057b4:	40 9e 00 54 	bne-    cr7,ffc05808 <scanString+0x120>        
      return 0;                                                       
    **bufp = c;                                                       
    ++(*bufp);                                                        
    --(*nleft);                                                       
  }                                                                   
  **bufp = '\0';                                                      
ffc057b8:	81 3e 00 00 	lwz     r9,0(r30)                              
ffc057bc:	38 00 00 00 	li      r0,0                                   
  ++(*bufp);                                                          
  --(*nleft);                                                         
  return 1;                                                           
ffc057c0:	38 60 00 01 	li      r3,1                                   
      return 0;                                                       
    **bufp = c;                                                       
    ++(*bufp);                                                        
    --(*nleft);                                                       
  }                                                                   
  **bufp = '\0';                                                      
ffc057c4:	98 09 00 00 	stb     r0,0(r9)                               
  ++(*bufp);                                                          
ffc057c8:	81 3e 00 00 	lwz     r9,0(r30)                              
  --(*nleft);                                                         
ffc057cc:	81 7d 00 00 	lwz     r11,0(r29)                             
    **bufp = c;                                                       
    ++(*bufp);                                                        
    --(*nleft);                                                       
  }                                                                   
  **bufp = '\0';                                                      
  ++(*bufp);                                                          
ffc057d0:	39 29 00 01 	addi    r9,r9,1                                
  --(*nleft);                                                         
ffc057d4:	38 0b ff ff 	addi    r0,r11,-1                              
    **bufp = c;                                                       
    ++(*bufp);                                                        
    --(*nleft);                                                       
  }                                                                   
  **bufp = '\0';                                                      
  ++(*bufp);                                                          
ffc057d8:	91 3e 00 00 	stw     r9,0(r30)                              
  --(*nleft);                                                         
ffc057dc:	90 1d 00 00 	stw     r0,0(r29)                              
  return 1;                                                           
}                                                                     
ffc057e0:	80 01 00 24 	lwz     r0,36(r1)                              
ffc057e4:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc057e8:	7c 08 03 a6 	mtlr    r0                                     
ffc057ec:	83 81 00 10 	lwz     r28,16(r1)                             
ffc057f0:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc057f4:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc057f8:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc057fc:	38 21 00 20 	addi    r1,r1,32                               
ffc05800:	4e 80 00 20 	blr                                            
        break;                                                        
    }                                                                 
    if (c == EOF)                                                     
      return 0;                                                       
    if (*nleft < 2)                                                   
      return 0;                                                       
ffc05804:	38 60 00 00 	li      r3,0                                   
  }                                                                   
  **bufp = '\0';                                                      
  ++(*bufp);                                                          
  --(*nleft);                                                         
  return 1;                                                           
}                                                                     
ffc05808:	80 01 00 24 	lwz     r0,36(r1)                              
ffc0580c:	83 61 00 0c 	lwz     r27,12(r1)                             
ffc05810:	7c 08 03 a6 	mtlr    r0                                     
ffc05814:	83 81 00 10 	lwz     r28,16(r1)                             
ffc05818:	83 a1 00 14 	lwz     r29,20(r1)                             
ffc0581c:	83 c1 00 18 	lwz     r30,24(r1)                             
ffc05820:	83 e1 00 1c 	lwz     r31,28(r1)                             
ffc05824:	38 21 00 20 	addi    r1,r1,32                               
ffc05828:	4e 80 00 20 	blr                                            
        if (nlFlag)                                                   
            return 0;                                                 
        break;                                                        
    }                                                                 
    if (c == '\n') {                                                  
        if (!nlFlag)                                                  
ffc0582c:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
            return 0;                                                 
ffc05830:	38 60 00 00 	li      r3,0                                   
        if (nlFlag)                                                   
            return 0;                                                 
        break;                                                        
    }                                                                 
    if (c == '\n') {                                                  
        if (!nlFlag)                                                  
ffc05834:	41 be ff d4 	beq-    cr7,ffc05808 <scanString+0x120>        
      return 0;                                                       
    **bufp = c;                                                       
    ++(*bufp);                                                        
    --(*nleft);                                                       
  }                                                                   
  **bufp = '\0';                                                      
ffc05838:	81 3e 00 00 	lwz     r9,0(r30)                              
ffc0583c:	38 00 00 00 	li      r0,0                                   
  ++(*bufp);                                                          
  --(*nleft);                                                         
  return 1;                                                           
ffc05840:	38 60 00 01 	li      r3,1                                   
      return 0;                                                       
    **bufp = c;                                                       
    ++(*bufp);                                                        
    --(*nleft);                                                       
  }                                                                   
  **bufp = '\0';                                                      
ffc05844:	98 09 00 00 	stb     r0,0(r9)                               
  ++(*bufp);                                                          
ffc05848:	81 3e 00 00 	lwz     r9,0(r30)                              
  --(*nleft);                                                         
ffc0584c:	81 7d 00 00 	lwz     r11,0(r29)                             
    **bufp = c;                                                       
    ++(*bufp);                                                        
    --(*nleft);                                                       
  }                                                                   
  **bufp = '\0';                                                      
  ++(*bufp);                                                          
ffc05850:	39 29 00 01 	addi    r9,r9,1                                
  --(*nleft);                                                         
ffc05854:	38 0b ff ff 	addi    r0,r11,-1                              
    **bufp = c;                                                       
    ++(*bufp);                                                        
    --(*nleft);                                                       
  }                                                                   
  **bufp = '\0';                                                      
  ++(*bufp);                                                          
ffc05858:	91 3e 00 00 	stw     r9,0(r30)                              
  --(*nleft);                                                         
ffc0585c:	90 1d 00 00 	stw     r0,0(r29)                              
ffc05860:	4b ff ff 80 	b       ffc057e0 <scanString+0xf8>             
                                                                      

ffc05864 <scangr>: FILE *fp, struct group *grp, char *buffer, size_t bufsize ) {
ffc05864:	94 21 ff c8 	stwu    r1,-56(r1)                             
ffc05868:	7c 08 02 a6 	mflr    r0                                     
  int grgid;                                                          
  char *grmem, *cp;                                                   
  int memcount;                                                       
                                                                      
  if (!scanString(fp, &grp->gr_name, &buffer, &bufsize, 0)            
ffc0586c:	38 e0 00 00 	li      r7,0                                   
  FILE *fp,                                                           
  struct group *grp,                                                  
  char *buffer,                                                       
  size_t bufsize                                                      
)                                                                     
{                                                                     
ffc05870:	93 c1 00 30 	stw     r30,48(r1)                             
  int grgid;                                                          
  char *grmem, *cp;                                                   
  int memcount;                                                       
                                                                      
  if (!scanString(fp, &grp->gr_name, &buffer, &bufsize, 0)            
ffc05874:	3b c1 00 18 	addi    r30,r1,24                              
  FILE *fp,                                                           
  struct group *grp,                                                  
  char *buffer,                                                       
  size_t bufsize                                                      
)                                                                     
{                                                                     
ffc05878:	93 e1 00 34 	stw     r31,52(r1)                             
  int grgid;                                                          
  char *grmem, *cp;                                                   
  int memcount;                                                       
                                                                      
  if (!scanString(fp, &grp->gr_name, &buffer, &bufsize, 0)            
ffc0587c:	3b e1 00 1c 	addi    r31,r1,28                              
  FILE *fp,                                                           
  struct group *grp,                                                  
  char *buffer,                                                       
  size_t bufsize                                                      
)                                                                     
{                                                                     
ffc05880:	90 a1 00 18 	stw     r5,24(r1)                              
  int grgid;                                                          
  char *grmem, *cp;                                                   
  int memcount;                                                       
                                                                      
  if (!scanString(fp, &grp->gr_name, &buffer, &bufsize, 0)            
ffc05884:	7f c5 f3 78 	mr      r5,r30                                 
  FILE *fp,                                                           
  struct group *grp,                                                  
  char *buffer,                                                       
  size_t bufsize                                                      
)                                                                     
{                                                                     
ffc05888:	90 c1 00 1c 	stw     r6,28(r1)                              
  int grgid;                                                          
  char *grmem, *cp;                                                   
  int memcount;                                                       
                                                                      
  if (!scanString(fp, &grp->gr_name, &buffer, &bufsize, 0)            
ffc0588c:	7f e6 fb 78 	mr      r6,r31                                 
  FILE *fp,                                                           
  struct group *grp,                                                  
  char *buffer,                                                       
  size_t bufsize                                                      
)                                                                     
{                                                                     
ffc05890:	93 61 00 24 	stw     r27,36(r1)                             
ffc05894:	7c 9b 23 78 	mr      r27,r4                                 
ffc05898:	93 81 00 28 	stw     r28,40(r1)                             
ffc0589c:	7c 7c 1b 78 	mr      r28,r3                                 
ffc058a0:	93 a1 00 2c 	stw     r29,44(r1)                             
                                                                      
  if (!scanString(fp, &grp->gr_name, &buffer, &bufsize, 0)            
   || !scanString(fp, &grp->gr_passwd, &buffer, &bufsize, 0)          
   || !scanInt(fp, &grgid)                                            
   || !scanString(fp, &grmem, &buffer, &bufsize, 1))                  
    return 0;                                                         
ffc058a4:	3b a0 00 00 	li      r29,0                                  
  FILE *fp,                                                           
  struct group *grp,                                                  
  char *buffer,                                                       
  size_t bufsize                                                      
)                                                                     
{                                                                     
ffc058a8:	90 01 00 3c 	stw     r0,60(r1)                              
  int grgid;                                                          
  char *grmem, *cp;                                                   
  int memcount;                                                       
                                                                      
  if (!scanString(fp, &grp->gr_name, &buffer, &bufsize, 0)            
ffc058ac:	4b ff fe 3d 	bl      ffc056e8 <scanString>                  
ffc058b0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc058b4:	40 9e 00 2c 	bne-    cr7,ffc058e0 <scangr+0x7c>             
      grp->gr_mem[memcount++] = cp + 1;                               
    }                                                                 
  }                                                                   
  grp->gr_mem[memcount] = NULL;                                       
  return 1;                                                           
}                                                                     
ffc058b8:	80 01 00 3c 	lwz     r0,60(r1)                              
ffc058bc:	7f a3 eb 78 	mr      r3,r29                                 
ffc058c0:	83 61 00 24 	lwz     r27,36(r1)                             
ffc058c4:	7c 08 03 a6 	mtlr    r0                                     
ffc058c8:	83 81 00 28 	lwz     r28,40(r1)                             
ffc058cc:	83 a1 00 2c 	lwz     r29,44(r1)                             
ffc058d0:	83 c1 00 30 	lwz     r30,48(r1)                             
ffc058d4:	83 e1 00 34 	lwz     r31,52(r1)                             
ffc058d8:	38 21 00 38 	addi    r1,r1,56                               
ffc058dc:	4e 80 00 20 	blr                                            
  int grgid;                                                          
  char *grmem, *cp;                                                   
  int memcount;                                                       
                                                                      
  if (!scanString(fp, &grp->gr_name, &buffer, &bufsize, 0)            
   || !scanString(fp, &grp->gr_passwd, &buffer, &bufsize, 0)          
ffc058e0:	7f 83 e3 78 	mr      r3,r28                                 
ffc058e4:	38 9b 00 04 	addi    r4,r27,4                               
ffc058e8:	7f c5 f3 78 	mr      r5,r30                                 
ffc058ec:	7f e6 fb 78 	mr      r6,r31                                 
ffc058f0:	38 e0 00 00 	li      r7,0                                   
ffc058f4:	4b ff fd f5 	bl      ffc056e8 <scanString>                  
ffc058f8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc058fc:	41 9e ff bc 	beq+    cr7,ffc058b8 <scangr+0x54>             <== NEVER TAKEN
   || !scanInt(fp, &grgid)                                            
ffc05900:	7f 83 e3 78 	mr      r3,r28                                 
ffc05904:	38 81 00 08 	addi    r4,r1,8                                
ffc05908:	4b ff fc 55 	bl      ffc0555c <scanInt>                     
ffc0590c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05910:	41 9e ff a8 	beq+    cr7,ffc058b8 <scangr+0x54>             <== NEVER TAKEN
   || !scanString(fp, &grmem, &buffer, &bufsize, 1))                  
ffc05914:	7f 83 e3 78 	mr      r3,r28                                 
ffc05918:	38 81 00 0c 	addi    r4,r1,12                               
ffc0591c:	7f c5 f3 78 	mr      r5,r30                                 
ffc05920:	7f e6 fb 78 	mr      r6,r31                                 
ffc05924:	38 e0 00 01 	li      r7,1                                   
ffc05928:	4b ff fd c1 	bl      ffc056e8 <scanString>                  
ffc0592c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05930:	41 be ff 88 	beq-    cr7,ffc058b8 <scangr+0x54>             <== NEVER TAKEN
    return 0;                                                         
  grp->gr_gid = grgid;                                                
ffc05934:	80 01 00 08 	lwz     r0,8(r1)                               
                                                                      
  /*                                                                  
   * Determine number of members                                      
   */                                                                 
  for (cp = grmem, memcount = 1 ; *cp != 0 ; cp++) {                  
ffc05938:	39 20 00 17 	li      r9,23                                  
ffc0593c:	81 41 00 0c 	lwz     r10,12(r1)                             
  if (!scanString(fp, &grp->gr_name, &buffer, &bufsize, 0)            
   || !scanString(fp, &grp->gr_passwd, &buffer, &bufsize, 0)          
   || !scanInt(fp, &grgid)                                            
   || !scanString(fp, &grmem, &buffer, &bufsize, 1))                  
    return 0;                                                         
  grp->gr_gid = grgid;                                                
ffc05940:	b0 1b 00 08 	sth     r0,8(r27)                              
                                                                      
  /*                                                                  
   * Determine number of members                                      
   */                                                                 
  for (cp = grmem, memcount = 1 ; *cp != 0 ; cp++) {                  
ffc05944:	88 0a 00 00 	lbz     r0,0(r10)                              
ffc05948:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc0594c:	41 9e 00 30 	beq-    cr7,ffc0597c <scangr+0x118>            <== NEVER TAKEN
ffc05950:	7d 4b 53 78 	mr      r11,r10                                
ffc05954:	39 20 00 01 	li      r9,1                                   
    if(*cp == ',')                                                    
      memcount++;                                                     
ffc05958:	68 08 00 2c 	xori    r8,r0,44                               
ffc0595c:	21 08 00 00 	subfic  r8,r8,0                                
ffc05960:	7d 09 01 94 	addze   r8,r9                                  
  grp->gr_gid = grgid;                                                
                                                                      
  /*                                                                  
   * Determine number of members                                      
   */                                                                 
  for (cp = grmem, memcount = 1 ; *cp != 0 ; cp++) {                  
ffc05964:	8c 0b 00 01 	lbzu    r0,1(r11)                              
ffc05968:	2f 80 00 00 	cmpwi   cr7,r0,0                               
    if(*cp == ',')                                                    
      memcount++;                                                     
ffc0596c:	7d 09 43 78 	mr      r9,r8                                  
  grp->gr_gid = grgid;                                                
                                                                      
  /*                                                                  
   * Determine number of members                                      
   */                                                                 
  for (cp = grmem, memcount = 1 ; *cp != 0 ; cp++) {                  
ffc05970:	40 9e ff e8 	bne+    cr7,ffc05958 <scangr+0xf4>             
ffc05974:	55 09 10 3a 	rlwinm  r9,r8,2,0,29                           
ffc05978:	39 29 00 13 	addi    r9,r9,19                               
  }                                                                   
                                                                      
  /*                                                                  
   * Hack to produce (hopefully) a suitably-aligned array of pointers 
   */                                                                 
  if (bufsize < (((memcount+1)*sizeof(char *)) + 15))                 
ffc0597c:	80 01 00 1c 	lwz     r0,28(r1)                              
    return 0;                                                         
ffc05980:	3b a0 00 00 	li      r29,0                                  
  }                                                                   
                                                                      
  /*                                                                  
   * Hack to produce (hopefully) a suitably-aligned array of pointers 
   */                                                                 
  if (bufsize < (((memcount+1)*sizeof(char *)) + 15))                 
ffc05984:	7f 80 48 40 	cmplw   cr7,r0,r9                              
ffc05988:	41 bc ff 30 	blt-    cr7,ffc058b8 <scangr+0x54>             <== NEVER TAKEN
    return 0;                                                         
  grp->gr_mem = (char **)(((uintptr_t)buffer + 15) & ~15);            
ffc0598c:	81 01 00 18 	lwz     r8,24(r1)                              
                                                                      
  /*                                                                  
   * Fill in pointer array                                            
   */                                                                 
  grp->gr_mem[0] = grmem;                                             
  for (cp = grmem, memcount = 1 ; *cp != 0 ; cp++) {                  
ffc05990:	39 60 00 04 	li      r11,4                                  
  /*                                                                  
   * Hack to produce (hopefully) a suitably-aligned array of pointers 
   */                                                                 
  if (bufsize < (((memcount+1)*sizeof(char *)) + 15))                 
    return 0;                                                         
  grp->gr_mem = (char **)(((uintptr_t)buffer + 15) & ~15);            
ffc05994:	39 08 00 0f 	addi    r8,r8,15                               
ffc05998:	55 08 00 36 	rlwinm  r8,r8,0,0,27                           
ffc0599c:	91 1b 00 0c 	stw     r8,12(r27)                             
                                                                      
  /*                                                                  
   * Fill in pointer array                                            
   */                                                                 
  grp->gr_mem[0] = grmem;                                             
ffc059a0:	91 48 00 00 	stw     r10,0(r8)                              
  for (cp = grmem, memcount = 1 ; *cp != 0 ; cp++) {                  
ffc059a4:	81 21 00 0c 	lwz     r9,12(r1)                              
ffc059a8:	88 09 00 00 	lbz     r0,0(r9)                               
ffc059ac:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc059b0:	41 9e 00 4c 	beq-    cr7,ffc059fc <scangr+0x198>            <== NEVER TAKEN
}                                                                     
                                                                      
/*                                                                    
 * Extract a single group record from the database                    
 */                                                                   
static int scangr(                                                    
ffc059b4:	39 29 00 01 	addi    r9,r9,1                                
                                                                      
  /*                                                                  
   * Fill in pointer array                                            
   */                                                                 
  grp->gr_mem[0] = grmem;                                             
  for (cp = grmem, memcount = 1 ; *cp != 0 ; cp++) {                  
ffc059b8:	39 60 00 01 	li      r11,1                                  
    if(*cp == ',') {                                                  
      *cp = '\0';                                                     
ffc059bc:	39 00 00 00 	li      r8,0                                   
ffc059c0:	48 00 00 14 	b       ffc059d4 <scangr+0x170>                
                                                                      
  /*                                                                  
   * Fill in pointer array                                            
   */                                                                 
  grp->gr_mem[0] = grmem;                                             
  for (cp = grmem, memcount = 1 ; *cp != 0 ; cp++) {                  
ffc059c4:	88 09 00 00 	lbz     r0,0(r9)                               
ffc059c8:	39 29 00 01 	addi    r9,r9,1                                
ffc059cc:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc059d0:	41 9e 00 24 	beq-    cr7,ffc059f4 <scangr+0x190>            
    if(*cp == ',') {                                                  
ffc059d4:	2f 80 00 2c 	cmpwi   cr7,r0,44                              
ffc059d8:	40 9e ff ec 	bne+    cr7,ffc059c4 <scangr+0x160>            
      *cp = '\0';                                                     
ffc059dc:	99 09 ff ff 	stb     r8,-1(r9)                              
      grp->gr_mem[memcount++] = cp + 1;                               
ffc059e0:	55 60 10 3a 	rlwinm  r0,r11,2,0,29                          
ffc059e4:	39 6b 00 01 	addi    r11,r11,1                              
ffc059e8:	81 5b 00 0c 	lwz     r10,12(r27)                            
ffc059ec:	7d 2a 01 2e 	stwx    r9,r10,r0                              
ffc059f0:	4b ff ff d4 	b       ffc059c4 <scangr+0x160>                
                                                                      
  /*                                                                  
   * Fill in pointer array                                            
   */                                                                 
  grp->gr_mem[0] = grmem;                                             
  for (cp = grmem, memcount = 1 ; *cp != 0 ; cp++) {                  
ffc059f4:	81 1b 00 0c 	lwz     r8,12(r27)                             
ffc059f8:	55 6b 10 3a 	rlwinm  r11,r11,2,0,29                         
    if(*cp == ',') {                                                  
      *cp = '\0';                                                     
      grp->gr_mem[memcount++] = cp + 1;                               
    }                                                                 
  }                                                                   
  grp->gr_mem[memcount] = NULL;                                       
ffc059fc:	38 00 00 00 	li      r0,0                                   
ffc05a00:	7c 08 59 2e 	stwx    r0,r8,r11                              
  return 1;                                                           
ffc05a04:	3b a0 00 01 	li      r29,1                                  
ffc05a08:	4b ff fe b0 	b       ffc058b8 <scangr+0x54>                 
                                                                      

ffc05a0c <scanpw>: FILE *fp, struct passwd *pwd, char *buffer, size_t bufsize ) {
ffc05a0c:	94 21 ff c8 	stwu    r1,-56(r1)                             
ffc05a10:	7c 08 02 a6 	mflr    r0                                     
  int pwuid, pwgid;                                                   
                                                                      
  if (!scanString(fp, &pwd->pw_name, &buffer, &bufsize, 0)            
ffc05a14:	38 e0 00 00 	li      r7,0                                   
  FILE *fp,                                                           
  struct passwd *pwd,                                                 
  char *buffer,                                                       
  size_t bufsize                                                      
)                                                                     
{                                                                     
ffc05a18:	93 c1 00 30 	stw     r30,48(r1)                             
  int pwuid, pwgid;                                                   
                                                                      
  if (!scanString(fp, &pwd->pw_name, &buffer, &bufsize, 0)            
ffc05a1c:	3b c1 00 18 	addi    r30,r1,24                              
  FILE *fp,                                                           
  struct passwd *pwd,                                                 
  char *buffer,                                                       
  size_t bufsize                                                      
)                                                                     
{                                                                     
ffc05a20:	93 e1 00 34 	stw     r31,52(r1)                             
  int pwuid, pwgid;                                                   
                                                                      
  if (!scanString(fp, &pwd->pw_name, &buffer, &bufsize, 0)            
ffc05a24:	3b e1 00 1c 	addi    r31,r1,28                              
  FILE *fp,                                                           
  struct passwd *pwd,                                                 
  char *buffer,                                                       
  size_t bufsize                                                      
)                                                                     
{                                                                     
ffc05a28:	90 a1 00 18 	stw     r5,24(r1)                              
  int pwuid, pwgid;                                                   
                                                                      
  if (!scanString(fp, &pwd->pw_name, &buffer, &bufsize, 0)            
ffc05a2c:	7f c5 f3 78 	mr      r5,r30                                 
  FILE *fp,                                                           
  struct passwd *pwd,                                                 
  char *buffer,                                                       
  size_t bufsize                                                      
)                                                                     
{                                                                     
ffc05a30:	90 c1 00 1c 	stw     r6,28(r1)                              
  int pwuid, pwgid;                                                   
                                                                      
  if (!scanString(fp, &pwd->pw_name, &buffer, &bufsize, 0)            
ffc05a34:	7f e6 fb 78 	mr      r6,r31                                 
  FILE *fp,                                                           
  struct passwd *pwd,                                                 
  char *buffer,                                                       
  size_t bufsize                                                      
)                                                                     
{                                                                     
ffc05a38:	93 61 00 24 	stw     r27,36(r1)                             
ffc05a3c:	7c 9b 23 78 	mr      r27,r4                                 
ffc05a40:	93 81 00 28 	stw     r28,40(r1)                             
ffc05a44:	7c 7c 1b 78 	mr      r28,r3                                 
ffc05a48:	93 a1 00 2c 	stw     r29,44(r1)                             
   || !scanInt(fp, &pwgid)                                            
   || !scanString(fp, &pwd->pw_comment, &buffer, &bufsize, 0)         
   || !scanString(fp, &pwd->pw_gecos, &buffer, &bufsize, 0)           
   || !scanString(fp, &pwd->pw_dir, &buffer, &bufsize, 0)             
   || !scanString(fp, &pwd->pw_shell, &buffer, &bufsize, 1))          
    return 0;                                                         
ffc05a4c:	3b a0 00 00 	li      r29,0                                  
  FILE *fp,                                                           
  struct passwd *pwd,                                                 
  char *buffer,                                                       
  size_t bufsize                                                      
)                                                                     
{                                                                     
ffc05a50:	90 01 00 3c 	stw     r0,60(r1)                              
  int pwuid, pwgid;                                                   
                                                                      
  if (!scanString(fp, &pwd->pw_name, &buffer, &bufsize, 0)            
ffc05a54:	4b ff fc 95 	bl      ffc056e8 <scanString>                  
ffc05a58:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05a5c:	40 9e 00 2c 	bne-    cr7,ffc05a88 <scanpw+0x7c>             
   || !scanString(fp, &pwd->pw_shell, &buffer, &bufsize, 1))          
    return 0;                                                         
  pwd->pw_uid = pwuid;                                                
  pwd->pw_gid = pwgid;                                                
  return 1;                                                           
}                                                                     
ffc05a60:	80 01 00 3c 	lwz     r0,60(r1)                              
ffc05a64:	7f a3 eb 78 	mr      r3,r29                                 
ffc05a68:	83 61 00 24 	lwz     r27,36(r1)                             
ffc05a6c:	7c 08 03 a6 	mtlr    r0                                     
ffc05a70:	83 81 00 28 	lwz     r28,40(r1)                             
ffc05a74:	83 a1 00 2c 	lwz     r29,44(r1)                             
ffc05a78:	83 c1 00 30 	lwz     r30,48(r1)                             
ffc05a7c:	83 e1 00 34 	lwz     r31,52(r1)                             
ffc05a80:	38 21 00 38 	addi    r1,r1,56                               
ffc05a84:	4e 80 00 20 	blr                                            
)                                                                     
{                                                                     
  int pwuid, pwgid;                                                   
                                                                      
  if (!scanString(fp, &pwd->pw_name, &buffer, &bufsize, 0)            
   || !scanString(fp, &pwd->pw_passwd, &buffer, &bufsize, 0)          
ffc05a88:	7f 83 e3 78 	mr      r3,r28                                 
ffc05a8c:	38 9b 00 04 	addi    r4,r27,4                               
ffc05a90:	7f c5 f3 78 	mr      r5,r30                                 
ffc05a94:	7f e6 fb 78 	mr      r6,r31                                 
ffc05a98:	38 e0 00 00 	li      r7,0                                   
ffc05a9c:	4b ff fc 4d 	bl      ffc056e8 <scanString>                  
ffc05aa0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05aa4:	41 9e ff bc 	beq+    cr7,ffc05a60 <scanpw+0x54>             <== NEVER TAKEN
   || !scanInt(fp, &pwuid)                                            
ffc05aa8:	7f 83 e3 78 	mr      r3,r28                                 
ffc05aac:	38 81 00 08 	addi    r4,r1,8                                
ffc05ab0:	4b ff fa ad 	bl      ffc0555c <scanInt>                     
ffc05ab4:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05ab8:	41 9e ff a8 	beq+    cr7,ffc05a60 <scanpw+0x54>             
   || !scanInt(fp, &pwgid)                                            
ffc05abc:	7f 83 e3 78 	mr      r3,r28                                 
ffc05ac0:	38 81 00 0c 	addi    r4,r1,12                               
ffc05ac4:	4b ff fa 99 	bl      ffc0555c <scanInt>                     
ffc05ac8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05acc:	41 9e ff 94 	beq+    cr7,ffc05a60 <scanpw+0x54>             
   || !scanString(fp, &pwd->pw_comment, &buffer, &bufsize, 0)         
ffc05ad0:	7f 83 e3 78 	mr      r3,r28                                 
ffc05ad4:	38 9b 00 0c 	addi    r4,r27,12                              
ffc05ad8:	7f c5 f3 78 	mr      r5,r30                                 
ffc05adc:	7f e6 fb 78 	mr      r6,r31                                 
ffc05ae0:	38 e0 00 00 	li      r7,0                                   
ffc05ae4:	4b ff fc 05 	bl      ffc056e8 <scanString>                  
ffc05ae8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05aec:	41 9e ff 74 	beq+    cr7,ffc05a60 <scanpw+0x54>             <== NEVER TAKEN
   || !scanString(fp, &pwd->pw_gecos, &buffer, &bufsize, 0)           
ffc05af0:	7f 83 e3 78 	mr      r3,r28                                 
ffc05af4:	38 9b 00 10 	addi    r4,r27,16                              
ffc05af8:	7f c5 f3 78 	mr      r5,r30                                 
ffc05afc:	7f e6 fb 78 	mr      r6,r31                                 
ffc05b00:	38 e0 00 00 	li      r7,0                                   
ffc05b04:	4b ff fb e5 	bl      ffc056e8 <scanString>                  
ffc05b08:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05b0c:	41 9e ff 54 	beq+    cr7,ffc05a60 <scanpw+0x54>             <== NEVER TAKEN
   || !scanString(fp, &pwd->pw_dir, &buffer, &bufsize, 0)             
ffc05b10:	7f 83 e3 78 	mr      r3,r28                                 
ffc05b14:	38 9b 00 14 	addi    r4,r27,20                              
ffc05b18:	7f c5 f3 78 	mr      r5,r30                                 
ffc05b1c:	7f e6 fb 78 	mr      r6,r31                                 
ffc05b20:	38 e0 00 00 	li      r7,0                                   
ffc05b24:	4b ff fb c5 	bl      ffc056e8 <scanString>                  
ffc05b28:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05b2c:	41 9e ff 34 	beq+    cr7,ffc05a60 <scanpw+0x54>             <== NEVER TAKEN
   || !scanString(fp, &pwd->pw_shell, &buffer, &bufsize, 1))          
ffc05b30:	7f 83 e3 78 	mr      r3,r28                                 
ffc05b34:	38 9b 00 18 	addi    r4,r27,24                              
ffc05b38:	7f c5 f3 78 	mr      r5,r30                                 
ffc05b3c:	7f e6 fb 78 	mr      r6,r31                                 
ffc05b40:	38 e0 00 01 	li      r7,1                                   
ffc05b44:	4b ff fb a5 	bl      ffc056e8 <scanString>                  
ffc05b48:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc05b4c:	41 be ff 14 	beq-    cr7,ffc05a60 <scanpw+0x54>             
    return 0;                                                         
  pwd->pw_uid = pwuid;                                                
ffc05b50:	80 01 00 08 	lwz     r0,8(r1)                               
  pwd->pw_gid = pwgid;                                                
  return 1;                                                           
ffc05b54:	3b a0 00 01 	li      r29,1                                  
   || !scanString(fp, &pwd->pw_comment, &buffer, &bufsize, 0)         
   || !scanString(fp, &pwd->pw_gecos, &buffer, &bufsize, 0)           
   || !scanString(fp, &pwd->pw_dir, &buffer, &bufsize, 0)             
   || !scanString(fp, &pwd->pw_shell, &buffer, &bufsize, 1))          
    return 0;                                                         
  pwd->pw_uid = pwuid;                                                
ffc05b58:	b0 1b 00 08 	sth     r0,8(r27)                              
  pwd->pw_gid = pwgid;                                                
ffc05b5c:	80 01 00 0c 	lwz     r0,12(r1)                              
ffc05b60:	b0 1b 00 0a 	sth     r0,10(r27)                             
  return 1;                                                           
ffc05b64:	4b ff fe fc 	b       ffc05a60 <scanpw+0x54>                 
                                                                      

ffc07374 <siproc>: /* * Process input character, with semaphore. */ static int siproc (unsigned char c, struct rtems_termios_tty *tty) {
ffc07374:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc07378:	7c 08 02 a6 	mflr    r0                                     
ffc0737c:	90 01 00 14 	stw     r0,20(r1)                              
  int i;                                                              
                                                                      
  /*                                                                  
   * Obtain output semaphore if character will be echoed              
   */                                                                 
  if (tty->termios.c_lflag & (ECHO|ECHOE|ECHOK|ECHONL|ECHOPRT|ECHOCTL|ECHOKE)) {
ffc07380:	80 04 00 3c 	lwz     r0,60(r4)                              
/*                                                                    
 * Process input character, with semaphore.                           
 */                                                                   
static int                                                            
siproc (unsigned char c, struct rtems_termios_tty *tty)               
{                                                                     
ffc07384:	93 c1 00 08 	stw     r30,8(r1)                              
ffc07388:	7c 7e 1b 78 	mr      r30,r3                                 
  int i;                                                              
                                                                      
  /*                                                                  
   * Obtain output semaphore if character will be echoed              
   */                                                                 
  if (tty->termios.c_lflag & (ECHO|ECHOE|ECHOK|ECHONL|ECHOPRT|ECHOCTL|ECHOKE)) {
ffc0738c:	70 09 0e 78 	andi.   r9,r0,3704                             
/*                                                                    
 * Process input character, with semaphore.                           
 */                                                                   
static int                                                            
siproc (unsigned char c, struct rtems_termios_tty *tty)               
{                                                                     
ffc07390:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc07394:	7c 9f 23 78 	mr      r31,r4                                 
  int i;                                                              
                                                                      
  /*                                                                  
   * Obtain output semaphore if character will be echoed              
   */                                                                 
  if (tty->termios.c_lflag & (ECHO|ECHOE|ECHOK|ECHONL|ECHOPRT|ECHOCTL|ECHOKE)) {
ffc07398:	40 82 00 1c 	bne-    ffc073b4 <siproc+0x40>                 <== ALWAYS TAKEN
  }                                                                   
  else {                                                              
    i = iproc (c, tty);                                               
  }                                                                   
  return i;                                                           
}                                                                     
ffc0739c:	80 01 00 14 	lwz     r0,20(r1)                              <== NOT EXECUTED
ffc073a0:	83 c1 00 08 	lwz     r30,8(r1)                              <== NOT EXECUTED
ffc073a4:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc073a8:	83 e1 00 0c 	lwz     r31,12(r1)                             <== NOT EXECUTED
ffc073ac:	38 21 00 10 	addi    r1,r1,16                               <== NOT EXECUTED
    rtems_semaphore_obtain (tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT); 
    i = iproc (c, tty);                                               
    rtems_semaphore_release (tty->osem);                              
  }                                                                   
  else {                                                              
    i = iproc (c, tty);                                               
ffc073b0:	4b ff fd d8 	b       ffc07188 <iproc>                       <== NOT EXECUTED
                                                                      
  /*                                                                  
   * Obtain output semaphore if character will be echoed              
   */                                                                 
  if (tty->termios.c_lflag & (ECHO|ECHOE|ECHOK|ECHONL|ECHOPRT|ECHOCTL|ECHOKE)) {
    rtems_semaphore_obtain (tty->osem, RTEMS_WAIT, RTEMS_NO_TIMEOUT); 
ffc073b4:	80 64 00 18 	lwz     r3,24(r4)                              
ffc073b8:	38 a0 00 00 	li      r5,0                                   
ffc073bc:	38 80 00 00 	li      r4,0                                   
ffc073c0:	48 00 1a c1 	bl      ffc08e80 <rtems_semaphore_obtain>      
    i = iproc (c, tty);                                               
ffc073c4:	7f e4 fb 78 	mr      r4,r31                                 
ffc073c8:	7f c3 f3 78 	mr      r3,r30                                 
ffc073cc:	4b ff fd bd 	bl      ffc07188 <iproc>                       
ffc073d0:	7c 7e 1b 78 	mr      r30,r3                                 
    rtems_semaphore_release (tty->osem);                              
ffc073d4:	80 7f 00 18 	lwz     r3,24(r31)                             
ffc073d8:	48 00 1c 31 	bl      ffc09008 <rtems_semaphore_release>     
  }                                                                   
  else {                                                              
    i = iproc (c, tty);                                               
  }                                                                   
  return i;                                                           
}                                                                     
ffc073dc:	80 01 00 14 	lwz     r0,20(r1)                              
ffc073e0:	7f c3 f3 78 	mr      r3,r30                                 
ffc073e4:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc073e8:	7c 08 03 a6 	mtlr    r0                                     
ffc073ec:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc073f0:	38 21 00 10 	addi    r1,r1,16                               
ffc073f4:	4e 80 00 20 	blr                                            
                                                                      

ffc09024 <statvfs>: #include <sys/statvfs.h> int statvfs (const char *path, struct statvfs *sb) {
ffc09024:	94 21 ff c8 	stwu    r1,-56(r1)                             
ffc09028:	7c 08 02 a6 	mflr    r0                                     
ffc0902c:	93 a1 00 2c 	stw     r29,44(r1)                             
ffc09030:	7c 7d 1b 78 	mr      r29,r3                                 
ffc09034:	90 01 00 3c 	stw     r0,60(r1)                              
ffc09038:	93 c1 00 30 	stw     r30,48(r1)                             
ffc0903c:	7c 9e 23 78 	mr      r30,r4                                 
ffc09040:	93 e1 00 34 	stw     r31,52(r1)                             
   *    The root node of the mounted filesytem.                       
   *    The node for the directory that the fileystem is mounted on.  
   *    The mount entry that is being refered to.                     
   */                                                                 
                                                                      
  if ( rtems_filesystem_evaluate_path( path, strlen( path ), 0x0, &loc, true ) )
ffc09044:	48 00 ec 91 	bl      ffc17cd4 <strlen>                      
ffc09048:	3b e1 00 08 	addi    r31,r1,8                               
ffc0904c:	7c 64 1b 78 	mr      r4,r3                                  
ffc09050:	38 a0 00 00 	li      r5,0                                   
ffc09054:	7f a3 eb 78 	mr      r3,r29                                 
ffc09058:	7f e6 fb 78 	mr      r6,r31                                 
ffc0905c:	38 e0 00 01 	li      r7,1                                   
ffc09060:	4b ff e5 75 	bl      ffc075d4 <rtems_filesystem_evaluate_path>
    return -1;                                                        
ffc09064:	3b a0 ff ff 	li      r29,-1                                 
   *    The root node of the mounted filesytem.                       
   *    The node for the directory that the fileystem is mounted on.  
   *    The mount entry that is being refered to.                     
   */                                                                 
                                                                      
  if ( rtems_filesystem_evaluate_path( path, strlen( path ), 0x0, &loc, true ) )
ffc09068:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0906c:	40 be 00 3c 	bne+    cr7,ffc090a8 <statvfs+0x84>            <== NEVER TAKEN
    return -1;                                                        
                                                                      
  mt_entry      = loc.mt_entry;                                       
ffc09070:	83 a1 00 18 	lwz     r29,24(r1)                             
  fs_mount_root = &mt_entry->mt_fs_root;                              
                                                                      
  memset (sb, 0, sizeof (struct statvfs));                            
ffc09074:	38 80 00 00 	li      r4,0                                   
ffc09078:	38 a0 00 38 	li      r5,56                                  
ffc0907c:	7f c3 f3 78 	mr      r3,r30                                 
ffc09080:	48 00 da 6d 	bl      ffc16aec <memset>                      
                                                                      
  result = ( fs_mount_root->ops->statvfs_h )( fs_mount_root, sb );    
ffc09084:	81 3d 00 28 	lwz     r9,40(r29)                             
ffc09088:	38 7d 00 1c 	addi    r3,r29,28                              
ffc0908c:	80 09 00 44 	lwz     r0,68(r9)                              
ffc09090:	7f c4 f3 78 	mr      r4,r30                                 
ffc09094:	7c 09 03 a6 	mtctr   r0                                     
ffc09098:	4e 80 04 21 	bctrl                                          
ffc0909c:	7c 7d 1b 78 	mr      r29,r3                                 
                                                                      
  rtems_filesystem_freenode( &loc );                                  
ffc090a0:	7f e3 fb 78 	mr      r3,r31                                 
ffc090a4:	4b ff e6 8d 	bl      ffc07730 <rtems_filesystem_freenode>   
                                                                      
  return result;                                                      
}                                                                     
ffc090a8:	80 01 00 3c 	lwz     r0,60(r1)                              
ffc090ac:	7f a3 eb 78 	mr      r3,r29                                 
ffc090b0:	83 c1 00 30 	lwz     r30,48(r1)                             
ffc090b4:	7c 08 03 a6 	mtlr    r0                                     
ffc090b8:	83 a1 00 2c 	lwz     r29,44(r1)                             
ffc090bc:	83 e1 00 34 	lwz     r31,52(r1)                             
ffc090c0:	38 21 00 38 	addi    r1,r1,56                               
ffc090c4:	4e 80 00 20 	blr                                            
                                                                      

ffc0780c <sync_per_thread>: fdatasync(fn); } /* iterate over all FILE *'s for this thread */ static void sync_per_thread(Thread_Control *t) {
ffc0780c:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc07810:	7c 08 02 a6 	mflr    r0                                     
ffc07814:	90 01 00 14 	stw     r0,20(r1)                              
                                                                      
   /*                                                                 
    *  The sync_wrapper() function will operate on the current thread's
    *  reent structure so we will temporarily use that.               
    */                                                                
   this_reent = t->libc_reent;                                        
ffc07818:	80 03 01 3c 	lwz     r0,316(r3)                             
  fdatasync(fn);                                                      
}                                                                     
                                                                      
/* iterate over all FILE *'s for this thread */                       
static void sync_per_thread(Thread_Control *t)                        
{                                                                     
ffc0781c:	93 c1 00 08 	stw     r30,8(r1)                              
   /*                                                                 
    *  The sync_wrapper() function will operate on the current thread's
    *  reent structure so we will temporarily use that.               
    */                                                                
   this_reent = t->libc_reent;                                        
   if ( this_reent ) {                                                
ffc07820:	2f 80 00 00 	cmpwi   cr7,r0,0                               
  fdatasync(fn);                                                      
}                                                                     
                                                                      
/* iterate over all FILE *'s for this thread */                       
static void sync_per_thread(Thread_Control *t)                        
{                                                                     
ffc07824:	93 e1 00 0c 	stw     r31,12(r1)                             
   /*                                                                 
    *  The sync_wrapper() function will operate on the current thread's
    *  reent structure so we will temporarily use that.               
    */                                                                
   this_reent = t->libc_reent;                                        
   if ( this_reent ) {                                                
ffc07828:	41 9e 00 30 	beq-    cr7,ffc07858 <sync_per_thread+0x4c>    <== NEVER TAKEN
     current_reent = _Thread_Executing->libc_reent;                   
ffc0782c:	3f e0 00 00 	lis     r31,0                                  
ffc07830:	3b ff 2d 64 	addi    r31,r31,11620                          
ffc07834:	81 3f 00 0c 	lwz     r9,12(r31)                             
     _Thread_Executing->libc_reent = this_reent;                      
     _fwalk (t->libc_reent, sync_wrapper);                            
ffc07838:	3c 80 ff c0 	lis     r4,-64                                 
ffc0783c:	38 84 78 70 	addi    r4,r4,30832                            
    *  The sync_wrapper() function will operate on the current thread's
    *  reent structure so we will temporarily use that.               
    */                                                                
   this_reent = t->libc_reent;                                        
   if ( this_reent ) {                                                
     current_reent = _Thread_Executing->libc_reent;                   
ffc07840:	83 c9 01 3c 	lwz     r30,316(r9)                            
     _Thread_Executing->libc_reent = this_reent;                      
ffc07844:	90 09 01 3c 	stw     r0,316(r9)                             
     _fwalk (t->libc_reent, sync_wrapper);                            
ffc07848:	80 63 01 3c 	lwz     r3,316(r3)                             
ffc0784c:	48 00 d2 f9 	bl      ffc14b44 <_fwalk>                      
     _Thread_Executing->libc_reent = current_reent;                   
ffc07850:	81 3f 00 0c 	lwz     r9,12(r31)                             
ffc07854:	93 c9 01 3c 	stw     r30,316(r9)                            
   }                                                                  
}                                                                     
ffc07858:	80 01 00 14 	lwz     r0,20(r1)                              
ffc0785c:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc07860:	7c 08 03 a6 	mtlr    r0                                     
ffc07864:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc07868:	38 21 00 10 	addi    r1,r1,16                               
ffc0786c:	4e 80 00 20 	blr                                            
                                                                      

ffc08484 <tcsetattr>: int fd, int opt, struct termios *tp ) { switch (opt) {
ffc08484:	2c 04 00 00 	cmpwi   r4,0                                   
int tcsetattr(                                                        
  int             fd,                                                 
  int             opt,                                                
  struct termios *tp                                                  
)                                                                     
{                                                                     
ffc08488:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc0848c:	7c 08 02 a6 	mflr    r0                                     
ffc08490:	93 c1 00 08 	stw     r30,8(r1)                              
ffc08494:	7c 7e 1b 78 	mr      r30,r3                                 
ffc08498:	93 e1 00 0c 	stw     r31,12(r1)                             
ffc0849c:	7c bf 2b 78 	mr      r31,r5                                 
ffc084a0:	90 01 00 14 	stw     r0,20(r1)                              
  switch (opt) {                                                      
ffc084a4:	41 82 00 50 	beq-    ffc084f4 <tcsetattr+0x70>              
ffc084a8:	2f 84 00 01 	cmpwi   cr7,r4,1                               
ffc084ac:	41 9e 00 2c 	beq-    cr7,ffc084d8 <tcsetattr+0x54>          
  default:                                                            
    rtems_set_errno_and_return_minus_one( ENOTSUP );                  
ffc084b0:	48 00 c5 35 	bl      ffc149e4 <__errno>                     
ffc084b4:	38 00 00 86 	li      r0,134                                 
ffc084b8:	90 03 00 00 	stw     r0,0(r3)                               
ffc084bc:	38 60 ff ff 	li      r3,-1                                  
     * Fall through to....                                            
     */                                                               
  case TCSANOW:                                                       
    return ioctl( fd, RTEMS_IO_SET_ATTRIBUTES, tp );                  
  }                                                                   
}                                                                     
ffc084c0:	80 01 00 14 	lwz     r0,20(r1)                              
ffc084c4:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc084c8:	7c 08 03 a6 	mtlr    r0                                     
ffc084cc:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc084d0:	38 21 00 10 	addi    r1,r1,16                               
ffc084d4:	4e 80 00 20 	blr                                            
  switch (opt) {                                                      
  default:                                                            
    rtems_set_errno_and_return_minus_one( ENOTSUP );                  
                                                                      
  case TCSADRAIN:                                                     
    if (ioctl( fd, RTEMS_IO_TCDRAIN, NULL ) < 0)                      
ffc084d8:	38 80 00 03 	li      r4,3                                   
ffc084dc:	38 a0 00 00 	li      r5,0                                   
ffc084e0:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc084e4:	48 00 91 bd 	bl      ffc116a0 <ioctl>                       
ffc084e8:	2f 83 00 00 	cmpwi   cr7,r3,0                               
    	return -1;                                                       
ffc084ec:	38 60 ff ff 	li      r3,-1                                  
  switch (opt) {                                                      
  default:                                                            
    rtems_set_errno_and_return_minus_one( ENOTSUP );                  
                                                                      
  case TCSADRAIN:                                                     
    if (ioctl( fd, RTEMS_IO_TCDRAIN, NULL ) < 0)                      
ffc084f0:	41 9c 00 18 	blt-    cr7,ffc08508 <tcsetattr+0x84>          <== NEVER TAKEN
    	return -1;                                                       
    /*                                                                
     * Fall through to....                                            
     */                                                               
  case TCSANOW:                                                       
    return ioctl( fd, RTEMS_IO_SET_ATTRIBUTES, tp );                  
ffc084f4:	7f c3 f3 78 	mr      r3,r30                                 
ffc084f8:	38 80 00 02 	li      r4,2                                   
ffc084fc:	7f e5 fb 78 	mr      r5,r31                                 
ffc08500:	4c c6 31 82 	crclr   4*cr1+eq                               
ffc08504:	48 00 91 9d 	bl      ffc116a0 <ioctl>                       
  }                                                                   
}                                                                     
ffc08508:	80 01 00 14 	lwz     r0,20(r1)                              
ffc0850c:	83 c1 00 08 	lwz     r30,8(r1)                              
ffc08510:	7c 08 03 a6 	mtlr    r0                                     
ffc08514:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc08518:	38 21 00 10 	addi    r1,r1,16                               
ffc0851c:	4e 80 00 20 	blr                                            
                                                                      

ffc09540 <unlink>: #include <rtems/seterr.h> int unlink( const char *path ) {
ffc09540:	94 21 ff b0 	stwu    r1,-80(r1)                             
ffc09544:	7c 08 02 a6 	mflr    r0                                     
ffc09548:	93 e1 00 4c 	stw     r31,76(r1)                             
ffc0954c:	7c 7f 1b 78 	mr      r31,r3                                 
ffc09550:	90 01 00 54 	stw     r0,84(r1)                              
ffc09554:	93 61 00 3c 	stw     r27,60(r1)                             
ffc09558:	93 81 00 40 	stw     r28,64(r1)                             
ffc0955c:	93 a1 00 44 	stw     r29,68(r1)                             
ffc09560:	93 c1 00 48 	stw     r30,72(r1)                             
                                                                      
  /*                                                                  
   * Get the node to be unlinked. Find the parent path first.         
   */                                                                 
                                                                      
  parentpathlen = rtems_filesystem_dirname ( path );                  
ffc09564:	4b ff c8 35 	bl      ffc05d98 <rtems_filesystem_dirname>    
                                                                      
  if ( parentpathlen == 0 )                                           
ffc09568:	2c 03 00 00 	cmpwi   r3,0                                   
ffc0956c:	40 82 01 3c 	bne-    ffc096a8 <unlink+0x168>                
    rtems_filesystem_get_start_loc( path, &i, &parentloc );           
ffc09570:	3b c1 00 0c 	addi    r30,r1,12                              
ffc09574:	7f e3 fb 78 	mr      r3,r31                                 
ffc09578:	38 81 00 08 	addi    r4,r1,8                                
ffc0957c:	7f c5 f3 78 	mr      r5,r30                                 
ffc09580:	4b ff dc 49 	bl      ffc071c8 <rtems_filesystem_get_start_loc>
ffc09584:	3b a0 00 00 	li      r29,0                                  
  const char                       *name;                             
  rtems_filesystem_location_info_t  parentloc;                        
  rtems_filesystem_location_info_t  loc;                              
  int                               i;                                
  int                               result;                           
  bool                              free_parentloc = false;           
ffc09588:	3b 80 00 00 	li      r28,0                                  
                                                                      
  /*                                                                  
   * Start from the parent to find the node that should be under it.  
   */                                                                 
                                                                      
  loc = parentloc;                                                    
ffc0958c:	80 01 00 0c 	lwz     r0,12(r1)                              
  name = path + parentpathlen;                                        
ffc09590:	7f bf ea 14 	add     r29,r31,r29                            
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
ffc09594:	7f a3 eb 78 	mr      r3,r29                                 
                                                                      
  /*                                                                  
   * Start from the parent to find the node that should be under it.  
   */                                                                 
                                                                      
  loc = parentloc;                                                    
ffc09598:	90 01 00 20 	stw     r0,32(r1)                              
  name = path + parentpathlen;                                        
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
                                                                      
  result = rtems_filesystem_evaluate_relative_path( name , strlen( name ),
ffc0959c:	3b e1 00 20 	addi    r31,r1,32                              
                                                                      
  /*                                                                  
   * Start from the parent to find the node that should be under it.  
   */                                                                 
                                                                      
  loc = parentloc;                                                    
ffc095a0:	80 01 00 10 	lwz     r0,16(r1)                              
ffc095a4:	90 01 00 24 	stw     r0,36(r1)                              
ffc095a8:	80 01 00 14 	lwz     r0,20(r1)                              
ffc095ac:	90 01 00 28 	stw     r0,40(r1)                              
ffc095b0:	80 01 00 18 	lwz     r0,24(r1)                              
ffc095b4:	90 01 00 2c 	stw     r0,44(r1)                              
ffc095b8:	80 01 00 1c 	lwz     r0,28(r1)                              
ffc095bc:	90 01 00 30 	stw     r0,48(r1)                              
  name = path + parentpathlen;                                        
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
ffc095c0:	48 00 ed 99 	bl      ffc18358 <strlen>                      
ffc095c4:	7c 64 1b 78 	mr      r4,r3                                  
ffc095c8:	7f a3 eb 78 	mr      r3,r29                                 
ffc095cc:	4b ff c8 2d 	bl      ffc05df8 <rtems_filesystem_prefix_separators>
ffc095d0:	7f bd 1a 14 	add     r29,r29,r3                             
                                                                      
  result = rtems_filesystem_evaluate_relative_path( name , strlen( name ),
ffc095d4:	7f a3 eb 78 	mr      r3,r29                                 
ffc095d8:	48 00 ed 81 	bl      ffc18358 <strlen>                      
ffc095dc:	38 a0 00 00 	li      r5,0                                   
ffc095e0:	7c 64 1b 78 	mr      r4,r3                                  
ffc095e4:	7f e6 fb 78 	mr      r6,r31                                 
ffc095e8:	7f a3 eb 78 	mr      r3,r29                                 
ffc095ec:	38 e0 00 00 	li      r7,0                                   
ffc095f0:	4b ff c6 81 	bl      ffc05c70 <rtems_filesystem_evaluate_relative_path>
                                                    0, &loc, false ); 
  if ( result != 0 ) {                                                
ffc095f4:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc095f8:	40 9e 00 74 	bne-    cr7,ffc0966c <unlink+0x12c>            
    if ( free_parentloc )                                             
      rtems_filesystem_freenode( &parentloc );                        
    return -1;                                                        
  }                                                                   
                                                                      
  if (  (*loc.ops->node_type_h)( &loc ) == RTEMS_FILESYSTEM_DIRECTORY ) {
ffc095fc:	81 21 00 2c 	lwz     r9,44(r1)                              
ffc09600:	7f e3 fb 78 	mr      r3,r31                                 
ffc09604:	80 09 00 10 	lwz     r0,16(r9)                              
ffc09608:	7c 09 03 a6 	mtctr   r0                                     
ffc0960c:	4e 80 04 21 	bctrl                                          
ffc09610:	2f 83 00 01 	cmpwi   cr7,r3,1                               
ffc09614:	41 9e 00 c8 	beq-    cr7,ffc096dc <unlink+0x19c>            
    if ( free_parentloc )                                             
      rtems_filesystem_freenode( &parentloc );                        
    rtems_set_errno_and_return_minus_one( EISDIR );                   
  }                                                                   
                                                                      
  result = (*loc.ops->unlink_h)( &parentloc, &loc );                  
ffc09618:	81 21 00 2c 	lwz     r9,44(r1)                              
ffc0961c:	7f e4 fb 78 	mr      r4,r31                                 
ffc09620:	7f c3 f3 78 	mr      r3,r30                                 
ffc09624:	80 09 00 0c 	lwz     r0,12(r9)                              
ffc09628:	7c 09 03 a6 	mtctr   r0                                     
ffc0962c:	4e 80 04 21 	bctrl                                          
ffc09630:	7c 7b 1b 78 	mr      r27,r3                                 
                                                                      
  rtems_filesystem_freenode( &loc );                                  
ffc09634:	7f e3 fb 78 	mr      r3,r31                                 
ffc09638:	4b ff c8 41 	bl      ffc05e78 <rtems_filesystem_freenode>   
  if ( free_parentloc )                                               
ffc0963c:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
ffc09640:	40 9e 00 38 	bne-    cr7,ffc09678 <unlink+0x138>            
    rtems_filesystem_freenode( &parentloc );                          
                                                                      
  return result;                                                      
}                                                                     
ffc09644:	80 01 00 54 	lwz     r0,84(r1)                              
ffc09648:	7f 63 db 78 	mr      r3,r27                                 
ffc0964c:	83 81 00 40 	lwz     r28,64(r1)                             
ffc09650:	7c 08 03 a6 	mtlr    r0                                     
ffc09654:	83 61 00 3c 	lwz     r27,60(r1)                             
ffc09658:	83 a1 00 44 	lwz     r29,68(r1)                             
ffc0965c:	83 c1 00 48 	lwz     r30,72(r1)                             
ffc09660:	83 e1 00 4c 	lwz     r31,76(r1)                             
ffc09664:	38 21 00 50 	addi    r1,r1,80                               
ffc09668:	4e 80 00 20 	blr                                            
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
                                                                      
  result = rtems_filesystem_evaluate_relative_path( name , strlen( name ),
                                                    0, &loc, false ); 
  if ( result != 0 ) {                                                
    if ( free_parentloc )                                             
ffc0966c:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
      rtems_filesystem_freenode( &parentloc );                        
    return -1;                                                        
ffc09670:	3b 60 ff ff 	li      r27,-1                                 
  name += rtems_filesystem_prefix_separators( name, strlen( name ) ); 
                                                                      
  result = rtems_filesystem_evaluate_relative_path( name , strlen( name ),
                                                    0, &loc, false ); 
  if ( result != 0 ) {                                                
    if ( free_parentloc )                                             
ffc09674:	41 9e ff d0 	beq+    cr7,ffc09644 <unlink+0x104>            <== NEVER TAKEN
                                                                      
  result = (*loc.ops->unlink_h)( &parentloc, &loc );                  
                                                                      
  rtems_filesystem_freenode( &loc );                                  
  if ( free_parentloc )                                               
    rtems_filesystem_freenode( &parentloc );                          
ffc09678:	7f c3 f3 78 	mr      r3,r30                                 
ffc0967c:	4b ff c7 fd 	bl      ffc05e78 <rtems_filesystem_freenode>   
                                                                      
  return result;                                                      
}                                                                     
ffc09680:	80 01 00 54 	lwz     r0,84(r1)                              
ffc09684:	7f 63 db 78 	mr      r3,r27                                 
ffc09688:	83 81 00 40 	lwz     r28,64(r1)                             
ffc0968c:	7c 08 03 a6 	mtlr    r0                                     
ffc09690:	83 61 00 3c 	lwz     r27,60(r1)                             
ffc09694:	83 a1 00 44 	lwz     r29,68(r1)                             
ffc09698:	83 c1 00 48 	lwz     r30,72(r1)                             
ffc0969c:	83 e1 00 4c 	lwz     r31,76(r1)                             
ffc096a0:	38 21 00 50 	addi    r1,r1,80                               
ffc096a4:	4e 80 00 20 	blr                                            
  parentpathlen = rtems_filesystem_dirname ( path );                  
                                                                      
  if ( parentpathlen == 0 )                                           
    rtems_filesystem_get_start_loc( path, &i, &parentloc );           
  else {                                                              
    result = rtems_filesystem_evaluate_path( path, parentpathlen,     
ffc096a8:	7c 7d 1b 78 	mr      r29,r3                                 
ffc096ac:	3b c1 00 0c 	addi    r30,r1,12                              
ffc096b0:	7f e3 fb 78 	mr      r3,r31                                 
ffc096b4:	7f a4 eb 78 	mr      r4,r29                                 
ffc096b8:	38 a0 00 02 	li      r5,2                                   
ffc096bc:	7f c6 f3 78 	mr      r6,r30                                 
ffc096c0:	38 e0 00 00 	li      r7,0                                   
ffc096c4:	4b ff c6 59 	bl      ffc05d1c <rtems_filesystem_evaluate_path>
                                             RTEMS_LIBIO_PERMS_WRITE, 
                                             &parentloc,              
                                             false );                 
    if ( result != 0 )                                                
      return -1;                                                      
ffc096c8:	3b 60 ff ff 	li      r27,-1                                 
  else {                                                              
    result = rtems_filesystem_evaluate_path( path, parentpathlen,     
                                             RTEMS_LIBIO_PERMS_WRITE, 
                                             &parentloc,              
                                             false );                 
    if ( result != 0 )                                                
ffc096cc:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc096d0:	40 be ff 74 	bne-    cr7,ffc09644 <unlink+0x104>            <== NEVER TAKEN
      return -1;                                                      
                                                                      
    free_parentloc = true;                                            
ffc096d4:	3b 80 00 01 	li      r28,1                                  
ffc096d8:	4b ff fe b4 	b       ffc0958c <unlink+0x4c>                 
      rtems_filesystem_freenode( &parentloc );                        
    return -1;                                                        
  }                                                                   
                                                                      
  if (  (*loc.ops->node_type_h)( &loc ) == RTEMS_FILESYSTEM_DIRECTORY ) {
    rtems_filesystem_freenode( &loc );                                
ffc096dc:	7f e3 fb 78 	mr      r3,r31                                 
ffc096e0:	4b ff c7 99 	bl      ffc05e78 <rtems_filesystem_freenode>   
    if ( free_parentloc )                                             
ffc096e4:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
ffc096e8:	41 be 00 0c 	beq+    cr7,ffc096f4 <unlink+0x1b4>            
      rtems_filesystem_freenode( &parentloc );                        
ffc096ec:	7f c3 f3 78 	mr      r3,r30                                 
ffc096f0:	4b ff c7 89 	bl      ffc05e78 <rtems_filesystem_freenode>   
    rtems_set_errno_and_return_minus_one( EISDIR );                   
ffc096f4:	48 00 da c5 	bl      ffc171b8 <__errno>                     
ffc096f8:	38 00 00 15 	li      r0,21                                  
ffc096fc:	90 03 00 00 	stw     r0,0(r3)                               
ffc09700:	3b 60 ff ff 	li      r27,-1                                 
ffc09704:	4b ff ff 40 	b       ffc09644 <unlink+0x104>                
                                                                      

ffc096e0 <unmount>: */ int unmount( const char *path ) {
ffc096e0:	94 21 ff d0 	stwu    r1,-48(r1)                             
ffc096e4:	7c 08 02 a6 	mflr    r0                                     
ffc096e8:	93 c1 00 28 	stw     r30,40(r1)                             
ffc096ec:	7c 7e 1b 78 	mr      r30,r3                                 
ffc096f0:	90 01 00 34 	stw     r0,52(r1)                              
ffc096f4:	93 e1 00 2c 	stw     r31,44(r1)                             
   *    The root node of the mounted filesytem.                       
   *    The node for the directory that the fileystem is mounted on.  
   *    The mount entry that is being refered to.                     
   */                                                                 
                                                                      
  if ( rtems_filesystem_evaluate_path( path, strlen( path ), 0x0, &loc, true ) )
ffc096f8:	48 00 b1 e1 	bl      ffc148d8 <strlen>                      
ffc096fc:	3b e1 00 08 	addi    r31,r1,8                               
ffc09700:	7c 64 1b 78 	mr      r4,r3                                  
ffc09704:	38 a0 00 00 	li      r5,0                                   
ffc09708:	7f c3 f3 78 	mr      r3,r30                                 
ffc0970c:	7f e6 fb 78 	mr      r6,r31                                 
ffc09710:	38 e0 00 01 	li      r7,1                                   
ffc09714:	4b ff c2 8d 	bl      ffc059a0 <rtems_filesystem_evaluate_path>
ffc09718:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0971c:	40 9e 00 98 	bne-    cr7,ffc097b4 <unmount+0xd4>            
    return -1;                                                        
                                                                      
  mt_entry     = loc.mt_entry;                                        
ffc09720:	83 c1 00 18 	lwz     r30,24(r1)                             
                                                                      
  /*                                                                  
   * Verify this is the root node for the file system to be unmounted.
   */                                                                 
                                                                      
  if ( fs_root_loc->node_access != loc.node_access ){                 
ffc09724:	80 01 00 08 	lwz     r0,8(r1)                               
ffc09728:	81 3e 00 1c 	lwz     r9,28(r30)                             
ffc0972c:	7f 89 00 00 	cmpw    cr7,r9,r0                              
ffc09730:	40 9e 00 a4 	bne-    cr7,ffc097d4 <unmount+0xf4>            
                                                                      
  /*                                                                  
   * Free the loc node and just use the nodes from the mt_entry .     
   */                                                                 
                                                                      
  rtems_filesystem_freenode( &loc );                                  
ffc09734:	7f e3 fb 78 	mr      r3,r31                                 
ffc09738:	4b ff c3 c5 	bl      ffc05afc <rtems_filesystem_freenode>   
   *        that made the current node thread based instead           
   *        of system based?  I thought it was but it doesn't         
   *        look like it in this version.                             
   */                                                                 
                                                                      
  if ( rtems_filesystem_current.mt_entry == mt_entry )                
ffc0973c:	3d 20 00 00 	lis     r9,0                                   
ffc09740:	81 29 27 14 	lwz     r9,10004(r9)                           
ffc09744:	80 09 00 14 	lwz     r0,20(r9)                              
ffc09748:	7f 80 f0 00 	cmpw    cr7,r0,r30                             
ffc0974c:	41 9e 00 bc 	beq-    cr7,ffc09808 <unmount+0x128>           
                                                                      
  /*                                                                  
   *  Verify there are no file systems below the path specified       
   */                                                                 
                                                                      
  if ( rtems_filesystem_mount_iterate( is_fs_below_mount_point,       
ffc09750:	80 9e 00 2c 	lwz     r4,44(r30)                             
ffc09754:	3c 60 ff c1 	lis     r3,-63                                 
ffc09758:	38 63 96 cc 	addi    r3,r3,-26932                           
ffc0975c:	4b ff cf 25 	bl      ffc06680 <rtems_filesystem_mount_iterate>
ffc09760:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc09764:	40 9e 00 a4 	bne-    cr7,ffc09808 <unmount+0x128>           
   *  Run the file descriptor table to determine if there are any file
   *  descriptors that are currently active and reference nodes in the
   *  file system that we are trying to unmount                       
   */                                                                 
                                                                      
  if ( rtems_libio_is_open_files_in_fs( mt_entry ) == 1 )             
ffc09768:	7f c3 f3 78 	mr      r3,r30                                 
ffc0976c:	4b ff c8 05 	bl      ffc05f70 <rtems_libio_is_open_files_in_fs>
ffc09770:	2f 83 00 01 	cmpwi   cr7,r3,1                               
ffc09774:	41 9e 00 94 	beq-    cr7,ffc09808 <unmount+0x128>           
   * Allow the file system being unmounted on to do its cleanup.      
   * If it fails it will set the errno to the approprate value        
   * and the fileystem will not be modified.                          
   */                                                                 
                                                                      
  if (( fs_mount_loc->ops->unmount_h )( mt_entry ) != 0 )             
ffc09778:	81 3e 00 14 	lwz     r9,20(r30)                             
ffc0977c:	7f c3 f3 78 	mr      r3,r30                                 
    return -1;                                                        
ffc09780:	3b e0 ff ff 	li      r31,-1                                 
   * Allow the file system being unmounted on to do its cleanup.      
   * If it fails it will set the errno to the approprate value        
   * and the fileystem will not be modified.                          
   */                                                                 
                                                                      
  if (( fs_mount_loc->ops->unmount_h )( mt_entry ) != 0 )             
ffc09784:	80 09 00 28 	lwz     r0,40(r9)                              
ffc09788:	7c 09 03 a6 	mtctr   r0                                     
ffc0978c:	4e 80 04 21 	bctrl                                          
ffc09790:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc09794:	41 9e 00 a0 	beq-    cr7,ffc09834 <unmount+0x154>           <== ALWAYS TAKEN
                                                                      
  rtems_filesystem_freenode( fs_mount_loc );                          
  free( mt_entry );                                                   
                                                                      
  return 0;                                                           
}                                                                     
ffc09798:	80 01 00 34 	lwz     r0,52(r1)                              <== NOT EXECUTED
ffc0979c:	7f e3 fb 78 	mr      r3,r31                                 <== NOT EXECUTED
ffc097a0:	83 c1 00 28 	lwz     r30,40(r1)                             <== NOT EXECUTED
ffc097a4:	7c 08 03 a6 	mtlr    r0                                     <== NOT EXECUTED
ffc097a8:	83 e1 00 2c 	lwz     r31,44(r1)                             <== NOT EXECUTED
ffc097ac:	38 21 00 30 	addi    r1,r1,48                               <== NOT EXECUTED
ffc097b0:	4e 80 00 20 	blr                                            <== NOT EXECUTED
ffc097b4:	80 01 00 34 	lwz     r0,52(r1)                              
   *    The node for the directory that the fileystem is mounted on.  
   *    The mount entry that is being refered to.                     
   */                                                                 
                                                                      
  if ( rtems_filesystem_evaluate_path( path, strlen( path ), 0x0, &loc, true ) )
    return -1;                                                        
ffc097b8:	3b e0 ff ff 	li      r31,-1                                 
                                                                      
  rtems_filesystem_freenode( fs_mount_loc );                          
  free( mt_entry );                                                   
                                                                      
  return 0;                                                           
}                                                                     
ffc097bc:	7f e3 fb 78 	mr      r3,r31                                 
ffc097c0:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc097c4:	7c 08 03 a6 	mtlr    r0                                     
ffc097c8:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc097cc:	38 21 00 30 	addi    r1,r1,48                               
ffc097d0:	4e 80 00 20 	blr                                            
  /*                                                                  
   * Verify this is the root node for the file system to be unmounted.
   */                                                                 
                                                                      
  if ( fs_root_loc->node_access != loc.node_access ){                 
    rtems_filesystem_freenode( &loc );                                
ffc097d4:	7f e3 fb 78 	mr      r3,r31                                 
ffc097d8:	4b ff c3 25 	bl      ffc05afc <rtems_filesystem_freenode>   
    rtems_set_errno_and_return_minus_one( EACCES );                   
ffc097dc:	3b e0 ff ff 	li      r31,-1                                 
ffc097e0:	48 00 9a 4d 	bl      ffc1322c <__errno>                     
ffc097e4:	38 00 00 0d 	li      r0,13                                  
ffc097e8:	90 03 00 00 	stw     r0,0(r3)                               
                                                                      
  rtems_filesystem_freenode( fs_mount_loc );                          
  free( mt_entry );                                                   
                                                                      
  return 0;                                                           
}                                                                     
ffc097ec:	7f e3 fb 78 	mr      r3,r31                                 
ffc097f0:	80 01 00 34 	lwz     r0,52(r1)                              
ffc097f4:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc097f8:	7c 08 03 a6 	mtlr    r0                                     
ffc097fc:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc09800:	38 21 00 30 	addi    r1,r1,48                               
ffc09804:	4e 80 00 20 	blr                                            
   *  descriptors that are currently active and reference nodes in the
   *  file system that we are trying to unmount                       
   */                                                                 
                                                                      
  if ( rtems_libio_is_open_files_in_fs( mt_entry ) == 1 )             
    rtems_set_errno_and_return_minus_one( EBUSY );                    
ffc09808:	48 00 9a 25 	bl      ffc1322c <__errno>                     
ffc0980c:	38 00 00 10 	li      r0,16                                  
ffc09810:	90 03 00 00 	stw     r0,0(r3)                               
ffc09814:	3b e0 ff ff 	li      r31,-1                                 
                                                                      
  rtems_filesystem_freenode( fs_mount_loc );                          
  free( mt_entry );                                                   
                                                                      
  return 0;                                                           
}                                                                     
ffc09818:	7f e3 fb 78 	mr      r3,r31                                 
ffc0981c:	80 01 00 34 	lwz     r0,52(r1)                              
ffc09820:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc09824:	7c 08 03 a6 	mtlr    r0                                     
ffc09828:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc0982c:	38 21 00 30 	addi    r1,r1,48                               
ffc09830:	4e 80 00 20 	blr                                            
   *  NOTE:  Fatal error is called in a case which should never happen
   *         This was response was questionable but the best we could 
   *         come up with.                                            
   */                                                                 
                                                                      
  if ((fs_root_loc->ops->fsunmount_me_h )( mt_entry ) != 0){          
ffc09834:	81 3e 00 28 	lwz     r9,40(r30)                             
ffc09838:	7f c3 f3 78 	mr      r3,r30                                 
ffc0983c:	80 09 00 2c 	lwz     r0,44(r9)                              
ffc09840:	7c 09 03 a6 	mtctr   r0                                     
ffc09844:	4e 80 04 21 	bctrl                                          
ffc09848:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0984c:	40 9e 00 58 	bne-    cr7,ffc098a4 <unmount+0x1c4>           <== NEVER TAKEN
rtems_status_code rtems_libio_set_private_env(void);                  
rtems_status_code rtems_libio_share_private_env(rtems_id task_id) ;   
                                                                      
static inline void rtems_libio_lock( void )                           
{                                                                     
  rtems_semaphore_obtain( rtems_libio_semaphore, RTEMS_WAIT, RTEMS_NO_TIMEOUT );
ffc09850:	3f e0 00 00 	lis     r31,0                                  
ffc09854:	80 7f 27 a0 	lwz     r3,10144(r31)                          
ffc09858:	38 80 00 00 	li      r4,0                                   
ffc0985c:	38 a0 00 00 	li      r5,0                                   
ffc09860:	48 00 0c a9 	bl      ffc0a508 <rtems_semaphore_obtain>      
 */                                                                   
RTEMS_INLINE_ROUTINE void rtems_chain_extract(                        
  rtems_chain_node *the_node                                          
)                                                                     
{                                                                     
  _Chain_Extract( the_node );                                         
ffc09864:	7f c3 f3 78 	mr      r3,r30                                 
ffc09868:	48 00 1a a5 	bl      ffc0b30c <_Chain_Extract>              
}                                                                     
                                                                      
static inline void rtems_libio_unlock( void )                         
{                                                                     
  rtems_semaphore_release( rtems_libio_semaphore );                   
ffc0986c:	80 7f 27 a0 	lwz     r3,10144(r31)                          
   */                                                                 
                                                                      
  rtems_filesystem_freenode( fs_mount_loc );                          
  free( mt_entry );                                                   
                                                                      
  return 0;                                                           
ffc09870:	3b e0 00 00 	li      r31,0                                  
ffc09874:	48 00 0e 1d 	bl      ffc0a690 <rtems_semaphore_release>     
  /*                                                                  
   *  Free the memory node that was allocated in mount                
   *  Free the memory associated with the extracted mount table entry.
   */                                                                 
                                                                      
  rtems_filesystem_freenode( fs_mount_loc );                          
ffc09878:	38 7e 00 08 	addi    r3,r30,8                               
ffc0987c:	4b ff c2 81 	bl      ffc05afc <rtems_filesystem_freenode>   
  free( mt_entry );                                                   
ffc09880:	7f c3 f3 78 	mr      r3,r30                                 
ffc09884:	4b ff c2 a5 	bl      ffc05b28 <free>                        
                                                                      
  return 0;                                                           
}                                                                     
ffc09888:	80 01 00 34 	lwz     r0,52(r1)                              
ffc0988c:	7f e3 fb 78 	mr      r3,r31                                 
ffc09890:	83 c1 00 28 	lwz     r30,40(r1)                             
ffc09894:	7c 08 03 a6 	mtlr    r0                                     
ffc09898:	83 e1 00 2c 	lwz     r31,44(r1)                             
ffc0989c:	38 21 00 30 	addi    r1,r1,48                               
ffc098a0:	4e 80 00 20 	blr                                            
   *         This was response was questionable but the best we could 
   *         come up with.                                            
   */                                                                 
                                                                      
  if ((fs_root_loc->ops->fsunmount_me_h )( mt_entry ) != 0){          
    if (( fs_mount_loc->ops->mount_h )( mt_entry ) != 0 )             
ffc098a4:	81 3e 00 14 	lwz     r9,20(r30)                             <== NOT EXECUTED
ffc098a8:	7f c3 f3 78 	mr      r3,r30                                 <== NOT EXECUTED
ffc098ac:	80 09 00 20 	lwz     r0,32(r9)                              <== NOT EXECUTED
ffc098b0:	7c 09 03 a6 	mtctr   r0                                     <== NOT EXECUTED
ffc098b4:	4e 80 04 21 	bctrl                                          <== NOT EXECUTED
ffc098b8:	2f 83 00 00 	cmpwi   cr7,r3,0                               <== NOT EXECUTED
ffc098bc:	41 9e fe dc 	beq+    cr7,ffc09798 <unmount+0xb8>            <== NOT EXECUTED
      rtems_fatal_error_occurred( 0 );                                
ffc098c0:	38 60 00 00 	li      r3,0                                   <== NOT EXECUTED
ffc098c4:	48 00 15 b9 	bl      ffc0ae7c <rtems_fatal_error_occurred>  <== NOT EXECUTED
                                                                      

ffc081b8 <vprintk>: */ void vprintk( const char *fmt, va_list ap ) {
ffc081b8:	94 21 ff a8 	stwu    r1,-88(r1)                             
ffc081bc:	7d 80 00 26 	mfcr    r12                                    
ffc081c0:	7c 08 02 a6 	mflr    r0                                     
ffc081c4:	93 21 00 3c 	stw     r25,60(r1)                             
ffc081c8:	7c 99 23 78 	mr      r25,r4                                 
ffc081cc:	93 e1 00 54 	stw     r31,84(r1)                             
ffc081d0:	7c 7f 1b 78 	mr      r31,r3                                 
ffc081d4:	90 01 00 5c 	stw     r0,92(r1)                              
ffc081d8:	92 a1 00 2c 	stw     r21,44(r1)                             
ffc081dc:	92 c1 00 30 	stw     r22,48(r1)                             
ffc081e0:	92 e1 00 34 	stw     r23,52(r1)                             
ffc081e4:	93 01 00 38 	stw     r24,56(r1)                             
ffc081e8:	93 41 00 40 	stw     r26,64(r1)                             
ffc081ec:	93 61 00 44 	stw     r27,68(r1)                             
ffc081f0:	93 81 00 48 	stw     r28,72(r1)                             
ffc081f4:	93 a1 00 4c 	stw     r29,76(r1)                             
ffc081f8:	93 c1 00 50 	stw     r30,80(r1)                             
ffc081fc:	91 81 00 28 	stw     r12,40(r1)                             
  for (; *fmt != '\0'; fmt++) {                                       
ffc08200:	88 63 00 00 	lbz     r3,0(r3)                               
ffc08204:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc08208:	41 9e 00 f4 	beq-    cr7,ffc082fc <vprintk+0x144>           <== NEVER TAKEN
    bool sign = false;                                                
    char lead = ' ';                                                  
    char c;                                                           
                                                                      
    if (*fmt != '%') {                                                
      BSP_output_char(*fmt);                                          
ffc0820c:	3f 00 00 00 	lis     r24,0                                  
 *  console is not yet initialized or in ISR's.                       
 *                                                                    
 * Arguments:                                                         
 *    as in printf: fmt - format string, ... - unnamed arguments.     
 */                                                                   
void vprintk(                                                         
ffc08210:	3a c1 00 08 	addi    r22,r1,8                               
ffc08214:	3e e0 ff c2 	lis     r23,-62                                
      char *s, *str;                                                  
                                                                      
      str = va_arg(ap, char *);                                       
                                                                      
      if ( str == NULL ) {                                            
        str = "";                                                     
ffc08218:	3e a0 ff c2 	lis     r21,-62                                
    bool minus = false;                                               
    bool sign = false;                                                
    char lead = ' ';                                                  
    char c;                                                           
                                                                      
    if (*fmt != '%') {                                                
ffc0821c:	2f 83 00 25 	cmpwi   cr7,r3,37                              
ffc08220:	40 9e 00 c4 	bne-    cr7,ffc082e4 <vprintk+0x12c>           
      BSP_output_char(*fmt);                                          
      continue;                                                       
    }                                                                 
    fmt++;                                                            
    if (*fmt == '0' ) {                                               
ffc08224:	8c 7f 00 01 	lbzu    r3,1(r31)                              
    unsigned base = 0;                                                
    unsigned width = 0;                                               
    bool lflag = false;                                               
    bool minus = false;                                               
    bool sign = false;                                                
    char lead = ' ';                                                  
ffc08228:	3b 40 00 20 	li      r26,32                                 
    if (*fmt != '%') {                                                
      BSP_output_char(*fmt);                                          
      continue;                                                       
    }                                                                 
    fmt++;                                                            
    if (*fmt == '0' ) {                                               
ffc0822c:	2f 83 00 30 	cmpwi   cr7,r3,48                              
ffc08230:	41 9e 02 14 	beq-    cr7,ffc08444 <vprintk+0x28c>           
      lead = '0';                                                     
      fmt++;                                                          
    }                                                                 
    if (*fmt == '-' ) {                                               
ffc08234:	2f 83 00 2d 	cmpwi   cr7,r3,45                              
{                                                                     
  for (; *fmt != '\0'; fmt++) {                                       
    unsigned base = 0;                                                
    unsigned width = 0;                                               
    bool lflag = false;                                               
    bool minus = false;                                               
ffc08238:	39 20 00 00 	li      r9,0                                   
    fmt++;                                                            
    if (*fmt == '0' ) {                                               
      lead = '0';                                                     
      fmt++;                                                          
    }                                                                 
    if (*fmt == '-' ) {                                               
ffc0823c:	41 9e 01 fc 	beq-    cr7,ffc08438 <vprintk+0x280>           
      minus = true;                                                   
      fmt++;                                                          
    }                                                                 
    while (*fmt >= '0' && *fmt <= '9' ) {                             
ffc08240:	38 03 ff d0 	addi    r0,r3,-48                              
ffc08244:	54 00 06 3e 	clrlwi  r0,r0,24                               
ffc08248:	2b 80 00 09 	cmplwi  cr7,r0,9                               
ffc0824c:	3b c0 00 00 	li      r30,0                                  
ffc08250:	41 9d 00 24 	bgt-    cr7,ffc08274 <vprintk+0xbc>            
      width *= 10;                                                    
ffc08254:	1f de 00 0a 	mulli   r30,r30,10                             
      width += ((unsigned) *fmt - '0');                               
ffc08258:	7f de 1a 14 	add     r30,r30,r3                             
    }                                                                 
    if (*fmt == '-' ) {                                               
      minus = true;                                                   
      fmt++;                                                          
    }                                                                 
    while (*fmt >= '0' && *fmt <= '9' ) {                             
ffc0825c:	8c 7f 00 01 	lbzu    r3,1(r31)                              
      width *= 10;                                                    
      width += ((unsigned) *fmt - '0');                               
ffc08260:	3b de ff d0 	addi    r30,r30,-48                            
    }                                                                 
    if (*fmt == '-' ) {                                               
      minus = true;                                                   
      fmt++;                                                          
    }                                                                 
    while (*fmt >= '0' && *fmt <= '9' ) {                             
ffc08264:	38 03 ff d0 	addi    r0,r3,-48                              
ffc08268:	54 00 06 3e 	clrlwi  r0,r0,24                               
ffc0826c:	2b 80 00 09 	cmplwi  cr7,r0,9                               
ffc08270:	40 9d ff e4 	ble+    cr7,ffc08254 <vprintk+0x9c>            
      width *= 10;                                                    
      width += ((unsigned) *fmt - '0');                               
      fmt++;                                                          
    }                                                                 
                                                                      
    if ((c = *fmt) == 'l') {                                          
ffc08274:	2f 83 00 6c 	cmpwi   cr7,r3,108                             
ffc08278:	41 9e 02 18 	beq-    cr7,ffc08490 <vprintk+0x2d8>           
      lflag = true;                                                   
      c = *++fmt;                                                     
    }                                                                 
    if ( c == 'c' ) {                                                 
ffc0827c:	2f 83 00 63 	cmpwi   cr7,r3,99                              
ffc08280:	41 9e 01 d0 	beq-    cr7,ffc08450 <vprintk+0x298>           
      /* need a cast here since va_arg() only takes fully promoted types */
      char chr = (char) va_arg(ap, int);                              
      BSP_output_char(chr);                                           
      continue;                                                       
    }                                                                 
    if ( c == 's' ) {                                                 
ffc08284:	2f 83 00 73 	cmpwi   cr7,r3,115                             
ffc08288:	41 9e 02 2c 	beq-    cr7,ffc084b4 <vprintk+0x2fc>           
                                                                      
      continue;                                                       
    }                                                                 
                                                                      
    /* must be a numeric format or something unsupported */           
    if ( c == 'o' || c == 'O' ) {                                     
ffc0828c:	2f 83 00 6f 	cmpwi   cr7,r3,111                             
ffc08290:	41 9e 02 18 	beq-    cr7,ffc084a8 <vprintk+0x2f0>           <== NEVER TAKEN
ffc08294:	2f 83 00 4f 	cmpwi   cr7,r3,79                              
ffc08298:	41 9e 02 10 	beq-    cr7,ffc084a8 <vprintk+0x2f0>           
      base = 8; sign = false;                                         
    } else if ( c == 'i' || c == 'I' ||                               
ffc0829c:	2f 83 00 69 	cmpwi   cr7,r3,105                             
ffc082a0:	41 9e 00 a0 	beq-    cr7,ffc08340 <vprintk+0x188>           
ffc082a4:	2f 83 00 49 	cmpwi   cr7,r3,73                              
ffc082a8:	41 9e 00 98 	beq-    cr7,ffc08340 <vprintk+0x188>           
ffc082ac:	2f 83 00 64 	cmpwi   cr7,r3,100                             
ffc082b0:	41 9e 00 90 	beq-    cr7,ffc08340 <vprintk+0x188>           
                c == 'd' || c == 'D' ) {                              
ffc082b4:	2f 83 00 44 	cmpwi   cr7,r3,68                              
ffc082b8:	41 9e 00 88 	beq-    cr7,ffc08340 <vprintk+0x188>           
      base = 10; sign = true;                                         
    } else if ( c == 'u' || c == 'U' ) {                              
ffc082bc:	2f 83 00 75 	cmpwi   cr7,r3,117                             
ffc082c0:	41 9e 03 2c 	beq-    cr7,ffc085ec <vprintk+0x434>           
ffc082c4:	2f 83 00 55 	cmpwi   cr7,r3,85                              
ffc082c8:	41 9e 03 24 	beq-    cr7,ffc085ec <vprintk+0x434>           
      base = 10; sign = false;                                        
    } else if ( c == 'x' || c == 'X' ) {                              
ffc082cc:	2f 83 00 78 	cmpwi   cr7,r3,120                             
ffc082d0:	41 9e 03 28 	beq-    cr7,ffc085f8 <vprintk+0x440>           
ffc082d4:	2f 83 00 58 	cmpwi   cr7,r3,88                              
ffc082d8:	41 9e 03 20 	beq-    cr7,ffc085f8 <vprintk+0x440>           
      base = 16; sign = false;                                        
    } else if ( c == 'p' ) {                                          
ffc082dc:	2f 83 00 70 	cmpwi   cr7,r3,112                             
ffc082e0:	41 9e 03 18 	beq-    cr7,ffc085f8 <vprintk+0x440>           
      base = 16; sign = false; lflag = true;                          
    } else {                                                          
      BSP_output_char(c);                                             
ffc082e4:	80 18 26 94 	lwz     r0,9876(r24)                           
ffc082e8:	7c 09 03 a6 	mtctr   r0                                     
ffc082ec:	4e 80 04 21 	bctrl                                          
void vprintk(                                                         
  const char *fmt,                                                    
  va_list     ap                                                      
)                                                                     
{                                                                     
  for (; *fmt != '\0'; fmt++) {                                       
ffc082f0:	8c 7f 00 01 	lbzu    r3,1(r31)                              
ffc082f4:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc082f8:	40 9e ff 24 	bne+    cr7,ffc0821c <vprintk+0x64>            
      sign,                                                           
      width,                                                          
      lead                                                            
    );                                                                
  }                                                                   
}                                                                     
ffc082fc:	80 01 00 5c 	lwz     r0,92(r1)                              
ffc08300:	81 81 00 28 	lwz     r12,40(r1)                             
ffc08304:	7c 08 03 a6 	mtlr    r0                                     
ffc08308:	82 a1 00 2c 	lwz     r21,44(r1)                             
ffc0830c:	82 c1 00 30 	lwz     r22,48(r1)                             
ffc08310:	7d 80 81 20 	mtcrf   8,r12                                  
ffc08314:	82 e1 00 34 	lwz     r23,52(r1)                             
ffc08318:	83 01 00 38 	lwz     r24,56(r1)                             
ffc0831c:	83 21 00 3c 	lwz     r25,60(r1)                             
ffc08320:	83 41 00 40 	lwz     r26,64(r1)                             
ffc08324:	83 61 00 44 	lwz     r27,68(r1)                             
ffc08328:	83 81 00 48 	lwz     r28,72(r1)                             
ffc0832c:	83 a1 00 4c 	lwz     r29,76(r1)                             
ffc08330:	83 c1 00 50 	lwz     r30,80(r1)                             
ffc08334:	83 e1 00 54 	lwz     r31,84(r1)                             
ffc08338:	38 21 00 58 	addi    r1,r1,88                               
ffc0833c:	4e 80 00 20 	blr                                            
    /* must be a numeric format or something unsupported */           
    if ( c == 'o' || c == 'O' ) {                                     
      base = 8; sign = false;                                         
    } else if ( c == 'i' || c == 'I' ||                               
                c == 'd' || c == 'D' ) {                              
      base = 10; sign = true;                                         
ffc08340:	39 20 00 01 	li      r9,1                                   
ffc08344:	3b a0 00 0a 	li      r29,10                                 
      BSP_output_char(c);                                             
      continue;                                                       
    }                                                                 
                                                                      
    printNum(                                                         
      lflag ? va_arg(ap, long) : (long) va_arg(ap, int),              
ffc08348:	89 79 00 00 	lbz     r11,0(r25)                             
ffc0834c:	2b 8b 00 08 	cmplwi  cr7,r11,8                              
ffc08350:	40 9c 01 48 	bge-    cr7,ffc08498 <vprintk+0x2e0>           
ffc08354:	55 60 10 3a 	rlwinm  r0,r11,2,0,29                          
ffc08358:	81 59 00 08 	lwz     r10,8(r25)                             
ffc0835c:	39 6b 00 01 	addi    r11,r11,1                              
ffc08360:	99 79 00 00 	stb     r11,0(r25)                             
ffc08364:	7d 4a 02 14 	add     r10,r10,r0                             
  unsigned long unsigned_num;                                         
  unsigned long n;                                                    
  unsigned count;                                                     
  char toPrint[20];                                                   
                                                                      
  if ( sign && (num <  0) ) {                                         
ffc08368:	2f 89 00 00 	cmpwi   cr7,r9,0                               
    } else {                                                          
      BSP_output_char(c);                                             
      continue;                                                       
    }                                                                 
                                                                      
    printNum(                                                         
ffc0836c:	83 8a 00 00 	lwz     r28,0(r10)                             
  unsigned long unsigned_num;                                         
  unsigned long n;                                                    
  unsigned count;                                                     
  char toPrint[20];                                                   
                                                                      
  if ( sign && (num <  0) ) {                                         
ffc08370:	41 9e 00 0c 	beq-    cr7,ffc0837c <vprintk+0x1c4>           
ffc08374:	2f 9c 00 00 	cmpwi   cr7,r28,0                              
ffc08378:	41 9c 02 8c 	blt-    cr7,ffc08604 <vprintk+0x44c>           
  } else {                                                            
    unsigned_num = (unsigned long) num;                               
  }                                                                   
                                                                      
  count = 0;                                                          
  while ((n = unsigned_num / base) > 0) {                             
ffc0837c:	7c 1c eb 96 	divwu   r0,r28,r29                             
ffc08380:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc08384:	57 a7 06 3e 	clrlwi  r7,r29,24                              
    if (maxwidth) maxwidth--;                                         
  } else {                                                            
    unsigned_num = (unsigned long) num;                               
  }                                                                   
                                                                      
  count = 0;                                                          
ffc08388:	39 20 00 00 	li      r9,0                                   
  while ((n = unsigned_num / base) > 0) {                             
ffc0838c:	40 be 00 10 	bne+    cr7,ffc0839c <vprintk+0x1e4>           
ffc08390:	48 00 02 98 	b       ffc08628 <vprintk+0x470>               
ffc08394:	7c 1c 03 78 	mr      r28,r0                                 
ffc08398:	7d 60 5b 78 	mr      r0,r11                                 
ffc0839c:	7d 60 eb 96 	divwu   r11,r0,r29                             
ffc083a0:	2f 8b 00 00 	cmpwi   cr7,r11,0                              
    toPrint[count++] = (char) (unsigned_num - (n * base));            
ffc083a4:	7d 07 01 d6 	mullw   r8,r7,r0                               
ffc083a8:	7d 41 4a 14 	add     r10,r1,r9                              
ffc083ac:	7f 88 e0 50 	subf    r28,r8,r28                             
ffc083b0:	9b 8a 00 08 	stb     r28,8(r10)                             
ffc083b4:	39 29 00 01 	addi    r9,r9,1                                
  } else {                                                            
    unsigned_num = (unsigned long) num;                               
  }                                                                   
                                                                      
  count = 0;                                                          
  while ((n = unsigned_num / base) > 0) {                             
ffc083b8:	40 9e ff dc 	bne+    cr7,ffc08394 <vprintk+0x1dc>           
ffc083bc:	3b 69 00 01 	addi    r27,r9,1                               
    toPrint[count++] = (char) (unsigned_num - (n * base));            
    unsigned_num = n;                                                 
  }                                                                   
  toPrint[count++] = (char) unsigned_num;                             
                                                                      
  for (n=maxwidth ; n > count; n-- )                                  
ffc083c0:	7f 9b f0 40 	cmplw   cr7,r27,r30                            
  count = 0;                                                          
  while ((n = unsigned_num / base) > 0) {                             
    toPrint[count++] = (char) (unsigned_num - (n * base));            
    unsigned_num = n;                                                 
  }                                                                   
  toPrint[count++] = (char) unsigned_num;                             
ffc083c4:	7d 21 4a 14 	add     r9,r1,r9                               
ffc083c8:	98 09 00 08 	stb     r0,8(r9)                               
                                                                      
  for (n=maxwidth ; n > count; n-- )                                  
ffc083cc:	40 9c 00 24 	bge-    cr7,ffc083f0 <vprintk+0x238>           
ffc083d0:	3b 98 26 94 	addi    r28,r24,9876                           
    BSP_output_char(lead);                                            
ffc083d4:	80 1c 00 00 	lwz     r0,0(r28)                              
ffc083d8:	7f 43 d3 78 	mr      r3,r26                                 
    toPrint[count++] = (char) (unsigned_num - (n * base));            
    unsigned_num = n;                                                 
  }                                                                   
  toPrint[count++] = (char) unsigned_num;                             
                                                                      
  for (n=maxwidth ; n > count; n-- )                                  
ffc083dc:	3b de ff ff 	addi    r30,r30,-1                             
    BSP_output_char(lead);                                            
ffc083e0:	7c 09 03 a6 	mtctr   r0                                     
ffc083e4:	4e 80 04 21 	bctrl                                          
    toPrint[count++] = (char) (unsigned_num - (n * base));            
    unsigned_num = n;                                                 
  }                                                                   
  toPrint[count++] = (char) unsigned_num;                             
                                                                      
  for (n=maxwidth ; n > count; n-- )                                  
ffc083e8:	7f 9b f0 40 	cmplw   cr7,r27,r30                            
ffc083ec:	41 9c ff e8 	blt+    cr7,ffc083d4 <vprintk+0x21c>           
    BSP_output_char(lead);                                            
                                                                      
  for (n = 0; n < count; n++) {                                       
ffc083f0:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
ffc083f4:	41 be fe fc 	beq-    cr7,ffc082f0 <vprintk+0x138>           <== NEVER TAKEN
 *  console is not yet initialized or in ISR's.                       
 *                                                                    
 * Arguments:                                                         
 *    as in printf: fmt - format string, ... - unnamed arguments.     
 */                                                                   
void vprintk(                                                         
ffc083f8:	7f b6 da 14 	add     r29,r22,r27                            
ffc083fc:	3b c0 00 00 	li      r30,0                                  
ffc08400:	3b 98 26 94 	addi    r28,r24,9876                           
ffc08404:	3b 57 8d 38 	addi    r26,r23,-29384                         
                                                                      
  for (n=maxwidth ; n > count; n-- )                                  
    BSP_output_char(lead);                                            
                                                                      
  for (n = 0; n < count; n++) {                                       
    BSP_output_char("0123456789ABCDEF"[(int)(toPrint[count-(n+1)])]); 
ffc08408:	8d 3d ff ff 	lbzu    r9,-1(r29)                             
  toPrint[count++] = (char) unsigned_num;                             
                                                                      
  for (n=maxwidth ; n > count; n-- )                                  
    BSP_output_char(lead);                                            
                                                                      
  for (n = 0; n < count; n++) {                                       
ffc0840c:	3b de 00 01 	addi    r30,r30,1                              
    BSP_output_char("0123456789ABCDEF"[(int)(toPrint[count-(n+1)])]); 
ffc08410:	80 1c 00 00 	lwz     r0,0(r28)                              
ffc08414:	7c 7a 48 ae 	lbzx    r3,r26,r9                              
ffc08418:	7c 09 03 a6 	mtctr   r0                                     
ffc0841c:	4e 80 04 21 	bctrl                                          
  toPrint[count++] = (char) unsigned_num;                             
                                                                      
  for (n=maxwidth ; n > count; n-- )                                  
    BSP_output_char(lead);                                            
                                                                      
  for (n = 0; n < count; n++) {                                       
ffc08420:	7f 9b f0 40 	cmplw   cr7,r27,r30                            
ffc08424:	41 9d ff e4 	bgt+    cr7,ffc08408 <vprintk+0x250>           
void vprintk(                                                         
  const char *fmt,                                                    
  va_list     ap                                                      
)                                                                     
{                                                                     
  for (; *fmt != '\0'; fmt++) {                                       
ffc08428:	8c 7f 00 01 	lbzu    r3,1(r31)                              
ffc0842c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc08430:	40 9e fd ec 	bne+    cr7,ffc0821c <vprintk+0x64>            <== ALWAYS TAKEN
ffc08434:	4b ff fe c8 	b       ffc082fc <vprintk+0x144>               <== NOT EXECUTED
      lead = '0';                                                     
      fmt++;                                                          
    }                                                                 
    if (*fmt == '-' ) {                                               
      minus = true;                                                   
      fmt++;                                                          
ffc08438:	8c 7f 00 01 	lbzu    r3,1(r31)                              
    if (*fmt == '0' ) {                                               
      lead = '0';                                                     
      fmt++;                                                          
    }                                                                 
    if (*fmt == '-' ) {                                               
      minus = true;                                                   
ffc0843c:	39 20 00 01 	li      r9,1                                   
ffc08440:	4b ff fe 00 	b       ffc08240 <vprintk+0x88>                
      continue;                                                       
    }                                                                 
    fmt++;                                                            
    if (*fmt == '0' ) {                                               
      lead = '0';                                                     
      fmt++;                                                          
ffc08444:	8c 7f 00 01 	lbzu    r3,1(r31)                              
      BSP_output_char(*fmt);                                          
      continue;                                                       
    }                                                                 
    fmt++;                                                            
    if (*fmt == '0' ) {                                               
      lead = '0';                                                     
ffc08448:	3b 40 00 30 	li      r26,48                                 
ffc0844c:	4b ff fd e8 	b       ffc08234 <vprintk+0x7c>                
      lflag = true;                                                   
      c = *++fmt;                                                     
    }                                                                 
    if ( c == 'c' ) {                                                 
      /* need a cast here since va_arg() only takes fully promoted types */
      char chr = (char) va_arg(ap, int);                              
ffc08450:	89 39 00 00 	lbz     r9,0(r25)                              
ffc08454:	2b 89 00 08 	cmplwi  cr7,r9,8                               
ffc08458:	40 9c 01 64 	bge-    cr7,ffc085bc <vprintk+0x404>           <== NEVER TAKEN
ffc0845c:	55 20 10 3a 	rlwinm  r0,r9,2,0,29                           
ffc08460:	81 79 00 08 	lwz     r11,8(r25)                             
ffc08464:	39 29 00 01 	addi    r9,r9,1                                
ffc08468:	99 39 00 00 	stb     r9,0(r25)                              
ffc0846c:	7d 6b 02 14 	add     r11,r11,r0                             
      BSP_output_char(chr);                                           
ffc08470:	80 18 26 94 	lwz     r0,9876(r24)                           
ffc08474:	88 6b 00 03 	lbz     r3,3(r11)                              
ffc08478:	7c 09 03 a6 	mtctr   r0                                     
ffc0847c:	4e 80 04 21 	bctrl                                          
void vprintk(                                                         
  const char *fmt,                                                    
  va_list     ap                                                      
)                                                                     
{                                                                     
  for (; *fmt != '\0'; fmt++) {                                       
ffc08480:	8c 7f 00 01 	lbzu    r3,1(r31)                              
ffc08484:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc08488:	40 9e fd 94 	bne+    cr7,ffc0821c <vprintk+0x64>            <== ALWAYS TAKEN
ffc0848c:	4b ff fe 70 	b       ffc082fc <vprintk+0x144>               <== NOT EXECUTED
      fmt++;                                                          
    }                                                                 
                                                                      
    if ((c = *fmt) == 'l') {                                          
      lflag = true;                                                   
      c = *++fmt;                                                     
ffc08490:	8c 7f 00 01 	lbzu    r3,1(r31)                              
ffc08494:	4b ff fd e8 	b       ffc0827c <vprintk+0xc4>                
      BSP_output_char(c);                                             
      continue;                                                       
    }                                                                 
                                                                      
    printNum(                                                         
      lflag ? va_arg(ap, long) : (long) va_arg(ap, int),              
ffc08498:	81 59 00 04 	lwz     r10,4(r25)                             
ffc0849c:	38 0a 00 04 	addi    r0,r10,4                               
ffc084a0:	90 19 00 04 	stw     r0,4(r25)                              
ffc084a4:	4b ff fe c4 	b       ffc08368 <vprintk+0x1b0>               
      continue;                                                       
    }                                                                 
                                                                      
    /* must be a numeric format or something unsupported */           
    if ( c == 'o' || c == 'O' ) {                                     
      base = 8; sign = false;                                         
ffc084a8:	39 20 00 00 	li      r9,0                                   
ffc084ac:	3b a0 00 08 	li      r29,8                                  
ffc084b0:	4b ff fe 98 	b       ffc08348 <vprintk+0x190>               
    }                                                                 
    if ( c == 's' ) {                                                 
      unsigned i, len;                                                
      char *s, *str;                                                  
                                                                      
      str = va_arg(ap, char *);                                       
ffc084b4:	89 79 00 00 	lbz     r11,0(r25)                             
ffc084b8:	2b 8b 00 08 	cmplwi  cr7,r11,8                              
ffc084bc:	40 9c 01 10 	bge-    cr7,ffc085cc <vprintk+0x414>           <== NEVER TAKEN
ffc084c0:	55 60 10 3a 	rlwinm  r0,r11,2,0,29                          
ffc084c4:	81 59 00 08 	lwz     r10,8(r25)                             
ffc084c8:	39 6b 00 01 	addi    r11,r11,1                              
ffc084cc:	99 79 00 00 	stb     r11,0(r25)                             
ffc084d0:	7d 4a 02 14 	add     r10,r10,r0                             
ffc084d4:	83 6a 00 00 	lwz     r27,0(r10)                             
                                                                      
      if ( str == NULL ) {                                            
ffc084d8:	2f 9b 00 00 	cmpwi   cr7,r27,0                              
ffc084dc:	41 9e 01 08 	beq-    cr7,ffc085e4 <vprintk+0x42c>           
        str = "";                                                     
      }                                                               
                                                                      
      /* calculate length of string */                                
      for ( len=0, s=str ; *s ; len++, s++ )                          
ffc084e0:	88 1b 00 00 	lbz     r0,0(r27)                              
ffc084e4:	3b a0 00 00 	li      r29,0                                  
ffc084e8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc084ec:	41 9e 00 14 	beq-    cr7,ffc08500 <vprintk+0x348>           
ffc084f0:	3b bd 00 01 	addi    r29,r29,1                              
ffc084f4:	7c 1b e8 ae 	lbzx    r0,r27,r29                             
ffc084f8:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc084fc:	40 9e ff f4 	bne+    cr7,ffc084f0 <vprintk+0x338>           
        ;                                                             
                                                                      
      /* leading spaces */                                            
      if ( !minus )                                                   
ffc08500:	2e 09 00 00 	cmpwi   cr4,r9,0                               
ffc08504:	40 92 00 30 	bne-    cr4,ffc08534 <vprintk+0x37c>           
        for ( i=len ; i<width ; i++ )                                 
ffc08508:	7f 9d f0 40 	cmplw   cr7,r29,r30                            
ffc0850c:	40 9c 00 28 	bge-    cr7,ffc08534 <vprintk+0x37c>           
ffc08510:	7f ba eb 78 	mr      r26,r29                                
ffc08514:	3b 98 26 94 	addi    r28,r24,9876                           
          BSP_output_char(' ');                                       
ffc08518:	80 1c 00 00 	lwz     r0,0(r28)                              
ffc0851c:	38 60 00 20 	li      r3,32                                  
      for ( len=0, s=str ; *s ; len++, s++ )                          
        ;                                                             
                                                                      
      /* leading spaces */                                            
      if ( !minus )                                                   
        for ( i=len ; i<width ; i++ )                                 
ffc08520:	3b 5a 00 01 	addi    r26,r26,1                              
          BSP_output_char(' ');                                       
ffc08524:	7c 09 03 a6 	mtctr   r0                                     
ffc08528:	4e 80 04 21 	bctrl                                          
      for ( len=0, s=str ; *s ; len++, s++ )                          
        ;                                                             
                                                                      
      /* leading spaces */                                            
      if ( !minus )                                                   
        for ( i=len ; i<width ; i++ )                                 
ffc0852c:	7f 9a f0 40 	cmplw   cr7,r26,r30                            
ffc08530:	41 9c ff e8 	blt+    cr7,ffc08518 <vprintk+0x360>           
          BSP_output_char(' ');                                       
                                                                      
      /* no width option */                                           
      if (width == 0) {                                               
ffc08534:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc08538:	40 9e 00 10 	bne-    cr7,ffc08548 <vprintk+0x390>           
          width = len;                                                
      }                                                               
                                                                      
      /* output the string */                                         
      for ( i=0 ; i<width && *str ; str++ )                           
ffc0853c:	2f 9d 00 00 	cmpwi   cr7,r29,0                              
ffc08540:	41 9e 00 40 	beq-    cr7,ffc08580 <vprintk+0x3c8>           
ffc08544:	7f be eb 78 	mr      r30,r29                                
ffc08548:	88 7b 00 00 	lbz     r3,0(r27)                              
ffc0854c:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc08550:	41 9e 00 30 	beq-    cr7,ffc08580 <vprintk+0x3c8>           <== NEVER TAKEN
        BSP_output_char(*str);                                        
ffc08554:	80 18 26 94 	lwz     r0,9876(r24)                           
ffc08558:	3b 98 26 94 	addi    r28,r24,9876                           
ffc0855c:	7c 09 03 a6 	mtctr   r0                                     
ffc08560:	4e 80 04 21 	bctrl                                          
ffc08564:	48 00 00 10 	b       ffc08574 <vprintk+0x3bc>               
ffc08568:	80 1c 00 00 	lwz     r0,0(r28)                              
ffc0856c:	7c 09 03 a6 	mtctr   r0                                     
ffc08570:	4e 80 04 21 	bctrl                                          
      if (width == 0) {                                               
          width = len;                                                
      }                                                               
                                                                      
      /* output the string */                                         
      for ( i=0 ; i<width && *str ; str++ )                           
ffc08574:	8c 7b 00 01 	lbzu    r3,1(r27)                              
ffc08578:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc0857c:	40 9e ff ec 	bne+    cr7,ffc08568 <vprintk+0x3b0>           
        BSP_output_char(*str);                                        
                                                                      
      /* trailing spaces */                                           
      if ( minus )                                                    
ffc08580:	41 b2 fd 70 	beq-    cr4,ffc082f0 <vprintk+0x138>           
        for ( i=len ; i<width ; i++ )                                 
ffc08584:	7f 9d f0 40 	cmplw   cr7,r29,r30                            
ffc08588:	40 bc fd 68 	bge-    cr7,ffc082f0 <vprintk+0x138>           
ffc0858c:	3b 98 26 94 	addi    r28,r24,9876                           
          BSP_output_char(' ');                                       
ffc08590:	80 1c 00 00 	lwz     r0,0(r28)                              
ffc08594:	38 60 00 20 	li      r3,32                                  
      for ( i=0 ; i<width && *str ; str++ )                           
        BSP_output_char(*str);                                        
                                                                      
      /* trailing spaces */                                           
      if ( minus )                                                    
        for ( i=len ; i<width ; i++ )                                 
ffc08598:	3b bd 00 01 	addi    r29,r29,1                              
          BSP_output_char(' ');                                       
ffc0859c:	7c 09 03 a6 	mtctr   r0                                     
ffc085a0:	4e 80 04 21 	bctrl                                          
      for ( i=0 ; i<width && *str ; str++ )                           
        BSP_output_char(*str);                                        
                                                                      
      /* trailing spaces */                                           
      if ( minus )                                                    
        for ( i=len ; i<width ; i++ )                                 
ffc085a4:	7f 9d f0 40 	cmplw   cr7,r29,r30                            
ffc085a8:	41 9c ff e8 	blt+    cr7,ffc08590 <vprintk+0x3d8>           
void vprintk(                                                         
  const char *fmt,                                                    
  va_list     ap                                                      
)                                                                     
{                                                                     
  for (; *fmt != '\0'; fmt++) {                                       
ffc085ac:	8c 7f 00 01 	lbzu    r3,1(r31)                              
ffc085b0:	2f 83 00 00 	cmpwi   cr7,r3,0                               
ffc085b4:	40 9e fc 68 	bne+    cr7,ffc0821c <vprintk+0x64>            <== ALWAYS TAKEN
ffc085b8:	4b ff fd 44 	b       ffc082fc <vprintk+0x144>               <== NOT EXECUTED
      lflag = true;                                                   
      c = *++fmt;                                                     
    }                                                                 
    if ( c == 'c' ) {                                                 
      /* need a cast here since va_arg() only takes fully promoted types */
      char chr = (char) va_arg(ap, int);                              
ffc085bc:	81 79 00 04 	lwz     r11,4(r25)                             <== NOT EXECUTED
ffc085c0:	38 0b 00 04 	addi    r0,r11,4                               <== NOT EXECUTED
ffc085c4:	90 19 00 04 	stw     r0,4(r25)                              <== NOT EXECUTED
ffc085c8:	4b ff fe a8 	b       ffc08470 <vprintk+0x2b8>               <== NOT EXECUTED
    }                                                                 
    if ( c == 's' ) {                                                 
      unsigned i, len;                                                
      char *s, *str;                                                  
                                                                      
      str = va_arg(ap, char *);                                       
ffc085cc:	81 59 00 04 	lwz     r10,4(r25)                             <== NOT EXECUTED
ffc085d0:	38 0a 00 04 	addi    r0,r10,4                               <== NOT EXECUTED
ffc085d4:	90 19 00 04 	stw     r0,4(r25)                              <== NOT EXECUTED
ffc085d8:	83 6a 00 00 	lwz     r27,0(r10)                             <== NOT EXECUTED
                                                                      
      if ( str == NULL ) {                                            
ffc085dc:	2f 9b 00 00 	cmpwi   cr7,r27,0                              <== NOT EXECUTED
ffc085e0:	40 9e ff 00 	bne+    cr7,ffc084e0 <vprintk+0x328>           <== NOT EXECUTED
        str = "";                                                     
ffc085e4:	3b 75 82 88 	addi    r27,r21,-32120                         
ffc085e8:	4b ff fe f8 	b       ffc084e0 <vprintk+0x328>               
      base = 8; sign = false;                                         
    } else if ( c == 'i' || c == 'I' ||                               
                c == 'd' || c == 'D' ) {                              
      base = 10; sign = true;                                         
    } else if ( c == 'u' || c == 'U' ) {                              
      base = 10; sign = false;                                        
ffc085ec:	39 20 00 00 	li      r9,0                                   
ffc085f0:	3b a0 00 0a 	li      r29,10                                 
ffc085f4:	4b ff fd 54 	b       ffc08348 <vprintk+0x190>               
    } else if ( c == 'x' || c == 'X' ) {                              
      base = 16; sign = false;                                        
    } else if ( c == 'p' ) {                                          
      base = 16; sign = false; lflag = true;                          
ffc085f8:	39 20 00 00 	li      r9,0                                   
ffc085fc:	3b a0 00 10 	li      r29,16                                 
ffc08600:	4b ff fd 48 	b       ffc08348 <vprintk+0x190>               
  unsigned long n;                                                    
  unsigned count;                                                     
  char toPrint[20];                                                   
                                                                      
  if ( sign && (num <  0) ) {                                         
    BSP_output_char('-');                                             
ffc08604:	80 18 26 94 	lwz     r0,9876(r24)                           
ffc08608:	38 60 00 2d 	li      r3,45                                  
    unsigned_num = (unsigned long) -num;                              
ffc0860c:	7f 9c 00 d0 	neg     r28,r28                                
  unsigned long n;                                                    
  unsigned count;                                                     
  char toPrint[20];                                                   
                                                                      
  if ( sign && (num <  0) ) {                                         
    BSP_output_char('-');                                             
ffc08610:	7c 09 03 a6 	mtctr   r0                                     
ffc08614:	4e 80 04 21 	bctrl                                          
    unsigned_num = (unsigned long) -num;                              
    if (maxwidth) maxwidth--;                                         
ffc08618:	2f 9e 00 00 	cmpwi   cr7,r30,0                              
ffc0861c:	41 be fd 60 	beq-    cr7,ffc0837c <vprintk+0x1c4>           
ffc08620:	3b de ff ff 	addi    r30,r30,-1                             
ffc08624:	4b ff fd 58 	b       ffc0837c <vprintk+0x1c4>               
  } else {                                                            
    unsigned_num = (unsigned long) num;                               
  }                                                                   
                                                                      
  count = 0;                                                          
  while ((n = unsigned_num / base) > 0) {                             
ffc08628:	7f 80 e3 78 	mr      r0,r28                                 
ffc0862c:	3b 60 00 01 	li      r27,1                                  
    if (maxwidth) maxwidth--;                                         
  } else {                                                            
    unsigned_num = (unsigned long) num;                               
  }                                                                   
                                                                      
  count = 0;                                                          
ffc08630:	39 20 00 00 	li      r9,0                                   
ffc08634:	4b ff fd 8c 	b       ffc083c0 <vprintk+0x208>               
                                                                      

ffc1797c <write>: ssize_t write( int fd, const void *buffer, size_t count ) {
ffc1797c:	94 21 ff f0 	stwu    r1,-16(r1)                             
ffc17980:	7c 08 02 a6 	mflr    r0                                     
  ssize_t  rc;                                                        
  rtems_libio_t     *iop;                                             
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc17984:	3d 20 00 00 	lis     r9,0                                   
ssize_t write(                                                        
  int         fd,                                                     
  const void *buffer,                                                 
  size_t      count                                                   
)                                                                     
{                                                                     
ffc17988:	90 01 00 14 	stw     r0,20(r1)                              
  ssize_t  rc;                                                        
  rtems_libio_t     *iop;                                             
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc1798c:	80 09 26 4c 	lwz     r0,9804(r9)                            
ssize_t write(                                                        
  int         fd,                                                     
  const void *buffer,                                                 
  size_t      count                                                   
)                                                                     
{                                                                     
ffc17990:	93 e1 00 0c 	stw     r31,12(r1)                             
  ssize_t  rc;                                                        
  rtems_libio_t     *iop;                                             
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc17994:	7f 83 00 40 	cmplw   cr7,r3,r0                              
ffc17998:	40 9c 00 8c 	bge-    cr7,ffc17a24 <write+0xa8>              
  iop = rtems_libio_iop( fd );                                        
ffc1799c:	3d 60 00 00 	lis     r11,0                                  
ffc179a0:	83 eb 27 0c 	lwz     r31,9996(r11)                          
ffc179a4:	54 63 30 32 	rlwinm  r3,r3,6,0,25                           
ffc179a8:	7f ff 1a 14 	add     r31,r31,r3                             
  rtems_libio_check_is_open( iop );                                   
ffc179ac:	81 7f 00 18 	lwz     r11,24(r31)                            
ffc179b0:	71 6a 01 00 	andi.   r10,r11,256                            
ffc179b4:	41 82 00 70 	beq-    ffc17a24 <write+0xa8>                  
  rtems_libio_check_buffer( buffer );                                 
ffc179b8:	2f 84 00 00 	cmpwi   cr7,r4,0                               
ffc179bc:	41 9e 00 7c 	beq-    cr7,ffc17a38 <write+0xbc>              <== NEVER TAKEN
  rtems_libio_check_count( count );                                   
ffc179c0:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc179c4:	38 60 00 00 	li      r3,0                                   
ffc179c8:	41 9e 00 48 	beq-    cr7,ffc17a10 <write+0x94>              
  rtems_libio_check_permissions( iop, LIBIO_FLAGS_WRITE );            
ffc179cc:	71 60 00 04 	andi.   r0,r11,4                               
ffc179d0:	41 82 00 68 	beq-    ffc17a38 <write+0xbc>                  
                                                                      
  /*                                                                  
   *  Now process the write() request.                                
   */                                                                 
  rc = (*iop->pathinfo.handlers->write_h)( iop, buffer, count );      
ffc179d4:	81 3f 00 24 	lwz     r9,36(r31)                             
ffc179d8:	7f e3 fb 78 	mr      r3,r31                                 
ffc179dc:	80 09 00 0c 	lwz     r0,12(r9)                              
ffc179e0:	7c 09 03 a6 	mtctr   r0                                     
ffc179e4:	4e 80 04 21 	bctrl                                          
                                                                      
  if ( rc > 0 )                                                       
ffc179e8:	2c 03 00 00 	cmpwi   r3,0                                   
ffc179ec:	40 81 00 24 	ble-    ffc17a10 <write+0x94>                  
    iop->offset += rc;                                                
ffc179f0:	81 7f 00 10 	lwz     r11,16(r31)                            
ffc179f4:	7c 6a 1b 78 	mr      r10,r3                                 
ffc179f8:	81 9f 00 14 	lwz     r12,20(r31)                            
ffc179fc:	7c 69 fe 70 	srawi   r9,r3,31                               
ffc17a00:	7d 4a 60 14 	addc    r10,r10,r12                            
ffc17a04:	7d 29 59 14 	adde    r9,r9,r11                              
ffc17a08:	91 3f 00 10 	stw     r9,16(r31)                             
ffc17a0c:	91 5f 00 14 	stw     r10,20(r31)                            
                                                                      
  return rc;                                                          
}                                                                     
ffc17a10:	80 01 00 14 	lwz     r0,20(r1)                              
ffc17a14:	83 e1 00 0c 	lwz     r31,12(r1)                             
ffc17a18:	38 21 00 10 	addi    r1,r1,16                               
ffc17a1c:	7c 08 03 a6 	mtlr    r0                                     
ffc17a20:	4e 80 00 20 	blr                                            
  ssize_t  rc;                                                        
  rtems_libio_t     *iop;                                             
                                                                      
  rtems_libio_check_fd( fd );                                         
  iop = rtems_libio_iop( fd );                                        
  rtems_libio_check_is_open( iop );                                   
ffc17a24:	4b ff a7 25 	bl      ffc12148 <__errno>                     
ffc17a28:	38 00 00 09 	li      r0,9                                   
ffc17a2c:	90 03 00 00 	stw     r0,0(r3)                               
ffc17a30:	38 60 ff ff 	li      r3,-1                                  
ffc17a34:	4b ff ff dc 	b       ffc17a10 <write+0x94>                  
  rtems_libio_check_buffer( buffer );                                 
  rtems_libio_check_count( count );                                   
  rtems_libio_check_permissions( iop, LIBIO_FLAGS_WRITE );            
ffc17a38:	4b ff a7 11 	bl      ffc12148 <__errno>                     
ffc17a3c:	38 00 00 16 	li      r0,22                                  
ffc17a40:	90 03 00 00 	stw     r0,0(r3)                               
ffc17a44:	38 60 ff ff 	li      r3,-1                                  
ffc17a48:	4b ff ff c8 	b       ffc17a10 <write+0x94>                  
                                                                      

ffc09de4 <writev>: ssize_t writev( int fd, const struct iovec *iov, int iovcnt ) {
ffc09de4:	94 21 ff d8 	stwu    r1,-40(r1)                             
ffc09de8:	7c 08 02 a6 	mflr    r0                                     
  int            bytes;                                               
  rtems_libio_t *iop;                                                 
  ssize_t        old;                                                 
  bool           all_zeros;                                           
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc09dec:	3d 20 00 00 	lis     r9,0                                   
ssize_t writev(                                                       
  int                 fd,                                             
  const struct iovec *iov,                                            
  int                 iovcnt                                          
)                                                                     
{                                                                     
ffc09df0:	90 01 00 2c 	stw     r0,44(r1)                              
  int            bytes;                                               
  rtems_libio_t *iop;                                                 
  ssize_t        old;                                                 
  bool           all_zeros;                                           
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc09df4:	80 09 26 4c 	lwz     r0,9804(r9)                            
ssize_t writev(                                                       
  int                 fd,                                             
  const struct iovec *iov,                                            
  int                 iovcnt                                          
)                                                                     
{                                                                     
ffc09df8:	93 61 00 14 	stw     r27,20(r1)                             
ffc09dfc:	7c bb 2b 78 	mr      r27,r5                                 
  int            bytes;                                               
  rtems_libio_t *iop;                                                 
  ssize_t        old;                                                 
  bool           all_zeros;                                           
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc09e00:	7f 83 00 40 	cmplw   cr7,r3,r0                              
ssize_t writev(                                                       
  int                 fd,                                             
  const struct iovec *iov,                                            
  int                 iovcnt                                          
)                                                                     
{                                                                     
ffc09e04:	93 21 00 0c 	stw     r25,12(r1)                             
ffc09e08:	93 41 00 10 	stw     r26,16(r1)                             
ffc09e0c:	93 81 00 18 	stw     r28,24(r1)                             
ffc09e10:	93 a1 00 1c 	stw     r29,28(r1)                             
ffc09e14:	93 c1 00 20 	stw     r30,32(r1)                             
ffc09e18:	93 e1 00 24 	stw     r31,36(r1)                             
  int            bytes;                                               
  rtems_libio_t *iop;                                                 
  ssize_t        old;                                                 
  bool           all_zeros;                                           
                                                                      
  rtems_libio_check_fd( fd );                                         
ffc09e1c:	40 9c 01 5c 	bge-    cr7,ffc09f78 <writev+0x194>            
  iop = rtems_libio_iop( fd );                                        
ffc09e20:	3d 20 00 00 	lis     r9,0                                   
ffc09e24:	83 29 27 0c 	lwz     r25,9996(r9)                           
ffc09e28:	54 63 30 32 	rlwinm  r3,r3,6,0,25                           
ffc09e2c:	7f 39 1a 14 	add     r25,r25,r3                             
  rtems_libio_check_is_open( iop );                                   
ffc09e30:	80 19 00 18 	lwz     r0,24(r25)                             
ffc09e34:	70 09 01 00 	andi.   r9,r0,256                              
ffc09e38:	41 82 01 40 	beq-    ffc09f78 <writev+0x194>                
  rtems_libio_check_permissions( iop, LIBIO_FLAGS_WRITE );            
ffc09e3c:	70 09 00 04 	andi.   r9,r0,4                                
ffc09e40:	41 82 00 f8 	beq-    ffc09f38 <writev+0x154>                <== NEVER TAKEN
                                                                      
  /*                                                                  
   *  Argument validation on IO vector                                
   */                                                                 
  if ( !iov )                                                         
ffc09e44:	2f 84 00 00 	cmpwi   cr7,r4,0                               
ffc09e48:	41 9e 00 f0 	beq-    cr7,ffc09f38 <writev+0x154>            
    rtems_set_errno_and_return_minus_one( EINVAL );                   
                                                                      
  if ( iovcnt <= 0 )                                                  
ffc09e4c:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc09e50:	40 9d 00 e8 	ble-    cr7,ffc09f38 <writev+0x154>            
    rtems_set_errno_and_return_minus_one( EINVAL );                   
                                                                      
  if ( iovcnt > IOV_MAX )                                             
ffc09e54:	2f 85 04 00 	cmpwi   cr7,r5,1024                            
ffc09e58:	41 9d 00 e0 	bgt-    cr7,ffc09f38 <writev+0x154>            <== NEVER TAKEN
    rtems_set_errno_and_return_minus_one( EINVAL );                   
ffc09e5c:	7c 9d 23 78 	mr      r29,r4                                 
    rtems_set_errno_and_return_minus_one( EINVAL );                   
                                                                      
  if ( iovcnt <= 0 )                                                  
    rtems_set_errno_and_return_minus_one( EINVAL );                   
                                                                      
  if ( iovcnt > IOV_MAX )                                             
ffc09e60:	7c a9 03 a6 	mtctr   r5                                     
ffc09e64:	7c 89 23 78 	mr      r9,r4                                  
ffc09e68:	39 00 00 01 	li      r8,1                                   
ffc09e6c:	39 60 00 00 	li      r11,0                                  
ffc09e70:	48 00 00 08 	b       ffc09e78 <writev+0x94>                 
   *  this loop does that check as well and sets "all-zero" appropriately.
   *  The variable "all_zero" is used as an early exit point before   
   *  entering the write loop.                                        
   */                                                                 
  all_zeros = true;                                                   
  for ( old=0, total=0, v=0 ; v < iovcnt ; v++ ) {                    
ffc09e74:	7c 0b 03 78 	mr      r11,r0                                 
                                                                      
    /*                                                                
     *  iov[v].iov_len cannot be less than 0 because size_t is unsigned.
     *  So we only check for zero.                                    
     */                                                               
    if ( iov[v].iov_base == 0 )                                       
ffc09e78:	80 09 00 00 	lwz     r0,0(r9)                               
ffc09e7c:	2f 80 00 00 	cmpwi   cr7,r0,0                               
ffc09e80:	41 9e 00 b8 	beq-    cr7,ffc09f38 <writev+0x154>            
      rtems_set_errno_and_return_minus_one( EINVAL );                 
                                                                      
    if ( iov[v].iov_len )                                             
ffc09e84:	81 49 00 04 	lwz     r10,4(r9)                              
   *  this loop does that check as well and sets "all-zero" appropriately.
   *  The variable "all_zero" is used as an early exit point before   
   *  entering the write loop.                                        
   */                                                                 
  all_zeros = true;                                                   
  for ( old=0, total=0, v=0 ; v < iovcnt ; v++ ) {                    
ffc09e88:	39 29 00 08 	addi    r9,r9,8                                
    if ( iov[v].iov_len )                                             
      all_zeros = false;                                              
                                                                      
    /* check for wrap */                                              
    old    = total;                                                   
    total += iov[v].iov_len;                                          
ffc09e8c:	7c 0b 52 14 	add     r0,r11,r10                             
    if ( total < old || total > SSIZE_MAX )                           
ffc09e90:	7f 80 58 00 	cmpw    cr7,r0,r11                             
     */                                                               
    if ( iov[v].iov_base == 0 )                                       
      rtems_set_errno_and_return_minus_one( EINVAL );                 
                                                                      
    if ( iov[v].iov_len )                                             
      all_zeros = false;                                              
ffc09e94:	31 4a ff ff 	addic   r10,r10,-1                             
ffc09e98:	7d 4a 51 10 	subfe   r10,r10,r10                            
                                                                      
    /* check for wrap */                                              
    old    = total;                                                   
    total += iov[v].iov_len;                                          
    if ( total < old || total > SSIZE_MAX )                           
ffc09e9c:	2f 00 7f ff 	cmpwi   cr6,r0,32767                           
     */                                                               
    if ( iov[v].iov_base == 0 )                                       
      rtems_set_errno_and_return_minus_one( EINVAL );                 
                                                                      
    if ( iov[v].iov_len )                                             
      all_zeros = false;                                              
ffc09ea0:	7d 08 50 38 	and     r8,r8,r10                              
                                                                      
    /* check for wrap */                                              
    old    = total;                                                   
    total += iov[v].iov_len;                                          
    if ( total < old || total > SSIZE_MAX )                           
ffc09ea4:	41 9c 00 94 	blt-    cr7,ffc09f38 <writev+0x154>            
ffc09ea8:	41 99 00 90 	bgt-    cr6,ffc09f38 <writev+0x154>            <== NEVER TAKEN
   *  this loop does that check as well and sets "all-zero" appropriately.
   *  The variable "all_zero" is used as an early exit point before   
   *  entering the write loop.                                        
   */                                                                 
  all_zeros = true;                                                   
  for ( old=0, total=0, v=0 ; v < iovcnt ; v++ ) {                    
ffc09eac:	42 00 ff c8 	bdnz+   ffc09e74 <writev+0x90>                 
  }                                                                   
                                                                      
  /*                                                                  
   * A writev with all zeros is supposed to have no effect per OpenGroup.
   */                                                                 
  if ( all_zeros == true ) {                                          
ffc09eb0:	2f 88 00 00 	cmpwi   cr7,r8,0                               
    return 0;                                                         
ffc09eb4:	3b 40 00 00 	li      r26,0                                  
  }                                                                   
                                                                      
  /*                                                                  
   * A writev with all zeros is supposed to have no effect per OpenGroup.
   */                                                                 
  if ( all_zeros == true ) {                                          
ffc09eb8:	40 9e 00 90 	bne-    cr7,ffc09f48 <writev+0x164>            
ffc09ebc:	3b 80 00 00 	li      r28,0                                  
ffc09ec0:	48 00 00 10 	b       ffc09ed0 <writev+0xec>                 
  }                                                                   
                                                                      
  /*                                                                  
   *  Now process the writev().                                       
   */                                                                 
  for ( total=0, v=0 ; v < iovcnt ; v++ ) {                           
ffc09ec4:	7f 9b e0 00 	cmpw    cr7,r27,r28                            
ffc09ec8:	3b bd 00 08 	addi    r29,r29,8                              
ffc09ecc:	40 9d 00 7c 	ble-    cr7,ffc09f48 <writev+0x164>            
    /* all zero lengths has no effect */                              
    if ( iov[v].iov_len == 0 )                                        
ffc09ed0:	80 bd 00 04 	lwz     r5,4(r29)                              
  }                                                                   
                                                                      
  /*                                                                  
   *  Now process the writev().                                       
   */                                                                 
  for ( total=0, v=0 ; v < iovcnt ; v++ ) {                           
ffc09ed4:	3b 9c 00 01 	addi    r28,r28,1                              
    /* all zero lengths has no effect */                              
    if ( iov[v].iov_len == 0 )                                        
ffc09ed8:	2f 85 00 00 	cmpwi   cr7,r5,0                               
ffc09edc:	41 9e ff e8 	beq+    cr7,ffc09ec4 <writev+0xe0>             <== NEVER TAKEN
      continue;                                                       
                                                                      
    bytes = (*iop->pathinfo.handlers->write_h)(                       
ffc09ee0:	81 39 00 24 	lwz     r9,36(r25)                             
ffc09ee4:	7f 23 cb 78 	mr      r3,r25                                 
ffc09ee8:	80 9d 00 00 	lwz     r4,0(r29)                              
ffc09eec:	80 09 00 0c 	lwz     r0,12(r9)                              
ffc09ef0:	7c 09 03 a6 	mtctr   r0                                     
ffc09ef4:	4e 80 04 21 	bctrl                                          
      iop,                                                            
      iov[v].iov_base,                                                
      iov[v].iov_len                                                  
    );                                                                
                                                                      
    if ( bytes < 0 )                                                  
ffc09ef8:	2c 03 00 00 	cmpwi   r3,0                                   
ffc09efc:	41 80 00 90 	blt-    ffc09f8c <writev+0x1a8>                <== NEVER TAKEN
      return -1;                                                      
                                                                      
    if ( bytes > 0 ) {                                                
ffc09f00:	41 82 00 28 	beq-    ffc09f28 <writev+0x144>                <== NEVER TAKEN
      iop->offset += bytes;                                           
ffc09f04:	81 39 00 10 	lwz     r9,16(r25)                             
ffc09f08:	7c 7f 1b 78 	mr      r31,r3                                 
ffc09f0c:	81 59 00 14 	lwz     r10,20(r25)                            
ffc09f10:	7c 7e fe 70 	srawi   r30,r3,31                              
      total       += bytes;                                           
ffc09f14:	7f 5a 1a 14 	add     r26,r26,r3                             
                                                                      
    if ( bytes < 0 )                                                  
      return -1;                                                      
                                                                      
    if ( bytes > 0 ) {                                                
      iop->offset += bytes;                                           
ffc09f18:	7d 4a f8 14 	addc    r10,r10,r31                            
ffc09f1c:	7d 29 f1 14 	adde    r9,r9,r30                              
ffc09f20:	91 39 00 10 	stw     r9,16(r25)                             
ffc09f24:	91 59 00 14 	stw     r10,20(r25)                            
      total       += bytes;                                           
    }                                                                 
                                                                      
    if (bytes != iov[ v ].iov_len)                                    
ffc09f28:	80 1d 00 04 	lwz     r0,4(r29)                              
ffc09f2c:	7f 83 00 00 	cmpw    cr7,r3,r0                              
ffc09f30:	41 9e ff 94 	beq+    cr7,ffc09ec4 <writev+0xe0>             <== ALWAYS TAKEN
ffc09f34:	48 00 00 14 	b       ffc09f48 <writev+0x164>                <== NOT EXECUTED
                                                                      
    /* check for wrap */                                              
    old    = total;                                                   
    total += iov[v].iov_len;                                          
    if ( total < old || total > SSIZE_MAX )                           
      rtems_set_errno_and_return_minus_one( EINVAL );                 
ffc09f38:	48 00 96 2d 	bl      ffc13564 <__errno>                     
ffc09f3c:	38 00 00 16 	li      r0,22                                  
ffc09f40:	90 03 00 00 	stw     r0,0(r3)                               
ffc09f44:	3b 40 ff ff 	li      r26,-1                                 
    if (bytes != iov[ v ].iov_len)                                    
      break;                                                          
  }                                                                   
                                                                      
  return total;                                                       
}                                                                     
ffc09f48:	80 01 00 2c 	lwz     r0,44(r1)                              
ffc09f4c:	7f 43 d3 78 	mr      r3,r26                                 
ffc09f50:	83 21 00 0c 	lwz     r25,12(r1)                             
ffc09f54:	7c 08 03 a6 	mtlr    r0                                     
ffc09f58:	83 41 00 10 	lwz     r26,16(r1)                             
ffc09f5c:	83 61 00 14 	lwz     r27,20(r1)                             
ffc09f60:	83 81 00 18 	lwz     r28,24(r1)                             
ffc09f64:	83 a1 00 1c 	lwz     r29,28(r1)                             
ffc09f68:	83 c1 00 20 	lwz     r30,32(r1)                             
ffc09f6c:	83 e1 00 24 	lwz     r31,36(r1)                             
ffc09f70:	38 21 00 28 	addi    r1,r1,40                               
ffc09f74:	4e 80 00 20 	blr                                            
  ssize_t        old;                                                 
  bool           all_zeros;                                           
                                                                      
  rtems_libio_check_fd( fd );                                         
  iop = rtems_libio_iop( fd );                                        
  rtems_libio_check_is_open( iop );                                   
ffc09f78:	48 00 95 ed 	bl      ffc13564 <__errno>                     
ffc09f7c:	38 00 00 09 	li      r0,9                                   
ffc09f80:	90 03 00 00 	stw     r0,0(r3)                               
ffc09f84:	3b 40 ff ff 	li      r26,-1                                 
ffc09f88:	4b ff ff c0 	b       ffc09f48 <writev+0x164>                
      iov[v].iov_base,                                                
      iov[v].iov_len                                                  
    );                                                                
                                                                      
    if ( bytes < 0 )                                                  
      return -1;                                                      
ffc09f8c:	3b 40 ff ff 	li      r26,-1                                 <== NOT EXECUTED
ffc09f90:	4b ff ff b8 	b       ffc09f48 <writev+0x164>                <== NOT EXECUTED