mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
6e19ab2bbc
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 :^)
31 lines
653 B
C++
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;
|
|
};
|
|
}
|