[fpc-pascal] MSEide+MSEgui 2.8.4

2012-12-14 Thread Martin Schreiber
Hi, MSEide+MSEgui 2.8.4 has been released: https://sourceforge.net/projects/mseide-msegui/ This probably is the last version which depends on FPC-FCL. Upcoming 3.0 release will have own implementations of TPersistent, TComponent, the streaming system, db.pas and other parts of the RTL. There i

Re:[fpc-pascal] Registers in loops

2012-12-14 Thread denisgolovan
> Indeed, adding inline assembler to a routine disables many > optimizations. > > Jonas Hm. Yeap. Looks like I completely missed the point :) Thanks for the explanation. -- Regards, Denis Golovan ___ fpc-pascal maillist - fpc-pascal@lists.freepasc

[fpc-pascal] Re: GetTableNames in TSQLConnection / Postgresql

2012-12-14 Thread Reinier Olislagers
On 13-12-2012 10:42, John wrote: > Short version: A call to TSQLConnection.GetTableNames returns a list of > tables on all schemas/owners, without the owner. Unless you are using a > simple database with only one owner and are logging in as the owner, > this is fairly unhelpful. > > Analysis:

Re: [fpc-pascal] Registers in loops

2012-12-14 Thread Jonas Maebe
On 14 Dec 2012, at 13:46, michael.vancann...@wisa.be wrote: On Fri, 14 Dec 2012, Jonas Maebe wrote: Indeed, adding inline assembler to a routine disables many optimizations. Doesn't adding the list of modified registers to the 'ASM' block help in this case ? I thought this was why we suppo

Re: [fpc-pascal] Registers in loops

2012-12-14 Thread michael . vancanneyt
On Fri, 14 Dec 2012, Jonas Maebe wrote: On 14 Dec 2012, at 09:26, patspiper wrote: On 13/12/12 21:51, denisgolovan wrote: Hi all Recently I discovered that fpc refuses to use registers in my loops even with optimization turned on (-O1,-O3 used). With the asm code commented out and withou

Re: [fpc-pascal] Registers in loops

2012-12-14 Thread Jonas Maebe
On 14 Dec 2012, at 09:26, patspiper wrote: On 13/12/12 21:51, denisgolovan wrote: Hi all Recently I discovered that fpc refuses to use registers in my loops even with optimization turned on (-O1,-O3 used). With the asm code commented out and without any optimization, the registers are use

Re: [fpc-pascal] GetTableNames in TSQLConnection / Postgresql

2012-12-14 Thread LacaK
Hi John, Thus schema name is not selected for postresql, nor is it returned for any connection. as only the field specified by AReturnField, in this case table_name, is added to the output list. Note that pg_class does not have an easy access to the schema/owner by name, it would require a jo

[fpc-pascal] Downtime www/svn/bugtracker : Maintenance

2012-12-14 Thread Michael Van Canneyt
Hello, Tomorrow (Saturday 15 December) during the day, the main Free Pascal server will be moved to a new location. You may experience some downtime. Normally, it should not be very long: 1 or 2 hours. Mailing Lists, DNS, forum, wiki and the lazarus website should be unaffected by this move

Re: [fpc-pascal] Registers in loops

2012-12-14 Thread patspiper
On 13/12/12 21:51, denisgolovan wrote: Hi all Recently I discovered that fpc refuses to use registers in my loops even with optimization turned on (-O1,-O3 used). With the asm code commented out and without any optimization, the registers are used. .Ll12: # [47] for i:=1 to 1 do