summaryrefslogtreecommitdiff
path: root/src/common (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1424 from DarkLordZach/ips-witchGravatar bunnei2018-10-082-0/+24
|\ | | | | ips_layer: Add support for IPSwitch executable patches
| * ips_layer: Deduplicate resource usageGravatar Zach Hilman2018-10-042-2/+2
| |
| * hex_util: Add HexVectorToString and HexStringToVectorGravatar Zach Hilman2018-10-042-0/+24
| | | | | | | | Converts between bytes and strings when the size is not known at compile time.
* | Merge pull request #1453 from FearlessTobi/port-4311Gravatar bunnei2018-10-061-1/+1
|\ \ | | | | | | Port citra-emu/citra#4311: "Remove "#" in the version number"
| * | Remove "#" in the version numberGravatar fearlessTobi2018-10-061-1/+1
| | | | | | | | | | | | So that people can stop using it in issue/pr comments and randomly link some other issue/pr unintentionally.
* | | citra_qt/configuration: misc input tab improvementsGravatar zhupengfei2018-10-062-1/+19
|/ / | | | | | | | | | | | | | | * Added a context menu on the buttons including Clear & Restore Default * Allow clearing (unsetting) inputs. Added a Clear All button * Allow restoring a single input to default (instead of all)
* | Merge pull request #1332 from FearlessTobi/port-web-backendGravatar bunnei2018-10-064-0/+108
|\ \ | | | | | | Port web_service from Citra
| * | Review comments - part 5Gravatar fearlessTobi2018-10-021-0/+1
| | |
| * | Address a bunch of review commentsGravatar fearlessTobi2018-10-021-1/+1
| | |
| * | Port web_service from CitraGravatar fearlessTobi2018-10-024-0/+107
| | |
* | | Merge pull request #1442 from lioncash/formatGravatar bunnei2018-10-051-1/+1
|\ \ \ | |_|/ |/| | text_formatter: Avoid unnecessary string temporary creation in PrintMessage()
| * | text_formatter: Avoid unnecessary string temporary creation in PrintMessage()Gravatar Lioncash2018-10-041-1/+1
| |/ | | | | | | | | | | | | | | | | operator+ for std::string creates an entirely new string, which is kind of unnecessary here if we just want to append a null terminator to the existing one. Reduces the total amount of potential allocations that need to be done in the logging path.
* | string_util: unify UTF8<->UTF16 conversion to codecvtGravatar Weiyi Wang2018-10-021-109/+6
| |
* | string_util: remove TString conversion for windowsGravatar Weiyi Wang2018-10-022-19/+1
| | | | | | | | First of all they are foundamentally broken. As our convention is that std::string is always UTF-8, these functions assume that the multi-byte character version of TString (std::string) from windows is also in UTF-8, which is almost always wrong. We are not going to build multi-byte character build, and even if we do, this dirty work should be handled by frontend framework early.
* | string_util: remove ShiftJIS/CP1252 conversion functionGravatar Weiyi Wang2018-10-022-22/+0
|/ | | | We always use unicode internally. Any dirty work of conversion with other codec should be handled by frontend framework (Qt). Further more, ShiftJIS/CP1252 are not special (they are not code set used by 3ds, or any guest/host dependencies we have), so there is no reason to specifically include them
* Merge pull request #1365 from DarkLordZach/lfsGravatar bunnei2018-09-253-0/+6
|\ | | | | file_sys: Add support for LayeredFS mods
| * common_paths: Add Load and Dump dirsGravatar Zach Hilman2018-09-213-0/+6
| |
* | Stubbed IRS (#1349)Gravatar David2018-09-232-0/+2
| | | | | | | | | | | | | | | | | | | | * Stubbed IRS Currently we have no ideal way of implementing IRS. For the time being we should have the functions stubbed until we come up with a way to emulate IRS properly. * Added IRS to logging backend * Forward declared shared memory for irs
* | common/thread: remove YieldCPU()Gravatar Weiyi Wang2018-09-221-8/+0
|/ | | | simply use the standard library yield()
* ring_buffer: Use std::atomic_size_t in a static assertGravatar Lioncash2018-09-181-1/+1
| | | | Avoids the need to repeat "std::" twice
* ring_buffer: Use std::hardware_destructive_interference_size to determine ↵Gravatar Lioncash2018-09-181-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | alignment size for avoiding false sharing MSVC 19.11 (A.K.A. VS 15.3)'s C++ standard library implements P0154R1 (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0154r1.html) which defines two new constants within the <new> header, std::hardware_destructive_interference_size and std::hardware_constructive_interference_size. std::hardware_destructive_interference_size defines the minimum recommended offset between two concurrently-accessed objects to avoid performance degradation due to contention introduced by the implementation (with the lower-bound being at least alignof(max_align_t)). In other words, the minimum offset between objects necessary to avoid false-sharing. std::hardware_constructive_interference_size on the other hand defines the maximum recommended size of contiguous memory occupied by two objects accessed wth temporal locality by concurrent threads (also defined to be at least alignof(max_align_t)). In other words the maximum size to promote true-sharing. So we can simply use this facility to determine the ideal alignment size. Unfortunately, only MSVC supports this right now, so we need to enclose it within an ifdef for the time being.
* Port #4182 from Citra: "Prefix all size_t with std::"Gravatar fearlessTobi2018-09-1523-135/+140
|
* common: Implement a ring bufferGravatar MerryMage2018-09-082-0/+112
|
* Better Title Bar DisplayGravatar CaptV0rt3x2018-09-073-5/+25
|
* common/logging: Amend documentation commentsGravatar Lioncash2018-09-042-6/+6
| | | | | | | Multi-line doc comments still need the '<' after the ///, otherwise it's treated as a regular comment and makes the original doc comment broken in viewers, IDEs, etc. While we're at it, also fix some typos in the comments.
* common/logging/filter: Replace C-style case with C++ static_castGravatar Lioncash2018-09-041-1/+1
|
* common/logging/filter: Make constructor explicitGravatar Lioncash2018-09-041-1/+1
| | | | Implicit conversions aren't desirable here.
* Merge pull request #1170 from lioncash/retGravatar bunnei2018-08-271-1/+1
|\ | | | | file_util: Correct return value in early exit of ReadFileToString()
| * file_util: Correct return value in early exit of ReadFileToString()Gravatar Lioncash2018-08-241-1/+1
| | | | | | | | | | While still essentially being zero, we should be returning a numeric value here, not a boolean typed value.
* | hex_util: Replace logic_errors with LOG_CRITICALGravatar Zach Hilman2018-08-231-5/+17
|/ | | | Makes it so malformed hex strings do not crash the entire program.
* logging/text_formatter: Use empty braces for initializing ↵Gravatar Lioncash2018-08-211-1/+1
| | | | | | | | | CONSOLE_SCREEN_BUFFER_INFO instance The previous form of initializing done here is a C-ism, an empty set of braces is sufficient for initializing (and doesn't potentially cause missing brace warnings, given the first member of the struct is a COORD struct).
* bit_field: Convert ToBool() into explicit operator boolGravatar Lioncash2018-08-211-2/+1
| | | | Gets rid of a TODO that is long overdue.
* Merge pull request #1064 from lioncash/telemetryGravatar bunnei2018-08-202-0/+77
|\ | | | | common/telemetry: Migrate core-independent info gathering to common
| * common/telemetry: Migrate core-independent info gathering to commonGravatar Lioncash2018-08-142-0/+77
| | | | | | | | | | | | | | | | | | | | | | | | Previously core itself was the library containing the code to gather common information (build info, CPU info, and OS info), however all of this isn't core-dependent and can be moved to the common code and use the common interfaces. We can then just call those functions from the core instead. This will allow replacing our CPU detection with Xbyak's which has better detection facilities than ours. It also keeps more architecture-dependent code in common instead of core.
* | common: Namespace hex_util.h/.cppGravatar Lioncash2018-08-152-0/+8
| | | | | | | | | | It's in the common code, so it should be under the Common namespace like everything else.
* | Merge pull request #1005 from DarkLordZach/registered-fmtGravatar bunnei2018-08-155-0/+74
|\ \ | | | | | | file_sys: Add support for registration format
| * | file_sys: Comply to style guidelinesGravatar Zach Hilman2018-08-111-0/+2
| | |
| * | file_util: Add getter for NAND registration directoryGravatar Zach Hilman2018-08-112-0/+8
| | |
| * | common: Move hex string processing to separate fileGravatar Zach Hilman2018-08-113-0/+64
| | |
* | | Merge pull request #1063 from lioncash/inlineGravatar bunnei2018-08-142-15/+11
|\ \ \ | | | | | | | | common/xbyak_abi: Mark defined functions in header as inline
| * | | common/xbyak_abi: Mark defined functions in header as inlineGravatar Lioncash2018-08-141-7/+7
| | | | | | | | | | | | | | | | | | | | Avoids potential One Definition Rule violations when these are used in the future.
| * | | common/xbyak: Use nested namespace specifiers where applicableGravatar Lioncash2018-08-142-8/+4
| | |/ | |/|
* | | Merge pull request #1054 from zhaowenlan1779/misc-fixupGravatar bunnei2018-08-141-1/+1
|\ \ \ | | | | | | | | common/misc: use windows.h
| * | | common/misc: use windows.hGravatar Zhu PengFei2018-08-141-1/+1
| | | | | | | | | | | | linux-mingw does not really like this.
* | | | common: Remove unused old breakpoint source filesGravatar Lioncash2018-08-143-141/+0
| |/ / |/| | | | | | | | | | | | | | | | | These currently aren't used and contain commented out source code that corresponds to Dolphin's JIT. Given our CPU code is organized quite differently, we shouldn't be keeping this around (at the moment it just adds to compile times marginally).
* | | logging/backend: Use const reference to refer to log filterGravatar Lioncash2018-08-131-2/+3
| | | | | | | | | | | | | | | | | | The filter is returned via const reference, so this was making a pointless copy of the entire filter every time a message was being pushed into the logger instance.
* | | thread_queue_list: Make contains() and get_first() const member functionsGravatar Lioncash2018-08-121-4/+4
| | | | | | | | | | | | These don't directly modify the contained data.
* | | thread_queue_list: Convert typedef to a type aliasGravatar Lioncash2018-08-121-1/+1
| |/ |/|
* | Merge pull request #989 from lioncash/logGravatar bunnei2018-08-092-0/+16
|\ \ | | | | | | common/logging: Add missing service log categories
| * | common/logging: Add missing service log categoriesGravatar Lioncash2018-08-082-0/+16
| | | | | | | | | | | | These weren't added when the services were introduced.