/freebsd/contrib/llvm-project/llvm/lib/XRay/ |
H A D | BlockPrinter.cpp | 16 return RP.visit(R); in visit() 26 return RP.visit(R); in visit() 31 return RP.visit(R); in visit() 36 return RP.visit(R); in visit() 47 auto E = RP.visit(R); in visit() 56 auto E = RP.visit(R); in visit() 66 auto E = RP.visit(R); in visit() 75 auto E = RP.visit(R); in visit() 84 auto E = RP.visit(R); in visit() 94 auto E = RP.visit(R); in visit() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | EPCGenericDylibManager.h | 55 std::promise<MSVCPExpected<std::vector<ExecutorSymbolDef>>> RP; in lookup() local 56 auto RF = RP.get_future(); in lookup() 57 lookupAsync(H, Lookup, [&RP](auto R) { RP.set_value(std::move(R)); }); in lookup() 64 std::promise<MSVCPExpected<std::vector<ExecutorSymbolDef>>> RP; in lookup() local 65 auto RF = RP.get_future(); in lookup() 66 lookupAsync(H, Lookup, [&RP](auto R) { RP.set_value(std::move(R)); }); in lookup()
|
H A D | ExecutorProcessControl.h | 295 std::promise<MSVCPExpected<std::vector<tpctypes::LookupResult>>> RP; in lookupSymbols() local 296 auto RF = RP.get_future(); in lookupSymbols() 298 [&RP](auto Result) { RP.set_value(std::move(Result)); }); in lookupSymbols() 365 std::promise<shared::WrapperFunctionResult> RP; in callWrapper() local 366 auto RF = RP.get_future(); in callWrapper() 370 RP.set_value(std::move(R)); in callWrapper()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | GCNIterativeScheduler.cpp | 104 const GCNRegPressure &RP) const { in printSchedResult() 107 printSchedRP(OS, R->MaxPressure, RP); in printSchedResult() 494 const auto RP = getRegionPressure(*R); in scheduleLegacyMaxOccupancy() local 495 LLVM_DEBUG(printSchedRP(dbgs(), R->MaxPressure, RP)); in scheduleLegacyMaxOccupancy() 497 if (RP.getOccupancy(ST) < TgtOcc) { in scheduleLegacyMaxOccupancy() 509 FinalOccupancy = std::min(FinalOccupancy, RP.getOccupancy(ST)); in scheduleLegacyMaxOccupancy() 531 const auto RP = getSchedulePressure(*R, MinSchedule); in scheduleMinReg() local 532 LLVM_DEBUG(if (R->MaxPressure.less(MF, RP, TgtOcc)) { in scheduleMinReg() 534 printSchedRP(dbgs(), R->MaxPressure, RP); in scheduleMinReg() 537 if (!force && MaxPressure.less(MF, RP, TgtOcc)) in scheduleMinReg() [all …]
|
H A D | GCNRegPressure.cpp | 226 Printable llvm::print(const GCNRegPressure &RP, const GCNSubtarget *ST) { in print() argument 227 return Printable([&RP, ST](raw_ostream &OS) { in print() 228 OS << "VGPRs: " << RP.Value[GCNRegPressure::VGPR32] << ' ' in print() 229 << "AGPRs: " << RP.getAGPRNum(); in print() 232 << ST->getOccupancyWithNumVGPRs(RP.getVGPRNum(ST->hasGFX90AInsts())) in print() 234 OS << ", SGPRs: " << RP.getSGPRNum(); in print() 236 OS << "(O" << ST->getOccupancyWithNumSGPRs(RP.getSGPRNum()) << ')'; in print() 237 OS << ", LVGPR WT: " << RP.getVGPRTuplesWeight() in print() 238 << ", LSGPR WT: " << RP.getSGPRTuplesWeight(); in print() 240 OS << " -> Occ: " << RP.getOccupancy(*ST); in print() [all …]
|
H A D | GCNRegPressure.h | 122 friend Printable print(const GCNRegPressure &RP, const GCNSubtarget *ST); 214 GCNRegPressure RP = MaxPressure; in getMaxPressureAndReset() local 216 return RP; in getMaxPressureAndReset() 341 Printable print(const GCNRegPressure &RP, const GCNSubtarget *ST = nullptr);
|
H A D | GCNIterativeScheduler.h | 118 const GCNRegPressure &RP) const;
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/ |
H A D | xray-fdr-dump.cpp | 63 RecordPrinter RP(outs(), "\n"); in __anonc19214950102() local 65 PipelineConsumer C({&RP}); in __anonc19214950102() 76 BlockPrinter BP(outs(), RP); in __anonc19214950102() 84 if (auto E = Ptr->apply(RP)) in __anonc19214950102()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/ |
H A D | BlockPrinter.h | 35 RecordPrinter &RP; variable 39 explicit BlockPrinter(raw_ostream &O, RecordPrinter &P) : OS(O), RP(P) {} in BlockPrinter()
|
/freebsd/contrib/elftoolchain/ar/ |
H A D | acpyacc.y | 106 %token RP 167 : ADDLIB FNAME LP mod_list RP { arscp_addlib($2, $4); } 189 | DIRECTORY FNAME LP mod_list RP { arscp_dir($2, $4, NULL); } 190 | DIRECTORY FNAME LP mod_list RP FNAME { arscp_dir($2, $4, $6); }
|
H A D | acplex.l | 69 ")" { return (RP); }
|
/freebsd/usr.bin/ar/ |
H A D | acpyacc.y | 103 %token RP 164 : ADDLIB FNAME LP mod_list RP { arscp_addlib($2, $4); } 186 | DIRECTORY FNAME LP mod_list RP { arscp_dir($2, $4, NULL); } 187 | DIRECTORY FNAME LP mod_list RP FNAME { arscp_dir($2, $4, $6); }
|
H A D | acplex.l | 67 ")" { return (RP); }
|
/freebsd/bin/chmod/tests/ |
H A D | chmod_test.sh | 85 atf_check chmod -RP 0700 A 87 atf_check chmod -RP 0600 A/C
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | RegionPass.cpp | 70 RegionPass *RP = (RegionPass *)getContainedPass(Index); in runOnFunction() local 71 Changed |= RP->doInitialization(R, *this); in runOnFunction()
|
/freebsd/usr.sbin/chown/tests/ |
H A D | chown_test.sh | 88 atf_check chown -RP 84:84 A 90 atf_check chown -RP 126:126 A/C
|
/freebsd/contrib/mtree/ |
H A D | verify.c | 117 warnx("%s: %s", RP(p), strerror(p->fts_errno)); in vwalk() 150 printf("extra: %s", RP(p)); in vwalk()
|
H A D | mtree.h | 146 #define RP(p) \ macro
|
H A D | compare.c | 76 len = printf("%s changed\n", RP(p)); \ 79 len = printf("%s: ", RP(p)); \
|
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zpool_destroy/ |
H A D | zpool_destroy_004_pos.ksh | 68 ( $ZFS send -RP $TESTPOOL/$TESTFS@snap1 | $ZFS receive -Fu $recv/d1 ) &
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTX.h | 142 RP, enumerator
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprCXX.cpp | 665 SourceLocation RP, in CXXMemberCallExpr() argument 668 : CallExpr(CXXMemberCallExprClass, Fn, /*PreArgs=*/{}, Args, Ty, VK, RP, in CXXMemberCallExpr() 679 SourceLocation RP, in Create() argument 689 CXXMemberCallExpr(Fn, Args, Ty, VK, RP, FPFeatures, MinNumArgs); in Create() 1895 ExprValueKind VK, SourceLocation RP, in CUDAKernelCallExpr() argument 1899 RP, FPFeatures, MinNumArgs, NotADL) {} in CUDAKernelCallExpr() 1909 SourceLocation RP, FPOptionsOverride FPFeatures, in Create() argument 1918 CUDAKernelCallExpr(Fn, Config, Args, Ty, VK, RP, FPFeatures, MinNumArgs); in Create()
|
/freebsd/libexec/getty/ |
H A D | gettytab.h | 79 #define RP gettystrs[20].value macro
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineLICM.cpp | 1227 for (const auto &RP : BackTrace) in CanCauseHighRegPressure() local 1228 if (static_cast<int>(RP[Class]) + RPIdAndCost.second >= Limit) in CanCauseHighRegPressure() 1245 for (auto &RP : BackTrace) in UpdateBackTraceRegPressure() local 1247 RP[RPIdAndCost.first] += RPIdAndCost.second; in UpdateBackTraceRegPressure()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/ |
H A D | MCJIT.cpp | 628 if (void *RP = LazyFunctionCreator(std::string(Name))) in getPointerToNamedFunction() local 629 return RP; in getPointerToNamedFunction()
|