/llvm-project/llvm/test/CodeGen/AArch64/ |
H A D | sme-intrinsics-zero.ll | 2 ; RUN: llc -mtriple=aarch64-linux-gnu -mattr=+sme -verify-machineinstrs < %s | FileCheck %s 6 ; CHECK-LABEL: zero: 8 ; CHECK-NEXT: zero {} 9 ; CHECK-NEXT: zero {za0.d} 10 ; CHECK-NEXT: zero {za1.d} 11 ; CHECK-NEXT: zero {za0.d, za1.d} 12 ; CHECK-NEXT: zero {za2.d} 13 ; CHECK-NEXT: zero {za0.d, za2.d} 14 ; CHECK-NEXT: zero {za1.d, za2.d} 15 ; CHECK-NEXT: zero {za0.d, za1.d, za2.d} [all …]
|
H A D | sve-lrint.ll | 2 ; RUN: sed 's/iXLen/i64/g' %s | llc -mtriple=aarch64 -mattr=+sve |\ 3 ; RUN: FileCheck --check-prefixes=CHECK %s 6 ; CHECK-LABEL: lrint_v1f16: 8 ; CHECK-NEXT: ptrue p0.d 9 ; CHECK-NEXT: mov w8, #64511 // =0xfbff 10 ; CHECK-NEXT: mov z2.d, #0x8000000000000000 11 ; CHECK-NEXT: mov z1.h, w8 12 ; CHECK-NEXT: mov w8, #31743 // =0x7bff 13 ; CHECK-NEXT: frintx z0.h, p0/m, z0.h 14 ; CHECK-NEXT: mov z3.h, w8 [all …]
|
H A D | sve-llrint.ll | 2 ; RUN: llc < %s -mtriple=aarch64 -mattr=+sve | FileCheck %s 5 ; CHECK-LABEL: llrint_v1i64_v1f16: 7 ; CHECK-NEXT: ptrue p0.d 8 ; CHECK-NEXT: mov w8, #64511 // =0xfbff 9 ; CHECK-NEXT: mov z2.d, #0x8000000000000000 10 ; CHECK-NEXT: mov z1.h, w8 11 ; CHECK-NEXT: mov w8, #31743 // =0x7bff 12 ; CHECK-NEXT: frintx z0.h, p0/m, z0.h 13 ; CHECK-NEXT: mov z3.h, w8 14 ; CHECK-NEXT: fcmge p1.h, p0/z, z0.h, z1.h [all …]
|
H A D | complex-deinterleaving-add-mull-scalable-contract.ll | 2 ; RUN: llc < %s --mattr=+sve -o - | FileCheck %s 4 target triple = "aarch64-unknown-linux-gnu" 8 ; CHECK-LABEL: mull_add: 10 ; CHECK-NEXT: uzp2 z6.d, z0.d, z1.d 11 ; CHECK-NEXT: uzp1 z0.d, z0.d, z1.d 12 ; CHECK-NEXT: uzp2 z1.d, z2.d, z3.d 13 ; CHECK-NEXT: uzp1 z2.d, z2.d, z3.d 14 ; CHECK-NEXT: ptrue p0.d 15 ; CHECK-NEXT: fmul z7.d, z0.d, z1.d 16 ; CHECK-NEXT: fmul z1.d, z6.d, z1.d [all …]
|
H A D | complex-deinterleaving-add-mull-fixed-contract.ll | 2 ; RUN: llc < %s --mattr=+complxnum,+neon -o - | FileCheck %s 8 ; CHECK-LABEL: mull_add: 10 ; CHECK-NEXT: zip2 v4.2d, v2.2d, v3.2d 11 ; CHECK-NEXT: zip2 v5.2d, v0.2d, v1.2d 12 ; CHECK-NEXT: zip1 v0.2d, v0.2d, v1.2d 13 ; CHECK-NEXT: zip1 v2.2d, v2.2d, v3.2d 14 ; CHECK-NEXT: fmul v1.2d, v5.2d, v4.2d 15 ; CHECK-NEXT: fmul v3.2d, v0.2d, v4.2d 16 ; CHECK-NEXT: fneg v1.2d, v1.2d 17 ; CHECK-NEXT: fmla v3.2d, v2.2d, v5.2d [all …]
|
H A D | sve2-eor3.ll | 2 ; RUN: llc -mtriple=aarch64 -mattr=+sve < %s -o - | FileCheck --check-prefix=SVE %s 3 ; RUN: llc -mtriple=aarch64 -mattr=+sve2 < %s -o - | FileCheck --check-prefix=SVE2 %s 6 ; SVE-LABEL: eor3_nxv16i8_left: 8 ; SVE-NEXT: eor z0.d, z0.d, z1.d 9 ; SVE-NEXT: eor z0.d, z0.d, z2.d 10 ; SVE-NEXT: ret 12 ; SVE2-LABEL: eor3_nxv16i8_left: 14 ; SVE2-NEXT: eor3 z0.d, z0.d, z1.d, z2.d 15 ; SVE2-NEXT: ret 22 ; SVE-LABEL: eor3_nxv16i8_right: [all …]
|
/llvm-project/llvm/test/MC/RISCV/ |
H A D | numeric-reg-names-d.s | 1 # RUN: llvm-mc -triple riscv32 -mattr=+f,+d -M numeric < %s \ 2 # RUN: | FileCheck -check-prefix=CHECK-NUMERIC %s 3 # RUN: llvm-mc -filetype=obj -triple riscv32 -mattr=+f,+d < %s \ 4 # RUN: | llvm-objdump --mattr=+f,+d -d -M numeric - \ 5 # RUN: | FileCheck -check-prefix=CHECK-NUMERIC %s 7 # CHECK-NUMERIC: fsqrt.d f10, f0 8 # CHECK-NUMERIC-NEXT: fsqrt.d f10, f0 9 fsqrt.d fa0, f0 10 fsqrt.d fa0, ft0 12 # CHECK-NUMERIC: fsqrt.d f10, f1 [all …]
|
H A D | rv64a-aliases-valid.s | 1 # RUN: llvm-mc %s -triple=riscv64 -mattr=+a -M no-aliases \ 2 # RUN: | FileCheck -check-prefix=CHECK-INST %s 3 # RUN: llvm-mc %s -tripl [all...] |
/llvm-project/libcxx/test/std/numerics/rand/rand.dist/rand.dist.uni/rand.dist.uni.real/ |
H A D | eval.pass.cpp | 1 //===---------- 37 typedef std::uniform_real_distribution<> D; main() typedef 40 D d; main() local 77 typedef std::uniform_real_distribution<> D; main() typedef 80 D d; main() local 117 typedef std::uniform_real_distribution<> D; main() typedef 120 D d; main() local 157 typedef std::uniform_real_distribution<> D; main() typedef 160 D d; main() local 197 typedef std::uniform_real_distribution<> D; main() typedef 200 D d; main() local 237 typedef std::uniform_real_distribution<> D; main() typedef 240 D d; main() local 277 typedef std::uniform_real_distribution<> D; main() typedef 280 D d; main() local 317 typedef std::uniform_real_distribution<> D; main() typedef 320 D d; main() local 357 typedef std::uniform_real_distribution<> D; main() typedef 360 D d; main() local 397 typedef std::uniform_real_distribution<> D; main() typedef 400 D d(-1, 1); main() local 437 typedef std::uniform_real_distribution<> D; main() typedef 440 D d(5.5, 25); main() local [all...] |
/llvm-project/compiler-rt/lib/sanitizer_common/tests/ |
H A D | sanitizer_deadlock_detector_test.cpp | 1 //===-- sanitizer_deadlock_detector_test.cpp ------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 36 dp->clear(); in ScopedDD() 48 DeadlockDetector<BV> &d = *sdd.dp; in RunBasicTest() local 51 for (size_t i = 0; i < d.size() * 3; i++) { in RunBasicTest() 52 uptr node = d.newNode(0); in RunBasicTest() 56 d.clear(); in RunBasicTest() 59 for (size_t i = 0; i < d.size(); i++) { in RunBasicTest() [all …]
|
/llvm-project/llvm/test/MC/AArch64/SME2/ |
H A D | add.s | 1 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme2,+sme-i16i64 < %s \ 2 // RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST 3 // RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \ 4 // RUN: | FileCheck %s --check-prefix=CHECK-ERROR 5 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sme2,+sme-i16i64 < %s \ 6 // RUN: | llvm-objdump -d --mattr=+sme2,+sme-i16i64 - | FileCheck %s --check-prefix=CHECK-IN… 7 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sme2,+sme-i16i64 < %s \ 8 // RUN: | llvm-objdump -d --mattr=-sme2 - | FileCheck %s --check-prefix=CHECK-UNKNOWN 9 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme2,+sme-i16i64 < %s \ 10 // RUN: | sed '/.text/d' | sed 's/.*encoding: //g' \ [all …]
|
H A D | fmla.s | 1 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme2,+sme-f64f64 < %s \ 2 // RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST 3 // RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \ 4 // RUN: | FileCheck %s --check-prefix=CHECK-ERROR 5 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sme2,+sme-f64f64 < %s \ 6 // RUN: | llvm-objdump -d --mattr=+sme2,+sme-f64f64 - | FileCheck %s --check-prefix=CHECK-IN… 7 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sme2,+sme-f64f64 < %s \ 8 // RUN: | llvm-objdump -d --mattr=-sme2 - | FileCheck %s --check-prefix=CHECK-UNKNOWN 9 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme2,+sme-f64f64 < %s \ 10 // RUN: | sed '/.text/d' | sed 's/.*encoding: //g' \ [all …]
|
H A D | fmls.s | 1 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme2,+sme-f64f64 < %s \ 2 // RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST 3 // RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \ 4 // RUN: | FileCheck %s --check-prefix=CHECK-ERROR 5 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sme2,+sme-f64f64 < %s \ 6 // RUN: | llvm-objdump -d --mattr=+sme2,+sme-f64f64 - | FileCheck %s --check-prefix=CHECK-IN… 7 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sme2,+sme-f64f64 < %s \ 8 // RUN: | llvm-objdump -d --mattr=-sme2 - | FileCheck %s --check-prefix=CHECK-UNKNOWN 9 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme2,+sme-f64f64 < %s \ 10 // RUN: | sed '/.text/d' | sed 's/.*encoding: //g' \ [all …]
|
H A D | sub.s | 1 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme2,+sme-i16i64 < %s \ 2 // RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST 3 // RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \ 4 // RUN: | FileCheck %s --check-prefix=CHECK-ERROR 5 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sme2,+sme-i16i64 < %s \ 6 // RUN: | llvm-objdump -d --mattr=+sme2,+sme-i16i64 - | FileCheck %s --check-prefix=CHECK-IN… 7 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sme2,+sme-i16i64 < %s \ 8 // RUN: | llvm-objdump -d --mattr=-sme2 - | FileCheck %s --check-prefix=CHECK-UNKNOWN 9 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme2,+sme-i16i64 < %s \ 10 // RUN: | sed '/.text/d' | sed 's/.*encoding: //g' \ [all …]
|
H A D | ldnt1d.s | 1 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme2 < %s \ 2 // RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST 3 // RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \ 4 // RUN: | FileCheck %s --check-prefix=CHECK-ERROR 5 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sme2 < %s \ 6 // RUN: | llvm-objdump -d --mattr=+sme2 --no-print-imm-hex - \ 7 // RUN: | FileCheck %s --check-prefix=CHECK-INST 8 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sme2 < %s \ 9 // RUN: | llvm-objdump -d --mattr=-sme2 --no-print-imm-hex - \ 10 // RUN: | FileCheck %s --check-prefix=CHECK-UNKNOWN [all …]
|
/llvm-project/clang/lib/Index/ |
H A D | IndexDecl.cpp | 1 //===- IndexDecl.cpp - Indexing declarations -------- 21 TRY_DECL(D,CALL_EXPR) global() argument 45 VisitDecl(const Decl * D) VisitDecl() argument 79 hasUserDefined(const ObjCMethodDecl * D,const ObjCImplDecl * Container) hasUserDefined() argument 88 handleDeclarator(const DeclaratorDecl * D,const NamedDecl * Parent=nullptr,bool isIBType=false) handleDeclarator() argument 139 handleObjCMethod(const ObjCMethodDecl * D,const ObjCPropertyDecl * AssociatedProp=nullptr) handleObjCMethod() argument 205 gatherTemplatePseudoOverrides(const NamedDecl * D,SmallVectorImpl<SymbolRelation> & Relations) gatherTemplatePseudoOverrides() argument 243 VisitFunctionDecl(const FunctionDecl * D) VisitFunctionDecl() argument 305 VisitVarDecl(const VarDecl * D) VisitVarDecl() argument 314 VisitDecompositionDecl(const DecompositionDecl * D) VisitDecompositionDecl() argument 320 VisitFieldDecl(const FieldDecl * D) VisitFieldDecl() argument 332 VisitObjCIvarDecl(const ObjCIvarDecl * D) VisitObjCIvarDecl() argument 342 VisitMSPropertyDecl(const MSPropertyDecl * D) VisitMSPropertyDecl() argument 348 VisitEnumConstantDecl(const EnumConstantDecl * D) VisitEnumConstantDecl() argument 354 VisitTypedefNameDecl(const TypedefNameDecl * D) VisitTypedefNameDecl() argument 364 VisitTagDecl(const TagDecl * D) VisitTagDecl() argument 407 VisitObjCInterfaceDecl(const ObjCInterfaceDecl * D) VisitObjCInterfaceDecl() argument 438 VisitObjCProtocolDecl(const ObjCProtocolDecl * D) VisitObjCProtocolDecl() argument 451 VisitObjCImplementationDecl(const ObjCImplementationDecl * D) VisitObjCImplementationDecl() argument 477 VisitObjCCategoryDecl(const ObjCCategoryDecl * D) VisitObjCCategoryDecl() argument 497 VisitObjCCategoryImplDecl(const ObjCCategoryImplDecl * D) VisitObjCCategoryImplDecl() argument 513 VisitObjCMethodDecl(const ObjCMethodDecl * D) VisitObjCMethodDecl() argument 523 VisitObjCPropertyDecl(const ObjCPropertyDecl * D) VisitObjCPropertyDecl() argument 538 VisitObjCPropertyImplDecl(const ObjCPropertyImplDecl * D) VisitObjCPropertyImplDecl() argument 592 VisitNamespaceDecl(const NamespaceDecl * D) VisitNamespaceDecl() argument 598 VisitNamespaceAliasDecl(const NamespaceAliasDecl * D) VisitNamespaceAliasDecl() argument 606 VisitUsingDecl(const UsingDecl * D) VisitUsingDecl() argument 626 VisitUsingDirectiveDecl(const UsingDirectiveDecl * D) VisitUsingDirectiveDecl() argument 642 VisitUnresolvedUsingValueDecl(const UnresolvedUsingValueDecl * D) VisitUnresolvedUsingValueDecl() argument 651 VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl * D) VisitUnresolvedUsingTypenameDecl() argument 661 VisitClassTemplateSpecializationDecl(const ClassTemplateSpecializationDecl * D) VisitClassTemplateSpecializationDecl() argument 685 shouldIndexTemplateParameterDefaultValue(const NamedDecl * D) shouldIndexTemplateParameterDefaultValue() argument 726 VisitTemplateDecl(const TemplateDecl * D) VisitTemplateDecl() argument 740 VisitConceptDecl(const ConceptDecl * D) VisitConceptDecl() argument 748 VisitFriendDecl(const FriendDecl * D) VisitFriendDecl() argument 766 VisitImportDecl(const ImportDecl * D) VisitImportDecl() argument 770 VisitStaticAssertDecl(const StaticAssertDecl * D) VisitStaticAssertDecl() argument 780 indexDecl(const Decl * D) indexDecl() argument 805 indexTopLevelDecl(const Decl * D) indexTopLevelDecl() argument [all...] |
/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriterDecl.cpp | 1 //===--- ASTWriterDecl.cpp - Declaration Serialization ------ 52 Emit(Decl * D) Emit() argument 184 AddFirstDeclFromEachModule(const Decl * D,bool IncludeLocal) AddFirstDeclFromEachModule() argument 214 AddTemplateSpecializations(DeclTy * D) AddTemplateSpecializations() argument 242 for (auto *D : Specs) { AddTemplateSpecializations() local 278 CanElideDeclDef(const Decl * D) CanElideDeclDef() argument 306 Visit(Decl * D) Visit() argument 361 VisitDecl(Decl * D) VisitDecl() argument 414 VisitPragmaCommentDecl(PragmaCommentDecl * D) VisitPragmaCommentDecl() argument 425 VisitPragmaDetectMismatchDecl(PragmaDetectMismatchDecl * D) VisitPragmaDetectMismatchDecl() argument 436 VisitTranslationUnitDecl(TranslationUnitDecl * D) VisitTranslationUnitDecl() argument 440 VisitNamedDecl(NamedDecl * D) VisitNamedDecl() argument 448 VisitTypeDecl(TypeDecl * D) VisitTypeDecl() argument 454 VisitTypedefNameDecl(TypedefNameDecl * D) VisitTypedefNameDecl() argument 464 VisitTypedefDecl(TypedefDecl * D) VisitTypedefDecl() argument 480 VisitTypeAliasDecl(TypeAliasDecl * D) VisitTypeAliasDecl() argument 486 VisitTagDecl(TagDecl * D) VisitTagDecl() argument 516 VisitEnumDecl(EnumDecl * D) VisitEnumDecl() argument 563 VisitRecordDecl(RecordDecl * D) VisitRecordDecl() argument 603 VisitValueDecl(ValueDecl * D) VisitValueDecl() argument 608 VisitEnumConstantDecl(EnumConstantDecl * D) VisitEnumConstantDecl() argument 618 VisitDeclaratorDecl(DeclaratorDecl * D) VisitDeclaratorDecl() argument 632 VisitFunctionDecl(FunctionDecl * D) VisitFunctionDecl() argument 788 VisitCXXDeductionGuideDecl(CXXDeductionGuideDecl * D) VisitCXXDeductionGuideDecl() argument 796 VisitObjCMethodDecl(ObjCMethodDecl * D) VisitObjCMethodDecl() argument 848 VisitObjCTypeParamDecl(ObjCTypeParamDecl * D) VisitObjCTypeParamDecl() argument 858 VisitObjCContainerDecl(ObjCContainerDecl * D) VisitObjCContainerDecl() argument 869 VisitObjCInterfaceDecl(ObjCInterfaceDecl * D) VisitObjCInterfaceDecl() argument 914 VisitObjCIvarDecl(ObjCIvarDecl * D) VisitObjCIvarDecl() argument 935 VisitObjCProtocolDecl(ObjCProtocolDecl * D) VisitObjCProtocolDecl() argument 952 VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl * D) VisitObjCAtDefsFieldDecl() argument 957 VisitObjCCategoryDecl(ObjCCategoryDecl * D) VisitObjCCategoryDecl() argument 972 VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl * D) VisitObjCCompatibleAliasDecl() argument 978 VisitObjCPropertyDecl(ObjCPropertyDecl * D) VisitObjCPropertyDecl() argument 999 VisitObjCImplDecl(ObjCImplDecl * D) VisitObjCImplDecl() argument 1005 VisitObjCCategoryImplDecl(ObjCCategoryImplDecl * D) VisitObjCCategoryImplDecl() argument 1011 VisitObjCImplementationDecl(ObjCImplementationDecl * D) VisitObjCImplementationDecl() argument 1026 VisitObjCPropertyImplDecl(ObjCPropertyImplDecl * D) VisitObjCPropertyImplDecl() argument 1039 VisitFieldDecl(FieldDecl * D) VisitFieldDecl() argument 1072 VisitMSPropertyDecl(MSPropertyDecl * D) VisitMSPropertyDecl() argument 1079 VisitMSGuidDecl(MSGuidDecl * D) VisitMSGuidDecl() argument 1090 VisitUnnamedGlobalConstantDecl(UnnamedGlobalConstantDecl * D) VisitUnnamedGlobalConstantDecl() argument 1096 VisitTemplateParamObjectDecl(TemplateParamObjectDecl * D) VisitTemplateParamObjectDecl() argument 1102 VisitIndirectFieldDecl(IndirectFieldDecl * D) VisitIndirectFieldDecl() argument 1111 VisitVarDecl(VarDecl * D) VisitVarDecl() argument 1212 VisitImplicitParamDecl(ImplicitParamDecl * D) VisitImplicitParamDecl() argument 1217 VisitParmVarDecl(ParmVarDecl * D) VisitParmVarDecl() argument 1264 VisitDecompositionDecl(DecompositionDecl * D) VisitDecompositionDecl() argument 1274 VisitBindingDecl(BindingDecl * D) VisitBindingDecl() argument 1280 VisitFileScopeAsmDecl(FileScopeAsmDecl * D) VisitFileScopeAsmDecl() argument 1287 VisitTopLevelStmtDecl(TopLevelStmtDecl * D) VisitTopLevelStmtDecl() argument 1293 VisitEmptyDecl(EmptyDecl * D) VisitEmptyDecl() argument 1299 VisitLifetimeExtendedTemporaryDecl(LifetimeExtendedTemporaryDecl * D) VisitLifetimeExtendedTemporaryDecl() argument 1309 VisitBlockDecl(BlockDecl * D) VisitBlockDecl() argument 1349 VisitLinkageSpecDecl(LinkageSpecDecl * D) VisitLinkageSpecDecl() argument 1361 VisitExportDecl(ExportDecl * D) VisitExportDecl() argument 1367 VisitLabelDecl(LabelDecl * D) VisitLabelDecl() argument 1374 VisitNamespaceDecl(NamespaceDecl * D) VisitNamespaceDecl() argument 1405 VisitNamespaceAliasDecl(NamespaceAliasDecl * D) VisitNamespaceAliasDecl() argument 1415 VisitUsingDecl(UsingDecl * D) VisitUsingDecl() argument 1426 VisitUsingEnumDecl(UsingEnumDecl * D) VisitUsingEnumDecl() argument 1436 VisitUsingPackDecl(UsingPackDecl * D) VisitUsingPackDecl() argument 1445 VisitUsingShadowDecl(UsingShadowDecl * D) VisitUsingShadowDecl() argument 1463 VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl * D) VisitConstructorUsingShadowDecl() argument 1471 VisitUsingDirectiveDecl(UsingDirectiveDecl * D) VisitUsingDirectiveDecl() argument 1481 VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl * D) VisitUnresolvedUsingValueDecl() argument 1491 VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl * D) VisitUnresolvedUsingTypenameDecl() argument 1500 VisitUnresolvedUsingIfExistsDecl(UnresolvedUsingIfExistsDecl * D) VisitUnresolvedUsingIfExistsDecl() argument 1505 VisitCXXRecordDecl(CXXRecordDecl * D) VisitCXXRecordDecl() argument 1554 VisitCXXMethodDecl(CXXMethodDecl * D) VisitCXXMethodDecl() argument 1600 VisitCXXConstructorDecl(CXXConstructorDecl * D) VisitCXXConstructorDecl() argument 1616 VisitCXXDestructorDecl(CXXDestructorDecl * D) VisitCXXDestructorDecl() argument 1626 VisitCXXConversionDecl(CXXConversionDecl * D) VisitCXXConversionDecl() argument 1632 VisitImportDecl(ImportDecl * D) VisitImportDecl() argument 1650 VisitAccessSpecDecl(AccessSpecDecl * D) VisitAccessSpecDecl() argument 1656 VisitFriendDecl(FriendDecl * D) VisitFriendDecl() argument 1675 VisitFriendTemplateDecl(FriendTemplateDecl * D) VisitFriendTemplateDecl() argument 1689 VisitTemplateDecl(TemplateDecl * D) VisitTemplateDecl() argument 1696 VisitConceptDecl(ConceptDecl * D) VisitConceptDecl() argument 1703 VisitImplicitConceptSpecializationDecl(ImplicitConceptSpecializationDecl * D) VisitImplicitConceptSpecializationDecl() argument 1711 VisitRequiresExprBodyDecl(RequiresExprBodyDecl * D) VisitRequiresExprBodyDecl() argument 1715 VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl * D) VisitRedeclarableTemplateDecl() argument 1731 VisitClassTemplateDecl(ClassTemplateDecl * D) VisitClassTemplateDecl() argument 1749 VisitClassTemplateSpecializationDecl(ClassTemplateSpecializationDecl * D) VisitClassTemplateSpecializationDecl() argument 1794 VisitClassTemplatePartialSpecializationDecl(ClassTemplatePartialSpecializationDecl * D) VisitClassTemplatePartialSpecializationDecl() argument 1808 VisitVarTemplateDecl(VarTemplateDecl * D) VisitVarTemplateDecl() argument 1817 VisitVarTemplateSpecializationDecl(VarTemplateSpecializationDecl * D) VisitVarTemplateSpecializationDecl() argument 1863 VisitVarTemplatePartialSpecializationDecl(VarTemplatePartialSpecializationDecl * D) VisitVarTemplatePartialSpecializationDecl() argument 1877 VisitFunctionTemplateDecl(FunctionTemplateDecl * D) VisitFunctionTemplateDecl() argument 1885 VisitTemplateTypeParmDecl(TemplateTypeParmDecl * D) VisitTemplateTypeParmDecl() argument 1920 VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl * D) VisitNonTypeTemplateParmDecl() argument 1955 VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl * D) VisitTemplateTemplateParmDecl() argument 1985 VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl * D) VisitTypeAliasTemplateDecl() argument 1990 VisitStaticAssertDecl(StaticAssertDecl * D) VisitStaticAssertDecl() argument 2023 getFirstLocalDecl(const Decl * D) getFirstLocalDecl() argument 2041 VisitRedeclarable(Redeclarable<T> * D) VisitRedeclarable() argument 2099 VisitHLSLBufferDecl(HLSLBufferDecl * D) VisitHLSLBufferDecl() argument 2110 VisitOMPThreadPrivateDecl(OMPThreadPrivateDecl * D) VisitOMPThreadPrivateDecl() argument 2116 VisitOMPAllocateDecl(OMPAllocateDecl * D) VisitOMPAllocateDecl() argument 2122 VisitOMPRequiresDecl(OMPRequiresDecl * D) VisitOMPRequiresDecl() argument 2128 VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl * D) VisitOMPDeclareReductionDecl() argument 2146 VisitOMPDeclareMapperDecl(OMPDeclareMapperDecl * D) VisitOMPDeclareMapperDecl() argument 2154 VisitOMPCapturedExprDecl(OMPCapturedExprDecl * D) VisitOMPCapturedExprDecl() argument 2776 isRequiredDecl(const Decl * D,ASTContext & Context,Module * WritingModule) isRequiredDecl() argument 2808 WriteDecl(ASTContext & Context,Decl * D) WriteDecl() argument [all...] |
/llvm-project/llvm/test/tools/llvm-mca/AArch64/Neoverse/ |
H A D | V2-forwarding.s | 2 …lvm-mca -mtriple=aarch64 -mcpu=neoverse-v2 -mattr=+sve2-aes,+sve2-sha3,+sve2-sm4 --instruction-inf… 4 # LLVM-MCA-BEGIN madd 9 # LLVM-MCA-END 11 # LLVM-MCA-BEGIN smaddl 16 # LLVM-MCA-END 18 # LLVM-MCA-BEGIN fmadd 25 # LLVM-MCA-END 27 # LLVM-MCA-BEGIN saba 32 # LLVM-MCA-END 34 # LLVM-MCA-BEGIN sdot [all …]
|
/llvm-project/llvm/test/tools/llvm-mca/AArch64/Exynos/ |
H A D | asimd-ld4.s | 2 # RUN: llvm-mca -mtriple=aarch64-linux-gnu -mcpu=exynos-m3 -resource-pressure=false < %s | FileChec… 3 # RUN: llvm-mca -mtriple=aarch64-linux-gnu -mcpu=exynos-m4 -resource-pressure=false < %s | FileChec… 4 # RUN: llvm-mca -mtriple=aarch64-linux-gnu -mcpu=exynos-m5 -resource-pressure=false < %s | FileChec… 10 ld4 {v0.d, v1.d, v2.d, v3.d}[0], [sp] 11 ld4r {v0.2d, v1.2d, v2.2d, v3.2d}, [sp] 12 ld4 {v0.2d, v1.2d, v2.2d, v3.2d}, [sp] 18 ld4 {v0.d, v1.d, v2.d, v3.d}[0], [sp], #32 19 ld4r {v0.2d, v1.2d, v2.2d, v3.2d}, [sp], #32 20 ld4 {v0.2d, v1.2d, v2.2d, v3.2d}, [sp], #64 26 ld4 {v0.d, v1.d, v2.d, v3.d}[0], [sp], x0 [all …]
|
/llvm-project/llvm/test/MC/AArch64/SVE/ |
H A D | st4d-diagnostics.s | 1 // RUN: not llvm-mc -triple=aarch64 -show-encoding -mattr=+sve 2>&1 < %s| FileCheck %s 4 // --------------------------------------------------------------------------// 5 // Immediate out of lower bound [-32, 28]. 7 st4d {z12.d, z13.d, z14.d, z15.d}, p4, [x12, #-36, MUL VL] 8 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: index must be a multiple of 4 in range [-32, 28]. 9 // CHECK-NEXT: st4d {z12.d, z13.d, z14.d, z15.d}, p4, [x12, #-36, MUL VL] 10 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}: 12 st4d {z7.d, z8.d, z9.d, z10.d}, p3, [x1, #32, MUL VL] 13 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: index must be a multiple of 4 in range [-32, 28]. 14 // CHECK-NEXT: st4d {z7.d, z8.d, z9.d, z10.d}, p3, [x1, #32, MUL VL] [all …]
|
H A D | ld4d-diagnostics.s | 1 // RUN: not llvm-mc -triple=aarch64 -show-encoding -mattr=+sve 2>&1 < %s| FileCheck %s 4 // --------------------------------------------------------------------------// 5 // Immediate out of lower bound [-32, 28]. 7 ld4d {z12.d, z13.d, z14.d, z15.d}, p4/z, [x12, #-36, MUL VL] 8 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: index must be a multiple of 4 in range [-32, 28]. 9 // CHECK-NEXT: ld4d {z12.d, z13.d, z14.d, z15.d}, p4/z, [x12, #-36, MUL VL] 10 // CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}: 12 ld4d {z7.d, z8.d, z9.d, z10.d}, p3/z, [x1, #32, MUL VL] 13 // CHECK: [[@LINE-1]]:{{[0-9]+}}: error: index must be a multiple of 4 in range [-32, 28]. 14 // CHECK-NEXT: ld4d {z7.d, z8.d, z9.d, z10.d}, p3/z, [x1, #32, MUL VL] [all …]
|
H A D | adr.s | 1 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve < %s \ 2 // RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST 3 // RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \ 4 // RUN: | FileCheck %s --check-prefix=CHECK-ERROR 5 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \ 6 // RUN: | llvm-objdump -d --mattr=+sve - | FileCheck %s --check-prefix=CHECK-INST 7 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \ 8 // RUN: | llvm-objdump -d --mattr=-sve - | FileCheck %s --check-prefix=CHECK-UNKNOWN 11 // CHECK-INST: adr z0.s, [z0.s, z0.s] 12 // CHECK-ENCODING: [0x00,0xa0,0xa0,0x04] [all …]
|
/llvm-project/mlir/python/mlir/dialects/linalg/opdsl/ops/ |
H A D | core_named_ops.py | 394 """Performs a matrix multiplication of two 2D inputs. 398 includes zero-point adjustments for the left and right operands of the 401 domain(D.m, D.n, D.k) 402 C[D.m, D.n] += (TypeFn.cast_signed(U, A[D.m, D.k]) - TypeF [all...] |
/llvm-project/llvm/ |
H A D | CREDITS.TXT | 7 beautification by scripts. The fields are: name (N), email (E), web-address 8 (W), PGP key ID and fingerprint (P), description (D), snail-mail address 14 D: The Sparc64 backend, provider of much wisdom, and motivator for LLVM 18 D: LCSSA pass and related LoopUnswitch work 19 D: GVNPRE pass, DataLayout refactoring, random improvements 22 D: MingW Win32 API portability layer 26 D: Clang frontend, frontend attributes, Windows support, general bug fixing 31 D: Clang frontend, OpenMP in clang, SLP vectorizer, Loop vectorizer, InstCombine 36 D [all...] |
/llvm-project/offload/test/mapping/ompx_hold/ |
H A D | target-data.c | 1 // RUN: %libomptarget-compile-generic -fopenmp-extensions 2 // RUN: %libomptarget-run-generic | %fcheck-generic -strict-whitespace 8 printf(" presence of %s, %s, %s: %d, %d, %d\n", #Var1, #Var2, #Var3, \ 14 int m, r, d; in main() local 15 // CHECK: presence of m, r, d: 0, 0, 0 in main() 16 CHECK_PRESENCE(m, r, d); in main() 18 // ----------------------------------------------------------------------- in main() 19 // CHECK-NEXT: check:{{.*}} in main() 22 // CHECK-NEXT: structured{{.*}} in main() 24 #pragma omp target data map(tofrom : m) map(alloc : r, d) in main() [all …]
|