]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
MFC r355940:
[FreeBSD/FreeBSD.git] / contrib / llvm-project / llvm / include / llvm / DebugInfo / CodeView / TypeRecordHelpers.h
1 //===- TypeRecordHelpers.h --------------------------------------*- C++ -*-===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8
9 #ifndef LLVM_DEBUGINFO_CODEVIEW_TYPERECORDHELPERS_H
10 #define LLVM_DEBUGINFO_CODEVIEW_TYPERECORDHELPERS_H
11
12 #include "llvm/DebugInfo/CodeView/TypeRecord.h"
13
14 namespace llvm {
15   namespace codeview {
16     /// Given an arbitrary codeview type, determine if it is an LF_STRUCTURE,
17     /// LF_CLASS, LF_INTERFACE, LF_UNION, or LF_ENUM with the forward ref class
18     /// option.
19     bool isUdtForwardRef(CVType CVT);
20
21     /// Given a CVType which is assumed to be an LF_MODIFIER, return the
22     /// TypeIndex of the type that the LF_MODIFIER modifies.
23     TypeIndex getModifiedType(const CVType &CVT);
24   }
25 }
26
27 #endif