Skip to content

Commit b2a5767

Browse files
authored
Merge branch 'main' into using_if_exists-fix
2 parents a8ca3db + 0385a18 commit b2a5767

File tree

589 files changed

+15004
-7519
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

589 files changed

+15004
-7519
lines changed

.github/workflows/release-binaries.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -191,12 +191,6 @@ jobs:
191191
- name: Install Ninja
192192
uses: llvm/actions/install-ninja@42d80571b13f4599bbefbc7189728b64723c7f78 # main
193193

194-
- name: Setup Windows
195-
if: startsWith(runner.os, 'Windows')
196-
uses: llvm/actions/setup-windows@42d80571b13f4599bbefbc7189728b64723c7f78 # main
197-
with:
198-
arch: amd64
199-
200194
- name: Set Build Prefix
201195
id: setup-stage
202196
shell: bash

clang-tools-extra/clang-tidy/google/AvoidCStyleCastsCheck.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,12 @@ void AvoidCStyleCastsCheck::check(const MatchFinder::MatchResult &Result) {
269269
return;
270270
}
271271
break;
272+
case CK_BaseToDerived:
273+
if (!needsConstCast(SourceType, DestType)) {
274+
ReplaceWithNamedCast("static_cast");
275+
return;
276+
}
277+
break;
272278
default:
273279
break;
274280
}

clang-tools-extra/docs/ReleaseNotes.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,10 @@ Changes in existing checks
402402
adding an option to allow pointer arithmetic via prefix/postfix increment or
403403
decrement operators.
404404

405+
- Improved :doc:`google-readability-casting
406+
<clang-tidy/checks/google/readability-casting>` check by adding fix-it
407+
notes for downcasts.
408+
405409
- Improved :doc:`llvm-prefer-isa-or-dyn-cast-in-conditionals
406410
<clang-tidy/checks/llvm/prefer-isa-or-dyn-cast-in-conditionals>` check:
407411

clang-tools-extra/test/clang-tidy/checkers/google/readability-casting.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,11 @@ void f(int a, double b, const char *cpc, const void *cpv, X *pX) {
102102
// CHECK-FIXES: b1 = static_cast<int>(b);
103103

104104
Y *pB = (Y*)pX;
105-
// CHECK-MESSAGES: :[[@LINE-1]]:11: warning: {{.*}}; use static_cast/const_cast/reinterpret_cast [
105+
// CHECK-MESSAGES: :[[@LINE-1]]:11: warning: {{.*}}; use static_cast {{.*}}
106+
// CHECK-FIXES: Y *pB = static_cast<Y*>(pX);
106107
Y &rB = (Y&)*pX;
107-
// CHECK-MESSAGES: :[[@LINE-1]]:11: warning: {{.*}}; use static_cast/const_cast/reinterpret_cast [
108+
// CHECK-MESSAGES: :[[@LINE-1]]:11: warning: {{.*}}; use static_cast {{.*}}
109+
// CHECK-FIXES: Y &rB = static_cast<Y&>(*pX);
108110

109111
const char *pc3 = (const char*)cpv;
110112
// CHECK-MESSAGES: :[[@LINE-1]]:21: warning: {{.*}}; use static_cast [

clang/include/clang/AST/Attr.h

Lines changed: 7 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -233,44 +233,19 @@ class HLSLAnnotationAttr : public InheritableAttr {
233233
}
234234
};
235235

