File: MetaDataApi.h

package info (click to toggle)
intel-graphics-compiler 1.0.17791.18-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 102,312 kB
  • sloc: cpp: 935,343; lisp: 286,143; ansic: 16,196; python: 3,279; yacc: 2,487; lex: 1,642; pascal: 300; sh: 174; makefile: 27
file content (798 lines) | stat: -rw-r--r-- 23,673 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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
/*========================== begin_copyright_notice ============================

Copyright (C) 2017-2023 Intel Corporation

SPDX-License-Identifier: MIT

============================= end_copyright_notice ===========================*/

#pragma once

#include "MetaDataApiUtils.h"
#include "MDFrameWork.h"

// Following classes read/write its own specific structure from/to LLVM metadata.

namespace IGC::IGCMD
{
    class ArgInfoMetaData;
    using ArgInfoMetaDataHandle = MetaObjectHandle<ArgInfoMetaData>;

    class SubGroupSizeMetaData;
    using SubGroupSizeMetaDataHandle = MetaObjectHandle<SubGroupSizeMetaData>;

    class MaxRegPressureMetaData;
    using MaxRegPressureMetaDataHandle = MetaObjectHandle<MaxRegPressureMetaData>;

    class VectorTypeHintMetaData;
    using VectorTypeHintMetaDataHandle = MetaObjectHandle<VectorTypeHintMetaData>;

    class ThreadGroupSizeMetaData;
    using ThreadGroupSizeMetaDataHandle = MetaObjectHandle<ThreadGroupSizeMetaData>;

    class FunctionInfoMetaData;
    using FunctionInfoMetaDataHandle = MetaObjectHandle<FunctionInfoMetaData>;

    class ArgInfoMetaData : public IMetaDataObject
    {
    public:
        using _Mybase = IMetaDataObject;

        ArgInfoMetaData(const llvm::MDNode* pNode, bool hasId);
        ArgInfoMetaData();
        ArgInfoMetaData(const char* name);

        // Returns true if any of the ArgInfoMetaData`s members has changed
        bool dirty() const override;

        // Returns true if the structure was loaded from the metadata or was changed
        bool hasValue() const;

        // Discards the changes done to the ArgInfoMetaData instance
        void discardChanges() override;

        // Generates the new MDNode hierarchy for the given structure
        llvm::Metadata* generateNode(llvm::LLVMContext& context) const;

        // Saves the structure changes to the given MDNode
        void save(llvm::LLVMContext& context, llvm::MDNode* pNode) const;

        //
        // Data members
        //
        using ArgIdType = MetaDataValue<int32_t>;
        using ExplicitArgNumType = NamedMetaDataValue<int32_t>;
        using StructArgOffsetType = NamedMetaDataValue<int32_t>;
        using ImgAccessFloatCoordsType = NamedMetaDataValue<bool>;
        using ImgAccessIntCoordsType = NamedMetaDataValue<bool>;

        // ArgId
        ArgIdType::value_type getArgId() const
        {
            return m_ArgId.get();
        }
        void setArgId(const ArgIdType::value_type& val)
        {
            m_ArgId.set(val);
        }
        bool isArgIdHasValue() const
        {
            return m_ArgId.hasValue();
        }

        // ExplicitArgNum
        ExplicitArgNumType::value_type getExplicitArgNum() const
        {
            return m_ExplicitArgNum.get();
        }
        void setExplicitArgNum(const ExplicitArgNumType::value_type& val)
        {
            m_ExplicitArgNum.set(val);
        }
        bool isExplicitArgNumHasValue() const
        {
            return m_ExplicitArgNum.hasValue();
        }

        // StructArgOffset
        StructArgOffsetType::value_type getStructArgOffset() const
        {
            return m_StructArgOffset.get();
        }
        void setStructArgOffset(const StructArgOffsetType::value_type& val)
        {
            m_StructArgOffset.set(val);
        }
        bool isStructArgOffsetHasValue() const
        {
            return m_StructArgOffset.hasValue();
        }

