Searched refs:Reason (Results 1 - 25 of 52) sorted by relevance

123

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DErrorHandling.h21 typedef void (*LLVMFatalErrorHandler)(const char *Reason);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DInlineCost.h77 const char *Reason = nullptr; member in class:llvm::InlineCost
80 InlineCost(int Cost, int Threshold, const char *Reason = nullptr)
81 : Cost(Cost), Threshold(Threshold), Reason(Reason) {
82 assert((isVariable() || Reason) &&
83 "Reason must be provided for Never or Always");
92 static InlineCost getAlways(const char *Reason) {
93 return InlineCost(AlwaysInlineCost, 0, Reason);
95 static InlineCost getNever(const char *Reason) {
96 return InlineCost(NeverInlineCost, 0, Reason);
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DSmallVector.cpp53 std::string Reason = "SmallVector unable to grow. Requested capacity (" + local
58 throw std::length_error(Reason);
60 report_fatal_error(Reason);
68 std::string Reason = local
72 throw std::length_error(Reason);
74 report_fatal_error(Reason);
H A DErrorHandling.cpp82 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { argument
83 report_fatal_error(Twine(Reason), GenCrashDiag);
86 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) { argument
87 report_fatal_error(Twine(Reason), GenCrashDiag);
90 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { argument
91 report_fatal_error(Twine(Reason), GenCrashDiag);
94 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { argument
108 handler(handlerData, Reason.str(), GenCrashDiag);
115 OS << "LLVM ERROR: " << Reason << "\n"; local
147 void llvm::report_bad_alloc_error(const char *Reason, boo argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCMachineScheduler.cpp38 TryCand.Reason = Stall;
42 TryCand.Reason = NoCand;
56 TryCand.Reason = NodeOrder;
144 TryCand.Reason = NodeOrder;
152 if (TryCand.Reason != NodeOrder && TryCand.Reason != NoCand)
169 TryCand.Reason = Stall;
181 TryCand.Reason = NodeOrder;
211 TryCand.Reason = NodeOrder;
217 if (TryCand.Reason !
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DFunctionImport.h78 ImportFailureReason Reason; member in struct:llvm::FunctionImporter::ImportFailureInfo
82 ImportFailureReason Reason, unsigned Attempts)
83 : VI(VI), MaxHotness(MaxHotness), Reason(Reason), Attempts(Attempts) {}
81 ImportFailureInfo(ValueInfo VI, CalleeInfo::HotnessType MaxHotness, ImportFailureReason Reason, unsigned Attempts) argument
/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/
H A DHeaderIncludeGen.cpp45 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
132 FileChangeReason Reason,
142 if (Reason == PPCallbacks::EnterFile) {
144 } else if (Reason == PPCallbacks::ExitFile) {
181 if (ShowHeader && Reason == PPCallbacks::EnterFile &&
131 FileChanged(SourceLocation Loc, FileChangeReason Reason, SrcMgr::CharacteristicKind NewFileType, FileID PrevFID) argument
/netbsd-current/crypto/external/bsd/openssl.old/dist/util/
H A Dfind-unused-errs23 echo Reason codes only
/netbsd-current/crypto/external/bsd/openssl/dist/util/
H A Dfind-unused-errs23 echo Reason codes only
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Duuid.d340 UUIDParsingException.Reason.tooLittle, "Insufficient Input");
344 throw new UUIDParsingException(to!string(uuid), 35, UUIDParsingException.Reason.tooMuch,
351 UUIDParsingException.Reason.invalidChar, "Expected '-'");
387 UUIDParsingException.Reason.invalidChar, "Couldn't parse ubyte");
431 assert(except && except.reason == UUIDParsingException.Reason.tooLittle);
436 assert(except && except.reason == UUIDParsingException.Reason.tooMuch);
441 assert(except && except.reason == UUIDParsingException.Reason.invalidChar);
446 assert(except && except.reason == UUIDParsingException.Reason.invalidChar);
452 assert(except && except.reason == UUIDParsingException.Reason.invalidChar);
1323 void parserError()(size_t pos, UUIDParsingException.Reason reaso
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/
H A Duuid.d340 UUIDParsingException.Reason.tooLittle, "Insufficient Input");
344 throw new UUIDParsingException(to!string(uuid), 35, UUIDParsingException.Reason.tooMuch,
351 UUIDParsingException.Reason.invalidChar, "Expected '-'");
387 UUIDParsingException.Reason.invalidChar, "Couldn't parse ubyte");
431 assert(except && except.reason == UUIDParsingException.Reason.tooLittle);
436 assert(except && except.reason == UUIDParsingException.Reason.tooMuch);
441 assert(except && except.reason == UUIDParsingException.Reason.invalidChar);
446 assert(except && except.reason == UUIDParsingException.Reason.invalidChar);
452 assert(except && except.reason == UUIDParsingException.Reason.invalidChar);
1343 void parserError()(size_t pos, UUIDParsingException.Reason reaso
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.h40 SIScheduleCandReason Reason = NoCand; member in struct:llvm::SISchedulerCandidate
183 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
185 Reason = Best.Reason;
375 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
377 Reason = Best.Reason;
H A DSIMachineScheduler.cpp124 static const char *getReasonStr(SIScheduleCandReason Reason) { argument
125 switch (Reason) {
143 SIScheduleCandReason Reason) {
145 TryCand.Reason = Reason;
149 if (Cand.Reason > Reason)
150 Cand.Reason = Reason;
153 Cand.setRepeat(Reason);
140 tryLess(int TryVal, int CandVal, SISchedulerCandidate &TryCand, SISchedulerCandidate &Cand, SIScheduleCandReason Reason) argument
157 tryGreater(int TryVal, int CandVal, SISchedulerCandidate &TryCand, SISchedulerCandidate &Cand, SIScheduleCandReason Reason) argument
[all...]
H A DGCNSchedStrategy.cpp159 if (TryCand.Reason != NoCand) {
197 assert(BotCand.Reason != NoCand && "failed to find the first candidate");
217 assert(TopCand.Reason != NoCand && "failed to find the first candidate");
235 TopCand.Reason = NoCand;
237 if (TopCand.Reason != NoCand) {
262 assert(TopCand.Reason != NoCand && "failed to find a candidate");
272 assert(BotCand.Reason != NoCand && "failed to find a candidate");
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DMacroPPCallbacks.cpp158 void MacroPPCallbacks::FileChanged(SourceLocation Loc, FileChangeReason Reason, argument
162 if (Reason == EnterFile)
164 else if (Reason == ExitFile)
H A DMacroPPCallbacks.h96 /// \param PrevFID the file that was exited if \p Reason is ExitFile.
97 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/MCA/
H A DHWEventListener.h146 : Reason(reason), AffectedInstructions(Insts), ResourceMask(Mask) {}
148 // Reason for this increase in backend pressure.
149 GenericReason Reason; member in class:llvm::mca::HWPressureEvent
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DErrorHandling.h116 LLVM_ATTRIBUTE_NORETURN void report_bad_alloc_error(const char *Reason,
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DCalledOnceCheck.h85 /// \param Reason -- a reason describing the path without a call.
92 NeverCalledReason Reason,
90 handleNeverCalled(const ParmVarDecl *Parameter, const Decl *Function, const Stmt *Where, NeverCalledReason Reason, bool IsCalledDirectly, bool IsCompletionHandler) argument
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h818 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason);
867 CandReason Reason; member in struct:llvm::GenericSchedulerBase::SchedCandidate
884 Reason = NoCand;
894 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
896 Reason = Best.Reason;
931 GenericSchedulerBase::CandReason Reason);
935 GenericSchedulerBase::CandReason Reason);
943 GenericSchedulerBase::CandReason Reason,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp178 FunctionImporter::ImportFailureReason &Reason,
180 Reason = FunctionImporter::ImportFailureReason::None;
186 Reason = FunctionImporter::ImportFailureReason::NotLive;
204 Reason = FunctionImporter::ImportFailureReason::GlobalVar;
208 Reason = FunctionImporter::ImportFailureReason::InterposableLinkage;
228 Reason =
235 Reason = FunctionImporter::ImportFailureReason::TooLarge;
242 Reason = FunctionImporter::ImportFailureReason::NotEligible;
248 Reason = FunctionImporter::ImportFailureReason::NoInline;
357 getFailureName(FunctionImporter::ImportFailureReason Reason) { argument
175 selectCallee(const ModuleSummaryIndex &Index, ArrayRef<std::unique_ptr<GlobalValueSummary>> CalleeSummaryList, unsigned Threshold, StringRef CallerModulePath, FunctionImporter::ImportFailureReason &Reason, GlobalValue::GUID GUID) argument
471 FunctionImporter::ImportFailureReason Reason; local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineScheduler.cpp2743 GenericSchedulerBase::CandReason Reason) {
2744 switch (Reason) {
2770 switch (Cand.Reason) {
2801 dbgs() << " Cand SU(" << Cand.SU->NodeNum << ") " << getReasonStr(Cand.Reason);
2824 GenericSchedulerBase::CandReason Reason) {
2826 TryCand.Reason = Reason;
2830 if (Cand.Reason > Reason)
2831 Cand.Reason
2742 getReasonStr( GenericSchedulerBase::CandReason Reason) argument
2821 tryLess(int TryVal, int CandVal, GenericSchedulerBase::SchedCandidate &TryCand, GenericSchedulerBase::SchedCandidate &Cand, GenericSchedulerBase::CandReason Reason) argument
2837 tryGreater(int TryVal, int CandVal, GenericSchedulerBase::SchedCandidate &TryCand, GenericSchedulerBase::SchedCandidate &Cand, GenericSchedulerBase::CandReason Reason) argument
2887 tracePick(GenericSchedulerBase::CandReason Reason, bool IsTop) argument
3046 tryPressure(const PressureChange &TryP, const PressureChange &CandP, GenericSchedulerBase::SchedCandidate &TryCand, GenericSchedulerBase::SchedCandidate &Cand, GenericSchedulerBase::CandReason Reason, const TargetRegisterInfo *TRI, const MachineFunction &MF) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DIndirectCallPromotion.cpp284 const char *Reason = nullptr; local
285 if (!isLegalToPromote(CB, TargetFunction, &Reason)) {
292 << NV("Count", Count) << ": " << Reason;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp575 static void fail(const Instruction *I, const char *Reason, Value *V) { argument
584 report_fatal_error(Reason);
655 const char *Reason) {
657 fail(I, Reason, V);
654 checkConstantInt(const Instruction *I, Value *V, const char *Reason) argument
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DPPCallbacks.h46 /// \param PrevFID the file that was exited if \p Reason is ExitFile.
47 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, argument
386 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
389 First->FileChanged(Loc, Reason, FileType, PrevFID);
390 Second->FileChanged(Loc, Reason, FileType, PrevFID);

Completed in 670 milliseconds

123