summaryrefslogtreecommitdiffstats
path: root/src/core/reporter.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* common/fileutil: Convert namespace to Common::FSLioncash2020-08-161-4/+5
| | | | | | | | | | | | Migrates a remaining common file over to the Common namespace, making it consistent with the rest of common files. This also allows for high-traffic FS related code to alias the filesystem function namespace as namespace FS = Common::FS; for more concise typing.
* Replace externals with Conan (#3735)James Rowe2020-05-081-1/+2
| | | | | | | | | | | | | | | | | | | | | * Remove git submodules that will be loaded through conan * Move custom Find modules to their own folder * Use conan for downloading missing external dependencies * CI: Change the yuzu source folder user to the user that the containers run on * Attempt to remove dirty mingw build hack * Install conan on the msvc build * Only set release build type when using not using multi config generator * Re-add qt bundled to workaround an issue with conan qt not downloading prebuilt binaries * Add workaround for submodules that use legacy CMAKE variables * Re-add USE_BUNDLED_QT on the msvc build bot
* core: reporter: Updates for new VMM.bunnei2020-04-171-3/+5
|
* core: memory: Move to Core::Memory namespace.bunnei2020-04-171-2/+2
| | | | - helpful to disambiguate Kernel::Memory namespace.
* core: Implement separate A32/A64 ARM interfaces.bunnei2020-03-031-1/+1
|
* core/memory: Migrate over Read{8, 16, 32, 64, Block} to the Memory classLioncash2019-11-271-1/+1
| | | | | | | | | | | | | | With all of the trivial parts of the memory interface moved over, we can get right into moving over the bits that are used. Note that this does require the use of GetInstance from the global system instance to be used within hle_ipc.cpp and the gdbstub. This is fine for the time being, as they both already rely on the global system instance in other functions. These will be removed in a change directed at both of these respectively. For now, it's sufficient, as it still accomplishes the goal of de-globalizing the memory code.
* core: Prepare various classes for memory read/write migrationLioncash2019-11-271-7/+7
| | | | | | | | | | Amends a few interfaces to be able to handle the migration over to the new Memory class by passing the class by reference as a function parameter where necessary. Notably, within the filesystem services, this eliminates two ReadBlock() calls by using the helper functions of HLERequestContext to do that for us.
* lm: Flush manager output on core shutdownZach Hilman2019-09-221-3/+2
|
* reporter: Add log output for packaged lm log dataZach Hilman2019-09-221-0/+52
| | | Takes the vector from head to tail of log data and saves it.
* reporter: Differentiate between Old, New, and System play reportsZach Hilman2019-09-221-3/+7
|
* Fix clang-formatEthan2019-09-041-1/+1
|
* accommodate for fmt updateEthan2019-08-291-1/+1
|
* Merge pull request #2642 from DarkLordZach/fsp-log-2bunnei2019-07-081-0/+18
|\ | | | | fsp-srv: Implement Access Logging Functionality
| * reporter: Add report class for filesystem access logsZach Hilman2019-06-291-0/+18
| |
* | core/reporter: Allow moves into SaveToFile()Lioncash2019-07-051-1/+1
| | | | | | | | | | | | Taking the json instance as a constant reference, makes all moves into the parameter non-functional, resulting in copies. Taking it by value allows moves to function.
* | core/reporter: Add missing includes and forward declarationsLioncash2019-07-051-1/+5
| | | | | | | | Adds missing inclusions to prevent potential compilation issues.
* | core/reporter: Remove unnecessary namespace qualifiersLioncash2019-07-051-1/+1
| | | | | | | | | | The Reporter class is part of the Core namespace, so the System class doesn't need to be qualified.
* | core/reporter: Remove pessimizing move in GetHLERequestContextData()Lioncash2019-07-051-1/+1
| | | | | | | | This can inhibit copy-elision, so we can remove this redundant move.
* | core/reporter: Make bracing consistentLioncash2019-07-051-8/+18
| | | | | | | | | | Makes all control statements braced, regardless of their size, making code more uniform.
* | core/reporter: Return in error case in SaveToFile()Lioncash2019-07-051-1/+3
|/ | | | | If the path couldn't be created, then we shouldn't be attempting to save the file.
* Update reporter.cppThomas May2019-06-221-5/+5
|
* loader: Move NSO module tracking to AppLoaderZach Hilman2019-05-261-36/+38
| | | Also cleanup of general stuff
* core: Add Reporter class to take/save reportsZach Hilman2019-05-251-0/+351