Xamarin Public Jenkins (auto-signing) f32dbaf0b2 Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
2018-12-21 19:01:49 +00:00

60 lines
1.4 KiB
C++

//===- MetadataImpl.h - Helpers for implementing metadata -----------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file has private helpers for implementing metadata types.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_IR_METADATAIMPL_H
#define LLVM_IR_METADATAIMPL_H
#include "llvm/ADT/DenseSet.h"
#include "llvm/IR/Metadata.h"
namespace llvm {
template <class T, class InfoT>
static T *getUniqued(DenseSet<T *, InfoT> &Store,
const typename InfoT::KeyTy &Key) {
auto I = Store.find_as(Key);
return I == Store.end() ? nullptr : *I;
}
template <class T> T *MDNode::storeImpl(T *N, StorageType Storage) {
switch (Storage) {
case Uniqued:
llvm_unreachable("Cannot unique without a uniquing-store");
case Distinct:
N->storeDistinctInContext();
break;
case Temporary:
break;
}
return N;
}
template <class T, class StoreT>
T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) {
switch (Storage) {
case Uniqued:
Store.insert(N);
break;
case Distinct:
N->storeDistinctInContext();
break;
case Temporary:
break;
}
return N;
}
} // end namespace llvm
#endif