| /llvm-project-15.0.7/llvm/lib/XRay/ |
| H A D | FDRTraceExpander.cpp | 44 CurrentRecord.PId = PID; in visit() 59 CurrentRecord.PId = PID; in visit() 74 CurrentRecord.PId = PID; in visit() 91 PID = R.pid(); in visit() 100 PID = R.tid(); in visit() 117 CurrentRecord.PId = PID; in visit()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/ |
| H A D | aix-static-init-no-unique-module-id.ll | 20 ; CHECK-NEXT: __sinit80000000_clangPidTime_[[PID:[0-9]+]]_[[TIMESTAMP:[0-9]+]]_0: 22 ; CHECK-NEXT: .__sinit80000000_clangPidTime_[[PID]]_[[TIMESTAMP]]_0: 23 ; CHECK: .globl __sinit80000000_clangPidTime_[[PID]]_[[TIMESTAMP]]_0 24 ; CHECK: .globl .__sinit80000000_clangPidTime_[[PID]]_[[TIMESTAMP]]_0
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | LockFileManager.cpp | 71 int PID; in readLockFile() local 72 if (!PIDStr.getAsInteger(10, PID)) { in readLockFile() 73 auto Owner = std::make_pair(std::string(Hostname), PID); in readLockFile() 114 bool LockFileManager::processStillExecuting(StringRef HostID, int PID) { in processStillExecuting() argument 121 if (StoredHostID == HostID && getsid(PID) == -1 && errno == ESRCH) in processStillExecuting()
|
| /llvm-project-15.0.7/lldb/test/Shell/Minidump/ |
| H A D | dump-all.test | 77 # CHECKSTATUS: /proc/PID/status: 89 # CHECKCMD: /proc/PID/cmdline: 93 # CHECKENV: /proc/PID/environ: 97 # CHECKAUX: /proc/PID/auxv: 106 # CHECKMAP: /proc/PID/maps: 114 # CHECKSTAT: /proc/PID/stat: 124 # CHECKFD: /proc/PID/fd:
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | DeclPrinter.cpp | 1423 Out << "@protocol " << *PID; in VisitObjCProtocolDecl() 1429 Out << "@protocol " << *PID << '\n'; in VisitObjCProtocolDecl() 1430 VisitDeclContext(PID, false); in VisitObjCProtocolDecl() 1440 Out << '(' << *PID << ")\n"; in VisitObjCCategoryImplDecl() 1442 VisitDeclContext(PID, false); in VisitObjCCategoryImplDecl() 1456 Out << "(" << *PID << ")\n"; in VisitObjCCategoryDecl() 1457 if (PID->ivar_size() > 0) { in VisitObjCCategoryDecl() 1460 for (const auto *I : PID->ivars()) in VisitObjCCategoryDecl() 1467 VisitDeclContext(PID, false); in VisitObjCCategoryDecl() 1600 Out << *PID->getPropertyDecl(); in VisitObjCPropertyImplDecl() [all …]
|
| H A D | DeclObjC.cpp | 277 const auto *PID = cast<ObjCProtocolDecl>(this); in FindPropertyDeclaration() local 278 for (const auto *I : PID->protocols()) in FindPropertyDeclaration() 2176 for (auto *PID : property_impls()) in FindPropertyImplIvarDecl() local 2177 if (PID->getPropertyIvarDecl() && in FindPropertyImplIvarDecl() 2179 return PID; in FindPropertyImplIvarDecl() 2190 for (auto *PID : property_impls()) in FindPropertyImplDecl() local 2193 if (PID->getPropertyDecl()->getIdentifier() == Id) { in FindPropertyImplDecl() 2199 !PID->getPropertyDecl()->isClassProperty())) in FindPropertyImplDecl() 2200 return PID; in FindPropertyImplDecl() 2202 if (PID->getPropertyDecl()->isClassProperty()) in FindPropertyImplDecl() [all …]
|
| /llvm-project-15.0.7/clang/lib/ARCMigrate/ |
| H A D | TransZeroOutPropsInDealloc.cpp | 115 for (auto *PID : IMD->property_impls()) { in TraverseObjCMethodDecl() local 116 if (PID->getPropertyImplementation() == in TraverseObjCMethodDecl() 118 ObjCPropertyDecl *PD = PID->getPropertyDecl(); in TraverseObjCMethodDecl() 125 SynthesizedProperties[PD] = PID; in TraverseObjCMethodDecl()
|
| /llvm-project-15.0.7/compiler-rt/test/fuzzer/ |
| H A D | sigint.test | 9 RUN: %run %t/LFSIGINT 2> %t/log & export PID=$! 11 RUN: kill -SIGINT $PID
|
| H A D | fork-sigusr.test | 8 RUN: %run %t/ForkSIGUSR -fork=3 -ignore_crashes=1 2>%t/log & export PID=$! 10 RUN: kill -SIGUSR2 $PID
|
| H A D | merge-sigusr.test | 27 RUN: setsid %run %t/LFSIGUSR -merge=1 -merge_control_file=%t/MCF %t/C1 %t/C2 2>%t/log & export PID=… 29 RUN: kill -SIGUSR2 -$(ps -o sess= $PID | grep -o '[0-9]*') 30 RUN: wait $PID || true
|
| H A D | sigusr.test | 9 RUN: %run %t/LFSIGUSR 2> %t/log & export PID=$! 11 RUN: kill -SIGUSR1 $PID
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | IRPrintingPasses.cpp | 136 const char *PID = (const char*)P->getPassID(); in isIRPrintingPass() local 138 return (PID == &PrintModulePassWrapper::ID) || in isIRPrintingPass() 139 (PID == &PrintFunctionPassWrapper::ID); in isIRPrintingPass()
|
| /llvm-project-15.0.7/lldb/test/Shell/Commands/ |
| H A D | command-thread-siginfo.test | 10 # CHECK: child_pid = [[PID:[0-9]+]] 17 # CHECK-DAG: si_pid = [[PID]]
|
| /llvm-project-15.0.7/clang/test/SemaObjCXX/ |
| H A D | pointer-to-objc-pointer-conv.mm | 20 id *PID; 21 [b foo:PID];
|
| /llvm-project-15.0.7/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/ |
| H A D | LLJITWithRemoteDebugging.cpp | 158 uint64_t PID; in main() local 159 std::tie(EPC, PID) = ExitOnErr(launchLocalExecutor(Path)); in main() 160 outs() << "Launched executor in subprocess: " << PID << "\n"; in main()
|
| /llvm-project-15.0.7/llvm/tools/llvm-profgen/ |
| H A D | PerfReader.h | 597 Optional<uint32_t> PID) in PerfScriptReader() argument 598 : PerfReaderBase(B, PerfTrace), PIDFilter(PID){}; in PerfScriptReader() 612 uint64_t PID = 0; member 678 Optional<uint32_t> PID) in LBRPerfReader() argument 679 : PerfScriptReader(Binary, PerfTrace, PID){}; in LBRPerfReader() 696 Optional<uint32_t> PID) in HybridPerfReader() argument 697 : PerfScriptReader(Binary, PerfTrace, PID){}; in HybridPerfReader()
|
| H A D | PerfReader.cpp | 386 auto It = PIDSet.emplace(MMap.PID); in convertPerfDataToTrace() 387 if (It.second && (!PIDFilter || MMap.PID == *PIDFilter)) { in convertPerfDataToTrace() 391 PIDs.append(utostr(MMap.PID)); in convertPerfDataToTrace() 417 if (PIDFilter && Event.PID != *PIDFilter) in updateBinaryAddress() 942 PID = 1, in extractMMap2EventForBinary() enumerator 956 Fields[PID].getAsInteger(10, MMap.PID); in extractMMap2EventForBinary()
|
| /llvm-project-15.0.7/bolt/lib/Profile/ |
| H A D | DataAggregator.cpp | 440 BinaryMMapInfo.insert(std::make_pair(MMap.PID, MMap)); in filterBinaryMMapInfo() 450 outs() << " " << MMI.second.PID in filterBinaryMMapInfo() 1827 int32_t PID; in parseCommExecEvent() local 1828 if (PIDStr.getAsInteger(10, PID)) { in parseCommExecEvent() 1834 return PID; in parseCommExecEvent() 1941 if (PIDStr.getAsInteger(10, ParsedInfo.PID)) { in parseMMapEvent() 1986 if (FileMMapInfo.second.PID == -1) in parseMMapEvents() 1993 if (MI->second.PID == FileMMapInfo.second.PID) { in parseMMapEvents() 2061 BinaryMMapInfo.insert(std::make_pair(MMapInfo.PID, MMapInfo)); in parseMMapEvents() 2120 MMapInfo.PID = ForkInfo->ChildPID; in parseTaskEvents() [all …]
|
| /llvm-project-15.0.7/llvm/test/MC/PowerPC/ |
| H A D | ppc32-extpid-e500.s | 3 # Extended PID instructions specific to the e500 / e500mc cores:
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | LockFileManager.h | 67 static bool processStillExecuting(StringRef Hostname, int PID);
|
| /llvm-project-15.0.7/llvm/include/llvm/XRay/ |
| H A D | FDRTraceExpander.h | 26 int32_t PID = 0; variable
|
| H A D | FDRRecords.h | 314 int32_t PID = 0; variable 325 PID(P) {} in PIDRecord() 327 int32_t pid() const { return PID; } in pid()
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-xray/X86/ |
| H A D | fdr-dump-arg1-version-3.txt | 8 ; CHECK-NEXT: <PID: 2631>
|
| /llvm-project-15.0.7/llvm/lib/Support/Unix/ |
| H A D | Program.inc | 253 pid_t PID; 256 PID = 0; // Make Valgrind happy. 257 Err = posix_spawn(&PID, Program.str().c_str(), FileActions, 268 PI.Pid = PID; 269 PI.Process = PID; 355 assert(pid > 0 && "Only expecting to handle actual PID values!");
|
| /llvm-project-15.0.7/llvm/test/MC/Disassembler/PowerPC/ |
| H A D | ppc32-extpid-e500.txt | 3 # Extended PID instructions specific to the e500 / e500mc cores:
|