[fpc-devel] String cases development

2009-09-14 Thread Michael V. Denisenko
Hello everyone, is it possible to check my patch series? Bugtracker link: http://bugs.freepascal.org/view.php?id=13700 ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-devel

Re: [fpc-devel] String cases development

2009-09-14 Thread Florian Klaempfl
Michael V. Denisenko schrieb: Hello everyone, is it possible to check my patch series? Bugtracker link: http://bugs.freepascal.org/view.php?id=13700 All except the last one are applied (didn't review it yet)? ___ fpc-devel maillist -

Re: [fpc-devel] String cases development

2009-06-03 Thread Michael V. Denisenko
Hello everyone, is it possible to review my patch series which can be seen here: http://bugs.freepascal.org/view.php?id=13700 ? ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-devel

Re: [fpc-devel] String cases development

2009-05-23 Thread Alexander Klenin
On Fri, May 22, 2009 at 23:21, Michael V. Denisenko mik...@mail.ru wrote: Hello everyone, just one question: can anyone monitor my patches: Case of string? He probably wanted to ask for a review. -- Alexander S. Klenin ___ fpc-devel maillist -

Re: [fpc-devel] String cases development

2009-05-22 Thread Michael V. Denisenko
Hello everyone, just one question: can anyone monitor my patches: Case of string? ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-devel

Re: [fpc-devel] String cases development

2009-05-05 Thread Michael Schnell
Tomas Hajny wrote: Perhaps the Wiki main page should be updated by one of the powers. I'm confused - which URL do you refer to? Sorry, it's not a Wiki page but the free pascal main page: http://www.freepascal.org/ -Michael ___ fpc-devel

Re: [fpc-devel] String cases development

2009-05-05 Thread Michael V. Denisenko
A question appeared when I tried to find a method of generating case-expression just once, not for every comparison. Is it optimal to try to add for every case-structure (and do...while, by the way) a temporary variable where we may hold the value of case-expression? mailto:mik...@mail.ru

Re: [fpc-devel] String cases development

2009-05-05 Thread Daniël Mantione
Op Tue, 5 May 2009, schreef Michael V. Denisenko: A question appeared when I tried to find a method of generating case-expression just once, not for every comparison. Is it optimal to try to add for every case-structure (and do...while, by the way) a temporary variable where we may hold the

Re: [fpc-devel] String cases development

2009-05-05 Thread Tomas Hajny
On Tue, May 5, 2009 09:07, Michael Schnell wrote: Tomas Hajny wrote: Perhaps the Wiki main page should be updated by one of the powers. I'm confused - which URL do you refer to? Sorry, it's not a Wiki page but the free pascal main page: http://www.freepascal.org/ As mentioned in my

Re: [fpc-devel] String cases development

2009-05-05 Thread Michael Schnell
I suspect that you were confused by the section 'Requirements', Of course you are right: The Requirements section hits the eye a lot more :) . -Michael ___ fpc-devel maillist - fpc-devel@lists.freepascal.org

Re: [fpc-devel] String cases development

2009-05-05 Thread Peter Vreman
Op Tue, 5 May 2009, schreef Michael V. Denisenko: A question appeared when I tried to find a method of generating case-expression just once, not for every comparison. Is it optimal to try to add for every case-structure (and do...while, by the way) a temporary variable where we may hold

Re: [fpc-devel] String cases development

2009-05-04 Thread Michael Schnell
implement all the secondpass code for at least 6 architectures. Which are the currently supported or planned archs ? The Wiki main page only shows four X86/64 is obviously missing. Thanks, -Michael ___ fpc-devel maillist -

Re: [fpc-devel] String cases development

2009-05-04 Thread Vincent Snijders
Michael Schnell schreef: implement all the secondpass code for at least 6 architectures. Which are the currently supported or planned archs ? The Wiki main page only shows four X86/64 is obviously missing. At least i386, x86_64, powerpc, powerpc64, arm, sparc had a 2.2.4 release. Vincent

Re: [fpc-devel] String cases development

2009-05-04 Thread Tomas Hajny
On Mon, May 4, 2009 10:43, Vincent Snijders wrote: Michael Schnell schreef: implement all the secondpass code for at least 6 architectures. Which are the currently supported or planned archs ? The Wiki main page only shows four X86/64 is obviously missing. At least i386, x86_64, powerpc,

