Skip to content

Commit 56c396c

Browse files
Merge branch 'main' into bazel-fullbuild
2 parents c641e61 + e5e9c3b commit 56c396c

File tree

262 files changed

+11254
-7638
lines changed

Some content is hidden

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

262 files changed

+11254
-7638
lines changed

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/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);

clang/lib/Analysis/LifetimeSafety/FactsGenerator.cpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,15 @@ void FactsGenerator::VisitBinaryOperator(const BinaryOperator *BO) {
176176
handleAssignment(BO->getLHS(), BO->getRHS());
177177
}
178178

179+
void FactsGenerator::VisitConditionalOperator(const ConditionalOperator *CO) {
180+
if (hasOrigin(CO)) {
181+
// Merge origins from both branches of the conditional operator.
182+
// We kill to clear the initial state and merge both origins into it.
183+
killAndFlowOrigin(*CO, *CO->getTrueExpr());
184+
flowOrigin(*CO, *CO->getFalseExpr());
185+
}
186+
}
187+
179188
void FactsGenerator::VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *OCE) {
180189
// Assignment operators have special "kill-then-propagate" semantics
181190
// and are handled separately.

clang/lib/CIR/CodeGen/CIRGenExpr.cpp

Lines changed: 0 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -2134,79 +2134,6 @@ RValue CIRGenFunction::emitCXXMemberCallExpr(const CXXMemberCallExpr *ce,
21342134
ce, md, returnValue, hasQualifier, qualifier, isArrow, base);
21352135
}
21362136

2137-
void CIRGenFunction::emitCXXConstructExpr(const CXXConstructExpr *e,
2138-
AggValueSlot dest) {
2139-
assert(!dest.isIgnored() && "Must have a destination!");
2140-
const CXXConstructorDecl *cd = e->getConstructor();
2141-
2142-
// If we require zero initialization before (or instead of) calling the
2143-
// constructor, as can be the case with a non-user-provided default
2144-
// constructor, emit the zero initialization now, unless destination is
2145-
// already zeroed.
2146-
if (e->requiresZeroInitialization() && !dest.isZeroed()) {
2147-
switch (e->getConstructionKind()) {
2148-
case CXXConstructionKind::Delegating:
2149-
case CXXConstructionKind::Complete:
2150-
emitNullInitialization(getLoc(e->getSourceRange()), dest.getAddress(),
2151-
e->getType());
2152-
break;
2153-
case CXXConstructionKind::VirtualBase:
2154-
case CXXConstructionKind::NonVirtualBase:
2155-
cgm.errorNYI(e->getSourceRange(),
2156-
"emitCXXConstructExpr: base requires initialization");
2157-
break;
2158-
}
2159-
}
2160-
2161-
// If this is a call to a trivial default constructor, do nothing.
2162-
if (cd->isTrivial() && cd->isDefaultConstructor())
2163-
return;
2164-
2165-
// Elide the constructor if we're constructing from a temporary
2166-
if (getLangOpts().ElideConstructors && e->isElidable()) {
2167-
// FIXME: This only handles the simplest case, where the source object is
2168-
// passed directly as the first argument to the constructor. This
2169-
// should also handle stepping through implicit casts and conversion
2170-
// sequences which involve two steps, with a conversion operator
2171-
// follwed by a converting constructor.
2172-
const Expr *srcObj = e->getArg(0);
2173-
assert(srcObj->isTemporaryObject(getContext(), cd->getParent()));
2174-
assert(
2175-
getContext().hasSameUnqualifiedType(e->getType(), srcObj->getType()));
2176-
emitAggExpr(srcObj, dest);
2177-
return;
2178-
}
2179-
2180-
if (const ArrayType *arrayType = getContext().getAsArrayType(e->getType())) {
2181-
assert(!cir::MissingFeatures::sanitizers());
2182-
emitCXXAggrConstructorCall(cd, arrayType, dest.getAddress(), e, false);
2183-
} else {
2184-
2185-
clang::CXXCtorType type = Ctor_Complete;
2186-
bool forVirtualBase = false;
2187-
bool delegating = false;
2188-
2189-
switch (e->getConstructionKind()) {
2190-
case CXXConstructionKind::Complete:
2191-
type = Ctor_Complete;
2192-
break;
2193-
case CXXConstructionKind::Delegating:
2194-
// We should be emitting a constructor; GlobalDecl will assert this
2195-
type = curGD.getCtorType();
2196-
delegating = true;
2197-
break;
2198-
case CXXConstructionKind::VirtualBase:
2199-
forVirtualBase = true;
2200-
[[fallthrough]];
2201-
case CXXConstructionKind::NonVirtualBase:
2202-
type = Ctor_Base;
2203-
break;
2204-
}
2205-
2206-
emitCXXConstructorCall(cd, type, forVirtualBase, delegating, dest, e);
2207-
}
2208-
}
2209-
22102137
RValue CIRGenFunction::emitReferenceBindingToExpr(const Expr *e) {
22112138
// Emit the expression as an lvalue.
22122139
LValue lv = emitLValue(e);

clang/lib/CIR/CodeGen/CIRGenExprAggregate.cpp

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -779,8 +779,8 @@ void AggExprEmitter::visitCXXParenListOrInitListExpr(
779779
Expr *e, ArrayRef<Expr *> args, FieldDecl *initializedFieldInUnion,
780780
Expr *arrayFiller) {
781781

782-
const AggValueSlot dest =
783-
ensureSlot(cgf.getLoc(e->getSourceRange()), e->getType());
782+
const mlir::Location loc = cgf.getLoc(e->getSourceRange());
783+
const AggValueSlot dest = ensureSlot(loc, e->getType());
784784

785785
if (e->getType()->isConstantArrayType()) {
786786
cir::ArrayType arrayTy =
@@ -819,10 +819,23 @@ void AggExprEmitter::visitCXXParenListOrInitListExpr(
819819
if (auto *cxxrd = dyn_cast<CXXRecordDecl>(record)) {
820820
assert(numInitElements >= cxxrd->getNumBases() &&
821821
"missing initializer for base class");
822-
if (cxxrd->getNumBases() > 0) {
823-
cgf.cgm.errorNYI(e->getSourceRange(),
824-
"visitCXXParenListOrInitListExpr base class init");
825-
return;
822+
for (auto &base : cxxrd->bases()) {
823+
assert(!base.isVirtual() && "should not see vbases here");
824+
CXXRecordDecl *baseRD = base.getType()->getAsCXXRecordDecl();
825+
Address address = cgf.getAddressOfDirectBaseInCompleteClass(
826+
loc, dest.getAddress(), cxxrd, baseRD,
827+
/*baseIsVirtual=*/false);
828+
assert(!cir::MissingFeatures::aggValueSlotGC());
829+
AggValueSlot aggSlot = AggValueSlot::forAddr(
830+
address, Qualifiers(), AggValueSlot::IsDestructed,
831+
AggValueSlot::IsNotAliased,
832+
cgf.getOverlapForBaseInit(cxxrd, baseRD, false));
833+
cgf.emitAggExpr(args[curInitIndex++], aggSlot);
834+
if (base.getType().isDestructedType()) {
835+
cgf.cgm.errorNYI(e->getSourceRange(),
836+
"push deferred deactivation cleanup");
837+
return;
838+
}
826839
}
827840
}
828841

0 commit comments

Comments
 (0)