Searched refs:PCs (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp124 // Gather the PCs of the user frames in the backtrace.
131 if (addr.GetModule() == runtime_module_sp) // Skip PCs from the runtime.
260 std::vector<lldb::addr_t> PCs;
262 trace->ForEach([&PCs](StructuredData::Object *PC) -> bool {
263 PCs.push_back(PC->GetAsInteger()->GetValue());
267 if (PCs.empty())
274 HistoryThread *history_thread = new HistoryThread(*process_sp, tid, PCs);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp149 // Gather the PCs of the user frames in the backtrace.
155 if (FCA.GetModule() == runtime_module_sp) // Skip PCs from the runtime.
313 std::vector<lldb::addr_t> PCs;
315 trace->ForEach([&PCs](StructuredData::Object *PC) -> bool {
316 PCs.push_back(PC->GetAsInteger()->GetValue());
320 if (PCs.empty())
327 HistoryThread *history_thread = new HistoryThread(*process_sp, tid, PCs);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp106 // If true, we create a global variable that contains PCs of all instrumented
109 // This way the coverage instrumentation does not need to acquire the PCs
718 SmallVector<Constant *, 32> PCs; local
722 PCs.push_back((Constant *)IRB.CreatePointerCast(&F, IntptrPtrTy));
723 PCs.push_back((Constant *)IRB.CreateIntToPtr(
726 PCs.push_back((Constant *)IRB.CreatePointerCast(
728 PCs.push_back((Constant *)IRB.CreateIntToPtr(
735 ConstantArray::get(ArrayType::get(IntptrPtrTy, N * 2), PCs));
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerMerge.cpp81 Set<uint32_t> PCs; local
113 if (PCs.insert(N).second)

Completed in 108 milliseconds