xref: /openbsd-src/usr.bin/gprof/lookup.c (revision 043fbe51c197dbbcd422e917b65f765d8b5f8874)
1*043fbe51Sderaadt /*	$OpenBSD: lookup.c,v 1.8 2009/10/27 23:59:38 deraadt Exp $	*/
2df930be7Sderaadt /*	$NetBSD: lookup.c,v 1.5 1995/04/19 07:16:06 cgd Exp $	*/
3df930be7Sderaadt 
4df930be7Sderaadt /*
5df930be7Sderaadt  * Copyright (c) 1983, 1993
6df930be7Sderaadt  *	The Regents of the University of California.  All rights reserved.
7df930be7Sderaadt  *
8df930be7Sderaadt  * Redistribution and use in source and binary forms, with or without
9df930be7Sderaadt  * modification, are permitted provided that the following conditions
10df930be7Sderaadt  * are met:
11df930be7Sderaadt  * 1. Redistributions of source code must retain the above copyright
12df930be7Sderaadt  *    notice, this list of conditions and the following disclaimer.
13df930be7Sderaadt  * 2. Redistributions in binary form must reproduce the above copyright
14df930be7Sderaadt  *    notice, this list of conditions and the following disclaimer in the
15df930be7Sderaadt  *    documentation and/or other materials provided with the distribution.
16f75387cbSmillert  * 3. Neither the name of the University nor the names of its contributors
17df930be7Sderaadt  *    may be used to endorse or promote products derived from this software
18df930be7Sderaadt  *    without specific prior written permission.
19df930be7Sderaadt  *
20df930be7Sderaadt  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21df930be7Sderaadt  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22df930be7Sderaadt  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23df930be7Sderaadt  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24df930be7Sderaadt  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25df930be7Sderaadt  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26df930be7Sderaadt  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27df930be7Sderaadt  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28df930be7Sderaadt  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29df930be7Sderaadt  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30df930be7Sderaadt  * SUCH DAMAGE.
31df930be7Sderaadt  */
32df930be7Sderaadt 
33df930be7Sderaadt #include "gprof.h"
34df930be7Sderaadt 
35df930be7Sderaadt     /*
36df930be7Sderaadt      *	look up an address in a sorted-by-address namelist
37df930be7Sderaadt      *	    this deals with misses by mapping them to the next lower
38df930be7Sderaadt      *	    entry point.
39df930be7Sderaadt      */
40df930be7Sderaadt nltype *
nllookup(unsigned long address)419bd74cdeSespie nllookup(unsigned long address)
42df930be7Sderaadt {
43c0932ef1Smpech     long	low;
44c0932ef1Smpech     long	middle;
45c0932ef1Smpech     long	high;
46df930be7Sderaadt #   ifdef DEBUG
47c0932ef1Smpech 	int	probes;
48df930be7Sderaadt 
49df930be7Sderaadt 	probes = 0;
50e90a6b02Sdanh #   endif /* DEBUG */
51df930be7Sderaadt     for ( low = 0 , high = nname - 1 ; low != high ; ) {
52df930be7Sderaadt #	ifdef DEBUG
53df930be7Sderaadt 	    probes += 1;
54e90a6b02Sdanh #	endif /* DEBUG */
55df930be7Sderaadt 	middle = ( high + low ) >> 1;
56df930be7Sderaadt 	if ( nl[ middle ].value <= address && nl[ middle+1 ].value > address ) {
57df930be7Sderaadt #	    ifdef DEBUG
58df930be7Sderaadt 		if ( debug & LOOKUPDEBUG ) {
59df930be7Sderaadt 		    printf( "[nllookup] %d (%d) probes\n" , probes , nname-1 );
60df930be7Sderaadt 		}
61e90a6b02Sdanh #	    endif /* DEBUG */
62df930be7Sderaadt 	    return &nl[ middle ];
63df930be7Sderaadt 	}
64df930be7Sderaadt 	if ( nl[ middle ].value > address ) {
65df930be7Sderaadt 	    high = middle;
66df930be7Sderaadt 	} else {
67df930be7Sderaadt 	    low = middle + 1;
68df930be7Sderaadt 	}
69df930be7Sderaadt     }
70df930be7Sderaadt #   ifdef DEBUG
71d2559c65Smickey 	if ( debug & LOOKUPDEBUG )
72d2559c65Smickey 	    warnx("[nllookup] (%d) binary search fails", nname - 1);
73e90a6b02Sdanh #   endif /* DEBUG */
74df930be7Sderaadt     return 0;
75df930be7Sderaadt }
76df930be7Sderaadt 
77df930be7Sderaadt arctype *
arclookup(nltype * parentp,nltype * childp)789bd74cdeSespie arclookup(nltype *parentp, nltype *childp)
79df930be7Sderaadt {
80df930be7Sderaadt     arctype	*arcp;
81df930be7Sderaadt 
82df930be7Sderaadt     if ( parentp == 0 || childp == 0 ) {
83d2559c65Smickey 	warnx("[arclookup] parentp == 0 || childp == 0");
84df930be7Sderaadt 	return 0;
85df930be7Sderaadt     }
86df930be7Sderaadt #   ifdef DEBUG
87df930be7Sderaadt 	if ( debug & LOOKUPDEBUG ) {
88df930be7Sderaadt 	    printf( "[arclookup] parent %s child %s\n" ,
89df930be7Sderaadt 		    parentp -> name , childp -> name );
90df930be7Sderaadt 	}
91e90a6b02Sdanh #   endif /* DEBUG */
92df930be7Sderaadt     for ( arcp = parentp -> children ; arcp ; arcp = arcp -> arc_childlist ) {
93df930be7Sderaadt #	ifdef DEBUG
94df930be7Sderaadt 	    if ( debug & LOOKUPDEBUG ) {
95df930be7Sderaadt 		printf( "[arclookup]\t arc_parent %s arc_child %s\n" ,
96df930be7Sderaadt 			arcp -> arc_parentp -> name ,
97df930be7Sderaadt 			arcp -> arc_childp -> name );
98df930be7Sderaadt 	    }
99e90a6b02Sdanh #	endif /* DEBUG */
100df930be7Sderaadt 	if ( arcp -> arc_childp == childp ) {
101df930be7Sderaadt 	    return arcp;
102df930be7Sderaadt 	}
103df930be7Sderaadt     }
104df930be7Sderaadt     return 0;
105df930be7Sderaadt }
106