Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp250 std::vector<lldb::addr_t> PCs; in GetBacktracesFromExtendedStopInfo() local
252 trace->ForEach([&PCs](StructuredData::Object *PC) -> bool { in GetBacktracesFromExtendedStopInfo()
253 PCs.push_back(PC->GetAsInteger()->GetValue()); in GetBacktracesFromExtendedStopInfo()
257 if (PCs.empty()) in GetBacktracesFromExtendedStopInfo()
268 *process_sp, tid, PCs, pcs_are_call_addresses); in GetBacktracesFromExtendedStopInfo()
/llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp311 std::vector<lldb::addr_t> PCs; in GetBacktracesFromExtendedStopInfo() local
313 trace->ForEach([&PCs](StructuredData::Object *PC) -> bool { in GetBacktracesFromExtendedStopInfo()
314 PCs.push_back(PC->GetAsInteger()->GetValue()); in GetBacktracesFromExtendedStopInfo()
318 if (PCs.empty()) in GetBacktracesFromExtendedStopInfo()
329 *process_sp, tid, PCs, pcs_are_call_addresses); in GetBacktracesFromExtendedStopInfo()
/llvm-project-15.0.7/llvm/test/tools/sancov/
H A Dprint_coverage_pcs.test17 The coverage PCs should be equal to the return address of the call minus one. A
18 direct call is five bytes, so the coverage PCs should be call PC plus four.
/llvm-project-15.0.7/clang/docs/
H A DSanitizerCoverage.rst18 Tracing PCs with guards
175 instrumented PCs. Requires either ``-fsanitize-coverage=inline-8bit-counters``,
187 // Capture this array in order to read the PCs and their Flags.
188 // The number of PCs and PCFlags for a given DSO is the same as the number
197 Tracing PCs
419 SanitizerCoverage: ./a.out.7312.sancov 2 PCs written
424 SanitizerCoverage: ./a.out.7316.sancov 3 PCs written
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp719 SmallVector<Constant *, 32> PCs; in CreatePCArray() local
723 PCs.push_back((Constant *)IRB.CreatePointerCast(&F, IntptrPtrTy)); in CreatePCArray()
724 PCs.push_back((Constant *)IRB.CreateIntToPtr( in CreatePCArray()
727 PCs.push_back((Constant *)IRB.CreatePointerCast( in CreatePCArray()
729 PCs.push_back((Constant *)IRB.CreateIntToPtr( in CreatePCArray()
736 ConstantArray::get(ArrayType::get(IntptrPtrTy, N * 2), PCs)); in CreatePCArray()
/llvm-project-15.0.7/compiler-rt/lib/fuzzer/
H A DFuzzerMerge.cpp81 std::set<uint32_t> PCs; in Parse() local
113 if (PCs.insert(N).second) in Parse()
H A DFuzzerFlags.def136 FUZZER_FLAG_INT(print_pcs, 0, "If 1, print out newly covered PCs.")
/llvm-project-15.0.7/llvm/docs/
H A DLibFuzzer.rst330 If 1, print out newly covered PCs. Defaults to 0.
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DOptions.td5470 HelpText<"Create a table of coverage-instrumented PCs">,