clang 23.0.0git
SemaAMDGPU.h
Go to the documentation of this file.
1//===----- SemaAMDGPU.h --- AMDGPU target-specific routines ---*- C++ -*---===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8/// \file
9/// This file declares semantic analysis functions specific to AMDGPU.
10///
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_CLANG_SEMA_SEMAAMDGPU_H
14#define LLVM_CLANG_SEMA_SEMAAMDGPU_H
15
16#include "clang/AST/ASTFwd.h"
17#include "clang/Sema/SemaBase.h"
18
19namespace clang {
21class ParsedAttr;
22
23class SemaAMDGPU : public SemaBase {
24public:
25 SemaAMDGPU(Sema &S);
26
27 bool CheckAMDGCNBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall);
28
29 /// Emits a diagnostic if the \p E is not an atomic ordering encoded in the C
30 /// ABI format, or if the atomic ordering is not valid for the operation type
31 /// as defined by \p MayLoad and \p MayStore. \returns true if a diagnostic
32 /// was emitted.
33 bool checkAtomicOrderingCABIArg(Expr *E, bool MayLoad, bool MayStore);
34
35 bool checkCoopAtomicFunctionCall(CallExpr *TheCall, bool IsStore);
36 bool checkAtomicMonitorLoad(CallExpr *TheCall);
37
38 bool checkMovDPPFunctionCall(CallExpr *TheCall, unsigned NumArgs,
39 unsigned NumDataArgs);
40
41 /// Create an AMDGPUWavesPerEUAttr attribute.
42 AMDGPUFlatWorkGroupSizeAttr *
44 Expr *Max);
45
46 /// addAMDGPUFlatWorkGroupSizeAttr - Adds an amdgpu_flat_work_group_size
47 /// attribute to a particular declaration.
49 Expr *Min, Expr *Max);
50
51 /// Create an AMDGPUWavesPerEUAttr attribute.
52 AMDGPUWavesPerEUAttr *
54 Expr *Max);
55
56 /// addAMDGPUWavePersEUAttr - Adds an amdgpu_waves_per_eu attribute to a
57 /// particular declaration.
59 Expr *Min, Expr *Max);
60
61 /// Create an AMDGPUMaxNumWorkGroupsAttr attribute.
62 AMDGPUMaxNumWorkGroupsAttr *
64 Expr *YExpr, Expr *ZExpr);
65
66 /// addAMDGPUMaxNumWorkGroupsAttr - Adds an amdgpu_max_num_work_groups
67 /// attribute to a particular declaration.
69 Expr *XExpr, Expr *YExpr, Expr *ZExpr);
70
71 void handleAMDGPUWavesPerEUAttr(Decl *D, const ParsedAttr &AL);
72 void handleAMDGPUNumSGPRAttr(Decl *D, const ParsedAttr &AL);
73 void handleAMDGPUNumVGPRAttr(Decl *D, const ParsedAttr &AL);
76};
77} // namespace clang
78
79#endif // LLVM_CLANG_SEMA_SEMAAMDGPU_H
Forward declaration of all AST node types.
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Definition Expr.h:2946
Decl - This represents one declaration (or definition), e.g.
Definition DeclBase.h:86
This represents one expression.
Definition Expr.h:112
ParsedAttr - Represents a syntactic attribute.
Definition ParsedAttr.h:119
void handleAMDGPUMaxNumWorkGroupsAttr(Decl *D, const ParsedAttr &AL)
void addAMDGPUFlatWorkGroupSizeAttr(Decl *D, const AttributeCommonInfo &CI, Expr *Min, Expr *Max)
addAMDGPUFlatWorkGroupSizeAttr - Adds an amdgpu_flat_work_group_size attribute to a particular declar...
bool checkCoopAtomicFunctionCall(CallExpr *TheCall, bool IsStore)
void handleAMDGPUFlatWorkGroupSizeAttr(Decl *D, const ParsedAttr &AL)
bool checkAtomicMonitorLoad(CallExpr *TheCall)
bool checkAtomicOrderingCABIArg(Expr *E, bool MayLoad, bool MayStore)
Emits a diagnostic if the E is not an atomic ordering encoded in the C ABI format,...
void handleAMDGPUNumSGPRAttr(Decl *D, const ParsedAttr &AL)
AMDGPUMaxNumWorkGroupsAttr * CreateAMDGPUMaxNumWorkGroupsAttr(const AttributeCommonInfo &CI, Expr *XExpr, Expr *YExpr, Expr *ZExpr)
Create an AMDGPUMaxNumWorkGroupsAttr attribute.
AMDGPUWavesPerEUAttr * CreateAMDGPUWavesPerEUAttr(const AttributeCommonInfo &CI, Expr *Min, Expr *Max)
Create an AMDGPUWavesPerEUAttr attribute.
void handleAMDGPUNumVGPRAttr(Decl *D, const ParsedAttr &AL)
AMDGPUFlatWorkGroupSizeAttr * CreateAMDGPUFlatWorkGroupSizeAttr(const AttributeCommonInfo &CI, Expr *Min, Expr *Max)
Create an AMDGPUWavesPerEUAttr attribute.
bool checkMovDPPFunctionCall(CallExpr *TheCall, unsigned NumArgs, unsigned NumDataArgs)
void handleAMDGPUWavesPerEUAttr(Decl *D, const ParsedAttr &AL)
bool CheckAMDGCNBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall)
void addAMDGPUWavesPerEUAttr(Decl *D, const AttributeCommonInfo &CI, Expr *Min, Expr *Max)
addAMDGPUWavePersEUAttr - Adds an amdgpu_waves_per_eu attribute to a particular declaration.
void addAMDGPUMaxNumWorkGroupsAttr(Decl *D, const AttributeCommonInfo &CI, Expr *XExpr, Expr *YExpr, Expr *ZExpr)
addAMDGPUMaxNumWorkGroupsAttr - Adds an amdgpu_max_num_work_groups attribute to a particular declarat...
SemaBase(Sema &S)
Definition SemaBase.cpp:7
Sema - This implements semantic analysis and AST building for C.
Definition Sema.h:868
The JSON file list parser is used to communicate input to InstallAPI.