A `symbol table` is a data structure that maps each identifier in a program's source code to information relating to its declaration or appearance in the source.
I'm writing an API as a kernel module that provides device drivers with various functions. I wrote three functions in …
c module kernel symbol-tableThere was a core dump produced at the customer end for my application and while looking at the backtrace I …
gdb symbol-tableHow can we see the Symbol-Table of a python source code? I mean, Python makes a symbol table for each …
python symbol-tableI am trying to run an executable on Linux Mint 16 x64 that was compiled for Ubuntu 12 x64. The executable uses …
linux qt linker shared-libraries symbol-tableFrom what I understand, instructions and data in an object file all have addresses. First data item start at address 0 …
assembly compilation object-files symbol-tableIn C, let's say you have a variable called variable_name. Let's say it's located at 0xaaaaaaaa, and at that …
c variables memory symbol-tableI have a program which uses the mmap system call: map_start = mmap(0, fd_stat.st_size, PROT_READ | PROT_…
c elf mmap symbol-tableI am currently developing a kind of static analysis tool that performs pattern matching. I am using Flex to generate …
c linux symbol-tableI was looking at interpreting the dynamic symbol table (.dynsym) of an ELF executable file. I could successfully interpret the …
dynamic elf symbol-tableTL;DR I tried to make this a short question but it's a complicated problem so it ended up being …
reverse-engineering elf opcode relocation symbol-table