1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
#ifndef SLANG_PROFILE_H_INCLUDED
#define SLANG_PROFILE_H_INCLUDED
#include "../core/slang-basic.h"
#include "../../slang.h"
namespace Slang
{
// Flavors of translation unit
enum class SourceLanguage : SlangSourceLanguageIntegral
{
Unknown = SLANG_SOURCE_LANGUAGE_UNKNOWN, // should not occur
Slang = SLANG_SOURCE_LANGUAGE_SLANG,
HLSL = SLANG_SOURCE_LANGUAGE_HLSL,
GLSL = SLANG_SOURCE_LANGUAGE_GLSL,
C = SLANG_SOURCE_LANGUAGE_C,
CPP = SLANG_SOURCE_LANGUAGE_CPP,
CUDA = SLANG_SOURCE_LANGUAGE_CUDA,
CountOf = SLANG_SOURCE_LANGUAGE_COUNT_OF,
};
// TODO(tfoley): This should merge with the above...
enum class Language
{
Unknown,
#define LANGUAGE(TAG, NAME) TAG,
#include "slang-profile-defs.h"
};
enum class ProfileFamily
{
Unknown,
#define PROFILE_FAMILY(TAG) TAG,
#include "slang-profile-defs.h"
};
enum class ProfileVersion
{
Unknown,
#define PROFILE_VERSION(TAG, FAMILY) TAG,
#include "slang-profile-defs.h"
};
void printDiagnosticArg(StringBuilder& sb, ProfileVersion val);
enum class Stage : SlangStage
{
Unknown = SLANG_STAGE_NONE,
#define PROFILE_STAGE(TAG, NAME, VAL) TAG = VAL,
#define PROFILE_STAGE_ALIAS(TAG, NAME, VAL) TAG = VAL,
#include "slang-profile-defs.h"
};
const char* getStageName(Stage stage);
void printDiagnosticArg(StringBuilder& sb, Stage val);
ProfileFamily getProfileFamily(ProfileVersion version);
struct Profile
{
typedef uint32_t RawVal;
enum RawEnum : RawVal
{
Unknown,
#define PROFILE(TAG, NAME, STAGE, VERSION) TAG = (uint32_t(ProfileVersion::VERSION) << 16) | uint32_t(Stage::STAGE),
#define PROFILE_ALIAS(TAG, DEF, NAME) TAG = DEF,
#include "slang-profile-defs.h"
};
Profile() {}
Profile(RawEnum raw)
: raw(raw)
{}
explicit Profile(RawVal raw)
: raw(raw)
{}
explicit Profile(Stage stage)
{
setStage(stage);
}
explicit Profile(ProfileVersion version)
{
setVersion(version);
}
bool operator==(Profile const& other) const { return raw == other.raw; }
bool operator!=(Profile const& other) const { return raw != other.raw; }
Stage getStage() const { return Stage(uint32_t(raw) & 0xFFFF); }
void setStage(Stage stage)
{
raw = (raw & ~0xFFFF) | uint32_t(stage);
}
ProfileVersion getVersion() const { return ProfileVersion((uint32_t(raw) >> 16) & 0xFFFF); }
void setVersion(ProfileVersion version)
{
raw = (raw & 0x0000FFFF) | (uint32_t(version) << 16);
}
ProfileFamily getFamily() const { return getProfileFamily(getVersion()); }
static Profile lookUp(UnownedStringSlice const& name);
static Profile lookUp(char const* name);
char const* getName();
RawVal raw = Unknown;
};
Stage findStageByName(String const& name);
UnownedStringSlice getStageText(Stage stage);
}
#endif
|