| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/ |
| H A D | aarch64-mops-mte.ll | 7 declare i8* @llvm.aarch64.mops.memset.tag(i8*, i8, i64) 34 %r = tail call i8* @llvm.aarch64.mops.memset.tag(i8* %dst, i8 0, i64 0) 65 %r = tail call i8* @llvm.aarch64.mops.memset.tag(i8* %dst, i8 0, i64 1) 96 %r = tail call i8* @llvm.aarch64.mops.memset.tag(i8* %dst, i8 0, i64 10) 127 %r = tail call i8* @llvm.aarch64.mops.memset.tag(i8* %dst, i8 0, i64 10000) 154 %r = tail call i8* @llvm.aarch64.mops.memset.tag(i8* %dst, i8 0, i64 %size) 188 %r = tail call i8* @llvm.aarch64.mops.memset.tag(i8* %dst, i8 %value_trunc, i64 0) 223 %r = tail call i8* @llvm.aarch64.mops.memset.tag(i8* %dst, i8 %value_trunc, i64 1) 258 %r = tail call i8* @llvm.aarch64.mops.memset.tag(i8* %dst, i8 %value_trunc, i64 10) 293 %r = tail call i8* @llvm.aarch64.mops.memset.tag(i8* %dst, i8 %value_trunc, i64 10000) [all …]
|
| H A D | sme-intrinsics-mops.ll | 9 …call void @llvm.aarch64.sme.mops.wide.nxv8bf16(i64 0, <vscale x 8 x i1> %pn, <vscale x 8 x i1> %pm… 18 …call void @llvm.aarch64.sme.mops.wide.nxv8f16(i64 1, <vscale x 8 x i1> %pn, <vscale x 8 x i1> %pm,… 63 …call void @llvm.aarch64.sme.mops.nxv4f32(i64 0, <vscale x 4 x i1> %pn, <vscale x 4 x i1> %pm, <vsc… 72 …call void @llvm.aarch64.sme.mops.nxv2f64(i64 2, <vscale x 2 x i1> %pn, <vscale x 2 x i1> %pm, <vsc… 115 declare void @llvm.aarch64.sme.mops.wide.nxv8bf16(i64, <vscale x 8 x i1>, <vscale x 8 x i1>, <vscal… 116 declare void @llvm.aarch64.sme.mops.wide.nxv8f16(i64, <vscale x 8 x i1>, <vscale x 8 x i1>, <vscale… 117 declare void @llvm.aarch64.sme.mops.nxv4f32(i64, <vscale x 4 x i1>, <vscale x 4 x i1>, <vscale x 4 … 118 declare void @llvm.aarch64.sme.mops.nxv2f64(i64, <vscale x 2 x i1>, <vscale x 2 x i1>, <vscale x 2 …
|
| H A D | aarch64-mops-consecutive.ll | 3 ; RUN: llc %s -o - -mtriple=aarch64-arm-none-eabi -O2 -mattr=+mops | FileCheck %s --check-pre…
|
| H A D | aarch64-mops.ll | 5 …ple=aarch64-arm-none-eabi -O0 -global-isel=1 -global-isel-abort=1 -mattr=+mops | FileCheck %… 6 …ple=aarch64-arm-none-eabi -global-isel=1 -global-isel-abort=1 -mattr=+mops | FileCheck %… 8 ; RUN: llc %s -o - -mtriple=aarch64-arm-none-eabi -O2 -mattr=+mops | FileCheck %s --check-pre…
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/ |
| H A D | tsan_report.cpp | 35 , mops() in ReportDesc() 274 if (rep->mops.Size()) in ChooseSummaryStack() 275 return rep->mops[0]->stack; in ChooseSummaryStack() 353 for (uptr i = 0; i < rep->mops.Size(); i++) in PrintReport() 354 PrintMop(rep->mops[i], i == 0); in PrintReport() 454 for (uptr i = 0; i < rep->mops.Size(); i++) in PrintReport() 455 PrintMop(rep->mops[i], i == 0); in PrintReport()
|
| H A D | tsan_debugging.cpp | 81 *mop_count = rep->mops.Size(); in __tsan_get_report_data() 112 CHECK_LT(idx, rep->mops.Size()); in __tsan_get_report_mop() 113 ReportMop *mop = rep->mops[idx]; in __tsan_get_report_mop()
|
| H A D | tsan_report.h | 105 Vector<ReportMop*> mops; variable
|
| H A D | tsan_rtl_report.cpp | 180 rep_->mops.PushBack(mop); in AddMemoryAccess() 747 for (uptr i = 0; pc_or_addr == 0 && i < rep->mops.Size(); i++) in OutputReport() 748 pc_or_addr = IsSuppressed(rep->typ, rep->mops[i]->stack, &supp); in OutputReport()
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_report.cpp | 35 , mops() in ReportDesc() 268 if (rep->mops.Size()) in ChooseSummaryStack() 269 return rep->mops[0]->stack; in ChooseSummaryStack() 350 for (uptr i = 0; i < rep->mops.Size(); i++) in PrintReport() 351 PrintMop(rep->mops[i], i == 0); in PrintReport() 451 for (uptr i = 0; i < rep->mops.Size(); i++) in PrintReport() 452 PrintMop(rep->mops[i], i == 0); in PrintReport()
|
| H A D | tsan_debugging.cpp | 81 *mop_count = rep->mops.Size(); in __tsan_get_report_data() 112 CHECK_LT(idx, rep->mops.Size()); in __tsan_get_report_mop() 113 ReportMop *mop = rep->mops[idx]; in __tsan_get_report_mop()
|
| H A D | tsan_report.h | 104 Vector<ReportMop*> mops; variable
|
| H A D | tsan_rtl_report.cpp | 184 rep_->mops.PushBack(mop); in AddMemoryAccess() 643 for (uptr i = 0; pc_or_addr == 0 && i < rep->mops.Size(); i++) in OutputReport() 644 pc_or_addr = IsSuppressed(rep->typ, rep->mops[i]->stack, &supp); in OutputReport()
|
| /llvm-project-15.0.7/llvm/test/MC/AArch64/ |
| H A D | directive-arch_extension.s | 92 .arch_extension mops
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | AArch64TargetParser.def | 148 AARCH64_ARCH_EXT_NAME("mops", AArch64::AEK_MOPS, "+mops", "-mops")
|
| /llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/TSan/ |
| H A D | InstrumentationRuntimeTSan.cpp | 363 StructuredData::Array *mops = ConvertToStructuredArray( in RetrieveReportData() local 388 dict->AddItem("mops", StructuredData::ObjectSP(mops)); in RetrieveReportData()
|
| /llvm-project-15.0.7/llvm/test/MC/Disassembler/AArch64/ |
| H A D | armv8.8a-mops.txt | 1 # RUN: not llvm-mc -triple aarch64-arm-none-eabi -mattr=+mops,+mte -disassemble < %s 2> %t | FileCh… 5 # RUN: not llvm-mc -triple aarch64-arm-none-eabi -mattr=+mops -disassemble < %s 2> %t | FileCheck %…
|
| /llvm-project-15.0.7/llvm/lib/Target/AArch64/ |
| H A D | AArch64.td | 438 def FeatureMOPS : SubtargetFeature<"mops", "HasMOPS",
|
| H A D | AArch64InstrInfo.td | 206 AssemblerPredicateWithAll<(all_of FeatureMOPS), "mops">;
|