LLVM  8.0.1
EnumTables.cpp
Go to the documentation of this file.
1 //===- EnumTables.cpp - Enum to string conversion tables --------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
12 
13 using namespace llvm;
14 using namespace llvm::pdb;
15 
16 #define PDB_ENUM_CLASS_ENT(enum_class, enum) \
17  { #enum, std::underlying_type < enum_class > ::type(enum_class::enum) }
18 
19 #define PDB_ENUM_ENT(ns, enum) \
20  { #enum, ns::enum }
21 
30 };
31 
32 namespace llvm {
33 namespace pdb {
35  return makeArrayRef(OMFSegMapDescFlagNames);
36 }
37 }
38 }
This class represents lattice values for constants.
Definition: AllocatorList.h:24
ArrayRef< EnumEntry< uint16_t > > getOMFSegMapDescFlagNames()
Definition: EnumTables.cpp:34
#define PDB_ENUM_CLASS_ENT(enum_class, enum)
Definition: EnumTables.cpp:16
ArrayRef< T > makeArrayRef(const T &OneElt)
Construct an ArrayRef from a single element.
Definition: ArrayRef.h:451
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory)...
Definition: APInt.h:33
static const EnumEntry< uint16_t > OMFSegMapDescFlagNames[]
Definition: EnumTables.cpp:22