Lines Matching full:that
8 .\" modification, are permitted provided that the following conditions
43 that are called during execution of the program,
48 A list of the routines that are never called during execution of
50 to verify that nothing important is omitted by
52 The flat profile gives a quick overview of the routines that are used,
53 and shows the routines that are themselves responsible
56 this profile usually shows that no single function
59 Notice that for this profile,
89 We cannot assume that a call graph is planar,
90 and even if it is, that we can print a planar version of it.
93 the routines that are its direct parents and children.
108 in the routines that they call.
122 except that members of the cycle are listed in place of the children.
143 The reader should keep in mind that all information
145 The index in the first column shows that \s-1EXAMPLE\s+1
155 Note that \s-1EXAMPLE\s+1 calls itself recursively four times.
169 Finally each name is followed by an index that shows
170 where on the listing to find the entry for that routine.
174 a set of routines that implement an abstraction.
176 and in evaluating the new algorithms and code that replace them.
182 The easiest optimization that can be performed
184 to a control construct or data structure that improves the
187 is a routine that is called many times.
190 of a routine that formats the data.
193 return can be saved for each datum that needs to be formatted.
195 The drawback to inline expansion is that the data abstractions
206 Further potential for optimization lies in routines that
211 that might be replaced with a binary search.
212 Alternately, the discovery that a rehashing function is being
226 that begins to dominate execution time.
234 They are typified by programs that exhibit a large degree of
236 The problem is that most of the major routines are grouped
238 As in the symbol table abstraction that is placed
242 Unfortunately there are no easy modifications to these programs that
247 If you receive a program from another user that you need to modify
255 For purposes of this example suppose that the call graph
271 you can determine which format routine generates the output that
275 you can determine if your modifications will affect output that
282 that needs the new format.
283 It should be noted that the static call information is particularly
288 We have created a profiler that aids in the evaluation
291 the profile shows the extent to which that routine
293 and how that routine uses other abstractions.