        // ImgAccessFloatCoords
        ImgAccessFloatCoordsType::value_type getImgAccessFloatCoords() const
        {
            return m_ImgAccessFloatCoords.get();
        }
        void setImgAccessFloatCoords(const ImgAccessFloatCoordsType::value_type& val)
        {
            m_ImgAccessFloatCoords.set(val);
        }
        bool isImgAccessFloatCoordsHasValue() const
        {
            return m_ImgAccessFloatCoords.hasValue();
        }

        // ImgAccessIntCoords
        ImgAccessIntCoordsType::value_type getImgAccessIntCoords() const
        {
            return m_ImgAccessIntCoords.get();
        }
        void setImgAccessIntCoords(const ImgAccessIntCoordsType::value_type& val)
        {
            m_ImgAccessIntCoords.set(val);
        }
        bool isImgAccessIntCoordsHasValue() const
        {
            return m_ImgAccessIntCoords.hasValue();
        }

    private:
        // parent node
        const llvm::MDNode* m_pNode;

        // data members
        ArgIdType m_ArgId;
        ExplicitArgNumType m_ExplicitArgNum;
        StructArgOffsetType m_StructArgOffset;
        ImgAccessFloatCoordsType m_ImgAccessFloatCoords;
        ImgAccessIntCoordsType m_ImgAccessIntCoords;
    };

    class ArgDependencyInfoMetaData : public IMetaDataObject
    {
    public:
        using _Mybase = IMetaDataObject;

        ArgDependencyInfoMetaData(const llvm::MDNode* pNode, bool hasId);
        ArgDependencyInfoMetaData();
        ArgDependencyInfoMetaData(const char* name);

        // Returns true if any of the ArgInfoMetaData`s members has changed
        bool dirty() const override;

        // Returns true if the structure was loaded from the metadata or was changed
        bool hasValue() const;

        // Discards the changes done to the ArgInfoMetaData instance
        void discardChanges() override;

        // Generates the new MDNode hierarchy for the given structure
        llvm::Metadata* generateNode(llvm::LLVMContext& context) const;

        // Saves the structure changes to the given MDNode
        void save(llvm::LLVMContext& context, llvm::MDNode* pNode) const;

        //
        // Data members
        //
        using ArgType = MetaDataValue<std::string>;
        using ArgDependencyType = MetaDataValue<int32_t>;

        // Arg
        ArgType::value_type getArg() const
        {
            return m_Arg.get();
        }
        void setArg(const ArgType::value_type& val)
        {
            m_Arg.set(val);
        }
        bool isArgHasValue() const
        {
            return m_Arg.hasValue();
        }

        // ArgDependency
        ArgDependencyType::value_type getArgDependency() const
        {
            return m_ArgDependency.get();
        }
        void setArgDependency(const ArgDependencyType::value_type& val)
        {
            m_ArgDependency.set(val);
        }
        bool isArgDependencyHasValue() const
        {
            return m_ArgDependency.hasValue();
        }

    private:
        // parent node
        const llvm::MDNode* m_pNode;

        // data members
        ArgType m_Arg;
        ArgDependencyType m_ArgDependency;
    };

    class MaxRegPressureMetaData : public IMetaDataObject
    {
    public:
        using _Mybase = IMetaDataObject;

        MaxRegPressureMetaData(const llvm::MDNode* pNode, bool hasId);
        MaxRegPressureMetaData();
        MaxRegPressureMetaData(const char* name);

        // Returns true if any of the ArgInfoMetaData`s members has changed
        bool dirty() const override;

        // Returns true if the structure was loaded from the metadata or was changed
        bool hasValue() const;

        // Discards the changes done to the ArgInfoMetaData instance
        void discardChanges() override;

        // Generates the new MDNode hierarchy for the given structure
        llvm::Metadata* generateNode(llvm::LLVMContext& context) const;

        // Saves the structure changes to the given MDNode
        void save(llvm::LLVMContext& context, llvm::MDNode* pNode) const;

        //
        // Data members
        //
        using MaxPressureType = MetaDataValue<int32_t>;

