ladybird/Userland/Libraries/LibX86/ELFSymbolProvider.h
Linus Groh 6e19ab2bbc AK+Everywhere: Rename String to DeprecatedString
We have a new, improved string type coming up in AK (OOM aware, no null
state), and while it's going to use UTF-8, the name UTF8String is a
mouthful - so let's free up the String name by renaming the existing
class.
Making the old one have an annoying name will hopefully also help with
quick adoption :^)
2022-12-06 08:54:33 +01:00

31 lines
653 B
C++

/*
* Copyright (c) 2020-2021, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibELF/Image.h>
#include <LibX86/Instruction.h>
namespace X86 {
class ELFSymbolProvider final : public SymbolProvider {
public:
ELFSymbolProvider(const ELF::Image& elf, FlatPtr base_address = 0)
: m_elf(elf)
, m_base_address(base_address)
{
}
virtual DeprecatedString symbolicate(FlatPtr address, u32* offset = nullptr) const override
{
return m_elf.symbolicate(address - m_base_address, offset);
}
private:
const ELF::Image& m_elf;
FlatPtr m_base_address;
};
}