| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCMachineScheduler.cpp | 38 TryCand.Reason = Stall; in biasAddiLoadCandidate() 42 TryCand.Reason = NoCand; in biasAddiLoadCandidate() 56 TryCand.Reason = NodeOrder; in tryCandidate() 63 return TryCand.Reason != NoCand; in tryCandidate() 69 return TryCand.Reason != NoCand; in tryCandidate() 75 return TryCand.Reason != NoCand; in tryCandidate() 89 return TryCand.Reason != NoCand; in tryCandidate() 94 return TryCand.Reason != NoCand; in tryCandidate() 108 return TryCand.Reason != NoCand; in tryCandidate() 114 return TryCand.Reason != NoCand; in tryCandidate() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | InlineCost.h | 104 const char *Reason = nullptr; variable 111 const char *Reason = nullptr, 114 StaticBonusApplied(StaticBonusApplied), Reason(Reason), in Cost() 116 assert((isVariable() || Reason) && in Cost() 127 getAlways(const char *Reason, 129 return InlineCost(AlwaysInlineCost, 0, 0, Reason, CostBenefit); 132 getNever(const char *Reason, 134 return InlineCost(NeverInlineCost, 0, 0, Reason, CostBenefit); 168 assert((Reason || isVariable()) && in getReason() 170 return Reason; in getReason() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | ErrorHandling.cpp | 95 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { in report_fatal_error() argument 96 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error() 99 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { in report_fatal_error() argument 100 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error() 103 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { in report_fatal_error() argument 117 handler(handlerData, Reason.str().c_str(), GenCrashDiag); in report_fatal_error() 124 OS << "LLVM ERROR: " << Reason << "\n"; in report_fatal_error() 178 void llvm::report_bad_alloc_error(const char *Reason, bool GenCrashDiag) { in report_bad_alloc_error() argument 192 Handler(HandlerData, Reason, GenCrashDiag); in report_bad_alloc_error() 205 write_retry(2, Reason, strlen(Reason)); in report_bad_alloc_error()
|
| H A D | SmallVector.cpp | 63 std::string Reason = "SmallVector unable to grow. Requested capacity (" + in report_size_overflow() local 68 throw std::length_error(Reason); in report_size_overflow() 70 report_fatal_error(Twine(Reason)); in report_size_overflow() 78 std::string Reason = in report_at_maximum_capacity() local 82 throw std::length_error(Reason); in report_at_maximum_capacity() 84 report_fatal_error(Twine(Reason)); in report_at_maximum_capacity()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/ |
| H A D | Legality.h | 122 static const char *getVecReason(ResultReason Reason) { in getVecReason() 123 switch (Reason) { in getVecReason() 186 [[maybe_unused]] ResultReason Reason; variable 187 LegalityResultWithReason(LegalityResultID ID, ResultReason Reason) in LegalityResultWithReason() argument 188 : LegalityResult(ID), Reason(Reason) {} in LegalityResultWithReason() 192 ResultReason getReason() const { return Reason; } in getReason() 196 OS << " Reason: " << ToStr::getVecReason(Reason); in print() 241 Pack(ResultReason Reason) in Pack() argument 242 : LegalityResultWithReason(LegalityResultID::Pack, Reason) {} in Pack()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/ |
| H A D | rtsan_diagnostics.cpp | 38 const char *Reason() const { return Blue(); } in Reason() function in __anon3edc3cb90111::Decorator 62 Printf("%s", decorator.Reason()); in PrintReason() 68 decorator.FunctionName(), info.func_name, decorator.Reason()); in PrintReason() 74 decorator.FunctionName(), info.func_name, decorator.Reason()); in PrintReason()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | RegisterCheckpoint.h | 23 enum class Reason { enum 34 RegisterCheckpoint(Reason reason) : UserID(0), m_reason(reason) {} in RegisterCheckpoint() 44 Reason m_reason;
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | HeaderIncludeGen.cpp | 49 void FileChanged(SourceLocation Loc, FileChangeReason Reason, 102 void FileChanged(SourceLocation Loc, FileChangeReason Reason, 256 FileChangeReason Reason, in FileChanged() argument 266 if (Reason == PPCallbacks::EnterFile) { in FileChanged() 268 } else if (Reason == PPCallbacks::ExitFile) { in FileChanged() 291 if (Reason == PPCallbacks::EnterFile && in FileChanged() 350 SourceLocation Loc, FileChangeReason Reason, in FileChanged() argument 362 if (Reason == PPCallbacks::EnterFile && in FileChanged()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | GCNSchedStrategy.cpp | 354 if (TryCand.Reason != NoCand) { in pickNodeFromQueue() 393 assert(BotCand.Reason != NoCand && "failed to find the first candidate"); in pickNodeBidirectional() 415 assert(TopCand.Reason != NoCand && "failed to find the first candidate"); in pickNodeBidirectional() 434 TopCand.Reason = NoCand; in pickNodeBidirectional() 436 if (TopCand.Reason != NoCand) { in pickNodeBidirectional() 462 assert(TopCand.Reason != NoCand && "failed to find a candidate"); in pickNode() 473 assert(BotCand.Reason != NoCand && "failed to find a candidate"); in pickNode() 547 TryCand.Reason = NodeOrder; in tryCandidate() 555 return TryCand.Reason != NoCand; in tryCandidate() 560 return TryCand.Reason != NoCand; in tryCandidate() [all …]
|
| H A D | SIMachineScheduler.h | 42 SIScheduleCandReason Reason = NoCand; member 182 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); in setBest() 184 Reason = Best.Reason; in setBest() 374 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); in setBest() 376 Reason = Best.Reason; in setBest()
|
| H A D | SIMachineScheduler.cpp | 124 static const char *getReasonStr(SIScheduleCandReason Reason) { in getReasonStr() argument 125 switch (Reason) { in getReasonStr() 142 SIScheduleCandReason Reason) { in tryLess() argument 144 TryCand.Reason = Reason; in tryLess() 148 if (Cand.Reason > Reason) in tryLess() 149 Cand.Reason = Reason; in tryLess() 152 Cand.setRepeat(Reason); in tryLess() 159 SIScheduleCandReason Reason) { in tryGreater() argument 161 TryCand.Reason = Reason; in tryGreater() 165 if (Cand.Reason > Reason) in tryGreater() [all …]
|
| /freebsd/crypto/openssl/test/recipes/30-test_evp_data/ |
| H A D | evppkey_ecc.txt | 82 Reason=point at infinity 90 Reason=point at infinity 160 Reason=point at infinity 168 Reason=point at infinity 238 Reason=point at infinity 246 Reason=point at infinity 316 Reason=point at infinity 324 Reason=point at infinity 396 Reason=point at infinity 404 Reason=point at infinity [all …]
|
| H A D | evpmac_common.txt | 316 Reason = invalid mode 325 Reason = invalid key length 400 Reason = invalid mode 563 Reason = invalid custom length 573 Reason = invalid output length 597 Reason = invalid output length 609 Reason = invalid output length 639 Reason = invalid key length
|
| H A D | evpkdf_tls12_prf.txt | 61 Reason = invalid key length 98 Reason = digest not allowed 125 Reason = invalid key length
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineScheduler.cpp | 3388 GenericSchedulerBase::CandReason Reason) { in getReasonStr() argument 3390 switch (Reason) { in getReasonStr() 3417 switch (Cand.Reason) { in traceCandidate() 3448 dbgs() << " Cand SU(" << Cand.SU->NodeNum << ") " << getReasonStr(Cand.Reason); in traceCandidate() 3473 GenericSchedulerBase::CandReason Reason) { in tryLess() argument 3475 TryCand.Reason = Reason; in tryLess() 3479 if (Cand.Reason > Reason) in tryLess() 3480 Cand.Reason = Reason; in tryLess() 3489 GenericSchedulerBase::CandReason Reason) { in tryGreater() argument 3491 TryCand.Reason = Reason; in tryGreater() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | MacroPPCallbacks.cpp | 158 void MacroPPCallbacks::FileChanged(SourceLocation Loc, FileChangeReason Reason, in FileChanged() argument 162 if (Reason == EnterFile) in FileChanged() 164 else if (Reason == ExitFile) in FileChanged()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | PPCallbacks.h | 50 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, 72 virtual void LexedFileChanged(FileID FID, LexedFileChangeReason Reason, in LexedFileChanged() argument 481 void FileChanged(SourceLocation Loc, FileChangeReason Reason, in FileChanged() argument 484 First->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged() 485 Second->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged() 488 void LexedFileChanged(FileID FID, LexedFileChangeReason Reason, in LexedFileChanged() argument 491 First->LexedFileChanged(FID, Reason, FileType, PrevFID, Loc); in LexedFileChanged() 492 Second->LexedFileChanged(FID, Reason, FileType, PrevFID, Loc); in LexedFileChanged()
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | Decompressor.cpp | 52 if (const char *Reason = llvm::compression::getReasonIfUnsupported( in consumeCompressedHeader() local 54 return createError(Reason); in consumeCompressedHeader()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86WinEHUnwindV2.cpp | 62 StringRef Reason); 317 const MachineFunction &MF, WinX64EHUnwindV2Mode Mode, StringRef Reason) { in rejectCurrentFunctionInternalError() argument 321 MF.getName() + "': " + Reason); in rejectCurrentFunctionInternalError()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | MachineScheduler.h | 1099 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason); 1148 CandReason Reason; member 1165 Reason = NoCand; in reset() 1175 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); in setBest() 1177 Reason = Best.Reason; in setBest() 1219 GenericSchedulerBase::CandReason Reason); 1223 GenericSchedulerBase::CandReason Reason); 1231 GenericSchedulerBase::CandReason Reason,
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
| H A D | FunctionImport.h | 72 ImportFailureReason Reason; member 76 ImportFailureReason Reason, unsigned Attempts) in ImportFailureInfo() 77 : VI(VI), MaxHotness(MaxHotness), Reason(Reason), Attempts(Attempts) {} in ImportFailureInfo()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MCA/ |
| H A D | HWEventListener.h | 152 : Reason(reason), AffectedInstructions(Insts), ResourceMask(Mask) {} in Reason() function 155 GenericReason Reason; variable
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | EVLIndVarSimplify.cpp | 117 const char *Reason = (IndVar ? "induction descriptor is not available" in run() local 120 << " because" << Reason << "\n"); in run() 125 << "Cannot retrieve IV because " << ore::NV("Reason", Reason); in run()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | FunctionImport.cpp | 305 FunctionImporter::ImportFailureReason &Reason) { in selectCallee() argument 311 Reason = QualifiedValue.first; in selectCallee() 313 if (Reason != FunctionImporter::ImportFailureReason::None) in selectCallee() 323 Reason = FunctionImporter::ImportFailureReason::TooLarge; in selectCallee() 330 Reason = FunctionImporter::ImportFailureReason::NoInline; in selectCallee() 498 static const char *getFailureName(FunctionImporter::ImportFailureReason Reason); 846 getFailureName(FunctionImporter::ImportFailureReason Reason) { in getFailureName() argument 847 switch (Reason) { in getFailureName() 963 FunctionImporter::ImportFailureReason Reason{}; in computeImportForFunction() local 969 Summary.modulePath(), SummaryForDeclImport, Reason); in computeImportForFunction() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCXCOFFStreamer.cpp | 113 unsigned Lang, unsigned Reason, in emitXCOFFExceptDirective() argument 116 getWriter().addExceptionEntry(Symbol, Trap, Lang, Reason, FunctionSize, in emitXCOFFExceptDirective()
|