Lines Matching refs:obj
5 obj=$1
7 file ${obj} | grep -q ELF || (echo "${obj} is not an ELF file." 1>&2 ; exit 0)
10 objdump -hj __ex_table ${obj} 2> /dev/null > /dev/null
15 suspicious_relocs=$(objdump -rj __ex_table ${obj} | tail -n +6 |
33 …eval $(objdump -t ${obj} | grep ${1} | sed 's/\([0-9a-f]\+\) .\{7\} \([^ \t]\+\).*/section="\2"; s…
55 …eval $(objdump -rj .altinstructions ${obj} | grep -B1 "${section}+${section_offset}" | head -n1 | …
65 addr2line -fip -j ${alt_target_section} -e ${obj} ${alt_target_offset} | awk '{print "\t" $0}'
72 objdump -hwj ${section} ${obj} | grep -q CODE
84 addr2line -fip -j ${section} -e ${obj} ${section_offset} | awk '{print "\t" $0}'
134 objdump -hj .debug_info ${obj} 2> /dev/null > /dev/null ||
135 echo -e "${obj} does not contain debug information, the addr2line output will be limited.\n" \
136 "Recompile ${obj} with CONFIG_DEBUG_INFO to get a more useful output."