/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() 109 return TryCand.Reason != NoCand; in tryCandidate() 115 return TryCand.Reason != NoCand; in tryCandidate() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | InlineCost.h | 103 const char *Reason = nullptr; variable 110 const char *Reason = nullptr, 113 StaticBonusApplied(StaticBonusApplied), Reason(Reason), in Cost() 115 assert((isVariable() || Reason) && in Cost() 126 getAlways(const char *Reason, 128 return InlineCost(AlwaysInlineCost, 0, 0, Reason, CostBenefit); 131 getNever(const char *Reason, 133 return InlineCost(NeverInlineCost, 0, 0, Reason, CostBenefit); 167 assert((Reason || isVariable()) && in getReason() 169 return Reason; in getReason() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | ErrorHandling.cpp | 82 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() 86 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { in report_fatal_error() argument 87 report_fatal_error(Twine(Reason), GenCrashDiag); in report_fatal_error() 90 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { in report_fatal_error() argument 104 handler(handlerData, Reason.str().c_str(), GenCrashDiag); in report_fatal_error() 111 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() 174 (void)!::write(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/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/llvm/include/llvm/Transforms/IPO/ |
H A D | FunctionImport.h | 82 ImportFailureReason Reason; member 86 ImportFailureReason Reason, unsigned Attempts) in ImportFailureInfo() 87 : VI(VI), MaxHotness(MaxHotness), Reason(Reason), Attempts(Attempts) {} in ImportFailureInfo()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
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 …]
|
H A D | GCNSchedStrategy.cpp | 309 if (TryCand.Reason != NoCand) { in pickNodeFromQueue() 348 assert(BotCand.Reason != NoCand && "failed to find the first candidate"); in pickNodeBidirectional() 370 assert(TopCand.Reason != NoCand && "failed to find the first candidate"); in pickNodeBidirectional() 389 TopCand.Reason = NoCand; in pickNodeBidirectional() 391 if (TopCand.Reason != NoCand) { in pickNodeBidirectional() 417 assert(TopCand.Reason != NoCand && "failed to find a candidate"); in pickNode() 428 assert(BotCand.Reason != NoCand && "failed to find a candidate"); in pickNode() 491 TryCand.Reason = NodeOrder; in tryCandidate() 499 return TryCand.Reason != NoCand; in tryCandidate() 504 return TryCand.Reason != NoCand; in tryCandidate() [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 …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineScheduler.cpp | 3093 GenericSchedulerBase::CandReason Reason) { in getReasonStr() argument 3094 switch (Reason) { in getReasonStr() 3120 switch (Cand.Reason) { in traceCandidate() 3151 dbgs() << " Cand SU(" << Cand.SU->NodeNum << ") " << getReasonStr(Cand.Reason); in traceCandidate() 3176 GenericSchedulerBase::CandReason Reason) { in tryLess() argument 3178 TryCand.Reason = Reason; in tryLess() 3182 if (Cand.Reason > Reason) in tryLess() 3183 Cand.Reason = Reason; in tryLess() 3192 GenericSchedulerBase::CandReason Reason) { in tryGreater() argument 3194 TryCand.Reason = Reason; in tryGreater() [all …]
|
H A D | MachineFunctionPass.cpp | 158 const char *Reason = in runOnFunction() local 163 errs() << " on " << MF.getName() + Reason + " ***\n"; in runOnFunction()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | MachineScheduler.h | 1077 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason); 1126 CandReason Reason; member 1143 Reason = NoCand; in reset() 1153 assert(Best.Reason != NoCand && "uninitialized Sched candidate"); in setBest() 1155 Reason = Best.Reason; in setBest() 1190 GenericSchedulerBase::CandReason Reason); 1194 GenericSchedulerBase::CandReason Reason); 1202 GenericSchedulerBase::CandReason Reason,
|
/freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
H A D | PPCallbacks.h | 49 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, 71 virtual void LexedFileChanged(FileID FID, LexedFileChangeReason Reason, in LexedFileChanged() argument 480 void FileChanged(SourceLocation Loc, FileChangeReason Reason, in FileChanged() argument 483 First->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged() 484 Second->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged() 487 void LexedFileChanged(FileID FID, LexedFileChangeReason Reason, in LexedFileChanged() argument 490 First->LexedFileChanged(FID, Reason, FileType, PrevFID, Loc); in LexedFileChanged() 491 Second->LexedFileChanged(FID, Reason, FileType, PrevFID, Loc); in LexedFileChanged()
|
/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/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/include/llvm/MCA/ |
H A D | HWEventListener.h | 151 : Reason(reason), AffectedInstructions(Insts), ResourceMask(Mask) {} in Reason() function 153 // Reason for this increase in backend pressure. 154 GenericReason Reason; variable
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | FunctionImport.cpp | 278 FunctionImporter::ImportFailureReason &Reason) { in selectCallee() argument 284 Reason = QualifiedValue.first; in selectCallee() 286 if (Reason != FunctionImporter::ImportFailureReason::None) in selectCallee() 296 Reason = FunctionImporter::ImportFailureReason::TooLarge; in selectCallee() 303 Reason = FunctionImporter::ImportFailureReason::NoInline; in selectCallee() 433 static const char *getFailureName(FunctionImporter::ImportFailureReason Reason); 693 getFailureName(FunctionImporter::ImportFailureReason Reason) { in getFailureName() argument 694 switch (Reason) { in getFailureName() 804 FunctionImporter::ImportFailureReason Reason{}; in computeImportForFunction() local 810 Summary.modulePath(), SummaryForDeclImport, Reason); in computeImportForFunction() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCXCOFFStreamer.cpp | 109 unsigned Lang, unsigned Reason, in emitXCOFFExceptDirective() argument 115 Reason, FunctionSize, hasDebug); in emitXCOFFExceptDirective()
|
/freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
H A D | ErrorHandling.h | 27 typedef void (*LLVMFatalErrorHandler)(const char *Reason);
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
H A D | Coroutines.cpp | 501 [[noreturn]] static void fail(const Instruction *I, const char *Reason, in fail() argument 511 report_fatal_error(Reason); in fail() 582 const char *Reason) { in checkConstantInt() argument 584 fail(I, Reason, V); in checkConstantInt()
|
/freebsd/crypto/openssl/engines/ |
H A D | e_dasync.txt | 8 #Reason codes
|
H A D | e_ossltest.txt | 8 #Reason codes
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | PrintPreprocessedOutput.cpp | 157 void FileChanged(SourceLocation Loc, FileChangeReason Reason, 346 FileChangeReason Reason, in FileChanged() argument 359 if (Reason == PPCallbacks::EnterFile) { in FileChanged() 363 } else if (Reason == PPCallbacks::SystemHeaderPragma) { in FileChanged() 397 if (Reason == PPCallbacks::EnterFile && !IsFirstFileEntered) { in FileChanged() 402 switch (Reason) { in FileChanged()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaModule.cpp | 232 } Reason = Valid; in DiagReservedModuleName() local 235 Reason = Invalid; in DiagReservedModuleName() 238 Reason = Reserved; in DiagReservedModuleName() 243 if (Reason == Reserved && S.getSourceManager().isInSystemHeader(Loc)) in DiagReservedModuleName() 244 Reason = Valid; in DiagReservedModuleName() 246 switch (Reason) { in DiagReservedModuleName()
|