236-
class HLSLSemanticAttr : public HLSLAnnotationAttr {
237-
unsigned SemanticIndex = 0;
238-
LLVM_PREFERRED_TYPE(bool)
239-
unsigned SemanticIndexable : 1;
240-
LLVM_PREFERRED_TYPE(bool)
241-
unsigned SemanticExplicitIndex : 1;
242-
243-
Decl *TargetDecl = nullptr;
244-
236+
class HLSLSemanticBaseAttr : public HLSLAnnotationAttr {
245237
protected:
246-
HLSLSemanticAttr(ASTContext &Context, const AttributeCommonInfo &CommonInfo,
247-
attr::Kind AK, bool IsLateParsed,
248-
bool InheritEvenIfAlreadyPresent, bool SemanticIndexable)
238+
HLSLSemanticBaseAttr(ASTContext &Context,
239+
const AttributeCommonInfo &CommonInfo, attr::Kind AK,
240+
bool IsLateParsed, bool InheritEvenIfAlreadyPresent)
249241
: HLSLAnnotationAttr(Context, CommonInfo, AK, IsLateParsed,
250-
InheritEvenIfAlreadyPresent) {
251-
this->SemanticIndexable = SemanticIndexable;
252-
this->SemanticExplicitIndex = false;
253-
}
242+
InheritEvenIfAlreadyPresent) {}
254243

255244
public:
256-
bool isSemanticIndexable() const { return SemanticIndexable; }
257-
258-
void setSemanticIndex(unsigned SemanticIndex) {
259-
this->SemanticIndex = SemanticIndex;
260-
this->SemanticExplicitIndex = true;
261-
}
262-
263-
unsigned getSemanticIndex() const { return SemanticIndex; }
264-
265-
bool isSemanticIndexExplicit() const { return SemanticExplicitIndex; }
266-
267-
void setTargetDecl(Decl *D) { TargetDecl = D; }
268-
Decl *getTargetDecl() const { return TargetDecl; }
269-
270245
// Implement isa/cast/dyncast/etc.
271246
static bool classof(const Attr *A) {
272-
return A->getKind() >= attr::FirstHLSLSemanticAttr &&
273-
A->getKind() <= attr::LastHLSLSemanticAttr;
247+
return A->getKind() >= attr::FirstHLSLSemanticBaseAttr &&
248+
A->getKind() <= attr::LastHLSLSemanticBaseAttr;
274249
}
275250
};
276251

clang/include/clang/AST/Decl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2335,7 +2335,7 @@ class FunctionDecl : public DeclaratorDecl,
23352335
}
23362336

23372337
void setDefaultedOrDeletedInfo(DefaultedOrDeletedFunctionInfo *Info);
2338-
DefaultedOrDeletedFunctionInfo *getDefalutedOrDeletedInfo() const;
2338+
DefaultedOrDeletedFunctionInfo *getDefaultedOrDeletedInfo() const;
23392339

23402340
/// Whether this function is variadic.
23412341
bool isVariadic() const;

clang/include/clang/Analysis/Analyses/LifetimeSafety/FactsGenerator.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ class FactsGenerator : public ConstStmtVisitor<FactsGenerator> {
4343
void VisitUnaryOperator(const UnaryOperator *UO);
4444
void VisitReturnStmt(const ReturnStmt *RS);
4545
void VisitBinaryOperator(const BinaryOperator *BO);
46+
void VisitConditionalOperator(const ConditionalOperator *CO);
4647
void VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *OCE);
4748
void VisitCXXFunctionalCastExpr(const CXXFunctionalCastExpr *FCE);
4849
void VisitInitListExpr(const InitListExpr *ILE);

clang/include/clang/Basic/Attr.td

Lines changed: 16 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -783,18 +783,6 @@ class DeclOrStmtAttr : InheritableAttr;
783783
/// An attribute class for HLSL Annotations.
784784
class HLSLAnnotationAttr : InheritableAttr;
785785

