Home
last modified time | relevance | path

Searched refs:RP (Results 1 – 25 of 69) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/lib/XRay/
H A DBlockPrinter.cpp16 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 DEPCGenericDylibManager.h56 std::promise<MSVCPExpected<std::vector<ExecutorSymbolDef>>> RP; in lookup() local
57 auto RF = RP.get_future(); in lookup()
58 lookupAsync(H, Lookup, [&RP](auto R) { RP.set_value(std::move(R)); }); in lookup()
65 std::promise<MSVCPExpected<std::vector<ExecutorSymbolDef>>> RP; in lookup() local
66 auto RF = RP.get_future(); in lookup()
67 lookupAsync(H, Lookup, [&RP](auto R) { RP.set_value(std::move(R)); }); in lookup()
H A DDylibManager.h54 std::promise<MSVCPExpected<std::vector<tpctypes::LookupResult>>> RP; in lookupSymbols() local
55 auto RF = RP.get_future(); in lookupSymbols()
57 [&RP](auto Result) { RP.set_value(std::move(Result)); }); in lookupSymbols()
H A DExecutorProcessControl.h254 std::promise<shared::WrapperFunctionResult> RP; in callWrapper() local
255 auto RF = RP.get_future(); in callWrapper()
259 RP.set_value(std::move(R)); in callWrapper()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNRegPressure.h140 friend Printable print(const GCNRegPressure &RP, const GCNSubtarget *ST,
175 GCNRPTarget(const MachineFunction &MF, const GCNRegPressure &RP,
182 const GCNRegPressure &RP, bool CombineVGPRSavings = false);
188 const GCNRegPressure &RP, bool CombineVGPRSavings = false);
190 const GCNRegPressure &getCurrentRP() const { return RP; } in getCurrentRP()
192 void setRP(const GCNRegPressure &NewRP) { RP = NewRP; } in setRP()
200 RP.inc(Reg, Mask, LaneBitmask::getNone(), MRI); in saveReg()
208 OS << "Actual/Target: " << Target.RP.getSGPRNum() << '/' << Target.MaxSGPRs
209 << " SGPRs, " << Target.RP.getArchVGPRNum() << '/' << Target.MaxVGPRs
210 << " ArchVGPRs, " << Target.RP.getAGPRNum() << '/' << Target.MaxVGPRs
[all …]
H A DGCNRegPressure.cpp233 Printable llvm::print(const GCNRegPressure &RP, const GCNSubtarget *ST, in print() argument
235 return Printable([&RP, ST, DynamicVGPRBlockSize](raw_ostream &OS) { in print()
236 OS << "VGPRs: " << RP.getArchVGPRNum() << ' ' in print()
237 << "AGPRs: " << RP.getAGPRNum(); in print()
240 << ST->getOccupancyWithNumVGPRs(RP.getVGPRNum(ST->hasGFX90AInsts()), in print()
243 OS << ", SGPRs: " << RP.getSGPRNum(); in print()
245 OS << "(O" << ST->getOccupancyWithNumSGPRs(RP.getSGPRNum()) << ')'; in print()
246 OS << ", LVGPR WT: " << RP.getVGPRTuplesWeight() in print()
247 << ", LSGPR WT: " << RP.getSGPRTuplesWeight(); in print()
249 OS << " -> Occ: " << RP.getOccupancy(*ST, DynamicVGPRBlockSize); in print()
[all …]
H A DGCNIterativeScheduler.cpp105 const GCNRegPressure &RP) const { in printSchedResult()
108 printSchedRP(OS, R->MaxPressure, RP); in printSchedResult()
527 const auto RP = getRegionPressure(*R); in scheduleLegacyMaxOccupancy() local
528 LLVM_DEBUG(printSchedRP(dbgs(), R->MaxPressure, RP)); in scheduleLegacyMaxOccupancy()
530 if (RP.getOccupancy(ST, DynamicVGPRBlockSize) < TgtOcc) { in scheduleLegacyMaxOccupancy()
544 std::min(FinalOccupancy, RP.getOccupancy(ST, DynamicVGPRBlockSize)); in scheduleLegacyMaxOccupancy()
566 const auto RP = getSchedulePressure(*R, MinSchedule); in scheduleMinReg() local
567 LLVM_DEBUG(if (R->MaxPressure.less(MF, RP, TgtOcc)) { in scheduleMinReg()
569 printSchedRP(dbgs(), R->MaxPressure, RP); in scheduleMinReg()
572 if (!force && MaxPressure.less(MF, RP, TgtOcc)) in scheduleMinReg()
[all …]
H A DGCNIterativeScheduler.h121 const GCNRegPressure &RP) const;
H A DGCNSchedStrategy.cpp1730 GCNRegPressure &RP = DAG.Pressure[I]; in canIncreaseOccupancyOrReduceSpill() local
1737 GCNRPTarget Target(MaxSGPRsNoSpill, MaxVGPRsNoSpill, MF, RP, in canIncreaseOccupancyOrReduceSpill()
1746 Target = GCNRPTarget(MaxSGPRsIncOcc, MaxVGPRsIncOcc, MF, RP, in canIncreaseOccupancyOrReduceSpill()
2004 GCNRegPressure RP; in rematerialize() local
2006 RP = getRegPressure(DAG.MRI, DAG.LiveIns[I]); in rematerialize()
2013 RP = getRegPressure(DAG.MRI, DAG.LiveIns[I]); in rematerialize()
2017 RP = RPT.moveMaxPressure(); in rematerialize()
2020 DAG.Pressure[I] = RP; in rematerialize()
2022 AchievedOcc, RP.getOccupancy(ST, MF.getInfo<SIMachineFunctionInfo>() in rematerialize()
/freebsd/crypto/openssl/test/radix/
H A Dquic_ops.c23 RADIX_PROCESS_set_obj(RP(), name, NULL); in DEF_FUNC()
45 ossl_crypto_mutex_lock(RP()->gm); in keylog_cb()
46 BIO_printf(RP()->keylog_out, "%s", line); in keylog_cb()
47 (void)BIO_flush(RP()->keylog_out); in keylog_cb()
48 ossl_crypto_mutex_unlock(RP()->gm); in keylog_cb()
59 if (RP()->keylog_out != NULL) in ssl_ctx_configure()
231 if (!TEST_true(RADIX_PROCESS_set_ssl(RP(), name, ssl))) { in DEF_FUNC()
253 if (!TEST_ptr_null(RADIX_PROCESS_get_obj(RP(), listener_name))) in DEF_FUNC()
262 if (!TEST_true(RADIX_PROCESS_set_ssl(RP(), listener_name, listener))) { in DEF_FUNC()
304 if (!TEST_ptr_null(RADIX_PROCESS_get_obj(RP(), stream_name))) in DEF_FUNC()
[all …]
H A Dquic_bindings.c630 #define RP() (&radix_process) macro
637 ossl_crypto_mutex_lock(RP()->gm); in get_time()
638 time_slip = RP()->time_slip; in get_time()
639 ossl_crypto_mutex_unlock(RP()->gm); in get_time()
646 ossl_crypto_mutex_lock(RP()->gm); in radix_skip_time()
647 RP()->time_slip = ossl_time_add(RP()->time_slip, t); in radix_skip_time()
648 ossl_crypto_mutex_unlock(RP()->gm); in radix_skip_time()
659 lh_RADIX_OBJ_doall(RP()->objs, per_op_tick_obj); in do_per_op()
828 ossl_crypto_mutex_lock(RP()->gm); in DEF_FUNC()
830 lh_RADIX_OBJ_doall(RP()->objs, cleanup_one); in DEF_FUNC()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-fdr-dump.cpp63 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 DBlockPrinter.h36 RecordPrinter &RP; variable
40 explicit BlockPrinter(raw_ostream &O, RecordPrinter &P) : OS(O), RP(P) {} in BlockPrinter()
/freebsd/contrib/elftoolchain/ar/
H A Dacpyacc.y106 %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 Dacplex.l69 ")" { return (RP); }
/freebsd/usr.bin/ar/
H A Dacpyacc.y103 %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 Dacplex.l67 ")" { return (RP); }
/freebsd/bin/chmod/tests/
H A Dchmod_test.sh85 atf_check chmod -RP 0700 A
87 atf_check chmod -RP 0600 A/C
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DRegionPass.cpp70 RegionPass *RP = (RegionPass *)getContainedPass(Index); in runOnFunction() local
71 Changed |= RP->doInitialization(R, *this); in runOnFunction()
/freebsd/usr.sbin/chown/tests/
H A Dchown_test.sh88 atf_check chown -RP 84:84 A
90 atf_check chown -RP 126:126 A/C
/freebsd/contrib/mtree/
H A Dverify.c117 warnx("%s: %s", RP(p), strerror(p->fts_errno)); in vwalk()
151 RP(p)); in vwalk()
H A Dmtree.h146 #define RP(p) \ macro
H A Dcompare.c76 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 Dzpool_destroy_004_pos.ksh68 ( $ZFS send -RP $TESTPOOL/$TESTFS@snap1 | $ZFS receive -Fu $recv/d1 ) &
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprCXX.cpp669 SourceLocation RP, in CXXMemberCallExpr() argument
672 : CallExpr(CXXMemberCallExprClass, Fn, /*PreArgs=*/{}, Args, Ty, VK, RP, in CXXMemberCallExpr()
683 SourceLocation RP, in Create() argument
694 CXXMemberCallExpr(Fn, Args, Ty, VK, RP, FPFeatures, MinNumArgs); in Create()
1930 ExprValueKind VK, SourceLocation RP, in CUDAKernelCallExpr() argument
1934 RP, FPFeatures, MinNumArgs, NotADL) {} in CUDAKernelCallExpr()
1944 SourceLocation RP, FPOptionsOverride FPFeatures, in Create() argument
1955 CUDAKernelCallExpr(Fn, Config, Args, Ty, VK, RP, FPFeatures, MinNumArgs); in Create()

123