llvm-project/clang/lib/Sema
Sander de Smalen 981f0802b3 [SVE] Generate overloaded functions for ACLE intrinsics.
The SVE ACLE allows using a short-form for the intrinsics, e.g.
the following two declarations generate the same code:

  svuint32_t svld1(svbool_t, uint32_t const *);
  svuint32_t svld1_u32(svbool_t, uint32_t const *);

using the attribute:
  __clang_arm_builtin_alias

so that any call to svld1(svbool_t, uint32_t const *) will
map to __builtin_sve_svld1_u32.

Reviewers: SjoerdMeijer, miyuki, efriedma, simon_tatham, rengolin

Reviewed By: SjoerdMeijer

Tags: #clang

Differential Revision: https://reviews.llvm.org/D75861
2020-03-19 09:36:23 +00:00
..
AnalysisBasedWarnings.cpp Revert "[clang] detect switch fallthrough marked by a comment (PR43465)" 2020-03-02 22:33:25 +01:00
CMakeLists.txt [Sema] Split availability processing into SemaAvailability.cpp 2020-01-24 17:35:39 -08:00
CodeCompleteConsumer.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
CoroutineStmtBuilder.h Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
DeclSpec.cpp Avoid SourceManager.h include in RawCommentList.h, add missing incs 2020-02-27 13:49:40 -08:00
DelayedDiagnostic.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
IdentifierResolver.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
JumpDiagnostics.cpp [CodeGen] Emit destructor calls to destruct compound literals 2020-03-10 14:08:28 -07:00
MultiplexExternalSemaSource.cpp [clang] Improve LLVM-style RTTI support in ExternalASTSource/ExternalSemaSource 2019-12-15 18:11:01 +01:00
OpenCLBuiltins.td [OpenCL] Add pipe and kernel enqueuing builtins 2020-03-17 13:15:32 +00:00
ParsedAttr.cpp Handle PluginAttrInstances using ManagedStatic 2020-03-04 15:03:13 +00:00
Scope.cpp Un-revert "[coroutines][PR40978] Emit error for co_yield within catch block" 2019-03-25 00:53:10 +00:00
ScopeInfo.cpp PR42104: Support instantiations of lambdas that implicitly capture 2019-06-04 17:17:20 +00:00
Sema.cpp Avoid SourceManager.h include in RawCommentList.h, add missing incs 2020-02-27 13:49:40 -08:00
SemaAccess.cpp [c++20] Delete defaulted comparison functions if they would invoke an 2019-12-10 19:28:30 -08:00
SemaAttr.cpp Make llvm::StringRef to std::string conversions explicit. 2020-01-28 23:25:25 +01:00
SemaAvailability.cpp Prune TargetInfo.h include from ParsedAttr.h, NFC 2020-03-11 20:47:11 -07:00
SemaCUDA.cpp Prune TargetInfo.h include from ParsedAttr.h, NFC 2020-03-11 20:47:11 -07:00
SemaCXXScopeSpec.cpp [Clang] Migrate llvm::make_unique to std::make_unique 2019-08-14 23:04:18 +00:00
SemaCast.cpp Don't emit pointer to int cast warnings under -Wmicrosoft-cast 2020-03-09 13:27:46 -07:00
SemaChecking.cpp Suppress an "unused variable" warning in release build 2020-03-10 17:10:52 +00:00
SemaCodeComplete.cpp [Sema][CodeComplete] Handle symlinks for include code completion 2020-02-19 11:45:58 -05:00
SemaConcept.cpp [Concepts] Add missing CXXThisScope to function template constraint substitution 2020-02-05 01:10:35 +02:00
SemaConsumer.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
SemaCoroutine.cpp Fix "pointer is null" static analyzer warnings. NFCI. 2020-01-09 12:05:48 +00:00
SemaDecl.cpp [Clang] Undef attribute for global variables 2020-03-17 21:22:23 +00:00
SemaDeclAttr.cpp [SVE] Generate overloaded functions for ACLE intrinsics. 2020-03-19 09:36:23 +00:00
SemaDeclCXX.cpp [Sema][SVE] Don't allow sizeless types to be caught 2020-03-17 12:00:16 +00:00
SemaDeclObjC.cpp Prune TargetInfo.h include from ParsedAttr.h, NFC 2020-03-11 20:47:11 -07:00
SemaExceptionSpec.cpp [Sema][SVE] Reject sizeless types in exception specs 2020-03-17 11:39:03 +00:00
SemaExpr.cpp Fix crash in check-mlir due to 08ab8c9af4 2020-03-18 21:50:00 -04:00
SemaExprCXX.cpp [Sema][SVE] Reject "delete" with sizeless types 2020-03-17 12:45:00 +00:00
SemaExprMember.cpp Resolve exception specifications after marking the corresponding 2019-12-15 22:02:30 -08:00
SemaExprObjC.cpp [objc_direct] Small updates to help with adoption. 2020-02-16 16:32:41 -08:00
SemaFixItUtils.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
SemaInit.cpp Avoid SourceManager.h include in RawCommentList.h, add missing incs 2020-02-27 13:49:40 -08:00
SemaLambda.cpp [Sema][SVE] Don't allow fields to have sizeless type 2020-03-13 19:22:23 +00:00
SemaLookup.cpp Fix handling of destructor names that name typedefs. 2020-02-10 02:21:01 -08:00
SemaModule.cpp [DeclCXX] Remove unknown external linkage specifications 2019-11-21 15:23:05 +02:00
SemaObjCProperty.cpp [NFC] Remove trailing space 2020-02-18 10:49:13 +08:00
SemaOpenMP.cpp [OPENMP50]Add support for extended device clause in target directives. 2020-03-18 15:02:37 -04:00
SemaOverload.cpp [AST] rename DependencyFlags.h => DependenceFlags.h, NFC 2020-03-16 13:54:21 +01:00
SemaPseudoObject.cpp [AST] Move dependence computations into a separate file 2020-03-17 09:22:31 +01:00
SemaStmt.cpp [Sema] Reword -Wrange-loop-analysis warning messages 2020-03-06 14:57:01 +01:00
SemaStmtAsm.cpp Support output constraints on "asm goto" 2020-02-24 18:51:29 -08:00
SemaStmtAttr.cpp [NFCI]Create CommonAttributeInfo Type as base type of *Attr and ParsedAttr. 2019-09-13 17:39:31 +00:00
SemaTemplate.cpp [clang] Fix crash on visiting null nestedNameSpecifier. 2020-03-18 09:15:02 +01:00
SemaTemplateDeduction.cpp PR44890: Inherit explicitly-specified template arguments into base class 2020-02-15 02:16:21 -08:00
SemaTemplateInstantiate.cpp Prune TargetInfo.h include from ParsedAttr.h, NFC 2020-03-11 20:47:11 -07:00
SemaTemplateInstantiateDecl.cpp PR44992 Don't crash when a defaulted <=> is in a class declared in a 2020-03-13 19:30:49 -07:00
SemaTemplateVariadic.cpp [NFC] Remove trailing space 2020-02-18 10:49:13 +08:00
SemaType.cpp [Sema][SVE] Reject arrays of sizeless types 2020-03-13 19:28:45 +00:00
TreeTransform.h [OPENMP50]Add support for extended device clause in target directives. 2020-03-18 15:02:37 -04:00
TypeLocBuilder.cpp [NFC] avoid AlignedCharArray in clang 2019-07-29 23:12:48 +00:00
TypeLocBuilder.h [NFC] avoid AlignedCharArray in clang 2019-07-29 23:12:48 +00:00
UsedDeclVisitor.h [NFC] Add UsedDeclVisitor 2020-03-17 12:12:40 -04:00