Архив рубрики: Dolphin SVN

Dolphin SVN r5983

Revision 5983:

Fix an issue using render to main in combination with the log window or console window, in which the renderer was not resized when the panes were resized.
Also refresh the log window at that time so artifacts are cleared.
A little more code cleanup of the debugger windows.

Revision 5982

Merge JIT instructions when loading 32-bits immediate values :
PowerPC needs 2 instructions to load a 32-bits immediate value in a register (lis + addi; lis + ori). We can merge both instructions into a single SetImmediate().
This commit shares code with r5799, so to prevent another flame war on OSX vs Windows, I added #ifdef around the «bad» lines…

Revision 5981

Fix an issue introduced in my last commit. When the debugger is not used and the log or console windows are closed from the menu the notebook is not closed.

Скачать:

r5983 x86 – скачать, зеркало

r5983 x64 – скачать, зеркало

Dolphin SVN r5980

Revision 5980:

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.

Revision 5979

More work on the FrameAui:
Added a default perspective for the debugger.
Save all perspectives, and not just the active one.

Revision 5978

Fixes a crash in the new wiimote plugin when using real wiimotes plus making real wiimotes work again.

Revision 5977

Commit r5970 part #5: Removed unneeded MOV in branch instructions

Revision 5976

Commit r5970 part #4: Merge some loops in PPCAnalyst::Flatten()

Скачать:

r5980 x86 – скачать, зеркало

r5980 x64 – скачать, зеркало

Dolphin SVN r5973

Revision 5973:

Commit r5970 part #2: Jit64::GenerateCarry() don’t need a temporary register anymore

Revision 5972

Commit r5970 part #1: Fix what seems to be a bug in PowerPC instruction RFI: the wrong bit was cleared in MSR

Revision 5971

Revert r5970 before committing again part by part (except modifications about CR union)

Revision 5970

More performance work on the PowerPC JIT compiler:

* Merge some loops in PPCAnalyst::Flatten()
* Put ppcState.cr and ppcState.cr_fast[] into a single C++ union. This allows quick access to the whole CR register without needing to merge the cr_fast array. The implemented solution assumes the host system is little-endian, but it seems to be already assumed in many places in the code…
* Inline the call to computeCR: it now costs a few more memory bytes per JITed instruction but it removes the CPU overhead of the CALL. This allowed to remove some unneeded MOV as well.
* Jit64::GenerateCarry() don’t need a temporary register anymore
* Fix what seems to be a bug in PowerPC instruction RFI: the wrong bit was cleared in MSR

Скачать:

r5973 x86 – скачать, зеркало

r5973 x64 – скачать, зеркало

Dolphin SVN r5969

Revision 5969:

JitIL: Fixed the code which were pointed out in r5968.

Revision 5968

JitIL: Added operand folding rules to increase speed.

Revision 5967

Produce usable global+destdir tarballs with pathnames relative to / .
This is a bit hacky as SCons’ built-in tar handling basically makes
this impossible. I should just write a «relative path» tarball Builder.

Скачать:

r5969 x86 – скачать, зеркало

r5969 x64 – скачать, зеркало

Dolphin SVN r5966

Revision 5966:

Some refinements to (r5955+r5962+r5964):

Don’t rely on trailing /’s in directory names.

Destdir only works for global builds.

Only tar up global builds if they are in a destdir to
avoid SCons eating all available memory indexing /usr.

Print current status of shared_foo in ‘scons -h’.

Revision 5965

Just a small thing that I forgot to change earlier.
The new default wiiuse wiimote read timeout of 30ms has been overridden previously by the default 10ms from the wiimoteplugin.

Revision 5964

Fix scons stuff broken in revision 5962. The prefix must be conditional on whether the build is global or local. Help should be shown after tests are performed so that the actual values reported are not just an echo of the default values. The bundle is separate from the destdir option.

Revision 5963

Fixes issue 2958 / 2960
Removed wiiuse linkage to common.lib and removed inclusion of log.h(r5944) under windows, since it’s obviously causing problems.

