summaryrefslogtreecommitdiffstats
path: root/src/common/assert.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* common/assert: rework ASSERT handling to avoid std::function usageLiam2022-06-141-28/+17
|
* common: Don't test ASSERT conditions inlineLiam2022-06-141-29/+29
|
* common: Change semantics of UNREACHABLE to unconditionally crashLiam2022-06-141-2/+12
|
* chore: add missing SPDX tagsAndrea Pappacoda2022-04-281-3/+3
| | | | Follow-up to 99ceb03a1cfcf35968cab589ea188a8c406cda52
* assert: Verify formattingyzct123452021-08-051-2/+6
|
* assert: Avoid empty macrosyzct123452021-08-051-2/+2
|
* common: Move assert failure handling into a cpp file.Markus Wick2021-04-041-6/+8
| | | | | | | | | | Advantage: Altering the handler does not need a full recompilation. Disadvantage: noreturn is droped, so the caller is a bit slower. We quite often run yuzu with a YOLO assertion handler. In fact, only very few games run at all with asserts. This patch allows developers to patch the handler without recompiling everything. The overhead of the missing "noreturn" attribute shoul be negletable.
* common/assert: Make use of C++ attribute syntaxLioncash2020-08-241-3/+4
| | | | Normalizes the syntax used for attributes
* fix clang-format and lambda captureWeiyi Wang2019-11-231-1/+2
|
* unfold UNREACHABLE implementation for dumb compilersWeiyi Wang2019-11-231-2/+2
| | | We relies on UNREACHABLE's noreturn attribute to eliminate parent's "no return value" warning. However, this was wrapped in a `if(!false)` block, which compilers may not unfold to recognize the noreturn nature.
* Permit a Null Shader in case of a bad host_ptr.Fernando Sahmkow2019-04-071-0/+18
|
* common/assert: Add UNIMPLEMENTED_IF and UNIMPLEMENTED_IF_MSG for conditional assertionsLioncash2018-11-211-0/+3
| | | | | | | | | | | | | | | | Currently, there's no way to specify if an assertion should conditionally occur due to unimplemented behavior. This is useful when something is only partially implemented (e.g. due to ongoing RE work). In particular, this would be useful within the graphics code. The rationale behind this is it allows a dev to disable unimplemented feature assertions (which can occur in an unrelated work area), while still enabling regular assertions, which act as behavior guards for conditions or states which must not occur. Previously, the only way a dev could temporarily disable asserts, was to disable the regular assertion macros, which has the downside of also disabling, well, the regular assertions which hold more sanitizing value, as opposed to unimplemented feature assertions.
* common/assert: Make the UNIMPLEMENTED macro properly assertLioncash2018-11-201-1/+1
| | | | | | | | Currently, this was only performing a logging call, which doesn't actually invoke any assertion behavior. This is unlike UNIMPLEMENTED_MSG, which *does* assert. This makes the expected behavior uniform across both macros.
* Port #3474 from CitrafearlessTobi2018-07-071-1/+1
|
* Update clang formatJames Rowe2018-07-031-3/+2
|
* Rename logging macro back to LOG_*James Rowe2018-07-031-2/+2
|
* general: Convert assertion macros over to be fmt-compatibleLioncash2018-04-271-2/+3
|
* fix macos buildMerryMage2018-01-091-1/+1
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-2/+1
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-11/+15
|
* assert: Allow UNREACHABLE_MSG to have just one argumentSam Spilsbury2016-04-241-1/+1
|
* assert: Add _MSG variations for UNREACHABLE and UNIMPLEMENTEDSam Spilsbury2016-04-231-0/+2
|
* Common: Cleanup profiler includes.Emmanuel Gil Peyrot2015-06-281-1/+0
|
* Common: Use the log system to print assert messagesYuri Kunde Schlesner2015-05-121-7/+3
|
* Clean-up includesYuri Kunde Schlesner2015-05-071-0/+1
|
* Asserts: Use lambdas to keep assertion code away from the main code pathYuri Kunde Schlesner2015-02-181-6/+25
|
* Asserts: break/crash program, fit to style guide; log.h->assert.harchshift2015-02-111-0/+36
Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.