Re: [fpc-devel] String cases development

2009-05-04 Thread Tomas Hajny
On 4 May 09, at 11:17, Michael Schnell wrote: Perhaps the Wiki main page should be updated by one of the powers. I'm confused - which URL do you refer to? I don't see any particular information about platforms on http://wiki.freepascal.org. The information about supported platforms is

Re[2]: [fpc-devel] String cases development

2009-05-02 Thread Michael V. Denisenko
Здравствуйте, Jonas. Вы писали 24 апреля 2009 г., 22:30:55: On 24 Apr 2009, at 13:24, Michael V. Denisenko wrote: I have a question about adding error messages to msgtxt.inc. As I've understood, there's an array of strings each 240 symbs long. So shall I add a string 240 characters long

Re: [fpc-devel] String cases development

2009-05-02 Thread Florian Klaempfl
Michael V. Denisenko schrieb: Здравствуйте, Jonas. Вы писали 24 апреля 2009 г., 22:30:55: On 24 Apr 2009, at 13:24, Michael V. Denisenko wrote: I have a question about adding error messages to msgtxt.inc. As I've understood, there's an array of strings each 240 symbs long. So shall I

Re: Re[2]: [fpc-devel] String cases development

2009-05-02 Thread Jonas Maebe
On 02 May 2009, at 14:32, Michael V. Denisenko wrote: Здравствуйте, Jonas. I've got a problem trying to move fpc_shortstr_compare parameters to the registers EAX and EDX. The command 'getintregister', as I understood, returns some register which just satisfies a size-condition. How to get a

Re: [fpc-devel] String cases development

2009-04-24 Thread Michael V. Denisenko
I have a question about adding error messages to msgtxt.inc. As I've understood, there's an array of strings each 240 symbs long. So shall I add a string 240 characters long only, or there's another way? ___ fpc-devel maillist -

Re: [fpc-devel] String cases development

2009-04-24 Thread Mr. Moonlight - 1
I have a question about adding error messages to msgtxt.inc. As I've understood, there's an array of strings each 240 symbs long. So shall I add a string 240 characters long only, or there's another way? ___ fpc-devel maillist -

[fpc-devel] String cases development

2009-04-18 Thread Mike Denisenko
Hello everyone, I'm a student of FESU, Russia. I've started to develop a feature - string cases (Topic: Easiest way to case strings, http://www.lazarus.freepascal.org/pipermail/lazarus/2009-March/023369.html), and now some questions appear: Existing method of parsing and generating assembly

Re: [fpc-devel] String cases development

2009-04-18 Thread Daniël Mantione
Op Sat, 18 Apr 2009, schreef Mike Denisenko: Hello everyone, I'm a student of FESU, Russia. I've started to develop a feature - string cases (Topic: Easiest way to case strings, http://www.lazarus.freepascal.org/pipermail/lazarus/2009-March/023369.html), and now some questions appear:

Re: [fpc-devel] String cases development

2009-04-18 Thread Alexander Klenin
2009/4/18 Mike Denisenko mik...@mail.ru: Hello everyone, I'm a student of FESU, Russia. I've started to develop a feature - string cases Mike is my student, and he is doing this project as a course work at our university (http://imcs.dvgu.ru/works/work?wid=7539 , russian only). So I will try

Re: [fpc-devel] String cases development

2009-04-18 Thread Florian Klaempfl
Mike Denisenko schrieb: Hello everyone, I'm a student of FESU, Russia. I've started to develop a feature - string cases (Topic: Easiest way to case strings, http://www.lazarus.freepascal.org/pipermail/lazarus/2009-March/023369.html), and now some questions appear: Existing method of

Re: [fpc-devel] String cases development

2009-04-18 Thread Florian Klaempfl
Alexander Klenin schrieb: Where should new tests for string 'case' be added? E.g. fpc/tests/test/tstrcaseX.pp ... See also http://svn.freepascal.org/svn/fpc/trunk/tests/readme.txt ___ fpc-devel maillist - fpc-devel@lists.freepascal.org