[fpc-pascal] MSEide+MSEgui rev. 1.8beta1

2008-03-21 Thread Martin Schreiber
Hi, There is a first beta of MSEide+MSEgui 1.8: http://sourceforge.net/project/showfiles.php?group_id=165409 New in version 1.8: + Nice gradients on the buttons. ;-) + tskincontroller. + tlayouter. + trealspinedit. + tdbrealspinedit. + tshortcutcontroller. + Customable shortcuts in MSEide. + Compo

[fpc-pascal] Skybuck ODE 0.09 available.

2008-03-21 Thread Skybuck Flying
Hello, Major productivity improvements with version 0.09: New features: + Automatic renaming of files/versions in unit/uses clausule. + Automatic cleanup Small new features: + Project file extensions added. Note: Versioning is not done for dcr's those need to be done manually ;) Free Down

[fpc-pascal] Skybuck's IDE version 0.08 is now available :)

2008-03-21 Thread Skybuck Flying
Hello, Skybuck's ODE version 0.08 is now available: http://cid-aedd0ea32d61bc86.skydrive.live.com/browse.aspx/Delphi New feature: Automatic versioning of filenames: Example: folder blablabla_version_001.pas bla_version_001.pas folder -> "increment file versions" Tada: folder blablabla_ver

Re: [fpc-pascal] Crypt++ 5.5.2 Tiger::Transform converted toDCPCrypt2.Compress, AV: Compiler Optimization Bug with SSE2 ? Or just programming bug ?HELP NEEDED :) ?!

2008-03-21 Thread Skybuck Flying
FPC needs to preserve ebx, esi and edi. So it's push ebx + push esi + push edi vs pushad. And same for pop. According to my AMD optimization manual. pushad requires 6 latency. push register requires 3 latency. So pushad should be faster. Bye, Skybuck.