        // SIMDSize
        MaxPressureType::value_type getMaxPressure() const
        {
            return m_MaxPressure.get();
        }
        void setMaxPressure(const MaxPressureType::value_type& val)
        {
            m_MaxPressure.set(val);
        }
        bool isMaxPressureHasValue() const
        {
            return m_MaxPressure.hasValue();
        }

    private:
        // parent node
        const llvm::MDNode* m_pNode;

        // data members
        MaxPressureType m_MaxPressure;
    };

    class SubGroupSizeMetaData : public IMetaDataObject
    {
    public:
        using _Mybase = IMetaDataObject;

        SubGroupSizeMetaData(const llvm::MDNode* pNode, bool hasId);
        SubGroupSizeMetaData();
        SubGroupSizeMetaData(const char* name);

        // Returns true if any of the ArgInfoMetaData`s members has changed
        bool dirty() const override;

        // Returns true if the structure was loaded from the metadata or was changed
        bool hasValue() const;

        // Discards the changes done to the ArgInfoMetaData instance
        void discardChanges() override;

        // Generates the new MDNode hierarchy for the given structure
        llvm::Metadata* generateNode(llvm::LLVMContext& context) const;

        // Saves the structure changes to the given MDNode
        void save(llvm::LLVMContext& context, llvm::MDNode* pNode) const;

        //
        // Data members
        //
        using SIMDSizeType = MetaDataValue<int32_t>;

        // SIMDSize
        SIMDSizeType::value_type getSIMDSize() const
        {
            return m_SIMDSize.get();
        }
        void setSIMDSize(const SIMDSizeType::value_type& val)
        {
            m_SIMDSize.set(val);
        }
        bool isSIMDSizeHasValue() const
        {
            return m_SIMDSize.hasValue();
        }

    private:
        // parent node
        const llvm::MDNode* m_pNode;

        // data members
        SIMDSizeType m_SIMDSize;
    };

    class VectorTypeHintMetaData : public IMetaDataObject
    {
    public:
        using _Mybase = IMetaDataObject;

        VectorTypeHintMetaData(const llvm::MDNode* pNode, bool hasId);
        VectorTypeHintMetaData();
        VectorTypeHintMetaData(const char* name);

        // Returns true if any of the ArgInfoMetaData`s members has changed
        bool dirty() const override;

        // Returns true if the structure was loaded from the metadata or was changed
        bool hasValue() const;

        // Discards the changes done to the ArgInfoMetaData instance
        void discardChanges() override;

        // Generates the new MDNode hierarchy for the given structure
        llvm::Metadata* generateNode(llvm::LLVMContext& context) const;

        // Saves the structure changes to the given MDNode
        void save(llvm::LLVMContext& context, llvm::MDNode* pNode) const;

        //
        // Data members
        //
        using VecTypeType = MetaDataValue<llvm::UndefValue>;
        using SignType = MetaDataValue<bool>;

        // VecType
        VecTypeType::value_type getVecType() const
        {
            return m_VecType.get();
        }
        void setVecType(const VecTypeType::value_type& val)
        {
            m_VecType.set(val);
        }
        bool isVecTypeHasValue() const
        {
            return m_VecType.hasValue();
        }

        // Sign
        SignType::value_type getSign() const
        {
            return m_Sign.get();
        }
        void setSign(const SignType::value_type& val)
        {
            m_Sign.set(val);
        }
        bool isSignHasValue() const
        {
            return m_Sign.hasValue();
        }

    private:
        // parent node
        const llvm::MDNode* m_pNode;

        // data members
        VecTypeType m_VecType;
        SignType m_Sign;
    };

    class ThreadGroupSizeMetaData : public IMetaDataObject
    {
    public:
        using _Mybase = IMetaDataObject;

        ThreadGroupSizeMetaData(const llvm::MDNode* pNode, bool hasId);
        ThreadGroupSizeMetaData();
        ThreadGroupSizeMetaData(const char* name);

        // Returns true if any of the ArgInfoMetaData`s members has changed
        bool dirty() const override;

        // Returns true if the structure was loaded from the metadata or was changed
        bool hasValue() const;

        // Discards the changes done to the ArgInfoMetaData instance
        void discardChanges() override;

        // Generates the new MDNode hierarchy for the given structure
        llvm::Metadata* generateNode(llvm::LLVMContext& context) const;

        // Saves the structure changes to the given MDNode
        void save(llvm::LLVMContext& context, llvm::MDNode* pNode) const;

        //
        // Data members
        //
        using DimType = MetaDataValue<int32_t>;

        // XDim
        DimType::value_type getXDim() const
        {
            return m_XDim.get();
        }
        void setXDim(const DimType::value_type& val)
        {
            m_XDim.set(val);
        }
        bool isXDimHasValue() const
        {
            return m_XDim.hasValue();
        }

        // YDim
        DimType::value_type getYDim() const
        {
            return m_YDim.get();
        }
        void setYDim(const DimType::value_type& val)
        {
            m_YDim.set(val);
        }
        bool isYDimHasValue() const
        {
            return m_YDim.hasValue();
        }

        // ZDim
        DimType::value_type getZDim() const
        {
            return m_ZDim.get();
        }
        void setZDim(const DimType::value_type& val)
        {
            m_ZDim.set(val);
        }
        bool isZDimHasValue() const
        {
            return m_ZDim.hasValue();
        }

    private:
        // parent node
        const llvm::MDNode* m_pNode;

        // data members
        DimType m_XDim;
        DimType m_YDim;
        DimType m_ZDim;
    };

    class FunctionInfoMetaData : public IMetaDataObject
    {
    public:
        using _Mybase = IMetaDataObject;

        FunctionInfoMetaData(const llvm::MDNode* pNode, bool hasId);
        FunctionInfoMetaData();
        FunctionInfoMetaData(const char* name);

        // Returns true if any of the ArgInfoMetaData`s members has changed
        bool dirty() const override;

        // Returns true if the structure was loaded from the metadata or was changed
        bool hasValue() const;

        // Discards the changes done to the ArgInfoMetaData instance
        void discardChanges() override;

        // Generates the new MDNode hierarchy for the given structure
        llvm::Metadata* generateNode(llvm::LLVMContext& context) const;

        // Saves the structure changes to the given MDNode
        void save(llvm::LLVMContext& context, llvm::MDNode* pNode) const;

        //
        // Data members
        //
        using TypeType = NamedMetaDataValue<int32_t>;
        using ArgInfoListList = MetaDataList<ArgInfoMetaDataHandle>;
        using ImplicitArgInfoListList = MetaDataList<ArgInfoMetaDataHandle>;
        using PrivateMemoryPerWIType = NamedMetaDataValue<int32_t>;
        using NeedBindlessHandleType = NamedMetaDataValue<int32_t>;

        // Type
        TypeType::value_type getType() const
        {
            return m_Type.get();
        }
        void setType(const TypeType::value_type& val)
        {
            m_Type.set(val);
        }
        bool isTypeHasValue() const
        {
            return m_Type.hasValue();
        }

        // ArgInfoList
        ArgInfoListList::iterator begin_ArgInfoList()
        {
            return m_ArgInfoList.begin();
        }
        ArgInfoListList::iterator end_ArgInfoList()
        {
            return m_ArgInfoList.end();
        }
        ArgInfoListList::const_iterator begin_ArgInfoList() const
        {
            return m_ArgInfoList.begin();
        }
        ArgInfoListList::const_iterator end_ArgInfoList() const
        {
            return m_ArgInfoList.end();
        }
        size_t size_ArgInfoList()  const
        {
            return m_ArgInfoList.size();
        }
        bool empty_ArgInfoList()  const
        {
            return m_ArgInfoList.empty();
        }
        bool isArgInfoListHasValue() const
        {
            return m_ArgInfoList.hasValue();
        }
        ArgInfoListList::item_type getArgInfoListItem(size_t index) const
        {
            return m_ArgInfoList.getItem(index);
        }
        void clearArgInfoList()
        {
            m_ArgInfoList.clear();
        }
        void setArgInfoListItem(size_t index, const ArgInfoListList::item_type& item)
        {
            return m_ArgInfoList.setItem(index, item);
        }
        void addArgInfoListItem(const ArgInfoListList::item_type& val)
        {
            m_ArgInfoList.push_back(val);
        }
        ArgInfoListList::iterator eraseArgInfoListItem(ArgInfoListList::iterator i)
        {
            return m_ArgInfoList.erase(i);
        }

        // ImplicitArgInfoList
        ImplicitArgInfoListList::iterator begin_ImplicitArgInfoList()
        {
            return m_ImplicitArgInfoList.begin();
        }
        ImplicitArgInfoListList::iterator end_ImplicitArgInfoList()
        {
            return m_ImplicitArgInfoList.end();
        }
        ImplicitArgInfoListList::const_iterator begin_ImplicitArgInfoList() const
        {
            return m_ImplicitArgInfoList.begin();
        }
        ImplicitArgInfoListList::const_iterator end_ImplicitArgInfoList() const
        {
            return m_ImplicitArgInfoList.end();
        }
        size_t size_ImplicitArgInfoList()  const
        {
            return m_ImplicitArgInfoList.size();
        }
        bool empty_ImplicitArgInfoList()  const
        {
            return m_ImplicitArgInfoList.empty();
        }
        bool isImplicitArgInfoListHasValue() const
        {
            return m_ImplicitArgInfoList.hasValue();
        }
        ImplicitArgInfoListList::item_type getImplicitArgInfoListItem(size_t index) const
        {
            return m_ImplicitArgInfoList.getItem(index);
        }
        void clearImplicitArgInfoList()
        {
            m_ImplicitArgInfoList.clear();
        }
        void setImplicitArgInfoListItem(size_t index, const ImplicitArgInfoListList::item_type& item)
        {
            return m_ImplicitArgInfoList.setItem(index, item);
        }
        void addImplicitArgInfoListItem(const ImplicitArgInfoListList::item_type& val)
        {
            m_ImplicitArgInfoList.push_back(val);
        }
        ImplicitArgInfoListList::iterator eraseImplicitArgInfoListItem(ImplicitArgInfoListList::iterator i)
        {
            return m_ImplicitArgInfoList.erase(i);
        }

        // ThreadGroupSize
        ThreadGroupSizeMetaDataHandle getThreadGroupSize()
        {
            return m_ThreadGroupSize;
        }

        // ThreadGroupSizeHint
        ThreadGroupSizeMetaDataHandle getThreadGroupSizeHint()
        {
            return m_ThreadGroupSizeHint;
        }

        // SubGroupSize
        SubGroupSizeMetaDataHandle getSubGroupSize()
        {
            return m_SubGroupSize;
        }

        MaxRegPressureMetaDataHandle getMaxRegPressure()
        {
            return m_MaxRegPressure;
        }

        // OpenCLVectorTypeHint
        VectorTypeHintMetaDataHandle getOpenCLVectorTypeHint()
        {
            return m_OpenCLVectorTypeHint;
        }

    private:
        // parent node
        const llvm::MDNode* m_pNode;

        // data members
        TypeType m_Type;
        ArgInfoListList m_ArgInfoList;
        ImplicitArgInfoListList m_ImplicitArgInfoList;
        ThreadGroupSizeMetaDataHandle m_ThreadGroupSize;
        ThreadGroupSizeMetaDataHandle m_ThreadGroupSizeHint;
        SubGroupSizeMetaDataHandle m_SubGroupSize;
        MaxRegPressureMetaDataHandle m_MaxRegPressure;
        VectorTypeHintMetaDataHandle m_OpenCLVectorTypeHint;
    };

    class MetaDataUtils
    {
    public:
        // data member types
        using FunctionsInfoMap = NamedMetaDataMap<llvm::Function, FunctionInfoMetaDataHandle>;

