File: mcl_program.h

package info (click to toggle)
intel-compute-runtime 25.44.36015.8-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 79,632 kB
  • sloc: cpp: 931,547; lisp: 2,074; sh: 719; makefile: 162; python: 21
file content (266 lines) | stat: -rw-r--r-- 7,319 bytes parent folder | download
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*
 * Copyright (C) 2025 Intel Corporation
 *
 * SPDX-License-Identifier: MIT
 *
 */

#pragma once
#include "shared/source/device_binary_format/elf/elf.h"
#include "shared/source/utilities/const_stringref.h"

#include <string>
#include <unordered_map>
#include <vector>

namespace L0::MCL::Program {
using ElfSymbol = NEO::Elf::ElfSymbolEntry<NEO::Elf::EI_CLASS_64>;
using ElfRela = NEO::Elf::ElfRela<NEO::Elf::EI_CLASS_64>;
namespace Sections {

enum class SectionType : uint32_t {
    shtUndef = 0,
    shtSymtab = 2,
    shtStrtab = 3,
    shtRela = 4,

    shtMclStart = 0xFEED0000,
    shtCs = 0xFEED0001,
    shtIh = 0xFEED0002,
    shtIoh = 0xFEED0003,
    shtSsh = 0xFEED0004,
    shtDataConst = 0xFEED0005,
    shtDataVar = 0xFEED0006,
    shtDataStrings = 0xFEED0007,
    shtDataTmp = 0xFEED0008,
    shtMclEnd = 0xFEED000F,
};

namespace SectionNames {
using ConstStringRef = NEO::ConstStringRef;
static ConstStringRef csSectionName = ".text";
static ConstStringRef ihSectionName = ".text.eu";
static ConstStringRef iohSectionName = ".heap.ioh";
static ConstStringRef dshSectionName = ".heap.dsh";
static ConstStringRef sshSectionName = ".heap.ssh";
static ConstStringRef tmpSectionName = ".data.tmp";
static ConstStringRef relaPrefix = ".rela";
static ConstStringRef symtabName = ".symtab";
static ConstStringRef strtabName = ".strtab";
// -------ZEBIN--------------
static ConstStringRef dataConstSectionName = ".data.const";
static ConstStringRef dataVarSectionName = ".data.var";
static ConstStringRef dataStringSectionName = ".data.string";
// ---------------------------
}; // namespace SectionNames

} // namespace Sections

namespace Symbols {
enum class SymbolType : uint8_t {
    notype = 0,
    object = 1,
    funct = 2,
    section = 3,
    file = 4,
    common = 5,
    base = 7,
    var = 8,
    dispatch = 11,
    kernel = 12,
    ioh = 13,
    heap = 14,
    function = 15,
    symbolTypeMax = 0xF
};

struct KernelSymbol {
    static constexpr uint8_t indirectOffsetBitShift = 3;
    KernelSymbol() = default;
    KernelSymbol(uint64_t symbolValue) : data(symbolValue) {}
    KernelSymbol(uint32_t kernelDataId, uint16_t skipPerThreadDataLoad, uint8_t simdSize, uint8_t passInlineData, uint8_t indirectOffset)
        : kernelDataId(kernelDataId), skipPerThreadDataLoad(skipPerThreadDataLoad), simdSize(simdSize),
          passInlineData(passInlineData), indirectOffset(indirectOffset) {
        reserve = 0;
    };

    union {
        struct {
            uint32_t kernelDataId;
            uint16_t skipPerThreadDataLoad;
            uint8_t simdSize;
            union {
                struct {
                    uint8_t passInlineData : 1;
                    uint8_t indirectOffset : 4;
                    uint8_t reserve : 3;
                };
                uint8_t flags;
            };
        };
        const uint64_t data = 0U;
    };
};
static_assert(sizeof(KernelSymbol) == sizeof(uint64_t));

struct DispatchSymbolValue {
    DispatchSymbolValue() = default;
    DispatchSymbolValue(uint64_t symbolValue) : data(symbolValue) {}

    union {
        struct {
            uint16_t dispatchId;
            uint16_t kernelDataId;
            uint16_t groupSizeVarId;
            uint16_t groupCountVarId;
        };
        const uint64_t data = 0U;
    };
};
static_assert(sizeof(DispatchSymbolValue) == sizeof(uint64_t));

struct VariableSymbolValue {
    VariableSymbolValue() = default;
    VariableSymbolValue(uint64_t symbolValue) : data(symbolValue) {}

