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)
402 # Step 1: find all the local (static functions) and weak symbols.
403 # 't' is local, 'w/W' is weak
410 $weak{$2} = $1;
429 # Sanity check on weak function. A weak function may be overwritten by
431 if (defined $weak{$ref_func}) {
432 die "$inputfile: ERROR: referencing weak function" .
509 # if this is either a local function or a weak function
512 if (!defined($locals{$text}) && !defined($weak{$text})) {
517 # if we already have a function, and this is weak, skip it
518 if (!defined($ref_func) && !defined($weak{$text}) &&