//===------ SemaPPC.cpp ------ PowerPC target-specific routines -----------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file implements semantic analysis functions specific to PowerPC. // //===----------------------------------------------------------------------===// #include "clang/Sema/SemaPPC.h" #include "clang/AST/ASTContext.h" #include "clang/AST/Attr.h" #include "clang/AST/CharUnits.h" #include "clang/AST/Decl.h" #include "clang/AST/Type.h" #include "clang/Basic/DiagnosticSema.h" #include "clang/Basic/SourceLocation.h" #include "clang/Basic/TargetBuiltins.h" #include "clang/Basic/TargetInfo.h" #include "clang/Sema/Sema.h" #include "llvm/ADT/APSInt.h" namespace clang { SemaPPC::SemaPPC(Sema &S) : … { … } void SemaPPC::checkAIXMemberAlignment(SourceLocation Loc, const Expr *Arg) { … } static bool isPPC_64Builtin(unsigned BuiltinID) { … } bool SemaPPC::CheckPPCBuiltinFunctionCall(const TargetInfo &TI, unsigned BuiltinID, CallExpr *TheCall) { … } // Check if the given type is a non-pointer PPC MMA type. This function is used // in Sema to prevent invalid uses of restricted PPC MMA types. bool SemaPPC::CheckPPCMMAType(QualType Type, SourceLocation TypeLoc) { … } /// DecodePPCMMATypeFromStr - This decodes one PPC MMA type descriptor from Str, /// advancing the pointer over the consumed characters. The decoded type is /// returned. If the decoded type represents a constant integer with a /// constraint on its value then Mask is set to that value. The type descriptors /// used in Str are specific to PPC MMA builtins and are documented in the file /// defining the PPC builtins. static QualType DecodePPCMMATypeFromStr(ASTContext &Context, const char *&Str, unsigned &Mask) { … } bool SemaPPC::BuiltinPPCMMACall(CallExpr *TheCall, unsigned BuiltinID, const char *TypeStr) { … } bool SemaPPC::BuiltinVSX(CallExpr *TheCall) { … } } // namespace clang