786-
class HLSLSemanticAttr<bit Indexable> : HLSLAnnotationAttr {
787-
bit SemanticIndexable = Indexable;
788-
int SemanticIndex = 0;
789-
bit SemanticExplicitIndex = 0;
790-
791-
let Spellings = [];
792-
let Subjects = SubjectList<[ParmVar, Field, Function]>;
793-
let LangOpts = [HLSL];
794-
let Args = [DeclArgument<Named, "Target">, IntArgument<"SemanticIndex">,
795-
BoolArgument<"SemanticExplicitIndex">];
796-
}
797-
798786
/// A target-specific attribute. This class is meant to be used as a mixin
799787
/// with InheritableAttr or Attr depending on the attribute's needs.
800788
class TargetSpecificAttr<TargetSpec target> {
@@ -5021,28 +5009,28 @@ def HLSLUnparsedSemantic : HLSLAnnotationAttr {
50215009
let Documentation = [InternalOnly];
50225010
}
50235011

5024-
def HLSLUserSemantic : HLSLSemanticAttr</* Indexable= */ 1> {
5025-
let Documentation = [InternalOnly];
5026-
}
5027-
5028-
def HLSLSV_Position : HLSLSemanticAttr</* Indexable= */ 1> {
5029-
let Documentation = [HLSLSV_PositionDocs];
5030-
}
5012+
class HLSLSemanticBaseAttr : HLSLAnnotationAttr {
5013+
int SemanticIndex = 0;
50315014

5032-
def HLSLSV_GroupThreadID : HLSLSemanticAttr</* Indexable= */ 0> {
5033-
let Documentation = [HLSLSV_GroupThreadIDDocs];
5034-
}
5015+
let Spellings = [];
5016+
let Subjects = SubjectList<[ParmVar, Field, Function]>;
5017+
let LangOpts = [HLSL];
50355018

5036-
def HLSLSV_GroupID : HLSLSemanticAttr</* Indexable= */ 0> {
5037-
let Documentation = [HLSLSV_GroupIDDocs];
5019+
let Args = [StringArgument<"SemanticName">, IntArgument<"SemanticIndex">];
50385020
}
50395021

5040-
def HLSLSV_GroupIndex : HLSLSemanticAttr</* Indexable= */ 0> {
5041-
let Documentation = [HLSLSV_GroupIndexDocs];
5022+
def HLSLParsedSemantic : HLSLSemanticBaseAttr {
5023+
let Spellings = [];
5024+
let Subjects = SubjectList<[ParmVar, Field, Function]>;
5025+
let LangOpts = [HLSL];
5026+
let Documentation = [InternalOnly];
50425027
}
50435028

5044-
def HLSLSV_DispatchThreadID : HLSLSemanticAttr</* Indexable= */ 0> {
5045-
let Documentation = [HLSLSV_DispatchThreadIDDocs];
5029+
def HLSLAppliedSemantic : HLSLSemanticBaseAttr {
5030+
let Spellings = [];
5031+
let Subjects = SubjectList<[ParmVar, Field, Function]>;
5032+
let LangOpts = [HLSL];
5033+
let Documentation = [InternalOnly];
50465034
}
50475035

50485036
def HLSLPackOffset: HLSLAnnotationAttr {

clang/include/clang/Basic/AttrDocs.td

Lines changed: 0 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -8672,38 +8672,6 @@ randomized.
86728672
}];
86738673
}
86748674

8675-
def HLSLSV_GroupThreadIDDocs : Documentation {
8676-
let Category = DocHLSLSemantics;
8677-
let Content = [{
8678-
The ``SV_GroupThreadID`` semantic, when applied to an input parameter, specifies which
8679-
individual thread within a thread group is executing in. This attribute is
8680-
only supported in compute shaders.
8681-
8682-
The full documentation is available here: https://docs.microsoft.com/en-us/windows/win32/direct3dhlsl/sv-groupthreadid
8683-
}];
8684-
}
8685-
8686-
def HLSLSV_GroupIDDocs : Documentation {
8687-
let Category = DocHLSLSemantics;
8688-
let Content = [{
8689-
The ``SV_GroupID`` semantic, when applied to an input parameter, specifies which
8690-
thread group a shader is executing in. This attribute is only supported in compute shaders.
8691-
8692-
The full documentation is available here: https://docs.microsoft.com/en-us/windows/win32/direct3dhlsl/sv-groupid
8693-
}];
8694-
}
8695-
8696-
def HLSLSV_GroupIndexDocs : Documentation {
8697-
let Category = DocHLSLSemantics;
8698-
let Content = [{
8699-
The ``SV_GroupIndex`` semantic, when applied to an input parameter, specifies a
8700-
data binding to map the group index to the specified parameter. This attribute
8701-
is only supported in compute shaders.
8702-
8703-
The full documentation is available here: https://docs.microsoft.com/en-us/windows/win32/direct3dhlsl/sv-groupindex
8704-
}];
8705-
}
8706-
87078675
def HLSLResourceBindingDocs : Documentation {
87088676
let Category = DocCatFunction;
87098677
let Content = [{
@@ -8750,35 +8718,6 @@ The full documentation is available here: https://learn.microsoft.com/en-us/wind
87508718
}];
87518719
}
87528720

8753-
def HLSLSV_DispatchThreadIDDocs : Documentation {
8754-
let Category = DocHLSLSemantics;
8755-
let Content = [{
8756-
The ``SV_DispatchThreadID`` semantic, when applied to an input parameter,
8757-
specifies a data binding to map the global thread offset within the Dispatch
8758-
call (per dimension of the group) to the specified parameter.
8759-
When applied to a field of a struct, the data binding is specified to the field
8760-
when the struct is used as a parameter type.
8761-
The semantic on the field is ignored when not used as a parameter.
8762-
This attribute is only supported in compute shaders.
8763-
8764-
The full documentation is available here: https://docs.microsoft.com/en-us/windows/win32/direct3dhlsl/sv-dispatchthreadid
8765-
}];
8766-
}
8767-
8768-
def HLSLSV_PositionDocs : Documentation {
8769-
let Category = DocHLSLSemantics;
8770-
let Content = [{
8771-
The ``SV_Position`` semantic, when applied to an input parameter in a pixel
8772-
shader, contains the location of the pixel center (x, y) in screen space.
8773-
This semantic can be applied to the parameter, or a field in a struct used
8774-
as an input parameter.
8775-
This attribute is supported as an input in pixel, hull, domain and mesh shaders.
8776-
This attribute is supported as an output in vertex, geometry and domain shaders.
8777-
8778-
The full documentation is available here: https://docs.microsoft.com/en-us/windows/win32/direct3dhlsl/dx-graphics-hlsl-semantics
8779-
}];
8780-
}
8781-
87828721
def HLSLGroupSharedAddressSpaceDocs : Documentation {
87838722
let Category = DocCatVariable;
87848723
let Content = [{

clang/include/clang/Sema/SemaHLSL.h

Lines changed: 11 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -178,18 +178,11 @@ class SemaHLSL : public SemaBase {
178178
bool handleResourceTypeAttr(QualType T, const ParsedAttr &AL);
179179

180180
template <typename T>
181-
T *createSemanticAttr(const AttributeCommonInfo &ACI, NamedDecl *TargetDecl,
181+
T *createSemanticAttr(const AttributeCommonInfo &ACI,
182182
std::optional<unsigned> Location) {
183-
T *Attr =
184-
::new (getASTContext()) T(getASTContext(), ACI, TargetDecl,
185-
Location.value_or(0), Location.has_value());
186-
187-
if (!Attr->isSemanticIndexable() && Location.has_value()) {
188-
Diag(Attr->getLocation(), diag::err_hlsl_semantic_indexing_not_supported)
189-
<< Attr->getAttrName()->getName();
190-
return nullptr;
191-
}
192-
return Attr;
183+
return ::new (getASTContext())
184+
T(getASTContext(), ACI, ACI.getAttrName()->getName(),
185+
Location.value_or(0));
193186
}
194187

195188
void diagnoseSystemSemanticAttr(Decl *D, const ParsedAttr &AL,
@@ -247,7 +240,7 @@ class SemaHLSL : public SemaBase {
247240
IdentifierInfo *RootSigOverrideIdent = nullptr;
248241

249242
struct SemanticInfo {
250-
HLSLSemanticAttr *Semantic;
243+
HLSLParsedSemanticAttr *Semantic;
251244
std::optional<uint32_t> Index;
252245
};
253246

@@ -257,14 +250,14 @@ class SemaHLSL : public SemaBase {
257250
const RecordType *RT);
258251

259252
void checkSemanticAnnotation(FunctionDecl *EntryPoint, const Decl *Param,
260-
const HLSLSemanticAttr *SemanticAttr);
261-
HLSLSemanticAttr *createSemantic(const SemanticInfo &Semantic,
262-
DeclaratorDecl *TargetDecl);
263-
bool determineActiveSemanticOnScalar(FunctionDecl *FD, DeclaratorDecl *D,
253+
const HLSLAppliedSemanticAttr *SemanticAttr);
254+
bool determineActiveSemanticOnScalar(FunctionDecl *FD,
255+
DeclaratorDecl *OutputDecl,
256+
DeclaratorDecl *D,
264257
SemanticInfo &ActiveSemantic,
265258
llvm::StringSet<> &ActiveInputSemantics);
266-
bool determineActiveSemantic(FunctionDecl *FD, DeclaratorDecl *D,
267-
SemanticInfo &ActiveSemantic,
259+
bool determineActiveSemantic(FunctionDecl *FD, DeclaratorDecl *OutputDecl,
260+
DeclaratorDecl *D, SemanticInfo &ActiveSemantic,
268261
llvm::StringSet<> &ActiveInputSemantics);
269262

270263
void processExplicitBindingsOnDecl(VarDecl *D);

0 commit comments

Comments
 (0)