mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-24 00:33:12 +01:00
only used for consistency checking anyway. For the LLVM bug, see http://llvm.org/PR4180 / http://llvm.org/PR4046
31 lines
851 B
C
31 lines
851 B
C
#ifndef LDC_GEN_METADATA_H
|
|
#define LDC_GEN_METADATA_H
|
|
|
|
#include "gen/llvm-version.h"
|
|
|
|
#if LLVM_REV >= 68420
|
|
// Yay, we have metadata!
|
|
|
|
#define USE_METADATA
|
|
#define METADATA_LINKAGE_TYPE llvm::GlobalValue::WeakODRLinkage
|
|
|
|
// *** Metadata for TypeInfo instances ***
|
|
#define TD_PREFIX "llvm.ldc.typeinfo."
|
|
|
|
/// The fields in the metadata node for a TypeInfo instance.
|
|
/// (Its name will be TD_PREFIX ~ <Name of TypeInfo global>)
|
|
enum TypeDataFields {
|
|
// TD_Confirm is disabled for now due to an LLVM bug when MDNodes contain
|
|
// globals (see http://llvm.org/PR4180 / http://llvm.org/PR4046 )
|
|
TD_Confirm = -1,/// The TypeInfo this node is for.
|
|
|
|
TD_Type, /// A value of the LLVM type corresponding to this D type
|
|
|
|
// Must be kept last:
|
|
TD_NumFields /// The number of fields in TypeInfo metadata
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|