Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] stop tracing process if user sets its category to NULL
[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       case INSTR_MSG_PROCESS: new->type = getContainerType ("MSG_PROCESS", new->father->type); break;
216       default: xbt_die ("Congratulations, you have found a bug on newContainer function of instr_routing.c"); break;
217     }
218   }
219   new->children = xbt_dict_new();
220   if (new->father){
221     xbt_dict_set(new->father->children, new->name, new, NULL);
222     pajeCreateContainer (SIMIX_get_clock(), new->id, new->type->id, new->father->id, new->name);
223   }
224
225   //register hosts, routers, links containers
226   if (new->kind == INSTR_HOST || new->kind == INSTR_LINK || new->kind == INSTR_ROUTER) {
227     xbt_dict_set (allContainers, new->name, new, NULL);
228   }
229
230   //register the host container types
231   if (new->kind == INSTR_HOST){
232     xbt_dynar_push_as (allHostTypes, type_t, new->type);
233   }
234
235   //register the link container types
236   if (new->kind == INSTR_LINK){
237     xbt_dynar_push_as(allLinkTypes, type_t, new->type);
238   }
239   return new;
240 }
241
242 static container_t recursiveGetContainer (const char *name, container_t root)
243 {
244   if (strcmp (root->name, name) == 0) return root;
245
246   xbt_dict_cursor_t cursor = NULL;
247   container_t child;
248   char *child_name;
249   xbt_dict_foreach(root->children, cursor, child_name, child) {
250     container_t ret = recursiveGetContainer(name, child);
251     if (ret) return ret;
252   }
253   return NULL;
254 }
255
256 container_t getContainer (const char *name)
257 {
258   return recursiveGetContainer(name, rootContainer);
259 }
260
261 static type_t recursiveGetType (const char *name, type_t root)
262 {
263   if (strcmp (root->name, name) == 0) return root;
264
265   xbt_dict_cursor_t cursor = NULL;
266   type_t child;
267   char *child_name;
268   xbt_dict_foreach(root->children, cursor, child_name, child) {
269     type_t ret = recursiveGetType(name, child);
270     if (ret) return ret;
271   }
272   return NULL;
273 }
274
275 type_t getType (const char *name)
276 {
277   return recursiveGetType (name, rootType);
278 }
279
280 void destroyContainer (container_t container)
281 {
282   //remove me from my father
283   if (container->father){
284     xbt_dict_remove(container->father->children, container->name);
285   }
286
287   //trace my destruction
288   pajeDestroyContainer(SIMIX_get_clock(), container->type->id, container->id);
289
290   //free
291   xbt_free (container->name);
292   xbt_free (container->id);
293   xbt_free (container->children);
294   xbt_free (container);
295   container = NULL;
296 }
297
298 static container_t findChild (container_t root, container_t a1)
299 {
300   if (root == a1) return root;
301
302   xbt_dict_cursor_t cursor = NULL;
303   container_t child;
304   char *child_name;
305   xbt_dict_foreach(root->children, cursor, child_name, child) {
306     if (findChild (child, a1)) return child;
307   }
308   return NULL;
309 }
310
311 static container_t findCommonFather (container_t root, container_t a1, container_t a2)
312 {
313   if (a1->father == a2->father) return a1->father;
314
315   xbt_dict_cursor_t cursor = NULL;
316   container_t child;
317   char *child_name;
318   container_t a1_try = NULL;
319   container_t a2_try = NULL;
320   xbt_dict_foreach(root->children, cursor, child_name, child) {
321     a1_try = findChild (child, a1);
322     a2_try = findChild (child, a2);
323     if (a1_try && a2_try) return child;
324   }
325   return NULL;
326 }
327
328 static void linkContainers (const char *a1, const char *a2)
329 {
330   //ignore loopback
331   if (strcmp (a1, "__loopback__") == 0 || strcmp (a2, "__loopback__") == 0)
332     return;
333
334   container_t a1_container = ((container_t)xbt_dict_get (allContainers, a1));
335   type_t a1_type = a1_container->type;
336
337   container_t a2_container = ((container_t)xbt_dict_get (allContainers, a2));
338   type_t a2_type = a2_container->type;
339
340   container_t container = findCommonFather (rootContainer, a1_container, a2_container);
341   xbt_assert0 (container != NULL, "common father not found");
342
343   //declare type
344   char link_typename[INSTR_DEFAULT_STR_SIZE];
345   snprintf (link_typename, INSTR_DEFAULT_STR_SIZE, "%s-%s", a1_type->name, a2_type->name);
346   type_t link_type = getLinkType (link_typename, container->type, a1_type, a2_type);
347
348   //create the link
349   static long long counter = 0;
350   char key[INSTR_DEFAULT_STR_SIZE];
351   snprintf (key, INSTR_DEFAULT_STR_SIZE, "%lld", counter++);
352   pajeStartLink(SIMIX_get_clock(), link_type->id, container->id, "G", a1_container->id, key);
353   pajeEndLink(SIMIX_get_clock(), link_type->id, container->id, "G", a2_container->id, key);
354 }
355
356 static void recursiveGraphExtraction (container_t container)
357 {
358   if (xbt_dict_length(container->children)){
359     xbt_dict_cursor_t cursor = NULL;
360     container_t child;
361     char *child_name;
362     //bottom-up recursion
363     xbt_dict_foreach(container->children, cursor, child_name, child) {
364       recursiveGraphExtraction (child);
365     }
366
367     //let's get routes
368     xbt_dict_cursor_t cursor1 = NULL, cursor2 = NULL;
369     container_t child1, child2;
370     const char *child_name1, *child_name2;
371
372     xbt_dict_t filter = xbt_dict_new ();
373
374     xbt_dict_foreach(container->children, cursor1, child_name1, child1) {
375       xbt_dict_foreach(container->children, cursor2, child_name2, child2) {
376         //check if we already register this pair (we only need one direction)
377         char aux1[INSTR_DEFAULT_STR_SIZE], aux2[INSTR_DEFAULT_STR_SIZE];
378         snprintf (aux1, INSTR_DEFAULT_STR_SIZE, "%s%s", child_name1, child_name2);
379         snprintf (aux2, INSTR_DEFAULT_STR_SIZE, "%s%s", child_name2, child_name1);
380         if (xbt_dict_get_or_null (filter, aux1)) continue;
381         if (xbt_dict_get_or_null (filter, aux2)) continue;
382
383         //ok, not found, register it
384         xbt_dict_set (filter, aux1, xbt_strdup ("1"), xbt_free);
385         xbt_dict_set (filter, aux2, xbt_strdup ("1"), xbt_free);
386
387         if ((child1->kind == INSTR_HOST || child1->kind == INSTR_ROUTER) &&
388             (child2->kind == INSTR_HOST  || child2->kind == INSTR_ROUTER)){
389
390           //getting route
391           xbt_dynar_t route;
392           xbt_ex_t exception;
393           TRY {
394             route = global_routing->get_route (child_name1, child_name2);
395           }CATCH(exception) {
396             //no route between them, that's possible
397             continue;
398           }
399
400           //link the route members
401           unsigned int cpt;
402           void *link;
403           char *previous_entity_name = (char*)child_name1;
404           xbt_dynar_foreach (route, cpt, link) {
405             char *link_name = ((link_CM02_t)link)->lmm_resource.generic_resource.name;
406             linkContainers (previous_entity_name, link_name);
407             previous_entity_name = link_name;
408           }
409           linkContainers (previous_entity_name, child_name2);
410         }else if (child1->kind == INSTR_AS &&
411                   child2->kind == INSTR_AS &&
412                   strcmp(child_name1, child_name2) != 0){
413
414           //getting route
415           routing_component_t root = global_routing->root;
416           route_extended_t route;
417           xbt_ex_t exception;
418           TRY {
419             route = root->get_route (root, child_name1, child_name2);
420           }CATCH(exception) {
421             //no route between them, that's possible
422             continue;
423           }
424           xbt_assert2(route!=NULL,
425               "there is no ASroute between %s and %s", child_name1, child_name2);
426           unsigned int cpt;
427           void *link;
428           char *previous_entity_name = route->src_gateway;
429           xbt_dynar_foreach (route->generic_route.link_list, cpt, link) {
430             char *link_name = ((link_CM02_t)link)->lmm_resource.generic_resource.name;
431             linkContainers (previous_entity_name, link_name);
432             previous_entity_name = link_name;
433           }
434           linkContainers (previous_entity_name, route->dst_gateway);
435         }
436       }
437     }
438     xbt_dict_free(&filter);
439   }
440 }
441
442 /*
443  * Callbacks
444  */
445 static void instr_routing_parse_start_AS ()
446 {
447   if (rootContainer == NULL){
448     currentContainer = xbt_dynar_new (sizeof(s_container_t), NULL);
449     allContainers = xbt_dict_new ();
450     allLinkTypes = xbt_dynar_new (sizeof(s_type_t), NULL);
451     allHostTypes = xbt_dynar_new (sizeof(s_type_t), NULL);
452
453     rootContainer = newContainer ("0", INSTR_AS, NULL);
454     xbt_dynar_push (currentContainer, rootContainer);
455
456     if (TRACE_smpi_is_enabled()) {
457       if (!TRACE_smpi_is_grouped()){
458         container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
459         type_t mpi = getContainerType("MPI", father->type);
460         getStateType ("MPI_STATE", mpi);
461         getLinkType ("MPI_LINK", rootType, mpi, mpi);
462       }
463     }
464   }
465   container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
466   container_t new = newContainer (A_surfxml_AS_id, INSTR_AS, father);
467
468   //push
469   xbt_dynar_push (currentContainer, new);
470 }
471
472 static void instr_routing_parse_end_AS ()
473 {
474   xbt_dynar_pop_ptr (currentContainer);
475 }
476
477 static void instr_routing_parse_start_link ()
478 {
479   container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
480   container_t new = newContainer (A_surfxml_link_id, INSTR_LINK, father);
481
482   type_t bandwidth = getVariableType ("bandwidth", NULL, new->type);
483   type_t latency = getVariableType ("latency", NULL, new->type);
484   pajeSetVariable (0, bandwidth->id, new->id, A_surfxml_link_bandwidth);
485   pajeSetVariable (0, latency->id, new->id, A_surfxml_link_latency);
486   if (TRACE_uncategorized()){
487     getVariableType ("bandwidth_used", "0.5 0.5 0.5", new->type);
488   }
489 }
490
491 static void instr_routing_parse_end_link ()
492 {
493 }
494
495 static void instr_routing_parse_start_host ()
496 {
497   container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
498   container_t new = newContainer (A_surfxml_host_id, INSTR_HOST, father);
499
500   type_t power = getVariableType ("power", NULL, new->type);
501   pajeSetVariable (0, power->id, new->id, A_surfxml_host_power);
502   if (TRACE_uncategorized()){
503     getVariableType ("power_used", "0.5 0.5 0.5", new->type);
504   }
505
506   if (TRACE_smpi_is_enabled()) {
507     if (TRACE_smpi_is_grouped()){
508       type_t mpi = getContainerType("MPI", new->type);
509       getStateType ("MPI_STATE", mpi);
510       getLinkType ("MPI_LINK", rootType, mpi, mpi);
511     }
512   }
513
514   if (TRACE_msg_process_is_enabled()) {
515     getContainerType("MSG_PROCESS", new->type);
516   }
517 }
518
519 static void instr_routing_parse_end_host ()
520 {
521 }
522
523 static void instr_routing_parse_start_router ()
524 {
525   container_t father = xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1);
526   newContainer (A_surfxml_router_id, INSTR_ROUTER, father);
527 }
528
529 static void instr_routing_parse_end_router ()
530 {
531 }
532
533 static void instr_routing_parse_end_platform ()
534 {
535   currentContainer = NULL;
536   recursiveGraphExtraction (rootContainer);
537   platform_created = 1;
538 }
539
540 /*
541  * Support functions
542  */
543 int instr_link_is_traced (const char *name)
544 {
545   if (((container_t)xbt_dict_get_or_null (allContainers, name))){
546     return 1;
547   } else {
548     return 0;
549   }
550 }
551
552 char *instr_variable_type (const char *name, const char *resource)
553 {
554   container_t container = (container_t)xbt_dict_get (allContainers, resource);
555   xbt_dict_cursor_t cursor = NULL;
556   type_t type;
557   char *type_name;
558   xbt_dict_foreach(container->type->children, cursor, type_name, type) {
559     if (strcmp (name, type->name) == 0) return type->id;
560   }
561   return NULL;
562 }
563
564 char *instr_resource_type (const char *resource_name)
565 {
566   return ((container_t)xbt_dict_get_or_null (allContainers, resource_name))->id;
567 }
568
569 static void recursiveDestroyContainer (container_t container)
570 {
571   xbt_dict_cursor_t cursor = NULL;
572   container_t child;
573   char *child_name;
574   xbt_dict_foreach(container->children, cursor, child_name, child) {
575     recursiveDestroyContainer (child);
576   }
577   destroyContainer (container);
578 }
579
580 static void recursiveDestroyType (type_t type)
581 {
582   xbt_dict_cursor_t cursor = NULL;
583   type_t child;
584   char *child_name;
585   xbt_dict_foreach(type->children, cursor, child_name, child) {
586     recursiveDestroyType (child);
587   }
588   xbt_free (type->name);
589   xbt_free (type->id);
590   xbt_free (type->children);
591   xbt_free (type);
592   type = NULL;
593 }
594
595 void instr_destroy_platform ()
596 {
597   if (rootContainer) recursiveDestroyContainer (rootContainer);
598   if (rootType) recursiveDestroyType (rootType);
599 }
600
601 /*
602  * user categories support
603  */
604 static void recursiveNewUserVariableType (const char *new_typename, const char *color, type_t root)
605 {
606   if (!strcmp (root->name, "HOST") || !strcmp (root->name, "LINK")){
607     getVariableType(new_typename, color, root);
608   }
609   xbt_dict_cursor_t cursor = NULL;
610   type_t child_type;
611   char *name;
612   xbt_dict_foreach(root->children, cursor, name, child_type) {
613     recursiveNewUserVariableType (new_typename, color, child_type);
614   }
615 }
616
617 void instr_new_user_variable_type (const char *new_typename, const char *color)
618 {
619   recursiveNewUserVariableType (new_typename, color, rootType);
620 }
621
622 static void recursiveNewUserLinkVariableType (const char *new_typename, const char *color, type_t root)
623 {
624   if (!strcmp (root->name, "LINK")){
625     getVariableType(new_typename, color, root);
626   }
627   xbt_dict_cursor_t cursor = NULL;
628   type_t child_type;
629   char *name;
630   xbt_dict_foreach(root->children, cursor, name, child_type) {
631     recursiveNewUserLinkVariableType (new_typename, color, child_type);
632   }
633 }
634
635 void instr_new_user_link_variable_type  (const char *new_typename, const char *color)
636 {
637   recursiveNewUserLinkVariableType (new_typename, color, rootType);
638 }
639
640
641 static void recursiveNewUserHostVariableType (const char *new_typename, const char *color, type_t root)
642 {
643   if (!strcmp (root->name, "HOST")){
644     getVariableType(new_typename, color, root);
645   }
646   xbt_dict_cursor_t cursor = NULL;
647   type_t child_type;
648   char *name;
649   xbt_dict_foreach(root->children, cursor, name, child_type) {
650     recursiveNewUserHostVariableType (new_typename, color, child_type);
651   }
652 }
653
654 void instr_new_user_host_variable_type  (const char *new_typename, const char *color)
655 {
656   recursiveNewUserHostVariableType (new_typename, color, rootType);
657 }
658
659 int instr_platform_traced ()
660 {
661   return platform_created;
662 }
663
664 #endif /* HAVE_TRACING */
665