Home | History | Annotate | Download | only in gas

Lines Matching refs:map

41    -fdebug-prefix-map and must be of the form OLD=NEW.  */
46 debug_prefix_map *map;
53 as_fatal (_("invalid argument '%s' to -fdebug-prefix-map"), arg);
56 map = XNEW (debug_prefix_map);
58 map->old_prefix = o;
59 map->old_len = p - arg;
60 o[map->old_len] = 0;
62 map->new_prefix = xstrdup (p);
63 map->new_len = strlen (p);
64 map->next = debug_prefix_maps;
65 debug_prefix_maps = map;
75 debug_prefix_map *map;
77 for (map = debug_prefix_maps; map; map = map->next)
78 if (filename_ncmp (filename, map->old_prefix, map->old_len) == 0)
80 const char *name = filename + map->old_len;
81 return concat (map->new_prefix, name, (const char *) NULL);