summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibDebug/Dwarf/AttributeValue.h
blob: 9343328abff2c6fae43c130e76e18f7af75ddccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 * Copyright (c) 2021, Itamar S. <itamar8910@gmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Span.h>
#include <AK/Types.h>
#include <LibDebug/Dwarf/DwarfTypes.h>

namespace Debug::Dwarf {

class CompilationUnit;

class AttributeValue {
    friend class DwarfInfo;

public:
    enum class Type : u8 {
        UnsignedNumber,
        SignedNumber,
        String,
        DieReference, // Reference to another DIE in the same compilation unit
        Boolean,
        DwarfExpression,
        SecOffset,
        RawBytes,
        Address
    };

    Type type() const { return m_type; }
    AttributeDataForm form() const { return m_form; }

    FlatPtr as_addr() const;
    u64 as_unsigned() const { return m_data.as_unsigned; }
    i64 as_signed() const { return m_data.as_signed; }
    const char* as_string() const;
    bool as_bool() const { return m_data.as_bool; }
    ReadonlyBytes as_raw_bytes() const { return m_data.as_raw_bytes; }

private:
    Type m_type;
    union {
        FlatPtr as_addr;
        u64 as_unsigned;
        i64 as_signed;
        const char* as_string; // points to bytes in the memory mapped elf image
        bool as_bool;
        ReadonlyBytes as_raw_bytes;
    } m_data {};

    AttributeDataForm m_form {};

    CompilationUnit const* m_compilation_unit { nullptr };
};

}