Tagged Questions
The symbol-tables tag has no wiki summary.
23
votes
10answers
23k views
Binary Trees vs. Linked Lists vs. Hash Tables
I'm building a symbol table for a project I'm working on. I was wondering what peoples opinions are on the advantages and disadvantages of the various methods available for storing + creating a symbol ...
6
votes
3answers
556 views
No symbol table in Go?
Google's new language "Go" says on its website:
the language has been designed to be easy to analyze and can be parsed without a symbol table
I'm certainly no expert on these matters, but I ...
5
votes
2answers
483 views
Why does this Perl produce “Not a CODE reference?”
I need to remove a method from the Perl symbol table at runtime. I attempted to do this using undef &Square::area, which does delete the function but leaves some traces behind. Specifically, when ...
4
votes
2answers
203 views
Accessing active symbol table in Common Lisp
I have heard that the active symbol table is accessible within the Common Lisp runtime. Have I misunderstood?
3
votes
1answer
100 views
How best to override/wrap core functions like sysread when they are called in another package
I'm working on a fairly complex application written in Perl. I'm fairly experienced with the language, but I'm just stumped on this.
I'm using a module, Foo, which uses sysread and syswrite for ...
3
votes
2answers
209 views
How to build symbol tables for different lexical levels?
I'm in the middle of building a compiler for a C-like language. I'm somewhat done with the lexer and parser. Right now, I'm trying to do semantic analysis and am trying to build symbol tables.
Now, ...
2
votes
3answers
53 views
Symbol Table Design and Implementation in Ruby
I am building a lexical analyzer in Ruby and am about to start gathering and storing symbols in the symbol table. My main question about the design of the symbol and as to whether it should be static ...
2
votes
1answer
48 views
Determine load address and entry point of stripped Linux Kernel image
I have a crosscompiling toolchain for an embedded system (mipsel) on my x86 Linux. I know how to build a custom kernel (let's call the image "vmlinux") for it and how to strip that image via
objcopy ...
2
votes
1answer
147 views
Debugging c++ core files for released software
I'm trying to find a way to debug core files sent to me from released versions of my software (c++ code compiled with gcc). Ideally, I'd like to be able to deploy release builds, and keep debug builds ...
2
votes
3answers
171 views
Perl: How to iterate through symbol table to find all loaded subclasses of Foo::Bar?
I have a module which is defining exceptions for the package of which it is a part. The exceptions are being declared with Exception::Class::Nested.
For purposes of discussion, let's say that this ...
2
votes
2answers
266 views
How does a symbol table relate to static chains and scoping?
I am taking a principles of programming languages course right now but I cannot for the life of me figure this out. This is not homework just a general concept question.
In our class we have talked ...
2
votes
4answers
3k views
What is symbol table and how is it integrated into the executable?
When I tried to debug an executable:
(gdb) break +1
No symbol table is loaded. Use the "file" command.
What does that mean exactly?
Is the symbol table appended to the executable?
2
votes
3answers
485 views
Is a symbol table in Ruby any different from a symbol table in other languages
The wikipedia entry on Symbol tables is a good reference:
http://en.wikipedia.org/wiki/Symbol_table
But as I try to understand symbols in Ruby and how they are represented in the Array of Symbols ...
1
vote
1answer
190 views
How to interpret the dynamic symbol table in an ELF executable?
I was looking at interpreting the dynamic symbol table (.dynsym) of an ELF executable file. I could successfully interpret the symbol table .symtab (16 bytes for each symbol) using the 'value' ...
0
votes
1answer
14 views
SymtabAPI doesn't implicity change binary
I'm using the DyninstAPI (namely, the SymtabAPI component) to rewrite the symbol tables in binaries. I'm using the following methods to do so:
data_region->setPtrToRawData((void*) new_raw, ...
0
votes
1answer
36 views
Is it true that binaries generated by visual studio don't have any symbols?
All output the same:
SYMBOL TABLE:
no symbols
This is what I find after several experiment with objdump,is this true?
If that's the case,I want to give it a little further: is it true all binaries ...
0
votes
1answer
348 views
What are the steps I need to do to complete this programming assignment?
I'm having a hard time understanding what I'm supposed to do. The only thing I've figured out is I need to use yacc on the cminus.y file. I'm totally confused about everything after that. Can ...
-3
votes
3answers
694 views
How to create a symbol table?
Can I use malloc to add symbol table entries? How do I traverse the table to check if something is already there?