summaryrefslogtreecommitdiffstats
path: root/src/common/x64 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* common: Remove dependency on xbyakLioncash2018-11-212-269/+0
| | | | | | | 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).
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-152-10/+13
|
* common/xbyak_abi: Mark defined functions in header as inlineLioncash2018-08-151-7/+7
| | | | | Avoids potential One Definition Rule violations when these are used in the future.
* common/xbyak: Use nested namespace specifiers where applicableLioncash2018-08-152-8/+4
|
* common: Convert type traits templates over to variable template versions where applicableLioncash2018-08-081-1/+1
| | | | Uses the C++17 inline variable variants
* cpu_detect.cpp: Change comment from citra to yuzuN00byKing2018-03-261-1/+1
|
* Format: Run the new clang format on everythingJames Rowe2018-01-211-13/+56
|
* Common: Fix some out-of-style includesYuri Kunde Schlesner2017-05-281-1/+1
|
* common/cpu_detect: Add missing include and fix namespace scopeYuri Kunde Schlesner2017-03-131-5/+7
|
* Common/x64: remove legacy emitter and abi (#2504)Weiyi Wang2017-01-314-4197/+0
| | | These are not used any more since we moved shader JIT to xbyak.
* VideoCore: Convert x64 shader JIT to use Xbyak for assemblyYuri Kunde Schlesner2016-12-152-0/+227
|
* common: use system CPUID routine on DragonFly as wellJan Beich2016-10-281-2/+2
|
* common: some FreeBSD headers are incomplete to avoid namespace pollutionJan Beich2016-10-281-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-includeYuri Kunde Schlesner2016-09-212-3/+3
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-213-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-formatYuri Kunde Schlesner2016-09-192-5/+3
|
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-185-1354/+2093
|
* VideoCore: Run include-what-you-use and fix most includes.Emmanuel Gil Peyrot2016-04-301-0/+2
|
* emitter: Add CALL that can be fixed up.bunnei2016-04-142-0/+13
|
* emitter: Support arbitrary FixupBranch targets.bunnei2016-04-142-0/+17
|
* emitter: templatize ImmPtrLioncash2016-03-091-2/+6
|
* emitter: constexpr-ify helper functionsLioncash2016-03-091-19/+17
|
* emitter: Get rid of CanDoOpWithLioncash2016-03-091-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 OpArgLioncash2016-03-091-30/+30
|
* emitter: friend class OpArg with XEmitterLioncash2016-03-091-3/+4
|
* emitter: Remove unimplemented prototypeLioncash2016-03-091-1/+0
|
* x64 Emitter: Fix L bit in VEX prefixMerryMage2016-02-271-2/+2
|
* x64: Proper stack alignment in shader JIT function callsaroulin2015-09-013-424/+90
| | | | | Import Dolphin stack handling and register saving routines Also removes the x86 parts from abi files
* x64-emitter: add RCPSS SSE instructionaroulin2015-08-232-0/+2
|
* emitter: Remove pointer castsLioncash2015-08-212-4/+27
| | | | This should also technically silence quite a few ubsan warnings.
* emitter: Remove unnecessary definesLioncash2015-08-201-5/+1
|
* emitter: Remove unnecessary else keywordsLioncash2015-08-201-7/+7
|
* emitter: Remove unused codeLioncash2015-08-202-44/+0
|
* emitter: Remove unimplemented JMP prototypeLioncash2015-08-201-1/+0
|
* emitter: Pass OpArg by reference where possibleLioncash2015-08-202-763/+763
|
* emitter: Remove unnecessary inline specifiersLioncash2015-08-201-33/+33
| | | | Functions implemented in a class definition are already implicitly inline.
* Rename ARCHITECTURE_X64 definition to ARCHITECTURE_x86_64.bunnei2015-08-164-7/+7
|
* Common: Cleanup CPU capability detection code.bunnei2015-08-164-198/+141
|
* Common: Move cpu_detect to x64 directory.bunnei2015-08-163-1/+311
|
* x64: Refactor to remove fake interfaces and general cleanups.bunnei2015-08-164-0/+3814