Lines Matching full:weak
95 # 1) Record all the local and weak symbols by using 'nm'
163 my %weak; # List of weak functions
168 my $weak_regex; # Match a weak function (return function)
395 # Step 1: find all the local (static functions) and weak symbols.
396 # 't' is local, 'w/W' is weak
403 $weak{$2} = $1;
422 # Sanity check on weak function. A weak function may be overwritten by
424 if (defined $weak{$ref_func}) {
425 die "$inputfile: ERROR: referencing weak function" .
502 # if this is either a local function or a weak function
505 if (!defined($locals{$text}) && !defined($weak{$text})) {
510 # if we already have a function, and this is weak, skip it
511 if (!defined($ref_func) && !defined($weak{$text}) &&