comparison src/share/vm/utilities/elfFile.hpp @ 18041:52b4284cb496

Merge with jdk8u20-b26
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 16:02:50 +0200
parents 89152779163c
children
comparison
equal deleted inserted replaced
17606:45d7b2c7029d 18041:52b4284cb496
73 #include "utilities/decoder.hpp" 73 #include "utilities/decoder.hpp"
74 74
75 75
76 class ElfStringTable; 76 class ElfStringTable;
77 class ElfSymbolTable; 77 class ElfSymbolTable;
78 class ElfFuncDescTable;
78 79
79 80
80 // On Solaris/Linux platforms, libjvm.so does contain all private symbols. 81 // On Solaris/Linux platforms, libjvm.so does contain all private symbols.
81 // ElfFile is basically an elf file parser, which can lookup the symbol 82 // ElfFile is basically an elf file parser, which can lookup the symbol
82 // that is the nearest to the given address. 83 // that is the nearest to the given address.
148 ElfSymbolTable* m_symbol_tables; 149 ElfSymbolTable* m_symbol_tables;
149 150
150 // string tables 151 // string tables
151 ElfStringTable* m_string_tables; 152 ElfStringTable* m_string_tables;
152 153
154 // function descriptors table
155 ElfFuncDescTable* m_funcDesc_table;
156
153 NullDecoder::decoder_status m_status; 157 NullDecoder::decoder_status m_status;
154 }; 158 };
155 159
156 #endif // _WINDOWS 160 #endif // !_WINDOWS && !__APPLE__
157 161
158 #endif // SHARE_VM_UTILITIES_ELF_FILE_HPP 162 #endif // SHARE_VM_UTILITIES_ELF_FILE_HPP