aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Revert "Travis: Enable caching of dependencies"Gravatar chinhodado2015-01-10
|
* Merge pull request #458 from yuriks/cmake-debugGravatar bunnei2015-01-10
|\ | | | | CMake: Consistently set _DEBUG and NDEBUG in all platforms
| * CMake: Consistently set _DEBUG and NDEBUG in all platformsGravatar Yuri Kunde Schlesner2015-01-10
| |
* | Merge pull request #455 from yuriks/handle-reform3Gravatar bunnei2015-01-10
|\ \ | |/ |/| Kernel Lifetime Reform Pt. 3
* | Fix Windows buildGravatar bunnei2015-01-10
| |
* | Merge pull request #342 from uppfinnarn/masterGravatar bunnei2015-01-10
|\ \ | | | | | | Build improvements
| | * Kernel: Start using boost::intrusive_ptr for lifetime managementGravatar Yuri Kunde Schlesner2015-01-09
| | |
| | * Kernel: Don't re-assign object's handle when duplicating oneGravatar Yuri Kunde Schlesner2015-01-09
| | |
* | | Merge pull request #454 from chinhodado/patch-1Gravatar bunnei2015-01-09
|\ \ \ | |_|/ |/| | Cleanup: Remove redundant /Oi flag
* | | Merge pull request #444 from yuriks/handle-reform2Gravatar bunnei2015-01-09
|\ \ \ | | | | | | | | Kernel Lifetime Reform Pt. 2
* \ \ \ Merge pull request #436 from kevinhartman/system-coreGravatar bunnei2015-01-09
|\ \ \ \ | | | | | | | | | | Warn if a new thread is intended to be run on the system CPU core
| | | * | Cleanup: Remove redundant /Oi flagGravatar chinhodado2015-01-09
| |_|/ / |/| | | | | | | `/Oi` is included in `/Ox` already
* | | | Merge pull request #453 from yuriks/vs-parallelGravatar bunnei2015-01-09
|\ \ \ \ | | | | | | | | | | CMake: Enable VS parallel builds for a good reduction in compile times
| | | | * Looks like that might be needed on OSX after allGravatar Johannes Ekberg2015-01-09
| | | | |
| | | | * Use -pthread where and only where neededGravatar Johannes Ekberg2015-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Passing -pthread to GCC as a flag makes it both link to libpthread, and make C standard library routines reentrant. This makes the additional explicit links unnecessary. Additionally, on OSX, this is the default behavior, and clang will print a message about it being unused if it's present there.
| | | | * Link Cocoa, IOKit and CoreVideo on OSXGravatar Johannes Ekberg2015-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These are implicitly linked by Xcode, but with this, you can also build it with any other generator, which does not have this behavior. CoreFoundation is included as a part of Cocoa (which is an umbrella framework), and Cocoa is generally recommended to link against, rather than its individual components (CoreFoundation, Foundation, libobjc, ...).
| | | | * Generic PLATFORM_LIBRARIES varGravatar Johannes Ekberg2015-01-09
| |_|_|/ |/| | | | | | | | | | | This both reduces redundancy in add_executable definitions, and makes it easier to link additional libraries. In particular, extra libraries are needed on OSX - see next commit.
| * | | CMake: Enable VS parallel builds for a good reduction in compile timesGravatar Yuri Kunde Schlesner2015-01-09
|/ / / | | | | | | | | | | | | | | | | | | | | | This enables the /MP compiler flag, which parallelizes builds of by distributing compilation of individual object files across workes processes, instead of being limited to per-project parallelism. Reduces the time for a full compile from 72 s to 45 s on my machine.
| | * Thread: Fix nullptr access in a logging functionGravatar Yuri Kunde Schlesner2015-01-09
| | |
| | * Thread: Rename thread_queue => thread_listGravatar Yuri Kunde Schlesner2015-01-09
| | |
| | * Thread: Reduce use of Handles and move some funcs to inside the class.Gravatar Yuri Kunde Schlesner2015-01-09
| | |
| | * Kernel: Move Thread's definition to the header fileGravatar Yuri Kunde Schlesner2015-01-09
| | |
| | * Move ThreadContext to core/core.h and deal with the falloutGravatar Yuri Kunde Schlesner2015-01-09
| |/ |/|
* | Merge pull request #255 from Subv/cbranch_3Gravatar bunnei2015-01-08
|\ \ | | | | | | Implemented timers
* \ \ Merge pull request #451 from Subv/wutGravatar bunnei2015-01-08
|\ \ \ | | | | | | | | Core: Fixed a crash and removed some unused variables.
| * | | Core: Fixed a crash and removed some unused variables.Gravatar Subv2015-01-08
|/ / / | | | | | | | | | ARM_Disasm only has static methods, so there's no need to have an instance of it.
| * | SVC: Implemented the Timer service calls.Gravatar Subv2015-01-08
| | |
* | | Merge pull request #450 from Subv/ticks_fixGravatar bunnei2015-01-08
|\ \ \ | | | | | | | | Timing: Use CoreTiming::GetTicks to keep track of ticks.
| * | | DynCom: Add a comment to GetTicks.Gravatar Subv2015-01-08
| | | |
| * | | Timing: Use CoreTiming::GetTicks to keep track of ticks.Gravatar Subv2015-01-08
|/ / / | | | | | | | | | 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-08
|\ \ \ | | | | | | | | SVC: Fixed SleepThread
| * | | SVC: Fixed SleepThread.Gravatar Subv2015-01-08
| | | | | | | | | | | | | | | | 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-08
|\ \ \ \ | | | | | | | | | | dyncom: Fix UMAAL
| * | | | dyncom: Fix UMAALGravatar Lioncash2015-01-08
| | | | | | | | | | | | | | | | | | | | These need to be done as a 64-bit operation.
* | | | | Merge pull request #441 from Kingcom/CallStackGravatar bunnei2015-01-07
|\ \ \ \ \ | |_|/ / / |/| | | | Add check for valid address to call stack
* | | | | Merge pull request #439 from Subv/idle_thread_mGravatar bunnei2015-01-07
|\ \ \ \ \ | | | | | | | | | | | | Threads: Use a dummy idle thread when no other are ready.
| * | | | | Threads: Use a dummy idle thread when no other are ready.Gravatar Subv2015-01-07
|/ / / / / | | | | | | | | | | | | | | | 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-07
|\ \ \ \ \ | | | | | | | | | | | | GPU: Toggle active framebuffer each frame
| * | | | | GSP: Toggle active framebuffer each frameGravatar bunnei2015-01-07
| | | | | |
* | | | | | Merge pull request #431 from yuriks/thread-queue-cleanupGravatar bunnei2015-01-07
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | Common: Clean up ThreadQueueList
| | | | | * Warn if a new thread is intended to be run on the system CPU core until we ↵Gravatar Kevin Hartman2015-01-07
| | | | | | | | | | | | | | | | | | | | | | | | implement correct scheduling for such a thread.
* | | | | | Merge pull request #442 from lioncash/smulGravatar bunnei2015-01-07
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | dyncom: Fix SMULWB/SMULWT
| * | | | | dyncom: Fix SMULWB/SMULWTGravatar Lioncash2015-01-07
| | | | | | | | | | | | | | | | | | | | | | | | Wasn't doing proper sign-extension
| | | | * | citra-qt: Add check for valid address to call stackGravatar Kingcom2015-01-07
| | | |/ /
| | * / / Common: Clean up ThreadQueueListGravatar Yuri Kunde Schlesner2015-01-07
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 #425 from Subv/coretimingGravatar bunnei2015-01-07
|\ \ \ \ | | | | | | | | | | Ported the CoreTiming namespace from PPSSPP
| * | | | CoreTiming: Ported the CoreTiming namespace from PPSSPPGravatar Subv2015-01-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implemented the required calls to make it work. CoreTiming: Added a new logging class Core_Timing.
* | | | | Merge pull request #440 from yuriks/lifetime-fixGravatar bunnei2015-01-07
|\ \ \ \ \ | |_|/ / / |/| | | | Fix double-free in Service manager during shutdown
| * | | | Fix double-free in Service manager during shutdownGravatar Yuri Kunde Schlesner2015-01-07
|/ / / / | | | | | | | | | | | | Fixes #423.
* | | | Merge pull request #438 from lioncash/swpGravatar bunnei2015-01-07
|\ \ \ \ | | | | | | | | | | dyncom: Fix SWPB