        // If using this constructor, setting the llvm module by the setModule
        // function is needed for correct operation.
        MetaDataUtils() = default;

        MetaDataUtils(llvm::Module* pModule) :
            m_FunctionsInfo(pModule->getOrInsertNamedMetadata("igc.functions")),
            m_pModule(pModule)
        {}

        void setModule(llvm::Module* pModule) {
            m_FunctionsInfo = pModule->getOrInsertNamedMetadata("igc.functions");
            m_pModule = pModule;
        }

        ~MetaDataUtils() = default;

        // FunctionsInfo
        void clearFunctionsInfo()
        {
            m_FunctionsInfo.clear();
        }

        void deleteFunctionsInfo()
        {
            llvm::NamedMDNode* FunctionsInfoNode = m_pModule->getNamedMetadata("igc.functions");
            if (FunctionsInfoNode)
            {
                m_nodesToDelete.push_back(FunctionsInfoNode);
            }
        }

        FunctionsInfoMap::iterator begin_FunctionsInfo()
        {
            return m_FunctionsInfo.begin();
        }

        FunctionsInfoMap::iterator end_FunctionsInfo()
        {
            return m_FunctionsInfo.end();
        }

        FunctionsInfoMap::const_iterator begin_FunctionsInfo() const
        {
            return m_FunctionsInfo.begin();
        }

        FunctionsInfoMap::const_iterator end_FunctionsInfo() const
        {
            return m_FunctionsInfo.end();
        }

        size_t size_FunctionsInfo() const
        {
            return m_FunctionsInfo.size();
        }

        bool empty_FunctionsInfo() const
        {
            return m_FunctionsInfo.empty();
        }

        bool isFunctionsInfoHasValue() const
        {
            return m_FunctionsInfo.hasValue();
        }

        FunctionsInfoMap::item_type getFunctionsInfoItem(const FunctionsInfoMap::key_type& index) const
        {
            return m_FunctionsInfo.getItem(index);
        }

        FunctionsInfoMap::item_type getOrInsertFunctionsInfoItem(const FunctionsInfoMap::key_type& index)
        {
            return m_FunctionsInfo.getOrInsertItem(index);
        }

        void setFunctionsInfoItem(const FunctionsInfoMap::key_type& index, const FunctionsInfoMap::item_type& item)
        {
            return m_FunctionsInfo.setItem(index, item);
        }

        FunctionsInfoMap::iterator findFunctionsInfoItem(const FunctionsInfoMap::key_type& key)
        {
            return m_FunctionsInfo.find(key);
        }
        FunctionsInfoMap::const_iterator findFunctionsInfoItem(const FunctionsInfoMap::key_type& key) const
        {
            return m_FunctionsInfo.find(key);
        }

        void eraseFunctionsInfoItem(FunctionsInfoMap::iterator it)
        {
            m_FunctionsInfo.erase(it);
        }

        void save(llvm::LLVMContext& context)
        {
            if (m_FunctionsInfo.dirty())
            {
                llvm::NamedMDNode* pNode = m_pModule->getOrInsertNamedMetadata("igc.functions");
                m_FunctionsInfo.save(context, pNode);
            }

            for (auto node : m_nodesToDelete)
            {
                m_pModule->eraseNamedMetadata(node);
            }
            m_nodesToDelete.clear();

            discardChanges();
        }

        void discardChanges()
        {
            m_FunctionsInfo.discardChanges();
            m_nodesToDelete.clear();
        }

        void deleteMetadata()
        {
            llvm::NamedMDNode* FunctionsInfoNode = m_pModule->getNamedMetadata("igc.functions");
            if (FunctionsInfoNode)
            {
                m_nodesToDelete.push_back(FunctionsInfoNode);
            }
        }

    private:
        // data members
        NamedMetaDataMap<llvm::Function, FunctionInfoMetaDataHandle> m_FunctionsInfo;
        llvm::Module* m_pModule = nullptr;
        std::vector<llvm::NamedMDNode*> m_nodesToDelete;
    };
}