50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2020-2021, Itamar S. <itamar8910@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "CompilationUnit.h"
|
|
#include <AK/Forward.h>
|
|
#include <AK/Function.h>
|
|
#include <AK/Noncopyable.h>
|
|
|
|
namespace Debug::Dwarf {
|
|
|
|
struct Range {
|
|
FlatPtr start { 0 };
|
|
FlatPtr end { 0 };
|
|
};
|
|
|
|
class AddressRangesV5 {
|
|
AK_MAKE_NONCOPYABLE(AddressRangesV5);
|
|
AK_MAKE_NONMOVABLE(AddressRangesV5);
|
|
|
|
public:
|
|
// FIXME: This should be fine with using a non-owned stream.
|
|
AddressRangesV5(NonnullOwnPtr<Stream> range_lists_stream, CompilationUnit const& compilation_unit);
|
|
|
|
ErrorOr<void> for_each_range(Function<void(Range)>);
|
|
|
|
private:
|
|
NonnullOwnPtr<Stream> m_range_lists_stream;
|
|
CompilationUnit const& m_compilation_unit;
|
|
};
|
|
|
|
class AddressRangesV4 {
|
|
AK_MAKE_NONCOPYABLE(AddressRangesV4);
|
|
AK_MAKE_NONMOVABLE(AddressRangesV4);
|
|
|
|
public:
|
|
AddressRangesV4(NonnullOwnPtr<Stream> ranges_stream, CompilationUnit const&);
|
|
|
|
ErrorOr<void> for_each_range(Function<void(Range)>);
|
|
|
|
private:
|
|
NonnullOwnPtr<Stream> m_ranges_stream;
|
|
CompilationUnit const& m_compilation_unit;
|
|
};
|
|
|
|
}
|