Revision 5962

More SConstruct cleanup.

Revision 5961

Make Cg conditional on those platforms for which it is available.
Of course, this doesn’t do much good without another shader compiler..

WIP of OS X application bundle building.

Скачать:

r5966 x86 – скачать, зеркало

r5966 x64 – скачать, зеркало

Dolphin SVN r5960

Revision 5960:

Hopefully fix string concatenation on unicode builds.

Revision 5959

More FrameAui work. Some more segmentation faults resolved. And a little more code clean up.

Revision 5958

Further *BSD portability.

Revision 5957

Some cases where where uses of wxFileSelector with
wxFileSelectorDefaultWildcardStr had been copy-pasted and
changed to use specific filetypes had retained the extranous
format arguments to wxString::Format.

Revision 5956

abs() works on ints, not floats. Use fabsf() to avoid the double conversions.

Revision 5955

Simplify SConstruct.

Revision 5954

Commit patch submitted in issue 2951 (PowerPC JIT optimizations)

Revision 5953

Remove references to dead «io.h».

Revision 5952

Merging Externals/WiiUse/Src and Externals/WiiUseSrc as requested.

Revision 5951

Revision 5952

Скачать:

r5960 x86 – скачать, зеркало

r5960 x64 – скачать, зеркало

Dolphin SVN r5953

Revision 5953:

Remove references to dead «io.h».

Revision 5952

Merging Externals/WiiUse/Src and Externals/WiiUseSrc as requested.

Revision 5951

Buildfix for wiiuse/windows (broken since r5944) and more wiiuse clean up, plus merging external and internal wiiuse.h as requested.

Скачать:

r5950 x86 – скачать, зеркало

r5950 x64 – скачать, зеркало

Dolphin SVN r5950

Revision 5950:

Lil fix for Gecko code endifs. ((CT7 CST1) error messages)

Revision 5949

Added a button to the «Gecko Codes» panel to download/parse codes from geckocodes.org. Codes that require modifiers (the XXXX business) will still not work properly, though they should load/save fine. A few more code types should work now. (All non-ASM type codes should at least attempt to run :p) Hacked a param into IniFile::GetLines to disable removal of text after # chars, so codes with # in the name/notes should load fine.

Revision 5948

Fix a segmentation fault when changing perspectives.
Some general code clean up.

Скачать:

r5950 x86 – скачать, зеркало

r5950 x64 – скачать, зеркало

Dolphin SVN r5947

Revision 5947:

Hopefully fix Windows build.

Revision 5946

Use the Linux install hierarchy conventions on other Unices as well.

Revision 5945

Prevent Python from stripping off the final newline of the main(){}
autoconfiguration tests. Some versions of gcc care enough about ANSI C
to complain about this.

Use the Linux install hierarchy conventions on other Unices as well.

XKeysymToString returns NULL on unknown keysyms, which is not a valid
std::string initializer.

There appears to be some disagreement regarding the second parameter
to iconv(). Some versions/installations have it as const, others don’t.
Unfortunately, due to wonderful C++ brain damage, implicit conversion
from const to non-const doesn’t work here.

Revision 5944

Report on the bluetooth queue depth watermark to help diagnose cases
where Dolphin blocks long enough to lose packets.

Revision 5943

Double warning fix! Thanks to Nakeeeee and BhaaL! :p

Revision 5942

A slightly modified(fixed a memleak and sizer spacing) version of avindra’s patch to improve the layout of the new «Cheat Search» dialog.

Скачать:

r5947 x86 – скачать, зеркало

r5947 x64 – скачать, зеркало

Dolphin SVN r5929

Revision 5929:

Add an option for EFB scaled copy to the OpenGL configuration dialog.

Revision 5928

fix for mii faces in mkwii. efb scaled copy still not fixed. working on it.
please test

Revision 5927

JitIL: Added operand folding rules for speed improvement.

Revision 5926

Use the 10.5 SDK for building wxWidgets.

Скачать:

r5929 x86 – скачать, зеркало

r5929 x64 – скачать, зеркало