Searched refs:TPC (Results 1 - 25 of 51) sorted by relevance

123

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DCombiner.h29 Combiner(CombinerInfo &CombinerInfo, const TargetPassConfig *TPC);
40 const TargetPassConfig *TPC; member in class:llvm::Combiner
H A DUtils.h102 void reportGISelFailure(MachineFunction &MF, const TargetPassConfig &TPC,
106 void reportGISelFailure(MachineFunction &MF, const TargetPassConfig &TPC,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsModuleISelDAGToDAG.cpp48 auto &TPC = getAnalysis<TargetPassConfig>(); local
49 auto &TM = TPC.getTM<MipsTargetMachine>();
H A DMipsPreLegalizerCombiner.cpp85 auto *TPC = &getAnalysis<TargetPassConfig>();
87 Combiner C(PCInfo, TPC);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombiner.cpp93 Combiner::Combiner(CombinerInfo &Info, const TargetPassConfig *TPC) argument
94 : CInfo(Info), TPC(TPC) {
95 (void)this->TPC; // FIXME: Remove when used.
H A DInstructionSelect.cpp75 const TargetPassConfig &TPC = getAnalysis<TargetPassConfig>(); local
94 reportGISelFailure(MF, TPC, MORE, "gisel-select",
138 reportGISelFailure(MF, TPC, MORE, "gisel-select", "cannot select", MI);
202 reportGISelFailure(MF, TPC, MORE, "gisel-select",
210 MF, TPC, MORE, "gisel-select",
221 reportGISelFailure(MF, TPC, MORE, R);
H A DLegalizer.cpp284 const TargetPassConfig &TPC = getAnalysis<TargetPassConfig>(); local
295 : TPC.isGISelCSEEnabled();
298 CSEInfo = &Wrapper.get(TPC.getCSEConfig());
313 reportGISelFailure(MF, TPC, MORE, "gisel-legalize",
324 reportGISelFailure(MF, TPC, MORE, R);
H A DUtils.cpp178 void llvm::reportGISelFailure(MachineFunction &MF, const TargetPassConfig &TPC, argument
185 if (!R.getLocation().isValid() || TPC.isGlobalISelAbortEnabled())
188 if (TPC.isGlobalISelAbortEnabled())
194 void llvm::reportGISelFailure(MachineFunction &MF, const TargetPassConfig &TPC, argument
202 if (TPC.isGlobalISelAbortEnabled() || MORE.allowExtraAnalysis(PassName))
204 reportGISelFailure(MF, TPC, MORE, R);
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerTracePC.cpp31 TracePC TPC; member in namespace:fuzzer
430 fuzzer::TPC.HandleInline8bitCountersInit(Start, Stop);
436 fuzzer::TPC.HandlePCsInit(pcs_beg, pcs_end);
443 fuzzer::TPC.HandleCallerCallee(PC, Callee);
451 fuzzer::TPC.HandleCmp(PC, Arg1, Arg2);
462 fuzzer::TPC.HandleCmp(PC, Arg1, Arg2);
470 fuzzer::TPC.HandleCmp(PC, Arg1, Arg2);
478 fuzzer::TPC.HandleCmp(PC, Arg1, Arg2);
486 fuzzer::TPC.HandleCmp(PC, Arg1, Arg2);
494 fuzzer::TPC
[all...]
H A DFuzzerLoop.cpp144 TPC.ResetMaps();
148 TPC.SetUseCounters(Options.UseCounters);
149 TPC.SetUseValueProfileMask(Options.UseValueProfile);
152 TPC.PrintModuleInfo();
328 if (size_t N = TPC.GetTotalPCCoverage())
357 TPC.PrintCoverage();
399 TPC.ForEachObservedPC(HandlePC);
475 TPC.CollectFeatures([&](size_t Feature) {
488 TPC.UpdateObservedPCs();
490 MayDeleteFile, TPC
[all...]
H A DFuzzerMerge.cpp230 TPC.ResetMaps();
238 TPC.CollectFeatures([&](size_t Feature) {
242 TPC.UpdateObservedPCs();
254 TPC.ForEachObservedPC([&](const TracePC::PCTableEntry *TE) {
256 OF << " " << TPC.PCTableEntryIdx(TE);
H A DFuzzerFork.cpp225 if (auto *TE = TPC.PCTableEntryByIdx(Idx))
226 if (TPC.PcIsFuncEntry(TE))
228 TPC.GetNextInstructionPc(TE->PC));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULowerIntrinsics.cpp114 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>(); local
115 if (!TPC)
118 const TargetMachine &TM = TPC->getTM<TargetMachine>();
H A DAMDGPUAnnotateKernelFeatures.cpp366 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>(); local
367 if (!TPC)
370 TM = &TPC->getTM<TargetMachine>();
H A DAMDGPULowerKernelArguments.cpp66 auto &TPC = getAnalysis<TargetPassConfig>();
68 const TargetMachine &TM = TPC.getTM<TargetMachine>();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCLowerMASSVEntries.cpp121 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>(); local
122 if (!TPC)
125 auto &TM = TPC->getTM<PPCTargetMachine>();
H A DPPCBoolRetToInt.cpp191 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>();
192 if (!TPC)
195 auto &TM = TPC->getTM<PPCTargetMachine>();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DIndirectBrExpandPass.cpp78 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>(); local
79 if (!TPC)
82 auto &TM = TPC->getTM<TargetMachine>();
H A DLowerEmuTLS.cpp66 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>();
67 if (!TPC)
70 auto &TM = TPC->getTM<TargetMachine>();
H A DInterleavedAccessPass.cpp446 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>(); local
447 if (!TPC || !LowerInterleavedAccesses)
453 auto &TM = TPC->getTM<TargetMachine>();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64PreLegalizerCombiner.cpp140 auto *TPC = &getAnalysis<TargetPassConfig>();
149 Combiner C(PCInfo, TPC);
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llc/
H A Dllc.cpp365 StringRef PassName, TargetPassConfig &TPC) {
387 TPC.printAndVerify(Banner);
559 TargetPassConfig &TPC = *LLVMTM.createPassConfig(PM); local
560 if (TPC.hasLimitedCodeGenPipeline()) {
563 << TPC.getLimitedCodeGenPipelineReason(" and ") << ".\n";
567 TPC.setDisableVerify(NoVerify);
568 PM.add(&TPC);
570 TPC.printAndVerify("");
572 if (addPass(PM, argv0, RunPassName, TPC))
575 TPC
364 addPass(PassManagerBase &PM, const char *argv0, StringRef PassName, TargetPassConfig &TPC) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DCommentParser.cpp282 void Parser::parseTParamCommandArgs(TParamCommandComment *TPC, argument
286 S.actOnTParamCommandParamNameArg(TPC,
314 TParamCommandComment *TPC = nullptr; local
325 TPC = S.actOnTParamCommandStart(Tok.getLocation(),
344 } else if (TPC) {
345 S.actOnTParamCommandFinish(TPC, Paragraph);
346 return TPC;
353 if (PC || TPC || Info->NumArgs > 0) {
360 else if (TPC)
361 parseTParamCommandArgs(TPC, Retokenize
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DCommentParser.h97 void parseTParamCommandArgs(TParamCommandComment *TPC,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVEGatherScatterLowering.cpp280 auto &TPC = getAnalysis<TargetPassConfig>();
281 auto &TM = TPC.getTM<TargetMachine>();

Completed in 2708 milliseconds

123