[BACK]Return to tahoe.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / gprof

Diff for /src/usr.bin/gprof/Attic/tahoe.c between version 1.5 and 1.6

version 1.5, 2003/06/03 02:56:08 version 1.6, 2006/03/25 19:06:36
Line 65 
Line 65 
     };      };
   
 operandenum  operandenum
 operandmode( modep )  operandmode(unsigned char *modep)
     unsigned char       *modep;  
 {  {
     long        usesreg = ((long)*modep) & 0xf;      long        usesreg = ((long)*modep) & 0xf;
   
Line 105 
Line 104 
 }  }
   
 char *  char *
 operandname( mode )  operandname(operandenum mode)
     operandenum mode;  
 {  {
   
     switch ( mode ) {      switch ( mode ) {
Line 157 
Line 155 
 }  }
   
 long  long
 operandlength( modep )  operandlength(unsigned char *modep)
     unsigned char       *modep;  
 {  {
   
     switch ( operandmode( modep ) ) {      switch ( operandmode( modep ) ) {
Line 193 
Line 190 
 }  }
   
 unsigned long  unsigned long
 reladdr( modep )  reladdr(char *modep)
     char        *modep;  
 {  {
     operandenum mode = operandmode( modep );      operandenum mode = operandmode( modep );
     char        *cp;      char        *cp;
Line 223 
Line 219 
 }  }
   
 void  void
 findcall( parentp , p_lowpc , p_highpc )  findcall(nltype *parentp, unsigned long p_lowpc, unsigned long p_highpc)
     nltype              *parentp;  
     unsigned long       p_lowpc;  
     unsigned long       p_highpc;  
 {  {
     unsigned char       *instructp;      unsigned char       *instructp;
     long                length;      long                length;

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6