| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | cpu_detect.cpp: Change comment from citra to yuzu | 2018-03-26 | 1 | -1/+1 | |
| | | |||||
| * | Format: Run the new clang format on everything | 2018-01-20 | 1 | -13/+56 | |
| | | |||||
| * | Common: Fix some out-of-style includes | 2017-05-27 | 1 | -1/+1 | |
| | | |||||
| * | common/cpu_detect: Add missing include and fix namespace scope | 2017-03-12 | 1 | -5/+7 | |
| | | |||||
| * | Common/x64: remove legacy emitter and abi (#2504) | 2017-01-31 | 4 | -4197/+0 | |
| | | | | These are not used any more since we moved shader JIT to xbyak. | ||||
| * | VideoCore: Convert x64 shader JIT to use Xbyak for assembly | 2016-12-14 | 2 | -0/+227 | |
| | | |||||
| * | common: use system CPUID routine on DragonFly as well | 2016-10-27 | 1 | -2/+2 | |
| | | |||||
| * | common: some FreeBSD headers are incomplete to avoid namespace pollution | 2016-10-27 | 1 | -1/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | 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; ^ [...] | ||||
| * | Use negative priorities to avoid special-casing the self-include | 2016-09-21 | 2 | -3/+3 | |
| | | |||||
| * | Remove empty newlines in #include blocks. | 2016-09-21 | 3 | -9/+4 | |
| | | | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | ||||
| * | Manually tweak source formatting and then re-run clang-format | 2016-09-18 | 2 | -5/+3 | |
| | | |||||
| * | Sources: Run clang-format on everything. | 2016-09-18 | 5 | -1354/+2093 | |
| | | |||||
| * | VideoCore: Run include-what-you-use and fix most includes. | 2016-04-30 | 1 | -0/+2 | |
| | | |||||
| * | emitter: Add CALL that can be fixed up. | 2016-04-13 | 2 | -0/+13 | |
| | | |||||
| * | emitter: Support arbitrary FixupBranch targets. | 2016-04-13 | 2 | -0/+17 | |
| | | |||||
| * | emitter: templatize ImmPtr | 2016-03-09 | 1 | -2/+6 | |
| | | |||||
| * | emitter: constexpr-ify helper functions | 2016-03-09 | 1 | -19/+17 | |
| | | |||||
| * | emitter: Get rid of CanDoOpWith | 2016-03-09 | 1 | -7/+0 | |
| | | | | | | This was removed in Dolphin as there were no particular uses for it. I'm sure the same will apply to citra. | ||||
| * | emitter: constexpr-ify OpArg | 2016-03-09 | 1 | -30/+30 | |
| | | |||||
| * | emitter: friend class OpArg with XEmitter | 2016-03-09 | 1 | -3/+4 | |
| | | |||||
| * | emitter: Remove unimplemented prototype | 2016-03-09 | 1 | -1/+0 | |
| | | |||||
| * | x64 Emitter: Fix L bit in VEX prefix | 2016-02-27 | 1 | -2/+2 | |
| | | |||||
| * | x64: Proper stack alignment in shader JIT function calls | 2015-09-01 | 3 | -424/+90 | |
| | | | | | | Import Dolphin stack handling and register saving routines Also removes the x86 parts from abi files | ||||
| * | x64-emitter: add RCPSS SSE instruction | 2015-08-23 | 2 | -0/+2 | |
| | | |||||
| * | emitter: Remove pointer casts | 2015-08-21 | 2 | -4/+27 | |
| | | | | | This should also technically silence quite a few ubsan warnings. | ||||
| * | emitter: Remove unnecessary defines | 2015-08-20 | 1 | -5/+1 | |
| | | |||||
| * | emitter: Remove unnecessary else keywords | 2015-08-20 | 1 | -7/+7 | |
| | | |||||
| * | emitter: Remove unused code | 2015-08-20 | 2 | -44/+0 | |
| | | |||||
| * | emitter: Remove unimplemented JMP prototype | 2015-08-20 | 1 | -1/+0 | |
| | | |||||
| * | emitter: Pass OpArg by reference where possible | 2015-08-20 | 2 | -763/+763 | |
| | | |||||
| * | emitter: Remove unnecessary inline specifiers | 2015-08-20 | 1 | -33/+33 | |
| | | | | | Functions implemented in a class definition are already implicitly inline. | ||||
| * | Rename ARCHITECTURE_X64 definition to ARCHITECTURE_x86_64. | 2015-08-15 | 4 | -7/+7 | |
| | | |||||
| * | Common: Cleanup CPU capability detection code. | 2015-08-15 | 4 | -198/+141 | |
| | | |||||
| * | Common: Move cpu_detect to x64 directory. | 2015-08-15 | 3 | -1/+311 | |
| | | |||||
| * | x64: Refactor to remove fake interfaces and general cleanups. | 2015-08-15 | 4 | -0/+3814 | |