Home
last modified time | relevance | path

Searched refs:Reason (Results 1 – 25 of 67) sorted by relevance

123

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCMachineScheduler.cpp38 TryCand.Reason = Stall; in biasAddiLoadCandidate()
42 TryCand.Reason = NoCand; in biasAddiLoadCandidate()
56 TryCand.Reason = NodeOrder; in tryCandidate()
63 return TryCand.Reason != NoCand; in tryCandidate()
144 TryCand.Reason = NodeOrder; in tryCandidate()
152 if (TryCand.Reason != NodeOrder && TryCand.Reason != NoCand) in tryCandidate()
162 return TryCand.Reason != NoCand; in tryCandidate()
171 TryCand.Reason = Stall; in biasAddiCandidate()
183 TryCand.Reason = NodeOrder; in tryCandidate()
213 TryCand.Reason = NodeOrder; in tryCandidate()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInlineCost.h92 const char *Reason = nullptr; variable
100 : Cost(Cost), Threshold(Threshold), Reason(Reason), in Cost()
102 assert((isVariable() || Reason) && in Cost()
112 static InlineCost getAlways(const char *Reason,
114 return InlineCost(AlwaysInlineCost, 0, Reason, CostBenefit);
116 static InlineCost getNever(const char *Reason,
118 return InlineCost(NeverInlineCost, 0, Reason, CostBenefit);
146 assert((Reason || isVariable()) && in getReason()
148 return Reason; in getReason()
165 static InlineResult failure(const char *Reason) { in failure() argument
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DErrorHandling.cpp82 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { in report_fatal_error() argument
83 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error()
87 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error()
90 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { in report_fatal_error() argument
91 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error()
94 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { in report_fatal_error() argument
108 handler(handlerData, Reason.str(), GenCrashDiag); in report_fatal_error()
115 OS << "LLVM ERROR: " << Reason << "\n"; in report_fatal_error()
147 void llvm::report_bad_alloc_error(const char *Reason, bool GenCrashDiag) { in report_bad_alloc_error() argument
161 Handler(HandlerData, Reason, GenCrashDiag); in report_bad_alloc_error()
[all …]
H A DSmallVector.cpp53 std::string Reason = "SmallVector unable to grow. Requested capacity (" + in report_size_overflow() local
58 throw std::length_error(Reason); in report_size_overflow()
60 report_fatal_error(Reason); in report_size_overflow()
68 std::string Reason = in report_at_maximum_capacity() local
72 throw std::length_error(Reason); in report_at_maximum_capacity()
74 report_fatal_error(Reason); in report_at_maximum_capacity()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DRegisterCheckpoint.h23 enum class Reason { enum
34 RegisterCheckpoint(Reason reason) in RegisterCheckpoint()
45 Reason m_reason;
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/
H A DHeaderIncludeGen.cpp45 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
132 FileChangeReason Reason, in FileChanged() argument
142 if (Reason == PPCallbacks::EnterFile) { in FileChanged()
144 } else if (Reason == PPCallbacks::ExitFile) { in FileChanged()
181 if (ShowHeader && Reason == PPCallbacks::EnterFile && in FileChanged()
H A DPrintPreprocessedOutput.cpp125 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
260 FileChangeReason Reason, in FileChanged() argument
273 if (Reason == PPCallbacks::EnterFile) { in FileChanged()
277 } else if (Reason == PPCallbacks::SystemHeaderPragma) { in FileChanged()
306 if (Reason == PPCallbacks::EnterFile && !IsFirstFileEntered) { in FileChanged()
311 switch (Reason) { in FileChanged()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DFunctionImport.h78 ImportFailureReason Reason; member
82 ImportFailureReason Reason, unsigned Attempts) in ImportFailureInfo()
83 : VI(VI), MaxHotness(MaxHotness), Reason(Reason), Attempts(Attempts) {} in ImportFailureInfo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.h40 SIScheduleCandReason Reason = NoCand; member
183 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); in setBest()
185 Reason = Best.Reason; in setBest()
375 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); in setBest()
377 Reason = Best.Reason; in setBest()
H A DSIMachineScheduler.cpp125 switch (Reason) { in getReasonStr()
145 TryCand.Reason = Reason; in tryLess()
149 if (Cand.Reason > Reason) in tryLess()
150 Cand.Reason = Reason; in tryLess()
153 Cand.setRepeat(Reason); in tryLess()
162 TryCand.Reason = Reason; in tryGreater()
166 if (Cand.Reason > Reason) in tryGreater()
167 Cand.Reason = Reason; in tryGreater()
170 Cand.setRepeat(Reason); in tryGreater()
195 TryCand.Reason = NodeOrder; in tryCandidateTopDown()
[all …]
H A DGCNSchedStrategy.cpp159 if (TryCand.Reason != NoCand) { in pickNodeFromQueue()
197 assert(BotCand.Reason != NoCand && "failed to find the first candidate"); in pickNodeBidirectional()
217 assert(TopCand.Reason != NoCand && "failed to find the first candidate"); in pickNodeBidirectional()
235 TopCand.Reason = NoCand; in pickNodeBidirectional()
237 if (TopCand.Reason != NoCand) { in pickNodeBidirectional()
262 assert(TopCand.Reason != NoCand && "failed to find a candidate"); in pickNode()
272 assert(BotCand.Reason != NoCand && "failed to find a candidate"); in pickNode()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineScheduler.cpp2744 switch (Reason) { in getReasonStr()
2770 switch (Cand.Reason) { in traceCandidate()
2828 TryCand.Reason = Reason; in tryLess()
2832 if (Cand.Reason > Reason) in tryLess()
2833 Cand.Reason = Reason; in tryLess()
2844 TryCand.Reason = Reason; in tryGreater()
2848 if (Cand.Reason > Reason) in tryGreater()
2849 Cand.Reason = Reason; in tryGreater()
3058 Reason)) { in tryPressure()
3072 Reason); in tryPressure()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp178 FunctionImporter::ImportFailureReason &Reason, in selectCallee() argument
180 Reason = FunctionImporter::ImportFailureReason::None; in selectCallee()
186 Reason = FunctionImporter::ImportFailureReason::NotLive; in selectCallee()
228 Reason = in selectCallee()
235 Reason = FunctionImporter::ImportFailureReason::TooLarge; in selectCallee()
357 getFailureName(FunctionImporter::ImportFailureReason Reason) { in getFailureName() argument
358 switch (Reason) { in getFailureName()
471 FunctionImporter::ImportFailureReason Reason; in computeImportForFunction() local
483 FailureInfo->Reason = Reason; in computeImportForFunction()
492 VI, Edge.second.getHotness(), Reason, 1); in computeImportForFunction()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h818 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason);
867 CandReason Reason; member
884 Reason = NoCand; in reset()
894 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); in setBest()
896 Reason = Best.Reason; in setBest()
931 GenericSchedulerBase::CandReason Reason);
935 GenericSchedulerBase::CandReason Reason);
943 GenericSchedulerBase::CandReason Reason,
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DMacroPPCallbacks.cpp158 void MacroPPCallbacks::FileChanged(SourceLocation Loc, FileChangeReason Reason, in FileChanged() argument
162 if (Reason == EnterFile) in FileChanged()
164 else if (Reason == ExitFile) in FileChanged()
H A DMacroPPCallbacks.h97 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MCA/
H A DHWEventListener.h148 : Reason(reason), AffectedInstructions(Insts), ResourceMask(Mask) {} in Reason() function
151 GenericReason Reason; variable
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm-c/
H A DErrorHandling.h21 typedef void (*LLVMFatalErrorHandler)(const char *Reason);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DIndirectCallPromotion.cpp285 const char *Reason = nullptr; in getPromotionCandidatesForCallSite() local
286 if (!isLegalToPromote(CB, TargetFunction, &Reason)) { in getPromotionCandidatesForCallSite()
293 << NV("Count", Count) << ": " << Reason; in getPromotionCandidatesForCallSite()
/freebsd-13.1/crypto/openssl/engines/
H A De_ossltest.txt12 #Reason codes
H A De_dasync.txt21 #Reason codes
H A De_afalg.txt17 #Reason codes
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/
H A DPPCallbacks.h47 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason,
422 void FileChanged(SourceLocation Loc, FileChangeReason Reason, in FileChanged() argument
425 First->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged()
426 Second->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorHandling.h116 LLVM_ATTRIBUTE_NORETURN void report_bad_alloc_error(const char *Reason,
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DCalledOnceCheck.h92 NeverCalledReason Reason, in handleNeverCalled() argument

123