blob: 5bdf1992ddcf6c6805fdae8ffd9feb76305f6204 [file] [log] [blame]
// Copyright 2019 The Cobalt Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef STARBOARD_ELF_LOADER_GNU_HASH_TABLE_H_
#define STARBOARD_ELF_LOADER_GNU_HASH_TABLE_H_
#include <stddef.h>
#include "starboard/elf_loader/elf.h"
namespace starboard {
namespace elf_loader {
// Models the hash table used to map symbol names to symbol entries using
// the GNU format. This one is smaller and faster than the standard ELF one.
class GnuHashTable {
public:
GnuHashTable();
// Initialize instance. |dt_gnu_hash| should be the address that the
// DT_GNU_HASH entry points to in the input ELF dynamic section. Call
// IsValid() to determine whether the table was well-formed.
void Init(uintptr_t dt_gnu_hash);
// Returns true iff the content of the table is valid.
bool IsValid() const;
// Return the index of the first dynamic symbol within the ELF symbol table.
size_t dyn_symbols_offset() const { return sym_offset_; }
// Number of dynamic symbols in the ELF symbol table.
size_t dyn_symbols_count() const { return sym_count_; }
// Lookup |symbol_name| in the table. |symbol_table| should point to the
// ELF symbol table, and |string_table| to the start of its string table.
// Returns NULL on failure.
const Sym* LookupByName(const char* symbol_name,
const Sym* symbol_table,
const char* string_table) const;
private:
uint32_t num_buckets_;
uint32_t sym_offset_;
uint32_t sym_count_;
uint32_t bloom_word_mask_;
uint32_t bloom_shift_;
const Addr* bloom_filter_;
const uint32_t* buckets_;
const uint32_t* chain_;
SB_DISALLOW_COPY_AND_ASSIGN(GnuHashTable);
};
} // namespace elf_loader
} // namespace starboard
#endif // STARBOARD_ELF_LOADER_GNU_HASH_TABLE_H_