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

/openbsd-current/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp119 // Gather the PCs of the user frames in the backtrace.
126 if (addr.GetModule() == runtime_module_sp) // Skip PCs from the runtime.
251 std::vector<lldb::addr_t> PCs;
253 trace->ForEach([&PCs](StructuredData::Object *PC) -> bool {
254 PCs.push_back(PC->GetAsInteger()->GetValue());
258 if (PCs.empty())
269 *process_sp, tid, PCs, pcs_are_call_addresses);
/openbsd-current/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp147 // Gather the PCs of the user frames in the backtrace.
153 if (FCA.GetModule() == runtime_module_sp) // Skip PCs from the runtime.
312 std::vector<lldb::addr_t> PCs;
314 trace->ForEach([&PCs](StructuredData::Object *PC) -> bool {
315 PCs.push_back(PC->GetAsInteger()->GetValue());
319 if (PCs.empty())
330 *process_sp, tid, PCs, pcs_are_call_addresses);
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp103 // If true, we create a global variable that contains PCs of all instrumented
106 // This way the coverage instrumentation does not need to acquire the PCs
749 SmallVector<Constant *, 32> PCs;
753 PCs.push_back((Constant *)IRB.CreatePointerCast(&F, IntptrPtrTy));
754 PCs.push_back((Constant *)IRB.CreateIntToPtr(
757 PCs.push_back((Constant *)IRB.CreatePointerCast(
759 PCs.push_back(Constant::getNullValue(IntptrPtrTy));
765 ConstantArray::get(ArrayType::get(IntptrPtrTy, N * 2), PCs));
/openbsd-current/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerMerge.cpp81 std::set<uint32_t> PCs; local
113 if (PCs.insert(N).second)

Completed in 197 milliseconds