Home
last modified time | relevance | path

Searched refs:section (Results 1 – 8 of 8) sorted by relevance

/scripts/
Dcheck_extable.sh55 …eval $(objdump -rj .altinstructions ${obj} | grep -B1 "${section}+${section_offset}" | head -n1 | …
62 find_alt_replacement_target ${section} ${section_offset}
72 objdump -hwj ${section} ${obj} | grep -q CODE
78 if is_executable_section ${section}; then
83 echo "Warning: found a reference to section \"${section}\" in __ex_table:"
84 addr2line -fip -j ${section} -e ${obj} ${section_offset} | awk '{print "\t" $0}'
89 …echo "Error: found a reference to non-executable section \"${section}\" in __ex_table at offset ${…
96 case "${section}" in
98 handle_alt_replacement_reloc ${section} ${section_offset}
101 handle_suspicious_generic_reloc ${section} ${section_offset}
[all …]
Dkernel-doc416 my $section = $section_default;
666 my ($parameter, $section);
707 foreach $section (@{$args{'sectionlist'}}) {
708 print ".SH \"", uc $section, "\"\n";
709 output_highlight($args{'sections'}{$section});
717 my ($parameter, $section);
748 foreach $section (@{$args{'sectionlist'}}) {
749 print ".SH \"$section\"\n";
750 output_highlight($args{'sections'}{$section});
758 my ($parameter, $section);
[all …]
Dgenerate_initcall_order.pl250 my $section;
253 $section = '.con_initcall.init';
255 $section = ".initcall${level}.init";
258 print "\t${section} : {\n";
261 print "\t\t*(${section}..${secname}) ;\n";
Dgcc-ld19 -rpath-link|--sort-section|--section-start|-Tbss|-Tdata|-Ttext|\
Dgenerate_cfi_kallsyms.pl251 my ($addr, $debug, $section, $ref, $symbol) = $_ =~
254 if (defined($addr) && defined($section) && defined($symbol)) {
255 if (!($section =~ /^\.((init|exit)\.)?text$/)) {
267 $text_symbols->{"$section+$addr"} = $symbol;
Dfaddr2line132 sec_size=$(${READELF} --section-headers --wide $objfile |
143 sec_name=$(${READELF} --section-headers --wide $objfile |
Dlink-vmlinux.sh244 ${OBJCOPY} --only-section=.BTF --set-section-flags .BTF=alloc,readonly \
/scripts/gcc-plugins/
Dstackleak_plugin.c453 tree section; in stackleak_gate() local
455 section = lookup_attribute("section", in stackleak_gate()
457 if (section && TREE_VALUE(section)) { in stackleak_gate()
458 section = TREE_VALUE(TREE_VALUE(section)); in stackleak_gate()
460 if (STRING_EQUAL(section, ".init.text")) in stackleak_gate()
462 if (STRING_EQUAL(section, ".devinit.text")) in stackleak_gate()
464 if (STRING_EQUAL(section, ".cpuinit.text")) in stackleak_gate()
466 if (STRING_EQUAL(section, ".meminit.text")) in stackleak_gate()