Home | History | Annotate | Download | only in auxprogs

Lines Matching refs:dst

29 # The dependence graph is a set of src-->dst pairs, stored in a double-hash:
31 # hash(src, hash(dst, dst_realname))
33 # Each of 'src' and 'dst' are node names. 'src' is always a module name,
36 # in its node names, when 'dst' represents a header file it's a transformed
39 # "<sys/mman.h>". We use 'dst' for the node name in the graph, but label it
41 # 'dst_realname' when it would be the same as 'dst'.)
234 while (my ($dst, $dst_realname) = each %$dst_hash) {
240 if (not defined $printed_realnames{$dst}) {
241 print(" $dst [label=\"$dst_realname\"]\n");
242 $printed_realnames{$dst} = 1;
246 # Print the src-->dst edge.
247 print(" $src -> $dst\n");