Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-06-27 | Core/Common: Address Feedback. | Fernando Sahmkow | |
2020-06-27 | Common/NativeClockx86: Reduce native clock accuracy further. | Fernando Sahmkow | |
2020-06-27 | X64 Clock: Reduce accuracy to be less or equal to guest accuracy. | Fernando Sahmkow | |
2020-06-27 | HostTiming: Pause the hardware clock on pause. | Fernando Sahmkow | |
2020-06-28 | Merge pull request #3396 from FernandoS27/prometheus-1 | David | |
Implement SpinLocks, Fibers and a Host Timer | |||
2020-06-20 | common/cpu_detect: Add AVX512 detection | Morph | |
2020-06-18 | Common: Refactor & Document Wall clock. | Fernando Sahmkow | |
2020-06-18 | Common: Implement WallClock Interface and implement a native clock for x64 | Fernando Sahmkow | |
2020-06-15 | xbyak_abi: Prefer returning a struct to using out parameters in ↵ | MerryMage | |
ABI_CalculateFrameSize | |||
2020-06-15 | xbyak_abi: Register indexes should be unsigned | MerryMage | |
2020-06-15 | xbyak_abi: Remove *GPS variants of stack manipulation functions | MerryMage | |
2020-06-15 | xbyak_abi: Fix ABI_PushRegistersAndAdjustStack | MerryMage | |
Pushing GPRs twice. | |||
2020-05-30 | Add xbyak external | David Marcec | |
2020-01-17 | Remove unused CPU Vendor string and telemtry field | James Rowe | |
The information is duplicated in the brand string and the telemetry field is unused | |||
2018-11-21 | common: Remove dependency on xbyak | Lioncash | |
Xbyak is currently entirely unused. Rather than carting it along, remove it and get rid of a dependency. If it's ever needed in the future, then it can be re-added (and likely be more up to date at that point in time). | |||
2018-09-15 | Port #4182 from Citra: "Prefix all size_t with std::" | fearlessTobi | |
2018-08-14 | common/xbyak_abi: Mark defined functions in header as inline | Lioncash | |
Avoids potential One Definition Rule violations when these are used in the future. | |||
2018-08-14 | common/xbyak: Use nested namespace specifiers where applicable | Lioncash | |
2018-08-07 | common: Convert type traits templates over to variable template versions ↵ | Lioncash | |
where applicable Uses the C++17 inline variable variants | |||
2018-03-26 | cpu_detect.cpp: Change comment from citra to yuzu | N00byKing | |
2018-01-20 | Format: Run the new clang format on everything | James Rowe | |
2017-05-27 | Common: Fix some out-of-style includes | Yuri Kunde Schlesner | |
2017-03-12 | common/cpu_detect: Add missing include and fix namespace scope | Yuri Kunde Schlesner | |
2017-01-31 | Common/x64: remove legacy emitter and abi (#2504) | Weiyi Wang | |
These are not used any more since we moved shader JIT to xbyak. | |||
2016-12-14 | VideoCore: Convert x64 shader JIT to use Xbyak for assembly | Yuri Kunde Schlesner | |
2016-10-27 | common: use system CPUID routine on DragonFly as well | Jan Beich | |
2016-10-27 | common: some FreeBSD headers are incomplete to avoid namespace pollution | Jan Beich | |
In file included from src/common/x64/cpu_detect.cpp:16: /usr/include/machine/cpufunc.h:66:17: error: unknown type name 'u_int' static __inline u_int ^ /usr/include/machine/cpufunc.h:67:6: error: unknown type name 'u_int' bsfl(u_int mask) ^ /usr/include/machine/cpufunc.h:69:2: error: unknown type name 'u_int' u_int result; ^ /usr/include/machine/cpufunc.h:75:17: error: unknown type name 'u_long'; did you mean 'long'? static __inline u_long ^ /usr/include/machine/cpufunc.h:76:6: error: unknown type name 'u_long'; did you mean 'long'? bsfq(u_long mask) ^ /usr/include/machine/cpufunc.h:78:2: error: use of undeclared identifier 'u_long'; did you mean 'long'? u_long result; ^ [...] | |||
2016-09-21 | Use negative priorities to avoid special-casing the self-include | Yuri Kunde Schlesner | |
2016-09-21 | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | |
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | |||
2016-09-18 | Manually tweak source formatting and then re-run clang-format | Yuri Kunde Schlesner | |
2016-09-18 | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | |
2016-04-30 | VideoCore: Run include-what-you-use and fix most includes. | Emmanuel Gil Peyrot | |
2016-04-13 | emitter: Add CALL that can be fixed up. | bunnei | |
2016-04-13 | emitter: Support arbitrary FixupBranch targets. | bunnei | |
2016-03-09 | emitter: templatize ImmPtr | Lioncash | |
2016-03-09 | emitter: constexpr-ify helper functions | Lioncash | |
2016-03-09 | emitter: Get rid of CanDoOpWith | Lioncash | |
This was removed in Dolphin as there were no particular uses for it. I'm sure the same will apply to citra. | |||
2016-03-09 | emitter: constexpr-ify OpArg | Lioncash | |
2016-03-09 | emitter: friend class OpArg with XEmitter | Lioncash | |
2016-03-09 | emitter: Remove unimplemented prototype | Lioncash | |
2016-02-27 | x64 Emitter: Fix L bit in VEX prefix | MerryMage | |
2015-09-01 | x64: Proper stack alignment in shader JIT function calls | aroulin | |
Import Dolphin stack handling and register saving routines Also removes the x86 parts from abi files | |||
2015-08-23 | x64-emitter: add RCPSS SSE instruction | aroulin | |
2015-08-21 | emitter: Remove pointer casts | Lioncash | |
This should also technically silence quite a few ubsan warnings. | |||
2015-08-20 | emitter: Remove unnecessary defines | Lioncash | |
2015-08-20 | emitter: Remove unnecessary else keywords | Lioncash | |
2015-08-20 | emitter: Remove unused code | Lioncash | |
2015-08-20 | emitter: Remove unimplemented JMP prototype | Lioncash | |
2015-08-20 | emitter: Pass OpArg by reference where possible | Lioncash | |
2015-08-20 | emitter: Remove unnecessary inline specifiers | Lioncash | |
Functions implemented in a class definition are already implicitly inline. |