summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Stubbed y2r:u IsBusyConversionGravatar archshift2015-01-101-1/+16
| | | | | There is no documentation available on this function, but we set the result to false as a stub. This allows Super Little Acorns to move all the way in game with pp3c.
* Added Archive ID to fs:USER debug logs involving opening the archive.Gravatar archshift2015-01-101-3/+3
|
* Logging: Log all called service functions (under trace). Compile out all ↵Gravatar archshift2015-01-109-33/+22
| | | | trace logs under release for performance.
* Kernel: Start using boost::intrusive_ptr for lifetime managementGravatar Yuri Kunde Schlesner2015-01-0912-90/+95
|
* Kernel: Don't re-assign object's handle when duplicating oneGravatar Yuri Kunde Schlesner2015-01-092-2/+3
|
* Merge pull request #444 from yuriks/handle-reform2Gravatar bunnei2015-01-0924-374/+329
|\ | | | | Kernel Lifetime Reform Pt. 2
| * Thread: Fix nullptr access in a logging functionGravatar Yuri Kunde Schlesner2015-01-091-1/+2
| |
| * Thread: Rename thread_queue => thread_listGravatar Yuri Kunde Schlesner2015-01-091-6/+6
| |
| * Thread: Reduce use of Handles and move some funcs to inside the class.Gravatar Yuri Kunde Schlesner2015-01-0911-302/+222
| |
| * Kernel: Move Thread's definition to the header fileGravatar Yuri Kunde Schlesner2015-01-093-53/+67
| |
| * Move ThreadContext to core/core.h and deal with the falloutGravatar Yuri Kunde Schlesner2015-01-0917-32/+52
| |
* | Merge pull request #436 from kevinhartman/system-coreGravatar bunnei2015-01-091-0/+5
|\ \ | |/ |/| Warn if a new thread is intended to be run on the system CPU core
| * Warn if a new thread is intended to be run on the system CPU core until we ↵Gravatar Kevin Hartman2015-01-071-0/+5
| | | | | | | | implement correct scheduling for such a thread.
* | Merge pull request #255 from Subv/cbranch_3Gravatar bunnei2015-01-088-5/+234
|\ \ | | | | | | Implemented timers
| * | SVC: Implemented the Timer service calls.Gravatar Subv2015-01-088-5/+234
| | |
* | | Core: Fixed a crash and removed some unused variables.Gravatar Subv2015-01-082-8/+2
| | | | | | | | | | | | ARM_Disasm only has static methods, so there's no need to have an instance of it.
* | | DynCom: Add a comment to GetTicks.Gravatar Subv2015-01-081-0/+1
| | |
* | | Timing: Use CoreTiming::GetTicks to keep track of ticks.Gravatar Subv2015-01-082-6/+2
| | | | | | | | | | | | This will keep track of idle ticks for us, and fixes some tickcount-related issues
* | | Merge pull request #443 from Subv/sleep_threadGravatar bunnei2015-01-083-8/+43
|\ \ \ | | | | | | | | SVC: Fixed SleepThread
| * | | SVC: Fixed SleepThread.Gravatar Subv2015-01-083-8/+43
| | | | | | | | | | | | | | | | It will now properly wait the specified number of nanoseconds and then wake up the thread.
* | | | Merge pull request #446 from lioncash/umaalGravatar bunnei2015-01-081-4/+4
|\ \ \ \ | |/ / / |/| | | dyncom: Fix UMAAL
| * | | dyncom: Fix UMAALGravatar Lioncash2015-01-081-4/+4
| | | | | | | | | | | | | | | | These need to be done as a 64-bit operation.
* | | | Threads: Use a dummy idle thread when no other are ready.Gravatar Subv2015-01-074-2/+47
| | | | | | | | | | | | | | | | This thread will not actually execute instructions, it will only advance the timing/events and try to yield immediately to the next ready thread, if there aren't any ready threads then it will be rescheduled and start its job again.
* | | | Merge pull request #404 from bunnei/more-frame-synch-fixesGravatar bunnei2015-01-071-1/+4
|\ \ \ \ | | | | | | | | | | GPU: Toggle active framebuffer each frame
| * | | | GSP: Toggle active framebuffer each frameGravatar bunnei2015-01-071-1/+4
| | | | |
* | | | | Merge pull request #431 from yuriks/thread-queue-cleanupGravatar bunnei2015-01-071-1/+1
|\ \ \ \ \ | |_|/ / / |/| | | | Common: Clean up ThreadQueueList
| * | | | Common: Clean up ThreadQueueListGravatar Yuri Kunde Schlesner2015-01-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace all the C-style complicated buffer management with a std::deque. In addition to making the code easier to understand it also adds support for non-POD IdTypes. Also clean the rest of the code to follow our code style.
* | | | | Merge pull request #442 from lioncash/smulGravatar bunnei2015-01-071-10/+7
|\ \ \ \ \ | |_|_|/ / |/| | | | dyncom: Fix SMULWB/SMULWT
| * | | | dyncom: Fix SMULWB/SMULWTGravatar Lioncash2015-01-071-10/+7
| |/ / / | | | | | | | | | | | | Wasn't doing proper sign-extension
* | | | Merge pull request #425 from Subv/coretimingGravatar bunnei2015-01-074-418/+378
|\ \ \ \ | | | | | | | | | | Ported the CoreTiming namespace from PPSSPP
| * | | | CoreTiming: Ported the CoreTiming namespace from PPSSPPGravatar Subv2015-01-074-418/+378
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implemented the required calls to make it work. CoreTiming: Added a new logging class Core_Timing.
* | | | | Fix double-free in Service manager during shutdownGravatar Yuri Kunde Schlesner2015-01-072-25/+4
| |/ / / |/| | | | | | | | | | | Fixes #423.
* | | | Merge pull request #438 from lioncash/swpGravatar bunnei2015-01-071-0/+1
|\ \ \ \ | | | | | | | | | | dyncom: Fix SWPB
| * | | | dyncom: Fix SWPBGravatar Lioncash2015-01-071-0/+1
| | |_|/ | |/| |
* | | | Merge pull request #434 from lioncash/smGravatar bunnei2015-01-071-1/+56
|\ \ \ \ | |/ / / |/| | | dyncom: Move over SMLALXY
| * | | dyncom: Move over SMLALXYGravatar Lioncash2015-01-071-1/+56
| | |/ | |/|
* | | Merge pull request #376 from Subv/arc_reorderGravatar bunnei2015-01-0611-34/+73
|\ \ \ | |/ / |/| | Archives: Change the folder layout of some archives.
| * | Archives/Exdata: Don't set concrete_mount_point in the ctorGravatar Subv2015-01-061-1/+1
| | |
| * | Archives: Changed the unimplemented archives comment.Gravatar Subv2015-01-061-1/+1
| | | | | | | | | | | | It now refers to me as the PoC
| * | Archives: Addressed some commentsGravatar Subv2015-01-065-15/+15
| | |
| * | SaveDataCheck: Fixed a typoGravatar Subv2015-01-051-1/+1
| | |
| * | Archives: Make SYSTEM_ID and SDCARD_ID stringsGravatar Subv2015-01-046-9/+11
| | |
| * | Archives: Changed the way paths are built for the archives.Gravatar Subv2015-01-0310-27/+64
| | | | | | | | | | | | Each archive now takes a mount point of either NAND or SDMC, and builds its own directory structure there, trying to simulate an HLE-friendly hardware layout
| * | SaveDataCheck: Move the files to nand/titleGravatar Subv2015-01-031-1/+2
| | | | | | | | | | | | under /nand/title/high/low/content/00000000.app.romfs
| * | Archives: Change the folder layout of some archives.Gravatar Subv2015-01-023-4/+3
| | | | | | | | | | | | This is to better represent the hardware layout, they are still aren't quite accurate, but this better and will help a bit when implementing the other archives like NAND-RO and NAND-RW
* | | Merge pull request #417 from kevinhartman/exclusive-tag-fixGravatar bunnei2015-01-062-16/+18
|\ \ \ | | | | | | | | Added exclusive reservation granule from ARMv7 spec to dyncom...
| * | | Added exclusive reservation granule from ARMv7 spec to dyncom to protect ↵Gravatar Kevin Hartman2015-01-052-16/+18
| | | | | | | | | | | | | | | | LDR/STREX.
* | | | Merge pull request #413 from purpasmart96/serv_cleanGravatar bunnei2015-01-057-33/+36
|\ \ \ \ | | | | | | | | | | Services: Clean up a few things and add a few function names
| * | | | Services: Clean up a few things and add a few function namesGravatar purpasmart962015-01-057-33/+36
| | | | |
* | | | | Merge pull request #272 from rohit-n/sign-compareGravatar bunnei2015-01-051-4/+4
|\ \ \ \ \ | |_|_|_|/ |/| | | | Silence some -Wsign-compare warnings.