Re: [fpc-devel] Case code pattern

2018-08-14 Thread Marco Borsari via fpc-devel

Il 14/08/2018 12:37, Martok ha scritto:


label label0,label1,label2,{...,}afterend;
const table: array [lowestcaselabel..highestcaselabel] of CodePointer = 
(@label0, @label1, @label2{,...});
if (xhighestcaselabel) then
  goto @afterend;
goto table[x];
label0:
  code;
  goto afterend;
label1:
  Morecode;
  goto afterend;
label2:
  EvenMoreCode;
{...}
afterend:

I did not aware about CodePointer type and its use in conjunction with 
the goto, it is very useful, thank you.
But for compatibility with TP, I could need for a plain branch table, I 
am writing a new mail in the other list...

Marco
___
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel


Re: [fpc-devel] Case code pattern

2018-08-14 Thread Martok
Am 14.08.2018 um 11:27 schrieb Marco Borsari via fpc-devel:
>  From what I can read from Wikipedia, every compound of the case is 
> enclosed in
> a procedure (or in a function, as you said the table is typed), declared 
> with
> nostackframe, and called by an array of index, right?

The blocks are just regular labels. What I meant was the jump array index is 
considered typed, which allows some optimizations.
This is noteworthy because FPC is the only compiler I could find that does that.


Roughly:

case x of
  0: code;
  1: Morecode;
  2: EvenMoreCode;
  //... assume we have enough case labels to get a jumptable
end;


Gets translated as if one had written:

label label0,label1,label2,{...,}afterend;
const table: array [lowestcaselabel..highestcaselabel] of CodePointer = 
(@label0, @label1, @label2{,...});
if (xhighestcaselabel) then
  goto @afterend;
goto table[x];
label0:
  code;
  goto afterend;
label1:
  Morecode;
  goto afterend;
label2:
  EvenMoreCode;
{...}
afterend:


Iff it follows from the strong typing of the array index that the "if" at the 
start is always false for all defined values of
the type of x, it is omitted.

-- 
Regards,
Martok

Ceterum censeo b32079 esse sanandam.

___
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel


Re: [fpc-devel] Case code pattern

2018-08-14 Thread Marco Borsari via fpc-devel

Il 14/08/2018 10:00, Martok ha scritto:
array of index = array of pointers, sorry
___
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel


Re: [fpc-devel] Case code pattern

2018-08-14 Thread Marco Borsari via fpc-devel

Il 14/08/2018 10:00, Martok ha scritto:


What Kit said, but a correction: the threshold is not 50, it is 19. And what is 
generated is not technically a jump table, but a
typed dispatch table.

From what I can read from Wikipedia, every compound of the case is 
enclosed in
a procedure (or in a function, as you said the table is typed), declared 
with

nostackframe, and called by an array of index, right?

___
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel


Re: [fpc-devel] Case code pattern

2018-08-14 Thread J. Gareth Moreton
 I stand corrected - thanks.

 *makes note to research more weird and wondeful things in the compiler!*

 Gareth aka. Kit

 On Tue 14/08/18 09:00 , Martok list...@martoks-place.de sent:
 Hi, 

 > I would need a clarification about the way the case statement is 
 > translated into assembler by FPC. When the list of alternatives is 
 > continous, does the compiler generate a jump table? 
 What Kit said, but a correction: the threshold is not 50, it is 19. And
what is generated is not technically a jump table, but a 
 typed dispatch table. 

 -- 
 Regards, 
 Martok 

 Ceterum censeo b32079 esse sanandam. 

 ___ 
 fpc-devel maillist - fpc-devel@lists.freepascal.org [1] 
 http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel
[2]">http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel 

 

Links:
--
[1] mailto:fpc-devel@lists.freepascal.org
[2] http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel
___
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel


Re: [fpc-devel] Case code pattern

2018-08-14 Thread Martok
Hi,

> I would need a clarification about the way the case statement is 
> translated into assembler by FPC. When the list of alternatives is 
> continous, does the compiler generate a jump table?
What Kit said, but a correction: the threshold is not 50, it is 19. And what is 
generated is not technically a jump table, but a
typed dispatch table.


-- 
Regards,
Martok

Ceterum censeo b32079 esse sanandam.

___
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel


Re: [fpc-devel] Case code pattern

2018-08-13 Thread Marco Borsari via fpc-devel

Il 13/08/2018 16:29, J. Gareth Moreton ha scritto:

I haven't explored it too deeply myself, but from what I understand, a
jump table is only generated if there are a large number of branches
(over 50).  If it's just a handful of branches, it simply subtracts
values from the input corresponding to the differences between the case
labels, and jumping to the next subtraction if there's a mismatch, or to
the else block if it goes negative.  I'm not sure what it does for
strings though.

Gareth aka. Kit


I see, I suspected the existence of a threshold value.
I am not interested in strings,
thank you, Marco

___
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel


Re: [fpc-devel] Case code pattern

2018-08-13 Thread J. Gareth Moreton
 I haven't explored it too deeply myself, but from what I understand, a
jump table is only generated if there are a large number of branches (over
50).  If it's just a handful of branches, it simply subtracts values from
the input corresponding to the differences between the case labels, and
jumping to the next subtraction if there's a mismatch, or to the else block
if it goes negative.  I'm not sure what it does for strings though.

 Gareth aka. Kit

 On Mon 13/08/18 16:20 , Marco Borsari via fpc-devel
fpc-devel@lists.freepascal.org sent:
 Hello, 
 I would need a clarification about the way the case statement is 
 translated into assembler by FPC. When the list of alternatives is 
 continous, does the compiler generate a jump table? And if yes, there is 
 some conditions for which a fall-through is performed anyway? 
 Thank you, Marco Borsari 
 ___ 
 fpc-devel maillist - fpc-devel@lists.freepascal.org [1] 
 http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel
[2]">http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel 

 

Links:
--
[1] mailto:fpc-devel@lists.freepascal.org
[2] http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel
___
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel


[fpc-devel] Case code pattern

2018-08-13 Thread Marco Borsari via fpc-devel

Hello,
I would need a clarification about the way the case statement is 
translated into assembler by FPC. When the list of alternatives is 
continous, does the compiler generate a jump table? And if yes, there is 
some conditions for which a fall-through is performed anyway?

Thank you, Marco Borsari
___
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel