1 //===- MetadataImpl.h - Helpers for implementing metadata -----------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file has private helpers for implementing metadata types.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_IR_METADATAIMPL_H
14 #define LLVM_IR_METADATAIMPL_H
16 #include "llvm/ADT/DenseSet.h"
17 #include "llvm/IR/Metadata.h"
21 template <class T
, class InfoT
>
22 static T
*getUniqued(DenseSet
<T
*, InfoT
> &Store
,
23 const typename
InfoT::KeyTy
&Key
) {
24 auto I
= Store
.find_as(Key
);
25 return I
== Store
.end() ? nullptr : *I
;
28 template <class T
> T
*MDNode::storeImpl(T
*N
, StorageType Storage
) {
31 llvm_unreachable("Cannot unique without a uniquing-store");
33 N
->storeDistinctInContext();
41 template <class T
, class StoreT
>
42 T
*MDNode::storeImpl(T
*N
, StorageType Storage
, StoreT
&Store
) {
48 N
->storeDistinctInContext();
56 } // end namespace llvm