clang 20.0.0git
SemaX86.h
Go to the documentation of this file.
1//===----- SemaX86.h ------- X86 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 X86.
10///
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_CLANG_SEMA_SEMAX86_H
14#define LLVM_CLANG_SEMA_SEMAX86_H
15
16#include "clang/AST/DeclBase.h"
17#include "clang/AST/Expr.h"
18#include "clang/Basic/LLVM.h"
20#include "clang/Sema/SemaBase.h"
21
22namespace clang {
23class ParsedAttr;
24
25class SemaX86 : public SemaBase {
26public:
27 SemaX86(Sema &S);
28
29 bool CheckBuiltinRoundingOrSAE(unsigned BuiltinID, CallExpr *TheCall);
30 bool CheckBuiltinGatherScatterScale(unsigned BuiltinID, CallExpr *TheCall);
31 bool CheckBuiltinTileArguments(unsigned BuiltinID, CallExpr *TheCall);
33 bool CheckBuiltinTileDuplicate(CallExpr *TheCall, ArrayRef<int> ArgNums);
35 ArrayRef<int> ArgNums);
36 bool CheckBuiltinFunctionCall(const TargetInfo &TI, unsigned BuiltinID,
37 CallExpr *TheCall);
38
39 void handleAnyInterruptAttr(Decl *D, const ParsedAttr &AL);
41};
42} // namespace clang
43
44#endif // LLVM_CLANG_SEMA_SEMAX86_H
const Decl * D
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Definition: Expr.h:2830
Decl - This represents one declaration (or definition), e.g.
Definition: DeclBase.h:86
ParsedAttr - Represents a syntactic attribute.
Definition: ParsedAttr.h:129
bool CheckBuiltinTileArgumentsRange(CallExpr *TheCall, ArrayRef< int > ArgNums)
Definition: SemaX86.cpp:556
void handleForceAlignArgPointerAttr(Decl *D, const ParsedAttr &AL)
Definition: SemaX86.cpp:1127
bool CheckBuiltinFunctionCall(const TargetInfo &TI, unsigned BuiltinID, CallExpr *TheCall)
Definition: SemaX86.cpp:628
bool CheckBuiltinRoundingOrSAE(unsigned BuiltinID, CallExpr *TheCall)
Definition: SemaX86.cpp:28
bool CheckBuiltinTileRangeAndDuplicate(CallExpr *TheCall, ArrayRef< int > ArgNums)
Definition: SemaX86.cpp:591
bool CheckBuiltinGatherScatterScale(unsigned BuiltinID, CallExpr *TheCall)
Definition: SemaX86.cpp:462
bool CheckBuiltinTileDuplicate(CallExpr *TheCall, ArrayRef< int > ArgNums)
Definition: SemaX86.cpp:566
void handleAnyInterruptAttr(Decl *D, const ParsedAttr &AL)
Definition: SemaX86.cpp:1058
bool CheckBuiltinTileArguments(unsigned BuiltinID, CallExpr *TheCall)
Definition: SemaX86.cpp:597
Sema - This implements semantic analysis and AST building for C.
Definition: Sema.h:535
Exposes information about the current target.
Definition: TargetInfo.h:218
Defines the clang::TargetInfo interface.
The JSON file list parser is used to communicate input to InstallAPI.