Skip to content

Commit 5e2860a

Browse files
authored
Revert "[HLSL][RootSignature] Implement parsing of a DescriptorTable with empty clauses" (#133790)
Reverts #133302 Reverting to inspect build failures that were introduced from use of the `clang::Preprocessor` in unit testing, as well as, the warning about an unused declaration. See linked issue for failures.
1 parent a8d2d16 commit 5e2860a

11 files changed

+13
-620
lines changed

clang/include/clang/Basic/DiagnosticParseKinds.td

-4
Original file line numberDiff line numberDiff line change
@@ -1830,8 +1830,4 @@ def err_hlsl_virtual_function
18301830
def err_hlsl_virtual_inheritance
18311831
: Error<"virtual inheritance is unsupported in HLSL">;
18321832

1833-
// HLSL Root Siganture diagnostic messages
1834-
def err_hlsl_unexpected_end_of_params
1835-
: Error<"expected %0 to denote end of parameters, or, another valid parameter of %1">;
1836-
18371833
} // end of Parser diagnostics

clang/include/clang/Lex/HLSLRootSignatureTokenKinds.def

+11-12
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@
1414
//===----------------------------------------------------------------------===//
1515

1616
#ifndef TOK
17-
#define TOK(X, SPELLING)
17+
#define TOK(X)
1818
#endif
1919
#ifndef PUNCTUATOR
20-
#define PUNCTUATOR(X,Y) TOK(pu_ ## X, Y)
20+
#define PUNCTUATOR(X,Y) TOK(pu_ ## X)
2121
#endif
2222
#ifndef KEYWORD
23-
#define KEYWORD(X) TOK(kw_ ## X, #X)
23+
#define KEYWORD(X) TOK(kw_ ## X)
2424
#endif
2525
#ifndef ENUM
26-
#define ENUM(NAME, LIT) TOK(en_ ## NAME, LIT)
26+
#define ENUM(NAME, LIT) TOK(en_ ## NAME)
2727
#endif
2828

2929
// Defines the various types of enum
@@ -49,15 +49,15 @@
4949
#endif
5050

5151
// General Tokens:
52-
TOK(invalid, "invalid identifier")
53-
TOK(end_of_stream, "end of stream")
54-
TOK(int_literal, "integer literal")
52+
TOK(invalid)
53+
TOK(end_of_stream)
54+
TOK(int_literal)
5555

5656
// Register Tokens:
57-
TOK(bReg, "b register")
58-
TOK(tReg, "t register")
59-
TOK(uReg, "u register")
60-
TOK(sReg, "s register")
57+
TOK(bReg)
58+
TOK(tReg)
59+
TOK(uReg)
60+
TOK(sReg)
6161

6262
// Punctuators:
6363
PUNCTUATOR(l_paren, '(')
@@ -69,7 +69,6 @@ PUNCTUATOR(plus, '+')
6969
PUNCTUATOR(minus, '-')
7070

7171
// RootElement Keywords:
72-
KEYWORD(RootSignature) // used only for diagnostic messaging
7372
KEYWORD(DescriptorTable)
7473

7574
// DescriptorTable Keywords:

clang/include/clang/Lex/LexHLSLRootSignature.h

+1-14
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#ifndef LLVM_CLANG_LEX_LEXHLSLROOTSIGNATURE_H
1414
#define LLVM_CLANG_LEX_LEXHLSLROOTSIGNATURE_H
1515

16-
#include "clang/Basic/Diagnostic.h"
1716
#include "clang/Basic/SourceLocation.h"
1817

1918
#include "llvm/ADT/SmallVector.h"
@@ -25,7 +24,7 @@ namespace hlsl {
2524

2625
struct RootSignatureToken {
2726
enum Kind {
28-
#define TOK(X, SPELLING) X,
27+
#define TOK(X) X,
2928
#include "clang/Lex/HLSLRootSignatureTokenKinds.def"
3029
};
3130

@@ -44,18 +43,6 @@ struct RootSignatureToken {
4443
};
4544
using TokenKind = enum RootSignatureToken::Kind;
4645

47-
inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
48-
const TokenKind Kind) {
49-
switch (Kind) {
50-
#define TOK(X, SPELLING) \
51-
case TokenKind::X: \
52-
DB << SPELLING; \
53-
break;
54-
#include "clang/Lex/HLSLRootSignatureTokenKinds.def"
55-
}
56-
return DB;
57-
}
58-
5946
class RootSignatureLexer {
6047
public:
6148
RootSignatureLexer(StringRef Signature, clang::SourceLocation SourceLoc)

clang/include/clang/Parse/ParseHLSLRootSignature.h

-107
This file was deleted.

clang/lib/Parse/CMakeLists.txt

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ add_clang_library(clangParse
1414
ParseExpr.cpp
1515
ParseExprCXX.cpp
1616
ParseHLSL.cpp
17-
ParseHLSLRootSignature.cpp
1817
ParseInit.cpp
1918
ParseObjc.cpp
2019
ParseOpenMP.cpp

clang/lib/Parse/ParseHLSLRootSignature.cpp

-166
This file was deleted.

clang/unittests/CMakeLists.txt

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ endfunction()
2525

2626
add_subdirectory(Basic)
2727
add_subdirectory(Lex)
28-
add_subdirectory(Parse)
2928
add_subdirectory(Driver)
3029
if(CLANG_ENABLE_STATIC_ANALYZER)
3130
add_subdirectory(Analysis)

0 commit comments

Comments
 (0)