diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/Makefile.build | 7 | ||||
| -rw-r--r-- | scripts/basic/.gitignore | 2 | ||||
| -rw-r--r-- | scripts/bootgraph.pl | 24 | ||||
| -rwxr-xr-x | scripts/checkpatch.pl | 2 | ||||
| -rw-r--r-- | scripts/mod/modpost.c | 9 | ||||
| -rwxr-xr-x | scripts/recordmcount.pl | 395 | 
6 files changed, 426 insertions, 13 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 277cfe0b7100..5ed4cbf1e0e1 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build  | |||
| @@ -198,10 +198,17 @@ cmd_modversions = \ | |||
| 198 | fi; | 198 | fi; | 
| 199 | endif | 199 | endif | 
| 200 | 200 | ||
| 201 | ifdef CONFIG_FTRACE_MCOUNT_RECORD | ||
| 202 | cmd_record_mcount = perl $(srctree)/scripts/recordmcount.pl \ | ||
| 203 | "$(ARCH)" "$(OBJDUMP)" "$(OBJCOPY)" "$(CC)" "$(LD)" "$(NM)" "$(RM)" \ | ||
| 204 | "$(MV)" "$(@)"; | ||
| 205 | endif | ||
| 206 | |||
| 201 | define rule_cc_o_c | 207 | define rule_cc_o_c | 
| 202 | $(call echo-cmd,checksrc) $(cmd_checksrc) \ | 208 | $(call echo-cmd,checksrc) $(cmd_checksrc) \ | 
| 203 | $(call echo-cmd,cc_o_c) $(cmd_cc_o_c); \ | 209 | $(call echo-cmd,cc_o_c) $(cmd_cc_o_c); \ | 
| 204 | $(cmd_modversions) \ | 210 | $(cmd_modversions) \ | 
| 211 | $(cmd_record_mcount) \ | ||
| 205 | scripts/basic/fixdep $(depfile) $@ '$(call make-cmd,cc_o_c)' > \ | 212 | scripts/basic/fixdep $(depfile) $@ '$(call make-cmd,cc_o_c)' > \ | 
| 206 | $(dot-target).tmp; \ | 213 | $(dot-target).tmp; \ | 
| 207 | rm -f $(depfile); \ | 214 | rm -f $(depfile); \ | 
diff --git a/scripts/basic/.gitignore b/scripts/basic/.gitignore index 7304e19782c7..bf8b199ec598 100644 --- a/scripts/basic/.gitignore +++ b/scripts/basic/.gitignore  | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | hash | ||
| 1 | fixdep | 2 | fixdep | 
| 2 | split-include | ||
| 3 | docproc | 3 | docproc | 
diff --git a/scripts/bootgraph.pl b/scripts/bootgraph.pl index 2243353fe55d..5e7316e5aa39 100644 --- a/scripts/bootgraph.pl +++ b/scripts/bootgraph.pl  | |||
| @@ -37,13 +37,13 @@ | |||
| 37 | # dmesg | perl scripts/bootgraph.pl > output.svg | 37 | # dmesg | perl scripts/bootgraph.pl > output.svg | 
| 38 | # | 38 | # | 
| 39 | 39 | ||
| 40 | my @rows; | 40 | my %start, %end; | 
| 41 | my %start, %end, %row; | ||
| 42 | my $done = 0; | 41 | my $done = 0; | 
| 43 | my $rowcount = 0; | ||
| 44 | my $maxtime = 0; | 42 | my $maxtime = 0; | 
| 45 | my $firsttime = 100; | 43 | my $firsttime = 100; | 
| 46 | my $count = 0; | 44 | my $count = 0; | 
| 45 | my %pids; | ||
| 46 | |||
| 47 | while (<>) { | 47 | while (<>) { | 
| 48 | my $line = $_; | 48 | my $line = $_; | 
| 49 | if ($line =~ /([0-9\.]+)\] calling ([a-zA-Z0-9\_]+)\+/) { | 49 | if ($line =~ /([0-9\.]+)\] calling ([a-zA-Z0-9\_]+)\+/) { | 
| @@ -54,14 +54,8 @@ while (<>) { | |||
| 54 | $firsttime = $1; | 54 | $firsttime = $1; | 
| 55 | } | 55 | } | 
| 56 | } | 56 | } | 
| 57 | $row{$func} = 1; | ||
| 58 | if ($line =~ /\@ ([0-9]+)/) { | 57 | if ($line =~ /\@ ([0-9]+)/) { | 
| 59 | my $pid = $1; | 58 | $pids{$func} = $1; | 
| 60 | if (!defined($rows[$pid])) { | ||
| 61 | $rowcount = $rowcount + 1; | ||
| 62 | $rows[$pid] = $rowcount; | ||
| 63 | } | ||
| 64 | $row{$func} = $rows[$pid]; | ||
| 65 | } | 59 | } | 
| 66 | $count = $count + 1; | 60 | $count = $count + 1; | 
| 67 | } | 61 | } | 
| @@ -109,17 +103,25 @@ $styles[11] = "fill:rgb(128,255,255);fill-opacity:0.5;stroke-width:1;stroke:rgb( | |||
| 109 | my $mult = 950.0 / ($maxtime - $firsttime); | 103 | my $mult = 950.0 / ($maxtime - $firsttime); | 
| 110 | my $threshold = ($maxtime - $firsttime) / 60.0; | 104 | my $threshold = ($maxtime - $firsttime) / 60.0; | 
| 111 | my $stylecounter = 0; | 105 | my $stylecounter = 0; | 
| 106 | my %rows; | ||
| 107 | my $rowscount = 1; | ||
| 112 | while (($key,$value) = each %start) { | 108 | while (($key,$value) = each %start) { | 
| 113 | my $duration = $end{$key} - $start{$key}; | 109 | my $duration = $end{$key} - $start{$key}; | 
| 114 | 110 | ||
| 115 | if ($duration >= $threshold) { | 111 | if ($duration >= $threshold) { | 
| 116 | my $s, $s2, $e, $y; | 112 | my $s, $s2, $e, $y; | 
| 113 | $pid = $pids{$key}; | ||
| 114 | |||
| 115 | if (!defined($rows{$pid})) { | ||
| 116 | $rows{$pid} = $rowscount; | ||
| 117 | $rowscount = $rowscount + 1; | ||
| 118 | } | ||
| 117 | $s = ($value - $firsttime) * $mult; | 119 | $s = ($value - $firsttime) * $mult; | 
| 118 | $s2 = $s + 6; | 120 | $s2 = $s + 6; | 
| 119 | $e = ($end{$key} - $firsttime) * $mult; | 121 | $e = ($end{$key} - $firsttime) * $mult; | 
| 120 | $w = $e - $s; | 122 | $w = $e - $s; | 
| 121 | 123 | ||
| 122 | $y = $row{$key} * 150; | 124 | $y = $rows{$pid} * 150; | 
| 123 | $y2 = $y + 4; | 125 | $y2 = $y + 4; | 
| 124 | 126 | ||
| 125 | $style = $styles[$stylecounter]; | 127 | $style = $styles[$stylecounter]; | 
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index e30bac141b21..f88bb3e21cda 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl  | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | #!/usr/bin/perl -w | 1 | #!/usr/bin/perl -w | 
| 2 | # (c) 2001, Dave Jones. <davej@codemonkey.org.uk> (the file handling bit) | 2 | # (c) 2001, Dave Jones. <davej@redhat.com> (the file handling bit) | 
| 3 | # (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit) | 3 | # (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit) | 
| 4 | # (c) 2007, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite, etc) | 4 | # (c) 2007, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite, etc) | 
| 5 | # Licensed under the terms of the GNU GPL License version 2 | 5 | # Licensed under the terms of the GNU GPL License version 2 | 
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 8e0de6a5e18a..88921611b22e 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c  | |||
| @@ -1726,6 +1726,14 @@ static void add_header(struct buffer *b, struct module *mod) | |||
| 1726 | buf_printf(b, "};\n"); | 1726 | buf_printf(b, "};\n"); | 
| 1727 | } | 1727 | } | 
| 1728 | 1728 | ||
| 1729 | void add_staging_flag(struct buffer *b, const char *name) | ||
| 1730 | { | ||
| 1731 | static const char *staging_dir = "drivers/staging"; | ||
| 1732 | |||
| 1733 | if (strncmp(staging_dir, name, strlen(staging_dir)) == 0) | ||
| 1734 | buf_printf(b, "\nMODULE_INFO(staging, \"Y\");\n"); | ||
| 1735 | } | ||
| 1736 | |||
| 1729 | /** | 1737 | /** | 
| 1730 | * Record CRCs for unresolved symbols | 1738 | * Record CRCs for unresolved symbols | 
| 1731 | **/ | 1739 | **/ | 
| @@ -2135,6 +2143,7 @@ int main(int argc, char **argv) | |||
| 2135 | buf.pos = 0; | 2143 | buf.pos = 0; | 
| 2136 | 2144 | ||
| 2137 | add_header(&buf, mod); | 2145 | add_header(&buf, mod); | 
| 2146 | add_staging_flag(&buf, mod->name); | ||
| 2138 | err |= add_versions(&buf, mod); | 2147 | err |= add_versions(&buf, mod); | 
| 2139 | add_depends(&buf, mod, modules); | 2148 | add_depends(&buf, mod, modules); | 
| 2140 | add_moddevtable(&buf, mod); | 2149 | add_moddevtable(&buf, mod); | 
diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl new file mode 100755 index 000000000000..f56d760bd589 --- /dev/null +++ b/scripts/recordmcount.pl  | |||
| @@ -0,0 +1,395 @@ | |||
| 1 | #!/usr/bin/perl -w | ||
| 2 | # (c) 2008, Steven Rostedt <srostedt@redhat.com> | ||
| 3 | # Licensed under the terms of the GNU GPL License version 2 | ||
| 4 | # | ||
| 5 | # recordmcount.pl - makes a section called __mcount_loc that holds | ||
| 6 | # all the offsets to the calls to mcount. | ||
| 7 | # | ||
| 8 | # | ||
| 9 | # What we want to end up with is a section in vmlinux called | ||
| 10 | # __mcount_loc that contains a list of pointers to all the | ||
| 11 | # call sites in the kernel that call mcount. Later on boot up, the kernel | ||
| 12 | # will read this list, save the locations and turn them into nops. | ||
| 13 | # When tracing or profiling is later enabled, these locations will then | ||
| 14 | # be converted back to pointers to some function. | ||
| 15 | # | ||
| 16 | # This is no easy feat. This script is called just after the original | ||
| 17 | # object is compiled and before it is linked. | ||
| 18 | # | ||
| 19 | # The references to the call sites are offsets from the section of text | ||
| 20 | # that the call site is in. Hence, all functions in a section that | ||
| 21 | # has a call site to mcount, will have the offset from the beginning of | ||
| 22 | # the section and not the beginning of the function. | ||
| 23 | # | ||
| 24 | # The trick is to find a way to record the beginning of the section. | ||
| 25 | # The way we do this is to look at the first function in the section | ||
| 26 | # which will also be the location of that section after final link. | ||
| 27 | # e.g. | ||
| 28 | # | ||
| 29 | # .section ".text.sched" | ||
| 30 | # .globl my_func | ||
| 31 | # my_func: | ||
| 32 | # [...] | ||
| 33 | # call mcount (offset: 0x5) | ||
| 34 | # [...] | ||
| 35 | # ret | ||
| 36 | # other_func: | ||
| 37 | # [...] | ||
| 38 | # call mcount (offset: 0x1b) | ||
| 39 | # [...] | ||
| 40 | # | ||
| 41 | # Both relocation offsets for the mcounts in the above example will be | ||
| 42 | # offset from .text.sched. If we make another file called tmp.s with: | ||
| 43 | # | ||
| 44 | # .section __mcount_loc | ||
| 45 | # .quad my_func + 0x5 | ||
| 46 | # .quad my_func + 0x1b | ||
| 47 | # | ||
| 48 | # We can then compile this tmp.s into tmp.o, and link it to the original | ||
| 49 | # object. | ||
| 50 | # | ||
| 51 | # But this gets hard if my_func is not globl (a static function). | ||
| 52 | # In such a case we have: | ||
| 53 | # | ||
| 54 | # .section ".text.sched" | ||
| 55 | # my_func: | ||
| 56 | # [...] | ||
| 57 | # call mcount (offset: 0x5) | ||
| 58 | # [...] | ||
| 59 | # ret | ||
| 60 | # .globl my_func | ||
| 61 | # other_func: | ||
| 62 | # [...] | ||
| 63 | # call mcount (offset: 0x1b) | ||
| 64 | # [...] | ||
| 65 | # | ||
| 66 | # If we make the tmp.s the same as above, when we link together with | ||
| 67 | # the original object, we will end up with two symbols for my_func: | ||
| 68 | # one local, one global. After final compile, we will end up with | ||
| 69 | # an undefined reference to my_func. | ||
| 70 | # | ||
| 71 | # Since local objects can reference local variables, we need to find | ||
| 72 | # a way to make tmp.o reference the local objects of the original object | ||
| 73 | # file after it is linked together. To do this, we convert the my_func | ||
| 74 | # into a global symbol before linking tmp.o. Then after we link tmp.o | ||
| 75 | # we will only have a single symbol for my_func that is global. | ||
| 76 | # We can convert my_func back into a local symbol and we are done. | ||
| 77 | # | ||
| 78 | # Here are the steps we take: | ||
| 79 | # | ||
| 80 | # 1) Record all the local symbols by using 'nm' | ||
| 81 | # 2) Use objdump to find all the call site offsets and sections for | ||
| 82 | # mcount. | ||
| 83 | # 3) Compile the list into its own object. | ||
| 84 | # 4) Do we have to deal with local functions? If not, go to step 8. | ||
| 85 | # 5) Make an object that converts these local functions to global symbols | ||
| 86 | # with objcopy. | ||
| 87 | # 6) Link together this new object with the list object. | ||
| 88 | # 7) Convert the local functions back to local symbols and rename | ||
| 89 | # the result as the original object. | ||
| 90 | # End. | ||
| 91 | # 8) Link the object with the list object. | ||
| 92 | # 9) Move the result back to the original object. | ||
| 93 | # End. | ||
| 94 | # | ||
| 95 | |||
| 96 | use strict; | ||
| 97 | |||
| 98 | my $P = $0; | ||
| 99 | $P =~ s@.*/@@g; | ||
| 100 | |||
| 101 | my $V = '0.1'; | ||
| 102 | |||
| 103 | if ($#ARGV < 6) { | ||
| 104 | print "usage: $P arch objdump objcopy cc ld nm rm mv inputfile\n"; | ||
| 105 | print "version: $V\n"; | ||
| 106 | exit(1); | ||
| 107 | } | ||
| 108 | |||
| 109 | my ($arch, $objdump, $objcopy, $cc, $ld, $nm, $rm, $mv, $inputfile) = @ARGV; | ||
| 110 | |||
| 111 | $objdump = "objdump" if ((length $objdump) == 0); | ||
| 112 | $objcopy = "objcopy" if ((length $objcopy) == 0); | ||
| 113 | $cc = "gcc" if ((length $cc) == 0); | ||
| 114 | $ld = "ld" if ((length $ld) == 0); | ||
| 115 | $nm = "nm" if ((length $nm) == 0); | ||
| 116 | $rm = "rm" if ((length $rm) == 0); | ||
| 117 | $mv = "mv" if ((length $mv) == 0); | ||
| 118 | |||
| 119 | #print STDERR "running: $P '$arch' '$objdump' '$objcopy' '$cc' '$ld' " . | ||
| 120 | # "'$nm' '$rm' '$mv' '$inputfile'\n"; | ||
| 121 | |||
| 122 | my %locals; # List of local (static) functions | ||
| 123 | my %weak; # List of weak functions | ||
| 124 | my %convert; # List of local functions used that needs conversion | ||
| 125 | |||
| 126 | my $type; | ||
| 127 | my $section_regex; # Find the start of a section | ||
| 128 | my $function_regex; # Find the name of a function | ||
| 129 | # (return offset and func name) | ||
| 130 | my $mcount_regex; # Find the call site to mcount (return offset) | ||
| 131 | |||
| 132 | if ($arch eq "x86_64") { | ||
| 133 | $section_regex = "Disassembly of section"; | ||
| 134 | $function_regex = "^([0-9a-fA-F]+)\\s+<(.*?)>:"; | ||
| 135 | $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\smcount([+-]0x[0-9a-zA-Z]+)?\$"; | ||
| 136 | $type = ".quad"; | ||
| 137 | |||
| 138 | # force flags for this arch | ||
| 139 | $ld .= " -m elf_x86_64"; | ||
| 140 | $objdump .= " -M x86-64"; | ||
| 141 | $objcopy .= " -O elf64-x86-64"; | ||
| 142 | $cc .= " -m64"; | ||
| 143 | |||
| 144 | } elsif ($arch eq "i386") { | ||
| 145 | $section_regex = "Disassembly of section"; | ||
| 146 | $function_regex = "^([0-9a-fA-F]+)\\s+<(.*?)>:"; | ||
| 147 | $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\smcount\$"; | ||
| 148 | $type = ".long"; | ||
| 149 | |||
| 150 | # force flags for this arch | ||
| 151 | $ld .= " -m elf_i386"; | ||
| 152 | $objdump .= " -M i386"; | ||
| 153 | $objcopy .= " -O elf32-i386"; | ||
| 154 | $cc .= " -m32"; | ||
| 155 | |||
| 156 | } else { | ||
| 157 | die "Arch $arch is not supported with CONFIG_FTRACE_MCOUNT_RECORD"; | ||
| 158 | } | ||
| 159 | |||
| 160 | my $text_found = 0; | ||
| 161 | my $read_function = 0; | ||
| 162 | my $opened = 0; | ||
| 163 | my $mcount_section = "__mcount_loc"; | ||
| 164 | |||
| 165 | my $dirname; | ||
| 166 | my $filename; | ||
| 167 | my $prefix; | ||
| 168 | my $ext; | ||
| 169 | |||
| 170 | if ($inputfile =~ m,^(.*)/([^/]*)$,) { | ||
| 171 | $dirname = $1; | ||
| 172 | $filename = $2; | ||
| 173 | } else { | ||
| 174 | $dirname = "."; | ||
| 175 | $filename = $inputfile; | ||
| 176 | } | ||
| 177 | |||
| 178 | if ($filename =~ m,^(.*)(\.\S),) { | ||
| 179 | $prefix = $1; | ||
| 180 | $ext = $2; | ||
| 181 | } else { | ||
| 182 | $prefix = $filename; | ||
| 183 | $ext = ""; | ||
| 184 | } | ||
| 185 | |||
| 186 | my $mcount_s = $dirname . "/.tmp_mc_" . $prefix . ".s"; | ||
| 187 | my $mcount_o = $dirname . "/.tmp_mc_" . $prefix . ".o"; | ||
| 188 | |||
| 189 | # | ||
| 190 | # --globalize-symbols came out in 2.17, we must test the version | ||
| 191 | # of objcopy, and if it is less than 2.17, then we can not | ||
| 192 | # record local functions. | ||
| 193 | my $use_locals = 01; | ||
| 194 | my $local_warn_once = 0; | ||
| 195 | my $found_version = 0; | ||
| 196 | |||
| 197 | open (IN, "$objcopy --version |") || die "error running $objcopy"; | ||
| 198 | while (<IN>) { | ||
| 199 | if (/objcopy.*\s(\d+)\.(\d+)/) { | ||
| 200 | my $major = $1; | ||
| 201 | my $minor = $2; | ||
| 202 | |||
| 203 | $found_version = 1; | ||
| 204 | if ($major < 2 || | ||
| 205 | ($major == 2 && $minor < 17)) { | ||
| 206 | $use_locals = 0; | ||
| 207 | } | ||
| 208 | last; | ||
| 209 | } | ||
| 210 | } | ||
| 211 | close (IN); | ||
| 212 | |||
| 213 | if (!$found_version) { | ||
| 214 | print STDERR "WARNING: could not find objcopy version.\n" . | ||
| 215 | "\tDisabling local function references.\n"; | ||
| 216 | } | ||
| 217 | |||
| 218 | |||
| 219 | # | ||
| 220 | # Step 1: find all the local (static functions) and weak symbols. | ||
| 221 | # 't' is local, 'w/W' is weak (we never use a weak function) | ||
| 222 | # | ||
| 223 | open (IN, "$nm $inputfile|") || die "error running $nm"; | ||
| 224 | while (<IN>) { | ||
| 225 | if (/^[0-9a-fA-F]+\s+t\s+(\S+)/) { | ||
| 226 | $locals{$1} = 1; | ||
| 227 | } elsif (/^[0-9a-fA-F]+\s+([wW])\s+(\S+)/) { | ||
| 228 | $weak{$2} = $1; | ||
| 229 | } | ||
| 230 | } | ||
| 231 | close(IN); | ||
| 232 | |||
| 233 | my @offsets; # Array of offsets of mcount callers | ||
| 234 | my $ref_func; # reference function to use for offsets | ||
| 235 | my $offset = 0; # offset of ref_func to section beginning | ||
| 236 | |||
| 237 | ## | ||
| 238 | # update_funcs - print out the current mcount callers | ||
| 239 | # | ||
| 240 | # Go through the list of offsets to callers and write them to | ||
| 241 | # the output file in a format that can be read by an assembler. | ||
| 242 | # | ||
| 243 | sub update_funcs | ||
| 244 | { | ||
| 245 | return if ($#offsets < 0); | ||
| 246 | |||
| 247 | defined($ref_func) || die "No function to reference"; | ||
| 248 | |||
| 249 | # A section only had a weak function, to represent it. | ||
| 250 | # Unfortunately, a weak function may be overwritten by another | ||
| 251 | # function of the same name, making all these offsets incorrect. | ||
| 252 | # To be safe, we simply print a warning and bail. | ||
| 253 | if (defined $weak{$ref_func}) { | ||
| 254 | print STDERR | ||
| 255 | "$inputfile: WARNING: referencing weak function" . | ||
| 256 | " $ref_func for mcount\n"; | ||
| 257 | return; | ||
| 258 | } | ||
| 259 | |||
| 260 | # is this function static? If so, note this fact. | ||
| 261 | if (defined $locals{$ref_func}) { | ||
| 262 | |||
| 263 | # only use locals if objcopy supports globalize-symbols | ||
| 264 | if (!$use_locals) { | ||
| 265 | return; | ||
| 266 | } | ||
| 267 | $convert{$ref_func} = 1; | ||
| 268 | } | ||
| 269 | |||
| 270 | # Loop through all the mcount caller offsets and print a reference | ||
| 271 | # to the caller based from the ref_func. | ||
| 272 | for (my $i=0; $i <= $#offsets; $i++) { | ||
| 273 | if (!$opened) { | ||
| 274 | open(FILE, ">$mcount_s") || die "can't create $mcount_s\n"; | ||
| 275 | $opened = 1; | ||
| 276 | print FILE "\t.section $mcount_section,\"a\",\@progbits\n"; | ||
| 277 | } | ||
| 278 | printf FILE "\t%s %s + %d\n", $type, $ref_func, $offsets[$i] - $offset; | ||
| 279 | } | ||
| 280 | } | ||
| 281 | |||
| 282 | # | ||
| 283 | # Step 2: find the sections and mcount call sites | ||
| 284 | # | ||
| 285 | open(IN, "$objdump -dr $inputfile|") || die "error running $objdump"; | ||
| 286 | |||
| 287 | my $text; | ||
| 288 | |||
| 289 | while (<IN>) { | ||
| 290 | # is it a section? | ||
| 291 | if (/$section_regex/) { | ||
| 292 | $read_function = 1; | ||
| 293 | # print out any recorded offsets | ||
| 294 | update_funcs() if ($text_found); | ||
| 295 | |||
| 296 | # reset all markers and arrays | ||
| 297 | $text_found = 0; | ||
| 298 | undef($ref_func); | ||
| 299 | undef(@offsets); | ||
| 300 | |||
| 301 | # section found, now is this a start of a function? | ||
| 302 | } elsif ($read_function && /$function_regex/) { | ||
| 303 | $text_found = 1; | ||
| 304 | $offset = hex $1; | ||
| 305 | $text = $2; | ||
| 306 | |||
| 307 | # if this is either a local function or a weak function | ||
| 308 | # keep looking for functions that are global that | ||
| 309 | # we can use safely. | ||
| 310 | if (!defined($locals{$text}) && !defined($weak{$text})) { | ||
| 311 | $ref_func = $text; | ||
| 312 | $read_function = 0; | ||
| 313 | } else { | ||
| 314 | # if we already have a function, and this is weak, skip it | ||
| 315 | if (!defined($ref_func) || !defined($weak{$text})) { | ||
| 316 | $ref_func = $text; | ||
| 317 | } | ||
| 318 | } | ||
| 319 | } | ||
| 320 | |||
| 321 | # is this a call site to mcount? If so, record it to print later | ||
| 322 | if ($text_found && /$mcount_regex/) { | ||
| 323 | $offsets[$#offsets + 1] = hex $1; | ||
| 324 | } | ||
| 325 | } | ||
| 326 | |||
| 327 | # dump out anymore offsets that may have been found | ||
| 328 | update_funcs() if ($text_found); | ||
| 329 | |||
| 330 | # If we did not find any mcount callers, we are done (do nothing). | ||
| 331 | if (!$opened) { | ||
| 332 | exit(0); | ||
| 333 | } | ||
| 334 | |||
| 335 | close(FILE); | ||
| 336 | |||
| 337 | # | ||
| 338 | # Step 3: Compile the file that holds the list of call sites to mcount. | ||
| 339 | # | ||
| 340 | `$cc -o $mcount_o -c $mcount_s`; | ||
| 341 | |||
| 342 | my @converts = keys %convert; | ||
| 343 | |||
| 344 | # | ||
| 345 | # Step 4: Do we have sections that started with local functions? | ||
| 346 | # | ||
| 347 | if ($#converts >= 0) { | ||
| 348 | my $globallist = ""; | ||
| 349 | my $locallist = ""; | ||
| 350 | |||
| 351 | foreach my $con (@converts) { | ||
| 352 | $globallist .= " --globalize-symbol $con"; | ||
| 353 | $locallist .= " --localize-symbol $con"; | ||
| 354 | } | ||
| 355 | |||
| 356 | my $globalobj = $dirname . "/.tmp_gl_" . $filename; | ||
| 357 | my $globalmix = $dirname . "/.tmp_mx_" . $filename; | ||
| 358 | |||
| 359 | # | ||
| 360 | # Step 5: set up each local function as a global | ||
| 361 | # | ||
| 362 | `$objcopy $globallist $inputfile $globalobj`; | ||
| 363 | |||
| 364 | # | ||
| 365 | # Step 6: Link the global version to our list. | ||
| 366 | # | ||
| 367 | `$ld -r $globalobj $mcount_o -o $globalmix`; | ||
| 368 | |||
| 369 | # | ||
| 370 | # Step 7: Convert the local functions back into local symbols | ||
| 371 | # | ||
| 372 | `$objcopy $locallist $globalmix $inputfile`; | ||
| 373 | |||
| 374 | # Remove the temp files | ||
| 375 | `$rm $globalobj $globalmix`; | ||
| 376 | |||
| 377 | } else { | ||
| 378 | |||
| 379 | my $mix = $dirname . "/.tmp_mx_" . $filename; | ||
| 380 | |||
| 381 | # | ||
| 382 | # Step 8: Link the object with our list of call sites object. | ||
| 383 | # | ||
| 384 | `$ld -r $inputfile $mcount_o -o $mix`; | ||
| 385 | |||
| 386 | # | ||
| 387 | # Step 9: Move the result back to the original object. | ||
| 388 | # | ||
| 389 | `$mv $mix $inputfile`; | ||
| 390 | } | ||
| 391 | |||
| 392 | # Clean up the temp files | ||
| 393 | `$rm $mcount_o $mcount_s`; | ||
| 394 | |||
| 395 | exit(0); | ||
