symbol-table
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 attribute[详细]
2023-03-29 11:43 分类:问答Sorting symbol table by value in java
Symbol table give a result sorted by key but how can we sort the symbol table by values. I used Arrays.sort(st,st.get(key)) but gives me an error:[详细]
2023-03-19 09:11 分类:问答A Symbol Table in C
I am currently developing a kind of static analysis tool that performs pattern matching. I am using Flex to generate lexical analyzer, and I wrote code to manage the symbol table. I am not very experi[详细]
2023-03-08 19:11 分类:问答Symbol-table: deleting entries
Why do I get the values from \"$n\" and \"$m\" after deleting the respective symbol-table-entries? 开发者_开发技巧#!/usr/bin/env perl[详细]
2023-02-03 04:36 分类:问答How do I access a constant in Perl whose name is contained in a variable?
I have a set of constants declared in Perl: use constant C1 => 111; use开发者_Python百科 constant C2 => 222;[详细]
2022-12-19 12:38 分类:问答How does an object access the symbol table for the current package?
How could I access the symbol table for the current package an object was instantiated in? For example, I have something like this:[详细]
2022-12-13 08:49 分类:问答