Home
last modified time | relevance | path

Searched refs:mop (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_report.cpp150 if (mop->external_tag == kExternalTagNone) { in PrintMop()
152 MopDesc(first, mop->write, mop->atomic), mop->size, in PrintMop()
153 (void *)mop->addr, thread_name(thrbuf, mop->tid)); in PrintMop()
160 (void *)mop->addr, thread_name(thrbuf, mop->tid)); in PrintMop()
162 PrintMutexSet(mop->mset); in PrintMop()
165 PrintStack(mop->stack); in PrintMop()
405 (first ? (mop->write ? "Write" : "Read") in PrintMop()
407 reinterpret_cast<void *>(mop->addr)); in PrintMop()
408 if (mop->tid == kMainGoroutineId) in PrintMop()
411 Printf("goroutine %d:\n", mop->tid); in PrintMop()
[all …]
H A Dtsan_debugging.cpp113 ReportMop *mop = rep->mops[idx]; in __tsan_get_report_mop() local
114 *tid = mop->tid; in __tsan_get_report_mop()
115 *addr = (void *)mop->addr; in __tsan_get_report_mop()
116 *size = mop->size; in __tsan_get_report_mop()
117 *write = mop->write ? 1 : 0; in __tsan_get_report_mop()
118 *atomic = mop->atomic ? 1 : 0; in __tsan_get_report_mop()
119 if (mop->stack) CopyTrace(mop->stack->frames, trace, trace_size); in __tsan_get_report_mop()
H A Dtsan_rtl_report.cpp179 auto *mop = New<ReportMop>(); in AddMemoryAccess() local
180 rep_->mops.PushBack(mop); in AddMemoryAccess()
181 mop->tid = s.tid(); in AddMemoryAccess()
182 mop->addr = addr + s.addr0(); in AddMemoryAccess()
183 mop->size = s.size(); in AddMemoryAccess()
184 mop->write = s.IsWrite(); in AddMemoryAccess()
185 mop->atomic = s.IsAtomic(); in AddMemoryAccess()
187 mop->external_tag = external_tag; in AddMemoryAccess()
188 if (mop->stack) in AddMemoryAccess()
189 mop->stack->suppressable = true; in AddMemoryAccess()
[all …]
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cpp150 if (mop->external_tag == kExternalTagNone) { in PrintMop()
152 MopDesc(first, mop->write, mop->atomic), mop->size, in PrintMop()
153 (void *)mop->addr, thread_name(thrbuf, mop->tid)); in PrintMop()
160 (void *)mop->addr, thread_name(thrbuf, mop->tid)); in PrintMop()
162 PrintMutexSet(mop->mset); in PrintMop()
165 PrintStack(mop->stack); in PrintMop()
402 (first ? (mop->write ? "Write" : "Read") in PrintMop()
404 reinterpret_cast<void *>(mop->addr)); in PrintMop()
405 if (mop->tid == kMainGoroutineId) in PrintMop()
408 Printf("goroutine %d:\n", mop->tid); in PrintMop()
[all …]
H A Dtsan_debugging.cpp113 ReportMop *mop = rep->mops[idx]; in __tsan_get_report_mop() local
114 *tid = mop->tid; in __tsan_get_report_mop()
115 *addr = (void *)mop->addr; in __tsan_get_report_mop()
116 *size = mop->size; in __tsan_get_report_mop()
117 *write = mop->write ? 1 : 0; in __tsan_get_report_mop()
118 *atomic = mop->atomic ? 1 : 0; in __tsan_get_report_mop()
119 if (mop->stack) CopyTrace(mop->stack->frames, trace, trace_size); in __tsan_get_report_mop()
H A Dtsan_rtl_report.cpp183 auto *mop = New<ReportMop>(); in AddMemoryAccess() local
184 rep_->mops.PushBack(mop); in AddMemoryAccess()
185 mop->tid = tid; in AddMemoryAccess()
186 mop->addr = addr + addr0; in AddMemoryAccess()
187 mop->size = size; in AddMemoryAccess()
188 mop->write = !(typ & kAccessRead); in AddMemoryAccess()
189 mop->atomic = typ & kAccessAtomic; in AddMemoryAccess()
191 mop->external_tag = external_tag; in AddMemoryAccess()
192 if (mop->stack) in AddMemoryAccess()
193 mop->stack->suppressable = true; in AddMemoryAccess()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/RISCV/
H A DRISCVInstrFormatsV.td248 class RVInstVLX<bits<3> nf, bit mew, RISCVMOP mop, bits<3> width,
258 let Inst{27-26} = mop.Value;
312 class RVInstVSX<bits<3> nf, bit mew, RISCVMOP mop, bits<3> width,
322 let Inst{27-26} = mop.Value;
H A DRISCVInstrInfoV.td188 class VIndexedLoad<RISCVMOP mop, RISCVWidth width, string opcodestr>
189 : RVInstVLX<0b000, width.Value{3}, mop, width.Value{2-0},
214 class VIndexedSegmentLoad<bits<3> nf, RISCVMOP mop, RISCVWidth width,
216 : RVInstVLX<nf, width.Value{3}, mop, width.Value{2-0},
252 class VIndexedStore<RISCVMOP mop, RISCVWidth width, string opcodestr>
253 : RVInstVSX<0b000, width.Value{3}, mop, width.Value{2-0}, (outs),
270 class VIndexedSegmentStore<bits<3> nf, RISCVMOP mop, RISCVWidth width,
272 : RVInstVSX<nf, width.Value{3}, mop, width.Value{2-0}, (outs),
/llvm-project-15.0.7/clang/test/Analysis/
H A Dobjc-arc.m101 - (id)initWithCleaner:(int)pop mop:(NSString *)mop ;
111 cell = [[RDar9424890_A alloc] initWithCleaner:0 mop:WhizFiz]; // no-warning