Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] other parts of tracing can also declare types (needed by msg process tracing)
[simgrid.git] / src / instr / instr_routing.c
1 /* Copyright (c) 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5   * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "instr/instr_private.h"
8
9 #ifdef HAVE_TRACING
10 #include "surf/surf_private.h"
11 #include "surf/network_private.h"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_routing, instr, "Tracing platform hierarchy");
14
15 extern xbt_dict_t defined_types; /* from instr_interface.c */
16
17 static int platform_created = 0;            /* indicate whether the platform file has been traced */
18 static type_t rootType = NULL;              /* the root type */
19 static container_t rootContainer = NULL;    /* the root container */
20 static xbt_dynar_t currentContainer = NULL; /* push and pop, used only in creation */
21 static xbt_dict_t allContainers = NULL;     /* all created containers indexed by name */
22 xbt_dynar_t allLinkTypes = NULL;     /* all link types defined */
23 xbt_dynar_t allHostTypes = NULL;     /* all host types defined */
24
25 static void instr_routing_parse_start_AS (void);
26 static void instr_routing_parse_end_AS (void);
27 static void instr_routing_parse_start_link (void);
28 static void instr_routing_parse_end_link (void);
29 static void instr_routing_parse_start_host (void);
30 static void instr_routing_parse_end_host (void);
31 static void instr_routing_parse_start_router (void);
32 static void instr_routing_parse_end_router (void);
33 static void instr_routing_parse_end_platform (void);
34
35 static long long int newTypeId ()
36 {
37   static long long int counter = 0;
38   return counter++;
39 }
40
41 static type_t newType (const char *typename, e_entity_types kind, type_t father)
42 {
43   type_t ret = xbt_new0(s_type_t, 1);
44   ret->name = xbt_strdup (typename);
45   ret->father = father;
46   ret->kind = kind;
47   ret->children = xbt_dict_new ();
48
49   long long int id = newTypeId();
50   char str_id[INSTR_DEFAULT_STR_SIZE];
51   snprintf (str_id, INSTR_DEFAULT_STR_SIZE, "%lld", id);
52   ret->id = xbt_strdup (str_id);
53
54   if (father != NULL){
55     xbt_dict_set (father->children, typename, ret, NULL);
56   }
57   return ret;
58 }
59
60 type_t newContainerType (const char *typename, e_entity_types kind, type_t father)
61 {
62   type_t ret = newType (typename, kind, father);
63 //  if (father) INFO4("ContainerType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
64   if (father) pajeDefineContainerType(ret->id, ret->father->id, ret->name);
65   return ret;
66 }
67
68 type_t newEventType (const char *typename, e_entity_types kind, const char *color, type_t father)
69 {
70   type_t ret = newType (typename, kind, father);
71 //  INFO4("EventType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
72   if (color){
73     pajeDefineEventTypeWithColor (ret->id, ret->father->id, ret->name, color);
74   }else{
75     pajeDefineEventType(ret->id, ret->father->id, ret->name);
76   }
77   return ret;
78 }
79
80 type_t newVariableType (const char *typename, e_entity_types kind, const char *color, type_t father)
81 {
82   type_t ret = newType (typename, kind, father);
83 //  INFO4("VariableType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
84   if (color){
85     pajeDefineVariableTypeWithColor(ret->id, ret->father->id, ret->name, color);
86   }else{
87     pajeDefineVariableType(ret->id, ret->father->id, ret->name);
88   }
89   return ret;
90 }
91
92 type_t newLinkType (const char *typename, e_entity_types kind, type_t father, type_t source, type_t dest)
93 {
94   type_t ret = newType (typename, kind, father);
95 //  INFO8("LinkType %s(%s), child of %s(%s)  %s(%s)->%s(%s)", ret->name, ret->id, father->name, father->id, source->name, source->id, dest->name, dest->id);
96   pajeDefineLinkType(ret->id, ret->father->id, source->id, dest->id, ret->name);
97   return ret;
98 }
99
100 type_t newStateType (const char *typename, e_entity_types kind, type_t father)
101 {
102   type_t ret = newType (typename, kind, father);
103 //  INFO4("StateType %s(%s), child of %s(%s)", ret->name, ret->id, father->name, father->id);
104   pajeDefineStateType(ret->id, ret->father->id, ret->name);
105   return ret;
106 }
107
108 static type_t getContainerType (const char *typename, type_t father)
109 {
110   type_t ret;
111   if (father == NULL){
112     ret = newContainerType (typename, TYPE_CONTAINER, father);
113     rootType = ret;
114   }else{
115     //check if my father type already has my typename
116     ret = (type_t)xbt_dict_get_or_null (father->children, typename);
117     if (ret == NULL){
118       ret = newContainerType (typename, TYPE_CONTAINER, father);
119     }
120   }
121   return ret;
122 }
123
124 static type_t getEventType (const char *typename, const char *color, type_t father)
125 {
126   type_t ret = xbt_dict_get_or_null (father->children, typename);
127   if (ret == NULL){
128     ret = newEventType (typename, TYPE_EVENT, color, father);
129   }
130   return ret;
131 }
132
133 static type_t getVariableType (const char *typename, const char *color, type_t father)
134 {
135   type_t ret = xbt_dict_get_or_null (father->children, typename);
136   if (ret == NULL){
137     ret = newVariableType (typename, TYPE_VARIABLE, color, father);
138   }
139   return ret;
140 }
141
142 static type_t getLinkType (const char *typename, type_t father, type_t source, type_t dest)
143 {
144   type_t ret = xbt_dict_get_or_null (father->children, typename);
145   if (ret == NULL){
146     ret = newLinkType (typename, TYPE_LINK, father, source, dest);
147   }
148   return ret;
149 }
150
151 static type_t getStateType (const char *typename, type_t father)
152 {
153   type_t ret = xbt_dict_get_or_null (father->children, typename);
154   if (ret == NULL){
155     ret = newStateType (typename, TYPE_STATE, father);
156   }
157   return ret;
158 }
159
160 void instr_routing_define_callbacks ()
161 {
162   if (!TRACE_is_active())
163     return;
164   surfxml_add_callback(STag_surfxml_AS_cb_list, &instr_routing_parse_start_AS);
165   surfxml_add_callback(ETag_surfxml_AS_cb_list, &instr_routing_parse_end_AS);
166   surfxml_add_callback(STag_surfxml_link_cb_list, &instr_routing_parse_start_link);
167   surfxml_add_callback(ETag_surfxml_link_cb_list, &instr_routing_parse_end_link);
168   surfxml_add_callback(STag_surfxml_host_cb_list, &instr_routing_parse_start_host);
169   surfxml_add_callback(ETag_surfxml_host_cb_list, &instr_routing_parse_end_host);
170   surfxml_add_callback(STag_surfxml_router_cb_list, &instr_routing_parse_start_router);
171   surfxml_add_callback(ETag_surfxml_router_cb_list, &instr_routing_parse_end_router);
172   surfxml_add_callback(ETag_surfxml_platform_cb_list, &instr_routing_parse_end_platform);
173 }
174
175 static long long int newContainedId ()
176 {
177   static long long counter = 0;
178   return counter++;
179 }
180
181 container_t newContainer (const char *name, e_container_types kind, container_t father)
182 {
183   long long int counter = newContainedId();
184   char id_str[INSTR_DEFAULT_STR_SIZE];
185   snprintf (id_str, INSTR_DEFAULT_STR_SIZE, "%lld", counter);
186
187   container_t new = xbt_new0(s_container_t, 1);
188   new->name = xbt_strdup (name); // name of the container
189   new->id = xbt_strdup (id_str); // id (or alias) of the container
190   new->father = father;
191   // level depends on level of father
192   if (new->father){
193     new->level = new->father->level+1;
194   }else{
195     new->level = 0;
196   }
197   // type definition (method depends on kind of this new container)
198   new->kind = kind;
199   if (new->kind == INSTR_AS){
200     //if this container is of an AS, its type name depends on its level
201     char as_typename[INSTR_DEFAULT_STR_SIZE];
202     snprintf (as_typename, INSTR_DEFAULT_STR_SIZE, "L%d", new->level);
203     if (new->father){
204       new->type = getContainerType (as_typename, new->father->type);
205     }else{
206       new->type = getContainerType ("0", NULL);
207     }
208   }else{
209     //otherwise, the name is its kind
210     switch (new->kind){
211       case INSTR_HOST: new->type = getContainerType ("HOST", new->father->type); break;
212       case INSTR_LINK: new->type = getContainerType ("LINK", new->father->type); break;
213       case INSTR_ROUTER: new->type = getContainerType ("ROUTER", new->father->type); break;
214       case INSTR_SMPI: new->type = getContainerType ("MPI", new->father->type); break;
215       default: xbt_die ("Congratulations, you have found a bug on newContainer function of instr_routing.c"); break;
216     }
217   }
218   new->children = xbt_dict_new();
219   if (new->father){
220     xbt_dict_set(new->father->children, new->name, new, NULL);
221     pajeCreateContainer (SIMIX_get_clock(), new->id, new->type->id, new->father->id, new->name);
222   }
223
224   //register hosts, routers, links containers
225   if (new->kind == INSTR_HOST || new->kind == INSTR_LINK || new->kind == INSTR_ROUTER) {
226     xbt_dict_set (allContainers, new->name, new, NULL);
227   }
228
229   //register the host container types
230   if (new->kind == INSTR_HOST){
231     xbt_dynar_push_as (allHostTypes, type_t, new->type);
232   }
233
234   //register the link container types
235   if (new->kind == INSTR_LINK){
236     xbt_dynar_push_as(allLinkTypes, type_t, new->type);
237   }
238   return new;
239 }
240
241 static container_t recursiveGetContainer (const char *name, container_t root)
242 {
243   if (strcmp (root->name, name) == 0) return root;
244
245   xbt_dict_cursor_t cursor = NULL;
246   container_t child;
247   char *child_name;
248   xbt_dict_foreach(root->children, cursor, child_name, child) {
249     container_t ret = recursiveGetContainer(name, child);
250     if (ret) return ret;
251   }
252   return NULL;
253 }
254
255 container_t getContainer (const char *name)
256 {
257   return recursiveGetContainer(name, rootContainer);
258 }
259
260 static type_t recursiveGetType (const char *name, type_t root)
261 {
262   if (strcmp (root->name, name) == 0) return root;
263
264   xbt_dict_cursor_t cursor = NULL;
265   type_t child;
266   char *child_name;
267   xbt_dict_foreach(root->children, cursor, child_name, child) {
268     type_t ret = recursiveGetType(name, child);
269     if (ret) return ret;
270   }
271   return NULL;
272 }
273
274 type_t getType (const char *name)
275 {
276   return recursiveGetType (name, rootType);
277 }
278
279 void destroyContainer (container_t container)
280 {
281   //remove me from my father
282   if (container->father){
283     xbt_dict_remove(container->father->children, container->name);
284   }
285
286   //trace my destruction
287   pajeDestroyContainer(SIMIX_get_clock(), container->type->id, container->id);
288
289   //free
290   xbt_free (container->name);
291   xbt_free (container->id);
292   xbt_free (container->children);
293   xbt_free (container);
294   container = NULL;
295 }
296
297 static container_t findChild (container_t root, container_t a1)
298 {
299   if (root == a1) return root;
300
301   xbt_dict_cursor_t cursor = NULL;
302   container_t child;
303   char *child_name;
304   xbt_dict_foreach(root->children, cursor, child_name, child) {
305     if (findChild (child, a1)) return child;
306   }
307   return NULL;
308 }
309
310 static container_t findCommonFather (container_t root, container_t a1, container_t a2)
311 {
312   if (a1->father == a2->father) return a1->father;
313
314   xbt_dict_cursor_t cursor = NULL;
315   container_t child;
316   char *child_name;
317   container_t a1_try = NULL;
318   container_t a2_try = NULL;
319   xbt_dict_foreach(root->children, cursor, child_name, child) {
320     a1_try = findChild (child, a1);
321     a2_try = findChild (child, a2);
322     if (a1_try && a2_try) return child;
323   }
324   return NULL;
325 }
326
327 static void linkContainers (const char *a1, const char *a2)
328 {
329   //ignore loopback
330   if (strcmp (a1, "__loopback__") == 0 || strcmp (a2, "__loopback__") == 0)
331     return;
332
333   container_t a1_container = ((container_t)xbt_dict_get (allContainers, a1));
334   type_t a1_type = a1_container->type;
335
336   container_t a2_container = ((container_t)xbt_dict_get (allContainers, a2));
337   type_t a2_type = a2_container->type;
338
339   container_t container = findCommonFather (rootContainer, a1_container, a2_container);
340   xbt_assert0 (container != NULL, "common father not found");
341
342   //declare type
343   char link_typename[INSTR_DEFAULT_STR_SIZE];
344   snprintf (link_typename, INSTR_DEFAULT_STR_SIZE, "%s-%s", a1_type->name, a2_type->name);
345   type_t link_type = getLinkType (link_typename, container->type, a1_type, a2_type);
346
347   //create the link
348   static long long counter = 0;
349   char key[INSTR_DEFAULT_STR_SIZE];
350   snprintf (key, INSTR_DEFAULT_STR_SIZE, "%lld", counter++);
351   pajeStartLink(SIMIX_get_clock(), link_type->id, container->id, "G", a1_container->id, key);
352   pajeEndLink(SIMIX_get_clock(), link_type->id, container->id, "G", a2_container->id, key);
353 }
354
355 static void recursiveGraphExtraction (container_t container)
356 {
357   if (xbt_dict_length(container->children)){
358     xbt_dict_cursor_t cursor = NULL;
359     container_t child;
360     char *child_name;
361     //bottom-up recursion
362     xbt_dict_foreach(container->children, cursor, child_name, child) {
363       recursiveGraphExtraction (child);
364     }
365
366     //let's get routes
367     xbt_dict_cursor_t cursor1 = NULL, cursor2 = NULL;
368     container_t child1, child2;
369     const char *child_name1, *child_name2;
370
371     xbt_dict_t filter = xbt_dict_new ();
372
373     xbt_dict_foreach(container->children, cursor1, child_name1, child1) {
374       xbt_dict_foreach(container->children, cursor2, child_name2, child2) {
375         //check if we already register this pair (we only need one direction)
376         char aux1[INSTR_DEFAULT_STR_SIZE], aux2[INSTR_DEFAULT_STR_SIZE];
377         snprintf (aux1, INSTR_DEFAULT_STR_SIZE, "%s%s", child_name1, child_name2);
378         snprintf (aux2, INSTR_DEFAULT_STR_SIZE, "%s%s", child_name2, child_name1);
379         if (xbt_dict_get_or_null (filter, aux1)) continue;
380         if (xbt_dict_get_or_null (filter, aux2)) continue;
381
382         //ok, not found, register it
383         xbt_dict_set (filter, aux1, xbt_strdup ("1"), xbt_free);
384         xbt_dict_set (filter, aux2, xbt_strdup ("1"), xbt_free);
385
386         if ((child1->kind == INSTR_HOST || child1->kind == INSTR_ROUTER) &&
387             (child2->kind == INSTR_HOST  || child2->kind == INSTR_ROUTER)){
388
389           //getting route
390           xbt_dynar_t route;
391           xbt_ex_t exception;
392           TRY {
393             route = global_routing->get_route (child_name1, child_name2);
394           }CATCH(exception) {
395             //no route between them, that's possible
396             continue;
397           }
398
399           //link the route members
400           unsigned int cpt;
401           void *link;
402           char *previous_entity_name = (char*)child_name1;
403           xbt_dynar_foreach (route, cpt, link) {
404             char *link_name = ((link_CM02_t)link)->lmm_resource.generic_resource.name;
405             linkContainers (previous_entity_name, link_name);
406             previous_entity_name = link_name;
407           }
408           linkContainers (previous_entity_name, child_name2);
409         }else if (child1->kind == INSTR_AS &&
410                   child2->kind == INSTR_AS &&
411                   strcmp(child_name1, child_name2) != 0){
412
413           //getting route
414           routing_component_t root = global_routing->root;
415           route_extended_t route;
416           xbt_ex_t exception;
417           TRY {
418             route = root->get_route (root, child_name1, child_name2);
419           }CATCH(exception) {
420             //no route between them, that's possible
421             continue;
422           }
423           xbt_assert2(route!=NULL,
424               "there is no ASroute between %s and %s", child_name1, child_name2);
425           unsigned int cpt;
426           void *link;
427           char *previous_entity_name = route->src_gateway;
428           xbt_dynar_foreach (route->generic_route.link_list, cpt, link) {
429             char *link_name = ((link_CM02_t)link)->lmm_resource.generic_resource.name;
430             linkContainers (previous_entity_name, link_name);
431             previous_entity_name = link_name;
432           }
433           linkContainers (previous_entity_name, route->dst_gateway);
434         }
435       }
436     }
437     xbt_dict_free(&filter);
438   }
439 }
440
441 /*
442  * Callbacks
443  */
444 static void instr_routing_parse_start_AS ()
445 {
446   if (rootContainer == NULL){
447     currentContainer = xbt_dynar_new (sizeof(s_container_t), NULL);
448     allContainers = xbt_dict_new ();
449     allLinkTypes = xbt_dynar_new (sizeof(s_type_t), NULL);
450     allHostTypes = xbt_dynar_new (sizeof(s_type_t), NULL);
451
452     rootContainer = newContainer ("0", INSTR_AS, NULL);
453     xbt_dynar_push (currentContainer, rootContainer);
454
455     if (TRACE_smpi_is_enabled()) {
456       if (!TRACE_smpi_is_grouped()){
457         container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
458         type_t mpi = getContainerType("MPI", father->type);
459         getStateType ("MPI_STATE", mpi);
460         getLinkType ("MPI_LINK", rootType, mpi, mpi);
461       }
462     }
463   }
464   container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
465   container_t new = newContainer (A_surfxml_AS_id, INSTR_AS, father);
466
467   //push
468   xbt_dynar_push (currentContainer, new);
469 }
470
471 static void instr_routing_parse_end_AS ()
472 {
473   xbt_dynar_pop_ptr (currentContainer);
474 }
475
476 static void instr_routing_parse_start_link ()
477 {
478   container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
479   container_t new = newContainer (A_surfxml_link_id, INSTR_LINK, father);
480
481   type_t bandwidth = getVariableType ("bandwidth", NULL, new->type);
482   type_t latency = getVariableType ("latency", NULL, new->type);
483   pajeSetVariable (0, bandwidth->id, new->id, A_surfxml_link_bandwidth);
484   pajeSetVariable (0, latency->id, new->id, A_surfxml_link_latency);
485   if (TRACE_uncategorized()){
486     getVariableType ("bandwidth_used", "0.5 0.5 0.5", new->type);
487   }
488 }
489
490 static void instr_routing_parse_end_link ()
491 {
492 }
493
494 static void instr_routing_parse_start_host ()
495 {
496   container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
497   container_t new = newContainer (A_surfxml_host_id, INSTR_HOST, father);
498
499   type_t power = getVariableType ("power", NULL, new->type);
500   pajeSetVariable (0, power->id, new->id, A_surfxml_host_power);
501   if (TRACE_uncategorized()){
502     getVariableType ("power_used", "0.5 0.5 0.5", new->type);
503   }
504
505   if (TRACE_smpi_is_enabled()) {
506     if (TRACE_smpi_is_grouped()){
507       type_t mpi = getContainerType("MPI", new->type);
508       getStateType ("MPI_STATE", mpi);
509       getLinkType ("MPI_LINK", rootType, mpi, mpi);
510     }
511   }
512 }
513
514 static void instr_routing_parse_end_host ()
515 {
516 }
517
518 static void instr_routing_parse_start_router ()
519 {
520   container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
521   newContainer (A_surfxml_router_id, INSTR_ROUTER, father);
522 }
523
524 static void instr_routing_parse_end_router ()
525 {
526 }
527
528 static void instr_routing_parse_end_platform ()
529 {
530   currentContainer = NULL;
531   recursiveGraphExtraction (rootContainer);
532   platform_created = 1;
533 }
534
535 /*
536  * Support functions
537  */
538 int instr_link_is_traced (const char *name)
539 {
540   if (((container_t)xbt_dict_get_or_null (allContainers, name))){
541     return 1;
542   } else {
543     return 0;
544   }
545 }
546
547 char *instr_variable_type (const char *name, const char *resource)
548 {
549   container_t container = (container_t)xbt_dict_get (allContainers, resource);
550   xbt_dict_cursor_t cursor = NULL;
551   type_t type;
552   char *type_name;
553   xbt_dict_foreach(container->type->children, cursor, type_name, type) {
554     if (strcmp (name, type->name) == 0) return type->id;
555   }
556   return NULL;
557 }
558
559 char *instr_resource_type (const char *resource_name)
560 {
561   return ((container_t)xbt_dict_get_or_null (allContainers, resource_name))->id;
562 }
563
564 static void recursiveDestroyContainer (container_t container)
565 {
566   xbt_dict_cursor_t cursor = NULL;
567   container_t child;
568   char *child_name;
569   xbt_dict_foreach(container->children, cursor, child_name, child) {
570     recursiveDestroyContainer (child);
571   }
572   destroyContainer (container);
573 }
574
575 static void recursiveDestroyType (type_t type)
576 {
577   xbt_dict_cursor_t cursor = NULL;
578   type_t child;
579   char *child_name;
580   xbt_dict_foreach(type->children, cursor, child_name, child) {
581     recursiveDestroyType (child);
582   }
583   xbt_free (type->name);
584   xbt_free (type->id);
585   xbt_free (type->children);
586   xbt_free (type);
587   type = NULL;
588 }
589
590 void instr_destroy_platform ()
591 {
592   if (rootContainer) recursiveDestroyContainer (rootContainer);
593   if (rootType) recursiveDestroyType (rootType);
594 }
595
596 /*
597  * user categories support
598  */
599 static void recursiveNewUserVariableType (const char *new_typename, const char *color, type_t root)
600 {
601   if (!strcmp (root->name, "HOST") || !strcmp (root->name, "LINK")){
602     getVariableType(new_typename, color, root);
603   }
604   xbt_dict_cursor_t cursor = NULL;
605   type_t child_type;
606   char *name;
607   xbt_dict_foreach(root->children, cursor, name, child_type) {
608     recursiveNewUserVariableType (new_typename, color, child_type);
609   }
610 }
611
612 void instr_new_user_variable_type (const char *new_typename, const char *color)
613 {
614   recursiveNewUserVariableType (new_typename, color, rootType);
615 }
616
617 static void recursiveNewUserLinkVariableType (const char *new_typename, const char *color, type_t root)
618 {
619   if (!strcmp (root->name, "LINK")){
620     getVariableType(new_typename, color, root);
621   }
622   xbt_dict_cursor_t cursor = NULL;
623   type_t child_type;
624   char *name;
625   xbt_dict_foreach(root->children, cursor, name, child_type) {
626     recursiveNewUserLinkVariableType (new_typename, color, child_type);
627   }
628 }
629
630 void instr_new_user_link_variable_type  (const char *new_typename, const char *color)
631 {
632   recursiveNewUserLinkVariableType (new_typename, color, rootType);
633 }
634
635
636 static void recursiveNewUserHostVariableType (const char *new_typename, const char *color, type_t root)
637 {
638   if (!strcmp (root->name, "HOST")){
639     getVariableType(new_typename, color, root);
640   }
641   xbt_dict_cursor_t cursor = NULL;
642   type_t child_type;
643   char *name;
644   xbt_dict_foreach(root->children, cursor, name, child_type) {
645     recursiveNewUserHostVariableType (new_typename, color, child_type);
646   }
647 }
648
649 void instr_new_user_host_variable_type  (const char *new_typename, const char *color)
650 {
651   recursiveNewUserHostVariableType (new_typename, color, rootType);
652 }
653
654 int instr_platform_traced ()
655 {
656   return platform_created;
657 }
658
659 #endif /* HAVE_TRACING */
660