    union {
        struct {
            uint32_t id;
            uint16_t reserved;
            uint8_t variableType;
            union {
                struct {
                    bool isTmp : 1;
                    bool isScalable : 1; // false - const / true - scalable
                } flags;
                uint8_t flagsAsUint8;
            };
        };
        const uint64_t data = 0U;
    };
};
static_assert(sizeof(VariableSymbolValue) == sizeof(uint64_t));

namespace SymbolNames {
using ConstStringRef = NEO::ConstStringRef;
static ConstStringRef gpuBaseSymbol = ".gpu.base";
static ConstStringRef ihBaseSymbol = ".text.eu.base";
static ConstStringRef iohBaseSymbol = ".heap.ioh.base";
static ConstStringRef iohPrefix = ".heap.ioh.";
static ConstStringRef sshPrefix = ".heap.ssh.";
static ConstStringRef bindingTablePrefix = ".binding.table.";
static ConstStringRef dshBaseSymbol = ".heap.dsh.base";
static ConstStringRef sshBaseSymbol = ".heap.ssh.base";
static ConstStringRef varPrefix = "var.";
static ConstStringRef dispatchPrefix = "dispatch.";
static ConstStringRef tmpPrefix = "tmp.";
static ConstStringRef kernelPrefix = ".text.eu.";
static ConstStringRef kernelDataPrefix = ".kernel.";
static ConstStringRef functionPrefix = ".text.eu.func.";
} // namespace SymbolNames

struct Symbol {
    Symbol() = default;
    Symbol(const std::string &name, SymbolType type, Sections::SectionType section, uint64_t value, size_t size)
        : name(name), type(type), section(section), value(value), size(size){};
    std::string name;
    SymbolType type;
    Sections::SectionType section;
    uint64_t value;
    size_t size;
};
}; // namespace Symbols

namespace Relocations {

enum RelocType : uint32_t {
    address = 1,
    address32 = 2,
    address32Hi = 3,

    sba = 19U,

    // ---KERNEL DISPATCH-----
    crossThreadDataStart,
    perThreadDataStart,
    surfaceStateHeapStart,
    walkerCommandStart,
    kernelStart,
    bindingTable,
    // -----------------------

    // ---DISPATCH TRAITS-----
    walkerCommand,
    localWorkSize,
    localWorkSizeY,
    localWorkSizeZ,
    localWorkSize2,
    localWorkSize2Y,
    localWorkSize2Z,
    enqLocalWorkSize,
    enqLocalWorkSizeY,
    enqLocalWorkSizeZ,
    globalWorkSize,
    globalWorkSizeY,
    globalWorkSizeZ,
    numWorkGroups,
    numWorkGroupsY,
    numWorkGroupsZ,
    workDimensions,
    numThreadsPerTg,
    // -----------------------

    // ---BUFFER VAR----------
    bufferStateless,
    bufferOffset,
    bufferBindful,
    bufferBindfulWithoutOffset,
    bufferBindless,
    bufferBindlessWithoutOffset,
    bufferAddress,
    // -----------------------

    // ---VALUE VAR-----------
    valueStateless,
    valueCmdBuffer,
    valueStatelessSize,
    valueCmdBufferSize
    // -----------------------
};
static_assert(sizeof(RelocType) == sizeof(uint32_t));

struct Relocation {
    Relocation() = delete;
    Relocation(Sections::SectionType section, size_t symbolId, RelocType type, uint64_t offset, int64_t addend = 0)
        : symbolId(symbolId), offset(offset), addend(addend), type(type), section(section){};

    size_t symbolId;
    uint64_t offset;
    int64_t addend;
    RelocType type;
    Sections::SectionType section;
};
} // namespace Relocations

struct MclProgram {
    using HeapT = std::vector<uint8_t>;
    using SymMapT = std::unordered_map<std::string, size_t>;

    using Symbols = std::vector<Symbols::Symbol>;
    using Relocations = std::unordered_map<Sections::SectionType, std::vector<Relocations::Relocation>>;

    HeapT cs;
    HeapT ih;
    HeapT ioh;
    HeapT ssh;

    // -------ZEBIN--------------
    HeapT consts;
    HeapT vars;
    HeapT strings;
    // ---------------------------

    Symbols symbols;
    Relocations relocs;
};
} // namespace L0::MCL::Program