dolphin/Source/Core
Soren Jorvang 824b509d2e Make the SSE3.1 VideoCommon code available in GCC builds.
The GCC model for extended instructions like these is that you compile
with -msse3 etc. These affect code generation for whole compilation units,
so the idea is that you have a separate .c file for each instruction set
class and then indirect to the desired one at runtime.

Without e.g. -msse4.1, the GCC built-ins used by <foointrin.h> are not
available. However, in our specific case of compiling with -msse2 and
wanting to use SSE3.1 code, enough built-ins are available that we only
need to provide a little hack for pshufb.

Upgrading this to also use SSE4.1 instructions doesn't appear feasible
without a lot of undesirable duplication of GCC built-in functions and
headers, so we'd probably have to move to the GCC model of separate
source files for that.


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6014 8ced0084-cf51-0410-be5f-012b33b47a6e
2010-07-31 14:40:01 +00:00
..
AudioCommon Further *BSD portability. 2010-07-23 23:51:34 +00:00
Common Make the SSE3.1 VideoCommon code available in GCC builds. 2010-07-31 14:40:01 +00:00
Core Make the SSE3.1 VideoCommon code available in GCC builds. 2010-07-31 14:40:01 +00:00
DebuggerUICommon Get rid of a number of unnecessary env.Clones. 2010-07-19 03:42:37 +00:00
DebuggerWX Implemented MMU Demand Paging 2010-07-29 12:17:47 +00:00
DiscIO Further *BSD portability. 2010-07-23 23:51:34 +00:00
DolphinWX Use GetClientRect in the GameListCtrl OnSize function, but removed the +5 padding. This seems to look best on windows and linux. Unfortunately wxWidgets on linux doesn't account for visibility of the vertical scrollbar in this or any calculation I have found. 2010-07-31 14:14:01 +00:00
DSPCore Port to *BSD. It runs but isn't terribly useful without Cg. 2010-07-22 03:29:35 +00:00
InputCommon Gecko codes: Added parenthesis where they were needed.(thanks to glennrics and soren) Fixed a copy paste error with write & fill 8bit codes. Also forgot to remove a return false;.(some more codes should work (fixed issue 2968)) New Wiimote Plugin: Added emulated swinging.(seems to work) Changed the emulated calibration data to some nice values. ControllerInterface: moved and constified some stuff. 2010-07-26 05:30:50 +00:00
InputUICommon New Wiimote Plugin: Added a real wiimote io_write queue like the old plugin. A combination of locks and lack of a write queue were the cause of the real wiimote slowdown. - new plugin should work as good as the old one with real wiimotes now.(but still lacking a pairup button) Other stuff: Disabled execution of Gecko Codes when Dolphin has cheats disabled.(fixes issue 2971) Allow the range of an input to be increased to 500% (will make ps3 controller's tilt more usable) 2010-07-29 10:21:48 +00:00
VideoCommon Make the SSE3.1 VideoCommon code available in GCC builds. 2010-07-31 14:40:01 +00:00