Lines Matching full:my

112 my $P = $0;
115 my $V = '0.1';
123 my ($arch, $endian, $bits, $objdump, $objcopy, $cc,
132 my %text_sections = (
146 my %text_section_prefixes = (
162 my %locals; # List of local (static) functions
163 my %weak; # List of weak functions
164 my %convert; # List of local functions used that needs conversion
166 my $type;
167 my $local_regex; # Match a local function (return function)
168 my $weak_regex; # Match a weak function (return function)
169 my $section_regex; # Find the start of a section
170 my $function_regex; # Find the name of a function
172 my $mcount_regex; # Find the call site to mcount (return offset)
173 my $mcount_adjust; # Address adjustment to mcount offset
174 my $alignment; # The .align value to use for $mcount_section
175 my $section_type; # Section header plus possible alignment command
242 my $ldemulation;
365 my $text_found = 0;
366 my $read_function = 0;
367 my $opened = 0;
368 my $mcount_section = "__mcount_loc";
370 my $dirname;
371 my $filename;
372 my $prefix;
373 my $ext;
391 my $mcount_s = $dirname . "/.tmp_mc_" . $prefix . ".s";
392 my $mcount_o = $dirname . "/.tmp_mc_" . $prefix . ".o";
408 my @offsets; # Array of offsets of mcount callers
409 my $ref_func; # reference function to use for offsets
410 my $offset = 0; # offset of ref_func to section beginning
442 foreach my $cur_offset (@offsets) {
452 my $text;
456 my $read_headers = 1;
482 foreach my $prefix (keys %text_section_prefixes) {
541 my @converts = keys %convert;
547 my $globallist = "";
548 my $locallist = "";
550 foreach my $con (@converts) {
555 my $globalobj = $dirname . "/.tmp_gl_" . $filename;
556 my $globalmix = $dirname . "/.tmp_mx_" . $filename;
578 my $mix = $dirname . "/.tmp_mx_" . $filename;