blob: a89462c13c8e39e88576f8b784772a4356b4f07d (
plain)
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
//=== LexHLSLRootSignature.cpp - Lex Root Signature -----------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "clang/Lex/LexHLSLRootSignature.h"
namespace clang {
namespace hlsl {
using TokenKind = RootSignatureToken::Kind;
// Lexer Definitions
static bool isNumberChar(char C) {
return isdigit(C) // integer support
|| C == '.' // float support
|| C == 'e' || C == 'E' || C == '-' || C == '+' // exponent support
|| C == 'f' || C == 'F'; // explicit float support
}
RootSignatureToken RootSignatureLexer::lexToken() {
// Discard any leading whitespace
advanceBuffer(Buffer.take_while(isspace).size());
if (isEndOfBuffer())
return RootSignatureToken(TokenKind::end_of_stream, LocOffset);
// Record where this token is in the text for usage in parser diagnostics
RootSignatureToken Result(LocOffset);
char C = Buffer.front();
// Punctuators
switch (C) {
#define PUNCTUATOR(X, Y) \
case Y: { \
Result.TokKind = TokenKind::pu_##X; \
advanceBuffer(); \
return Result; \
}
#include "clang/Lex/HLSLRootSignatureTokenKinds.def"
default:
break;
}
// Number literal
if (isdigit(C) || C == '.') {
Result.NumSpelling = Buffer.take_while(isNumberChar);
// If all values are digits then we have an int literal
bool IsInteger = Result.NumSpelling.find_if_not(isdigit) == StringRef::npos;
Result.TokKind =
IsInteger ? TokenKind::int_literal : TokenKind::float_literal;
advanceBuffer(Result.NumSpelling.size());
return Result;
}
// All following tokens require at least one additional character
if (Buffer.size() <= 1) {
Result = RootSignatureToken(TokenKind::invalid, LocOffset);
return Result;
}
// Peek at the next character to deteremine token type
char NextC = Buffer[1];
// Registers: [tsub][0-9+]
if ((C == 't' || C == 's' || C == 'u' || C == 'b') && isdigit(NextC)) {
// Convert character to the register type.
switch (C) {
case 'b':
Result.TokKind = TokenKind::bReg;
break;
case 't':
Result.TokKind = TokenKind::tReg;
break;
case 'u':
Result.TokKind = TokenKind::uReg;
break;
case 's':
Result.TokKind = TokenKind::sReg;
break;
default:
llvm_unreachable("Switch for an expected token was not provided");
}
advanceBuffer();
// Lex the integer literal
Result.NumSpelling = Buffer.take_while(isNumberChar);
advanceBuffer(Result.NumSpelling.size());
return Result;
}
// Keywords and Enums:
StringRef TokSpelling =
Buffer.take_while([](char C) { return isalnum(C) || C == '_'; });
// Define a large string switch statement for all the keywords and enums
auto Switch = llvm::StringSwitch<TokenKind>(TokSpelling);
#define KEYWORD(NAME) Switch.CaseLower(#NAME, TokenKind::kw_##NAME);
#define ENUM(NAME, LIT) Switch.CaseLower(LIT, TokenKind::en_##NAME);
#include "clang/Lex/HLSLRootSignatureTokenKinds.def"
// Then attempt to retreive a string from it
Result.TokKind = Switch.Default(TokenKind::invalid);
advanceBuffer(TokSpelling.size());
return Result;
}
RootSignatureToken RootSignatureLexer::consumeToken() {
// If we previously peeked then just return the previous value over
if (NextToken && NextToken->TokKind != TokenKind::end_of_stream) {
RootSignatureToken Result = *NextToken;
NextToken = std::nullopt;
return Result;
}
return lexToken();
}
RootSignatureToken RootSignatureLexer::peekNextToken() {
// Already peeked from the current token
if (NextToken)
return *NextToken;
NextToken = lexToken();
return *NextToken;
}
} // namespace hlsl
} // namespace clang
|