+ basics for rtti implemented

+ switch $m (generate rtti for published sections)
This commit is contained in:
florian 1998-05-01 07:43:52 +00:00
parent a10c3e36bc
commit f700edae4d
10 changed files with 875 additions and 824 deletions

View File

@ -272,7 +272,7 @@ type
var var
datasegment,codesegment,bsssegment, datasegment,codesegment,bsssegment,
internals,externals,debuglist,consts,importssection, internals,externals,debuglist,consts,importssection,
exportssection,resourcesection : paasmoutput; exportssection,resourcesection,rttilist : paasmoutput;
{ external symbols without repetition } { external symbols without repetition }
function search_assembler_symbol(pl : paasmoutput;const _name : string;exttype : texternal_typ) : pai_external; function search_assembler_symbol(pl : paasmoutput;const _name : string;exttype : texternal_typ) : pai_external;
@ -721,7 +721,11 @@ type
end. end.
{ {
$Log$ $Log$
Revision 1.4 1998-04-29 10:33:40 pierre Revision 1.5 1998-05-01 07:43:52 florian
+ basics for rtti implemented
+ switch $m (generate rtti for published sections)
Revision 1.4 1998/04/29 10:33:40 pierre
+ added some code for ansistring (not complete nor working yet) + added some code for ansistring (not complete nor working yet)
* corrected operator overloading * corrected operator overloading
* corrected nasm output * corrected nasm output

View File

@ -644,6 +644,7 @@ ait_stab_function_name : ;
{$endif EXTDEBUG} {$endif EXTDEBUG}
WriteTree(datasegment); WriteTree(datasegment);
WriteTree(consts); WriteTree(consts);
WriteTree(rttilist);
AsmLn; AsmLn;
AsmWriteLn('SECTION .bss'); AsmWriteLn('SECTION .bss');
@ -673,6 +674,7 @@ ait_stab_function_name : ;
{$endif EXTDEBUG} {$endif EXTDEBUG}
WriteTree(datasegment); WriteTree(datasegment);
WriteTree(consts); WriteTree(consts);
WriteTree(rttilist);
AsmWriteLn('_DATA'#9#9'ENDS'); AsmWriteLn('_DATA'#9#9'ENDS');
AsmLn; AsmLn;
@ -692,7 +694,11 @@ ait_stab_function_name : ;
end. end.
{ {
$Log$ $Log$
Revision 1.4 1998-04-29 10:33:41 pierre Revision 1.5 1998-05-01 07:43:52 florian
+ basics for rtti implemented
+ switch $m (generate rtti for published sections)
Revision 1.4 1998/04/29 10:33:41 pierre
+ added some code for ansistring (not complete nor working yet) + added some code for ansistring (not complete nor working yet)
* corrected operator overloading * corrected operator overloading
* corrected nasm output * corrected nasm output

View File

@ -379,7 +379,7 @@ unit files;
{ load ppu version } { load ppu version }
val(header[3]+header[4]+header[5],ppuversion,code); val(header[3]+header[4]+header[5],ppuversion,code);
if ppuversion<>13 then if not(ppuversion in [13..14]) then
begin begin
ppufile^.done; ppufile^.done;
Message1(unit_d_ppu_invalid_version,tostr(ppuversion)); Message1(unit_d_ppu_invalid_version,tostr(ppuversion));
@ -630,7 +630,11 @@ unit files;
end. end.
{ {
$Log$ $Log$
Revision 1.5 1998-04-30 15:59:40 pierre Revision 1.6 1998-05-01 07:43:53 florian
+ basics for rtti implemented
+ switch $m (generate rtti for published sections)
Revision 1.5 1998/04/30 15:59:40 pierre
* GDB works again better : * GDB works again better :
correct type info in one pass correct type info in one pass
+ UseTokenInfo for better source position + UseTokenInfo for better source position

View File

@ -205,6 +205,7 @@ parser_e_only_one_default_property,
parser_e_property_need_paras, parser_e_property_need_paras,
parser_e_constructor_cannot_be_not_virtual, parser_e_constructor_cannot_be_not_virtual,
parser_e_no_default_property_available, parser_e_no_default_property_available,
parser_e_cant_have_published,
{ {
Symbol table Symbol table
} }

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
const optiontxt : array[1..04676] of char=( const optiontxt : array[1..04738] of char=(
' ','[','o','p','t','i','o','n','s',']',' ','<','i','n','p', ' ','[','o','p','t','i','o','n','s',']',' ','<','i','n','p',
'u','t','f','i','l','e','>',' ','[','o','p','t','i','o','n', 'u','t','f','i','l','e','>',' ','[','o','p','t','i','o','n',
's',']',#000,'O','n','l','y',' ','o','n','e',' ','s','o','u', 's',']',#000,'O','n','l','y',' ','o','n','e',' ','s','o','u',
@ -30,13 +30,13 @@ const optiontxt : array[1..04676] of char=(
'a','t',' ','t','h','e',' ','e','n','d',' ','o','f',' ','t', 'a','t',' ','t','h','e',' ','e','n','d',' ','o','f',' ','t',
'h','e',' ','f','i','l','e',#000,'F','r','e','e',' ','P','a', 'h','e',' ','f','i','l','e',#000,'F','r','e','e',' ','P','a',
's','c','a','l',' ','C','o','m','p','i','l','e','r',' ','v', 's','c','a','l',' ','C','o','m','p','i','l','e','r',' ','v',
'e','r','s','i','o','n',' ','0','.','9','9','.','5',' ','f', 'e','r','s','i','o','n',' ','0','.','9','9','.','6',' ','f',
'o','r',' ','$','1',#000,'C','o','p','y','r','i','g','h','t', 'o','r',' ','$','1',#000,'C','o','p','y','r','i','g','h','t',
' ','(','c',')',' ','1','9','9','3','-','9','8',' ','b','y', ' ','(','c',')',' ','1','9','9','3','-','9','8',' ','b','y',
' ','F','l','o','r','i','a','n',' ','K','l','a','e','m','p', ' ','F','l','o','r','i','a','n',' ','K','l','a','e','m','p',
'f','l',#000,'F','r','e','e',' ','P','a','s','c','a','l',' ', 'f','l',#000,'F','r','e','e',' ','P','a','s','c','a','l',' ',
'C','o','m','p','i','l','e','r',' ','v','e','r','s','i','o', 'C','o','m','p','i','l','e','r',' ','v','e','r','s','i','o',
'n',' ','0','.','9','9','.','5',#000,#000,'T','h','i','s',' ', 'n',' ','0','.','9','9','.','6',#000,#000,'T','h','i','s',' ',
'p','r','o','g','r','a','m',' ','c','o','m','e','s',' ','u', 'p','r','o','g','r','a','m',' ','c','o','m','e','s',' ','u',
'n','d','e','r',' ','t','h','e',' ','G','N','U',' ','G','e', 'n','d','e','r',' ','t','h','e',' ','G','N','U',' ','G','e',
'n','e','r','a','l',' ','P','u','b','l','i','c',' ','L','i', 'n','e','r','a','l',' ','P','u','b','l','i','c',' ','L','i',
@ -45,269 +45,273 @@ const optiontxt : array[1..04676] of char=(
'd',' ','C','O','P','Y','I','N','G',#000,#000,'R','e','p','o', 'd',' ','C','O','P','Y','I','N','G',#000,#000,'R','e','p','o',
'r','t',' ','b','u','g','s',',','s','u','g','g','e','s','t', 'r','t',' ','b','u','g','s',',','s','u','g','g','e','s','t',
'i','o','n','s',' ','e','t','c',' ','t','o',':',#000,' ',' ', 'i','o','n','s',' ','e','t','c',' ','t','o',':',#000,' ',' ',
' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','k', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','b',
'l','a','e','m','p','f','l','@','h','a','e','g','a','r','.', 'a','2','3','9','5','@','f','e','n','.','b','a','y','n','e',
'c','i','p','.','m','w','.','t','u','-','m','u','e','n','c', 't','.','d','e',#000,'*','*','0','*','_','+',' ','s','w','i',
'h','e','n','.','d','e',#000,'*','*','0','*','_','+',' ','s', 't','c','h',' ','o','p','t','i','o','n',' ','o','n',',',' ',
'w','i','t','c','h',' ','o','p','t','i','o','n',' ','o','n', '-',' ','o','f','f',#000,'*','*','1','a','_','t','h','e',' ',
',',' ','-',' ','o','f','f',#000,'*','*','1','a','_','t','h', 'c','o','m','p','i','l','e','r',' ','d','o','e','s','n',#039,
'e',' ','c','o','m','p','i','l','e','r',' ','d','o','e','s', #039,'t',' ','d','e','l','e','t','e',' ','t','h','e',' ','g',
'n',#039,#039,'t',' ','d','e','l','e','t','e',' ','t','h','e', 'e','n','e','r','a','t','e','d',' ','a','s','s','e','m','b',
' ','g','e','n','e','r','a','t','e','d',' ','a','s','s','e', 'l','e','r',' ','f','i','l','e',#000,'*','t','1','b','_','u',
'm','b','l','e','r',' ','f','i','l','e',#000,'*','t','1','b', 's','e',' ','E','M','S',#000,'*','*','1','B','+','_','b','u',
'_','u','s','e',' ','E','M','S',#000,'*','*','1','B','+','_', 'i','l','d',#000,'*','*','1','C','_','c','o','d','e',' ','g',
'b','u','i','l','d',#000,'*','*','1','C','_','c','o','d','e', 'e','n','e','r','a','t','i','o','n',' ','o','p','t','i','o',
' ','g','e','n','e','r','a','t','i','o','n',' ','o','p','t', 'n','s',#000,'*','*','2','C','a','_','n','o','t',' ','i','m',
'i','o','n','s',#000,'*','*','2','C','a','_','n','o','t',' ', 'p','l','e','m','e','n','t','e','d',#000,'*','*','2','C','e',
'i','m','p','l','e','m','e','n','t','e','d',#000,'*','*','2', '_','n','o','t',' ','i','m','p','l','e','m','e','n','t','e',
'C','e','_','n','o','t',' ','i','m','p','l','e','m','e','n', 'd',#000,'3','*','2','C','D','_','D','y','n','a','m','i','c',
't','e','d',#000,'3','*','2','C','D','_','D','y','n','a','m', ' ','l','i','n','k','i','n','g',#000,'*','*','2','C','h','<',
'i','c',' ','l','i','n','k','i','n','g',#000,'*','*','2','C', 'n','>','_','<','n','>',' ','b','y','t','e','s',' ','h','e',
'h','<','n','>','_','<','n','>',' ','b','y','t','e','s',' ', 'a','p',' ','(','b','e','t','w','e','e','n',' ','1','0','2',
'h','e','a','p',' ','(','b','e','t','w','e','e','n',' ','1', '3',' ','a','n','d',' ','6','7','1','0','7','8','4','0',')',
'0','2','3',' ','a','n','d',' ','6','7','1','0','7','8','4', #000,'*','*','2','C','i','_','I','O','-','c','h','e','c','k',
'0',')',#000,'*','*','2','C','i','_','I','O','-','c','h','e', 'i','n','g',#000,'*','*','2','C','n','_','o','m','i','t',' ',
'c','k','i','n','g',#000,'*','*','2','C','n','_','o','m','i', 'l','i','n','k','i','n','g',' ','s','t','a','g','e',#000,'*',
't',' ','l','i','n','k','i','n','g',' ','s','t','a','g','e', '*','2','C','o','_','c','h','e','c','k',' ','o','v','e','r',
#000,'*','*','2','C','o','_','c','h','e','c','k',' ','o','v', 'f','l','o','w',' ','o','f',' ','i','n','t','e','g','e','r',
'e','r','f','l','o','w',' ','o','f',' ','i','n','t','e','g', ' ','o','p','e','r','a','t','i','o','n','s',#000,'*','*','2',
'e','r',' ','o','p','e','r','a','t','i','o','n','s',#000,'*', 'C','r','_','r','a','n','g','e',' ','c','h','e','c','k','i',
'*','2','C','r','_','r','a','n','g','e',' ','c','h','e','c', 'n','g',#000,'*','O','2','C','s','<','n','>','_','s','e','t',
'k','i','n','g',#000,'*','O','2','C','s','<','n','>','_','s', ' ','s','t','a','c','k',' ','s','i','z','e',' ','t','o',' ',
'e','t',' ','s','t','a','c','k',' ','s','i','z','e',' ','t', '<','n','>',#000,'*','*','2','C','t','_','s','t','a','c','k',
'o',' ','<','n','>',#000,'*','*','2','C','t','_','s','t','a', ' ','c','h','e','c','k','i','n','g',#000,'3','*','2','C','S',
'c','k',' ','c','h','e','c','k','i','n','g',#000,'3','*','2', '_','s','t','a','t','i','c',' ','l','i','n','k','i','n','g',
'C','S','_','s','t','a','t','i','c',' ','l','i','n','k','i', #000,'*','*','1','d','<','x','>','_','d','e','f','i','n','e',
'n','g',#000,'*','*','1','d','<','x','>','_','d','e','f','i', 's',' ','t','h','e',' ','s','y','m','b','o','l',' ','<','x',
'n','e','s',' ','t','h','e',' ','s','y','m','b','o','l',' ', '>',#000,'*','O','1','D','_','c','o','n','t','r','o','l','s',
'<','x','>',#000,'*','O','1','D','_','c','o','n','t','r','o', ' ','t','h','e',' ','g','e','n','e','r','a','t','i','o','n',
'l','s',' ','t','h','e',' ','g','e','n','e','r','a','t','i', ' ','o','f',' ','D','E','F',' ','f','i','l','e',' ','(','o',
'o','n',' ','o','f',' ','D','E','F',' ','f','i','l','e',' ', 'n','l','y',' ','O','S','/','2',')',#000,'*','O','2','D','d',
'(','o','n','l','y',' ','O','S','/','2',')',#000,'*','O','2', '<','x','>','_','s','e','t',' ','d','e','s','c','r','i','p',
'D','d','<','x','>','_','s','e','t',' ','d','e','s','c','r', 't','i','o','n',' ','t','o',' ','<','x','>',#000,'*','O','2',
'i','p','t','i','o','n',' ','t','o',' ','<','x','>',#000,'*', 'D','o','_','g','e','n','e','r','a','t','e',' ','D','E','F',
'O','2','D','o','_','g','e','n','e','r','a','t','e',' ','D', ' ','f','i','l','e',#000,'*','O','2','D','w','_','P','M',' ',
'E','F',' ','f','i','l','e',#000,'*','O','2','D','w','_','P', 'a','p','p','l','i','c','a','t','i','o','n',#000,'*','L','1',
'M',' ','a','p','p','l','i','c','a','t','i','o','n',#000,'*', 'e','<','x','>','_','s','e','t',' ','p','a','t','h',' ','t',
'L','1','e','<','x','>','_','s','e','t',' ','p','a','t','h', 'o',' ','e','x','e','c','u','t','a','b','l','e','s',#000,'*',
' ','t','o',' ','e','x','e','c','u','t','a','b','l','e','s', '*','1','E','_','s','a','m','e',' ','a','s',' ','-','C','n',
#000,'*','*','1','E','_','s','a','m','e',' ','a','s',' ','-', #000,'*','*','1','g','_','g','e','n','e','r','a','t','e',' ',
'C','n',#000,'*','*','1','g','_','g','e','n','e','r','a','t', 'd','e','b','u','g','g','e','r',' ','i','n','f','o','r','m',
'e',' ','d','e','b','u','g','g','e','r',' ','i','n','f','o', 'a','t','i','o','n',#000,'*','*','2','g','p','_','g','e','n',
'r','m','a','t','i','o','n',#000,'*','*','2','g','p','_','g', 'e','r','a','t','e',' ','a','l','s','o',' ','p','r','o','f',
'e','n','e','r','a','t','e',' ','a','l','s','o',' ','p','r', 'i','l','e',' ','c','o','d','e',' ','f','o','r',' ','g','p',
'o','f','i','l','e',' ','c','o','d','e',' ','f','o','r',' ', 'r','o','f',#000,'*','*','1','F','_','s','e','t',' ','f','i',
'g','p','r','o','f',#000,'*','*','1','F','_','s','e','t',' ', 'l','e',' ','n','a','m','e','s',' ','a','n','d',' ','p','a',
'f','i','l','e',' ','n','a','m','e','s',' ','a','n','d',' ', 't','h','s',#000,'*','*','2','F','e','<','x','>','_','r','e',
'p','a','t','h','s',#000,'*','*','2','F','e','<','x','>','_', 'd','i','r','e','c','t',' ','e','r','r','o','r',' ','o','u',
'r','e','d','i','r','e','c','t',' ','e','r','r','o','r',' ', 't','p','u','t',' ','t','o',' ','<','x','>',#000,'*','L','2',
'o','u','t','p','u','t',' ','t','o',' ','<','x','>',#000,'*', 'F','g','<','x','>','_','<','x','>',' ','s','e','a','r','c',
'L','2','F','g','<','x','>','_','<','x','>',' ','s','e','a',
'r','c','h',' ','p','a','t','h',' ','f','o','r',' ','t','h',
'e',' ','G','N','U',' ','C',' ','l','i','b',#000,'*','L','2',
'F','r','<','x','>','_','<','x','>',' ','s','e','a','r','c',
'h',' ','p','a','t','h',' ','f','o','r',' ','t','h','e',' ', 'h',' ','p','a','t','h',' ','f','o','r',' ','t','h','e',' ',
'e','r','r','o','r',' ','m','e','s','s','a','g','e',' ','f', 'G','N','U',' ','C',' ','l','i','b',#000,'*','L','2','F','r',
'i','l','e',#000,'*','*','2','F','i','<','x','>','_','a','d', '<','x','>','_','<','x','>',' ','s','e','a','r','c','h',' ',
'd','s',' ','<','x','>',' ','t','o',' ','i','n','c','l','u', 'p','a','t','h',' ','f','o','r',' ','t','h','e',' ','e','r',
'd','e',' ','p','a','t','h',#000,'*','*','2','F','l','<','x', 'r','o','r',' ','m','e','s','s','a','g','e',' ','f','i','l',
'>','_','a','d','d','s',' ','<','x','>',' ','t','o',' ','l', 'e',#000,'*','*','2','F','i','<','x','>','_','a','d','d','s',
'i','b','r','a','r','y',' ','p','a','t','h',#000,'*','*','2', ' ','<','x','>',' ','t','o',' ','i','n','c','l','u','d','e',
'F','u','<','x','>','_','a','d','d','s',' ','<','x','>',' ', ' ','p','a','t','h',#000,'*','*','2','F','l','<','x','>','_',
't','o',' ','u','n','i','t',' ','p','a','t','h',#000,'*','*', 'a','d','d','s',' ','<','x','>',' ','t','o',' ','l','i','b',
'1','k','<','x','>','_','P','a','s','s',' ','<','x','>',' ', 'r','a','r','y',' ','p','a','t','h',#000,'*','*','2','F','u',
't','o',' ','t','h','e',' ','l','i','n','k','e','r',#000,'*', '<','x','>','_','a','d','d','s',' ','<','x','>',' ','t','o',
'*','1','L','_','s','e','t',' ','l','a','n','g','u','a','g', ' ','u','n','i','t',' ','p','a','t','h',#000,'*','*','1','k',
'e',#000,'*','*','2','L','D','_','g','e','r','m','a','n',#000, '<','x','>','_','P','a','s','s',' ','<','x','>',' ','t','o',
'*','*','2','L','E','_','e','n','g','l','i','s','h',#000,'*', ' ','t','h','e',' ','l','i','n','k','e','r',#000,'*','*','1',
'*','1','l','_','w','r','i','t','e',' ','l','o','g','o',#000, 'L','_','s','e','t',' ','l','a','n','g','u','a','g','e',#000,
'*','*','1','i','_','i','n','f','o','r','m','a','t','i','o', '*','*','2','L','D','_','g','e','r','m','a','n',#000,'*','*',
'n',#000,'*','*','1','n','_','d','o','n',#039,'t',' ','r','e', '2','L','E','_','e','n','g','l','i','s','h',#000,'*','*','1',
'a','d',' ','t','h','e',' ','d','e','f','a','u','l','t',' ', 'l','_','w','r','i','t','e',' ','l','o','g','o',#000,'*','*',
'c','o','n','f','i','g',' ','f','i','l','e',#000,'*','*','1', '1','i','_','i','n','f','o','r','m','a','t','i','o','n',#000,
'o','<','x','>','_','c','h','a','n','g','e',' ','t','h','e', '*','*','1','n','_','d','o','n',#039,'t',' ','r','e','a','d',
' ','n','a','m','e',' ','o','f',' ','t','h','e',' ','e','x', ' ','t','h','e',' ','d','e','f','a','u','l','t',' ','c','o',
'e','c','u','t','a','b','l','e',' ','p','r','o','d','u','c', 'n','f','i','g',' ','f','i','l','e',#000,'*','*','1','o','<',
'e','d',' ','t','o',' ','<','x','>',#000,'*','*','1','p','g', 'x','>','_','c','h','a','n','g','e',' ','t','h','e',' ','n',
'_','g','e','n','e','r','a','t','e',' ','p','r','o','f','i', 'a','m','e',' ','o','f',' ','t','h','e',' ','e','x','e','c',
'l','e',' ','c','o','d','e',' ','f','o','r',' ','g','p','r', 'u','t','a','b','l','e',' ','p','r','o','d','u','c','e','d',
'o','f',#000,'*','L','1','P','_','u','s','e',' ','p','i','p', ' ','t','o',' ','<','x','>',#000,'*','*','1','p','g','_','g',
'e','s',' ','i','n','s','t','e','a','d',' ','o','f',' ','c', 'e','n','e','r','a','t','e',' ','p','r','o','f','i','l','e',
'r','e','a','t','i','n','g',' ','t','e','m','p','o','r','a', ' ','c','o','d','e',' ','f','o','r',' ','g','p','r','o','f',
'r','y',' ','a','s','s','e','m','b','l','e','r',' ','f','i', #000,'*','L','1','P','_','u','s','e',' ','p','i','p','e','s',
'l','e','s',#000,'*','*','1','S','_','s','y','n','t','a','x', ' ','i','n','s','t','e','a','d',' ','o','f',' ','c','r','e',
' ','o','p','t','i','o','n','s',#000,'*','*','2','S','2','_', 'a','t','i','n','g',' ','t','e','m','p','o','r','a','r','y',
's','w','i','t','c','h',' ','s','o','m','e',' ','D','e','l', ' ','a','s','s','e','m','b','l','e','r',' ','f','i','l','e',
'p','h','i',' ','2',' ','e','x','t','e','n','s','i','o','n', 's',#000,'*','*','1','S','_','s','y','n','t','a','x',' ','o',
' ','o','n',#000,'*','*','2','S','c','_','s','u','p','p','o', 'p','t','i','o','n','s',#000,'*','*','2','S','2','_','s','w',
'r','t','s',' ','o','p','e','r','a','t','o','r','s',' ','l', 'i','t','c','h',' ','s','o','m','e',' ','D','e','l','p','h',
'i','k','e',' ','C',' ','(','*','=',',','+','=',',','/','=', 'i',' ','2',' ','e','x','t','e','n','s','i','o','n',' ','o',
' ','a','n','d',' ','-','=',')',#000,'*','*','2','S','d','_', 'n',#000,'*','*','2','S','c','_','s','u','p','p','o','r','t',
'c','o','m','p','i','l','e','r',' ','d','i','s','p','o','s', 's',' ','o','p','e','r','a','t','o','r','s',' ','l','i','k',
'e','s',' ','a','s','m',' ','l','i','s','t','s',' ','(','u', 'e',' ','C',' ','(','*','=',',','+','=',',','/','=',' ','a',
's','e','s',' ','l','e','s','s',' ','m','e','m','o','r','y', 'n','d',' ','-','=',')',#000,'*','*','2','S','d','_','c','o',
' ','b','u','t',' ','m','u','c','h',' ','s','l','o','w','e', 'm','p','i','l','e','r',' ','d','i','s','p','o','s','e','s',
'r',')',#000,'*','*','2','S','e','_','c','o','m','p','i','l', ' ','a','s','m',' ','l','i','s','t','s',' ','(','u','s','e',
'e','r',' ','s','t','o','p','s',' ','a','f','t','e','r',' ', 's',' ','l','e','s','s',' ','m','e','m','o','r','y',' ','b',
't','h','e',' ','f','i','r','s','t',' ','e','r','r','o','r', 'u','t',' ','m','u','c','h',' ','s','l','o','w','e','r',')',
#000,'*','*','2','S','g','_','a','l','l','o','w','s',' ','L', #000,'*','*','2','S','e','_','c','o','m','p','i','l','e','r',
'A','B','E','L',' ','a','n','d',' ','G','O','T','O',#000,'*', ' ','s','t','o','p','s',' ','a','f','t','e','r',' ','t','h',
'*','2','S','i','_','s','u','p','p','o','r','t',' ','C','+', 'e',' ','f','i','r','s','t',' ','e','r','r','o','r',#000,'*',
'+',' ','s','t','l','y','e','d',' ','I','N','L','I','N','E', '*','2','S','g','_','a','l','l','o','w','s',' ','L','A','B',
#000,'*','*','2','S','m','_','s','u','p','p','o','r','t',' ', 'E','L',' ','a','n','d',' ','G','O','T','O',#000,'*','*','2',
'm','a','c','r','o','s',' ','l','i','k','e',' ','C',' ','(', 'S','i','_','s','u','p','p','o','r','t',' ','C','+','+',' ',
'g','l','o','b','a','l',')',#000,'*','*','2','S','o','_','t', 's','t','l','y','e','d',' ','I','N','L','I','N','E',#000,'*',
'r','i','e','s',' ','t','o',' ','b','e',' ','T','P','/','B', '*','2','S','m','_','s','u','p','p','o','r','t',' ','m','a',
'P',' ','7','.','0',' ','c','o','m','p','a','t','i','b','l', 'c','r','o','s',' ','l','i','k','e',' ','C',' ','(','g','l',
'e',#000,'*','*','2','S','s','_','c','o','n','s','t','r','u', 'o','b','a','l',')',#000,'*','*','2','S','o','_','t','r','i',
'c','t','o','r',' ','n','a','m','e',' ','m','u','s','t',' ', 'e','s',' ','t','o',' ','b','e',' ','T','P','/','B','P',' ',
'b','e',' ','i','n','i','t',' ','(','d','e','s','t','r','u', '7','.','0',' ','c','o','m','p','a','t','i','b','l','e',#000,
'c','t','o','r',' ','m','u','s','t',' ','b','e',' ','d','o', '*','*','2','S','s','_','c','o','n','s','t','r','u','c','t',
'n','e',')',#000,'*','*','2','S','t','_','a','l','l','o','w', 'o','r',' ','n','a','m','e',' ','m','u','s','t',' ','b','e',
's',' ','s','t','a','t','i','c',' ','k','e','y','w','o','r', ' ','i','n','i','t',' ','(','d','e','s','t','r','u','c','t',
'd',' ','i','n',' ','o','b','j','e','c','t','s',#000,'*','*', 'o','r',' ','m','u','s','t',' ','b','e',' ','d','o','n','e',
'1','s','_','d','o','n',#039,'t',' ','c','a','l','l',' ','a', ')',#000,'*','*','2','S','t','_','a','l','l','o','w','s',' ',
's','s','e','m','b','l','e','r',' ','a','n','d',' ','l','i', 's','t','a','t','i','c',' ','k','e','y','w','o','r','d',' ',
'n','k','e','r',' ','(','o','n','l','y',' ','w','i','t','h', 'i','n',' ','o','b','j','e','c','t','s',#000,'*','*','1','s',
' ','-','a',')',#000,'*','*','1','T','<','x','>','_','T','a', '_','d','o','n',#039,'t',' ','c','a','l','l',' ','a','s','s',
'r','g','e','t',' ','o','p','e','r','a','t','i','n','g',' ', 'e','m','b','l','e','r',' ','a','n','d',' ','l','i','n','k',
's','y','s','t','e','m',#000,'3','*','2','T','G','O','3','2', 'e','r',' ','(','o','n','l','y',' ','w','i','t','h',' ','-',
'V','1','_','v','e','r','s','i','o','n',' ','1',' ','o','f', 'a',')',#000,'*','*','1','T','<','x','>','_','T','a','r','g',
' ','D','J',' ','D','e','l','o','r','i','e',' ','D','O','S', 'e','t',' ','o','p','e','r','a','t','i','n','g',' ','s','y',
' ','e','x','t','e','n','d','e','r',#000,'3','*','2','T','G', 's','t','e','m',#000,'3','*','2','T','G','O','3','2','V','1',
'O','3','2','V','2','_','v','e','r','s','i','o','n',' ','2', '_','v','e','r','s','i','o','n',' ','1',' ','o','f',' ','D',
' ','o','f',' ','D','J',' ','D','e','l','o','r','i','e',' ', 'J',' ','D','e','l','o','r','i','e',' ','D','O','S',' ','e',
'D','O','S',' ','e','x','t','e','n','d','e','r',#000,'3','*', 'x','t','e','n','d','e','r',#000,'3','*','2','T','G','O','3',
'2','T','L','I','N','U','X','_','L','i','n','u','x',#000,'3', '2','V','2','_','v','e','r','s','i','o','n',' ','2',' ','o',
'*','2','T','O','S','2','_','O','S','/','2',' ','2','.','x', 'f',' ','D','J',' ','D','e','l','o','r','i','e',' ','D','O',
#000,'3','*','2','T','W','i','n','3','2','_','W','i','n','d', 'S',' ','e','x','t','e','n','d','e','r',#000,'3','*','2','T',
'o','w','s',' ','3','2',' ','B','i','t',#000,'6','*','2','T', 'L','I','N','U','X','_','L','i','n','u','x',#000,'3','*','2',
'A','M','I','G','A','_','C','o','m','m','o','d','o','r','e', 'T','O','S','2','_','O','S','/','2',' ','2','.','x',#000,'3',
' ','A','m','i','g','a',#000,'6','*','2','T','A','T','A','R', '*','2','T','W','i','n','3','2','_','W','i','n','d','o','w',
'I','_','A','t','a','r','i',' ','S','T','/','S','T','e','/', 's',' ','3','2',' ','B','i','t',#000,'6','*','2','T','A','M',
'T','T',#000,'6','*','2','T','M','A','C','O','S','_','M','a', 'I','G','A','_','C','o','m','m','o','d','o','r','e',' ','A',
'c','i','n','t','o','s','h',' ','m','6','8','k',#000,'6','*', 'm','i','g','a',#000,'6','*','2','T','A','T','A','R','I','_',
'2','T','L','I','N','U','X','_','L','i','n','u','x','-','6', 'A','t','a','r','i',' ','S','T','/','S','T','e','/','T','T',
'8','k',#000,'*','*','1','u','<','x','>','_','u','n','d','e', #000,'6','*','2','T','M','A','C','O','S','_','M','a','c','i',
'f','i','n','e','s',' ','t','h','e',' ','s','y','m','b','o', 'n','t','o','s','h',' ','m','6','8','k',#000,'6','*','2','T',
'l',' ','<','x','>',#000,'*','*','1','U','_','u','n','i','t', 'L','I','N','U','X','_','L','i','n','u','x','-','6','8','k',
' ','o','p','t','i','o','n','s',#000,'*','*','2','U','l','s', #000,'*','*','1','u','<','x','>','_','u','n','d','e','f','i',
'_','m','a','k','e',' ','s','t','a','t','i','c',' ','l','i', 'n','e','s',' ','t','h','e',' ','s','y','m','b','o','l',' ',
'b','r','a','r','y',' ','f','r','o','m',' ','u','n','i','t', '<','x','>',#000,'*','*','1','U','_','u','n','i','t',' ','o',
#000,'*','*','2','U','l','d','_','m','a','k','e',' ','d','y', 'p','t','i','o','n','s',#000,'*','*','2','U','l','s','_','m',
'n','a','m','i','c',' ','l','i','b','r','a','r','y',' ','f', 'a','k','e',' ','s','t','a','t','i','c',' ','l','i','b','r',
'r','o','m',' ','u','n','i','t',#000,'*','*','2','U','n','_', 'a','r','y',' ','f','r','o','m',' ','u','n','i','t',#000,'*',
'd','o','n',#039,'t',' ','c','h','e','c','k',' ','t','h','e', '*','2','U','l','d','_','m','a','k','e',' ','d','y','n','a',
' ','u','n','i','t',' ','n','a','m','e',#000,'*','*','2','U', 'm','i','c',' ','l','i','b','r','a','r','y',' ','f','r','o',
'p','<','x','>','_','s','a','m','e',' ','a','s',' ','-','F', 'm',' ','u','n','i','t',#000,'*','*','2','U','n','_','d','o',
'u','<','x','>',#000,'*','*','2','U','s','_','c','o','m','p', 'n',#039,'t',' ','c','h','e','c','k',' ','t','h','e',' ','u',
'i','l','e',' ','a',' ','s','y','s','t','e','m',' ','u','n', 'n','i','t',' ','n','a','m','e',#000,'*','*','2','U','p','<',
'i','t',#000,'*','*','1','v','<','x','>','_','B','e',' ','v', 'x','>','_','s','a','m','e',' ','a','s',' ','-','F','u','<',
'e','r','b','o','s','e','.',' ','<','x','>',' ','i','s',' ', 'x','>',#000,'*','*','2','U','s','_','c','o','m','p','i','l',
'a',' ','c','o','m','b','i','n','a','t','i','o','n',' ','o', 'e',' ','a',' ','s','y','s','t','e','m',' ','u','n','i','t',
'f',' ','t','h','e',' ','f','o','l','l','o','w','i','n','g', #000,'*','*','1','v','<','x','>','_','B','e',' ','v','e','r',
' ','l','e','t','t','e','r','s',' ',':',#000,'*','*','2','*', 'b','o','s','e','.',' ','<','x','>',' ','i','s',' ','a',' ',
'_','e',' ',':',' ','S','h','o','w',' ','e','r','r','o','r', 'c','o','m','b','i','n','a','t','i','o','n',' ','o','f',' ',
's',' ','(','d','e','f','a','u','l','t',')',' ',' ',' ',' ', 't','h','e',' ','f','o','l','l','o','w','i','n','g',' ','l',
' ',' ',' ','d',' ',':',' ','S','h','o','w',' ','d','e','b', 'e','t','t','e','r','s',' ',':',#000,'*','*','2','*','_','e',
'u','g',' ','i','n','f','o',#000,'*','*','2','*','_','w',' ', ' ',':',' ','S','h','o','w',' ','e','r','r','o','r','s',' ',
':',' ','S','h','o','w',' ','w','a','r','n','i','n','g','s', '(','d','e','f','a','u','l','t',')',' ',' ',' ',' ',' ',' ',
' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ', ' ','d',' ',':',' ','S','h','o','w',' ','d','e','b','u','g',
'u',' ',':',' ','S','h','o','w',' ','u','s','e','d',' ','f', ' ','i','n','f','o',#000,'*','*','2','*','_','w',' ',':',' ',
'i','l','e','s',#000,'*','*','2','*','_','n',' ',':',' ','S', 'S','h','o','w',' ','w','a','r','n','i','n','g','s',' ',' ',
'h','o','w',' ','n','o','t','e','s',' ',' ',' ',' ',' ',' ', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','u',' ',
' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','t',' ',':', ':',' ','S','h','o','w',' ','u','s','e','d',' ','f','i','l',
' ','S','h','o','w',' ','t','r','i','e','d',' ','f','i','l', 'e','s',#000,'*','*','2','*','_','n',' ',':',' ','S','h','o',
'e','s',#000,'*','*','2','*','_','h',' ',':',' ','S','h','o', 'w',' ','n','o','t','e','s',' ',' ',' ',' ',' ',' ',' ',' ',
'w',' ','h','i','n','t','s',' ',' ',' ',' ',' ',' ',' ',' ', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','t',' ',':',' ','S',
' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','m',' ',':',' ','S', 'h','o','w',' ','t','r','i','e','d',' ','f','i','l','e','s',
'h','o','w',' ','d','e','f','i','n','e','d',' ','m','a','c', #000,'*','*','2','*','_','h',' ',':',' ','S','h','o','w',' ',
'r','o','s',#000,'*','*','2','*','_','i',' ',':',' ','S','h', 'h','i','n','t','s',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',
'o','w',' ','g','e','n','e','r','a','l',' ','i','n','f','o', ' ',' ',' ',' ',' ',' ',' ',' ','m',' ',':',' ','S','h','o',
' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','p',' ',':',' ', 'w',' ','d','e','f','i','n','e','d',' ','m','a','c','r','o',
'S','h','o','w',' ','c','o','m','p','i','l','e','d',' ','p', 's',#000,'*','*','2','*','_','i',' ',':',' ','S','h','o','w',
'r','o','c','e','d','u','r','e','s',#000,'*','*','2','*','_', ' ','g','e','n','e','r','a','l',' ','i','n','f','o',' ',' ',
'l',' ',':',' ','S','h','o','w',' ','l','i','n','e','n','u', ' ',' ',' ',' ',' ',' ',' ',' ',' ','p',' ',':',' ','S','h',
'm','b','e','r','s',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ', 'o','w',' ','c','o','m','p','i','l','e','d',' ','p','r','o',
' ',' ','c',' ',':',' ','S','h','o','w',' ','c','o','n','d', 'c','e','d','u','r','e','s',#000,'*','*','2','*','_','l',' ',
'i','t','i','o','n','a','l','s',#000,'*','*','2','*','_','a', ':',' ','S','h','o','w',' ','l','i','n','e','n','u','m','b',
' ',':',' ','S','h','o','w',' ','e','v','e','r','y','t','h', 'e','r','s',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',
'i','n','g',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ', 'c',' ',':',' ','S','h','o','w',' ','c','o','n','d','i','t',
' ','0',' ',':',' ','S','h','o','w',' ','n','o','t','h','i', 'i','o','n','a','l','s',#000,'*','*','2','*','_','a',' ',':',
'n','g',' ','(','e','x','c','e','p','t',' ','e','r','r','o', ' ','S','h','o','w',' ','e','v','e','r','y','t','h','i','n',
'r','s',')',#000,'*','*','1','X','_','e','x','e','c','u','t', 'g',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','0',
'a','b','l','e',' ','o','p','t','i','o','n','s',#000,'*','L', ' ',':',' ','S','h','o','w',' ','n','o','t','h','i','n','g',
'2','X','c','_','l','i','n','k',' ','w','i','t','h',' ','t', ' ','(','e','x','c','e','p','t',' ','e','r','r','o','r','s',
'h','e',' ','c',' ','l','i','b','r','a','r','y',#000,'*','*', ')',#000,'*','*','1','X','_','e','x','e','c','u','t','a','b',
'2','X','s','_','s','t','r','i','p',' ','a','l','l',' ','s', 'l','e',' ','o','p','t','i','o','n','s',#000,'*','L','2','X',
'y','m','b','o','l','s',' ','f','r','o','m',' ','e','x','e', 'c','_','l','i','n','k',' ','w','i','t','h',' ','t','h','e',
'c','u','t','a','b','l','e',#000,'*','*','0','*','_','P','r', ' ','c',' ','l','i','b','r','a','r','y',#000,'*','*','2','X',
'o','c','e','s','s','o','r',' ','s','p','e','c','i','f','i', 's','_','s','t','r','i','p',' ','a','l','l',' ','s','y','m',
'c',' ','o','p','t','i','o','n','s',':',#000,'3','*','1','A', 'b','o','l','s',' ','f','r','o','m',' ','e','x','e','c','u',
't','a','b','l','e',#000,'*','*','0','*','_','P','r','o','c',
'e','s','s','o','r',' ','s','p','e','c','i','f','i','c',' ',
'o','p','t','i','o','n','s',':',#000,'3','*','1','A','_','o',
'u','t','p','u','t',' ','f','o','r','m','a','t',#000,'3','*',
'2','A','a','t','t','_','A','T','&','T',' ','a','s','s','e',
'm','b','l','e','r',#000,'3','*','2','A','o','_','c','o','f',
'f',' ','f','i','l','e',' ','u','s','i','n','g',' ','G','N',
'U',' ','A','S',#000,'3','*','2','A','o','b','j','_','O','M',
'F',' ','f','i','l','e',' ','u','s','i','n','g',' ','N','A',
'S','M',#000,'3','*','2','A','n','a','s','m','_','c','o','f',
'f',' ','f','i','l','e',' ','u','s','i','n','g',' ','N','A',
'S','M',#000,'3','*','2','A','m','a','s','m','_','a','s','s',
'e','m','b','l','e','r',' ','f','o','r',' ','t','h','e',' ',
'M','i','c','r','o','s','o','f','t','/','B','o','r','l','a',
'n','d','/','W','a','t','c','o','m',' ','a','s','s','e','m',
'b','l','e','r',#000,'3','*','1','R','_','a','s','s','e','m',
'b','l','e','r',' ','r','e','a','d','i','n','g',' ','s','t',
'y','l','e',#000,'3','*','2','R','a','t','t','_','r','e','a',
'd',' ','A','T','&','T',' ','s','t','y','l','e',' ','a','s',
's','e','m','b','l','e','r',#000,'3','*','2','R','i','n','t',
'e','l','_','r','e','a','d',' ','I','n','t','e','l',' ','s',
't','y','l','e',' ','a','s','s','e','m','b','l','e','r',#000,
'3','*','2','R','d','i','r','e','c','t','_','c','o','p','y',
' ','a','s','s','e','m','b','l','e','r',' ','t','e','x','t',
' ','d','i','r','e','c','t','l','y',' ','t','o',' ','a','s',
's','e','m','b','l','e','r',' ','f','i','l','e',#000,'3','*',
'1','O','_','o','p','t','i','m','i','z','a','t','i','o','n',
's',#000,'3','*','2','O','a','_','s','i','m','p','l','e',' ',
'o','p','t','i','m','i','z','a','t','i','o','n','s',#000,'3',
'*','2','O','g','_','o','p','t','i','m','i','z','e',' ','f',
'o','r',' ','s','i','z','e',#000,'3','*','2','O','G','_','o',
'p','t','i','m','i','z','e',' ','f','o','r',' ','t','i','m',
'e',#000,'3','*','2','O','x','_','o','p','t','i','m','i','z',
'e',' ','m','a','x','i','m','u','m',#000,'3','*','2','O','z',
'_','u','n','c','e','r','t','a','i','n',' ','o','p','t','i',
'm','i','z','e','s',' ','(','s','e','e',' ','d','o','c','s',
')',#000,'3','*','2','O','2','_','o','p','t','i','m','i','z',
'e',' ','f','o','r',' ','t','h','e',' ','P','e','n','t','i',
'u','m',' ','I','I',' ','(','t','m',')',#000,'3','*','2','O',
'3','_','o','p','t','i','m','i','z','e',' ','f','o','r',' ',
't','h','e',' ','i','3','8','6',#000,'3','*','2','O','4','_',
'o','p','t','i','m','i','z','e',' ','f','o','r',' ','t','h',
'e',' ','i','4','8','6',#000,'3','*','2','O','5','_','o','p',
't','i','m','i','z','e',' ','f','o','r',' ','t','h','e',' ',
'P','e','n','t','i','u','m',' ','(','t','m',')',#000,'3','*',
'2','O','6','_','o','p','t','i','m','i','z','e',' ','f','o',
'r',' ','t','h','e',' ','P','e','n','t','i','u','m','P','r',
'o',' ','(','t','m',')',#000,'3','*','2','O','7','_','o','p',
't','i','m','i','z','e',' ','f','o','r',' ','t','h','e',' ',
'C','y','r','i','x',' ','6','x','8','6',#000,'3','*','2','O',
'8','_','o','p','t','i','m','i','z','e',' ','f','o','r',' ',
't','h','e',' ','A','M','D',' ','K','6',#000,'6','*','1','A',
'_','o','u','t','p','u','t',' ','f','o','r','m','a','t',#000, '_','o','u','t','p','u','t',' ','f','o','r','m','a','t',#000,
'3','*','2','A','a','t','t','_','A','T','&','T',' ','a','s', '6','*','2','A','g','a','s','_','G','N','U',' ','M','o','t',
's','e','m','b','l','e','r',#000,'3','*','2','A','o','_','c', 'o','r','o','l','a',' ','a','s','s','e','m','b','l','e','r',
'o','f','f',' ','f','i','l','e',' ','u','s','i','n','g',' ', #000,'6','*','2','A','o','_','U','N','I','X',' ','o','-','f',
'G','N','U',' ','A','S',#000,'3','*','2','A','o','b','j','_', 'i','l','e',#000,'6','*','2','A','m','_','S','t','a','n','d',
'O','M','F',' ','f','i','l','e',' ','u','s','i','n','g',' ', 'a','r','d',' ','M','o','t','o','r','o','l','a',' ','a','s',
'N','A','S','M',#000,'3','*','2','A','n','a','s','m','_','c', 's','e','m','b','l','e','r',#000,'6','*','2','A','i','_','M',
'o','f','f',' ','f','i','l','e',' ','u','s','i','n','g',' ', 'I','T',' ','S','y','n','t','a','x',' ','(','o','l','d',' ',
'N','A','S','M',#000,'3','*','2','A','m','a','s','m','_','a', 'G','A','S',')',#000,'6','*','1','O','_','o','p','t','i','m',
's','s','e','m','b','l','e','r',' ','f','o','r',' ','t','h', 'i','z','a','t','i','o','n','s',#000,'6','*','2','O','a','_',
'e',' ','M','i','c','r','o','s','o','f','t','/','B','o','r', 's','i','m','p','l','e',' ','o','p','t','i','m','i','z','a',
'l','a','n','d','/','W','a','t','c','o','m',' ','a','s','s', 't','i','o','n','s',#000,'6','*','2','O','g','_','o','p','t',
'e','m','b','l','e','r',#000,'3','*','1','R','_','a','s','s', 'i','m','i','z','e',' ','f','o','r',' ','s','i','z','e',#000,
'e','m','b','l','e','r',' ','r','e','a','d','i','n','g',' ', '6','*','2','O','G','_','o','p','t','i','m','i','z','e',' ',
's','t','y','l','e',#000,'3','*','2','R','a','t','t','_','r', 'f','o','r',' ','t','i','m','e',#000,'6','*','2','O','x','_',
'e','a','d',' ','A','T','&','T',' ','s','t','y','l','e',' ', 'o','p','t','i','m','i','z','e',' ','m','a','x','i','m','u',
'a','s','s','e','m','b','l','e','r',#000,'3','*','2','R','i', 'm',#000,'6','*','2','O','2','_','t','a','r','g','e','t',' ',
'n','t','e','l','_','r','e','a','d',' ','I','n','t','e','l', 'i','s',' ','a',' ','M','C','6','8','0','2','0','+',' ','p',
' ','s','t','y','l','e',' ','a','s','s','e','m','b','l','e', 'r','o','c','e','s','s','o','r',#000,'*','*','1','*','_',#000,
'r',#000,'3','*','2','R','d','i','r','e','c','t','_','c','o', '*','*','1','?','_','s','h','o','w','s',' ','t','h','i','s',
'p','y',' ','a','s','s','e','m','b','l','e','r',' ','t','e', ' ','h','e','l','p',#000,'*','*','1','h','_','s','h','o','w',
'x','t',' ','d','i','r','e','c','t','l','y',' ','t','o',' ', 's',' ','t','h','i','s',' ','h','e','l','p',' ','w','i','t',
'a','s','s','e','m','b','l','e','r',' ','f','i','l','e',#000, 'h','o','u','t',' ','w','a','i','t','i','n','g',#000);
'3','*','1','O','_','o','p','t','i','m','i','z','a','t','i',
'o','n','s',#000,'3','*','2','O','a','_','s','i','m','p','l',
'e',' ','o','p','t','i','m','i','z','a','t','i','o','n','s',
#000,'3','*','2','O','g','_','o','p','t','i','m','i','z','e',
' ','f','o','r',' ','s','i','z','e',#000,'3','*','2','O','G',
'_','o','p','t','i','m','i','z','e',' ','f','o','r',' ','t',
'i','m','e',#000,'3','*','2','O','x','_','o','p','t','i','m',
'i','z','e',' ','m','a','x','i','m','u','m',#000,'3','*','2',
'O','z','_','u','n','c','e','r','t','a','i','n',' ','o','p',
't','i','m','i','z','e','s',' ','(','s','e','e',' ','d','o',
'c','s',')',#000,'3','*','2','O','2','_','o','p','t','i','m',
'i','z','e',' ','f','o','r',' ','P','e','n','t','i','u','m',
' ','I','I',' ','(','t','m',')',#000,'3','*','2','O','3','_',
'o','p','t','i','m','i','z','e',' ','f','o','r',' ','i','3',
'8','6',#000,'3','*','2','O','4','_','o','p','t','i','m','i',
'z','e',' ','f','o','r',' ','i','4','8','6',#000,'3','*','2',
'O','5','_','o','p','t','i','m','i','z','e',' ','f','o','r',
' ','P','e','n','t','i','u','m',' ','(','t','m',')',#000,'3',
'*','2','O','6','_','o','p','t','i','m','i','z','a','t','i',
'o','n','s',' ','f','o','r',' ','P','e','n','t','i','u','m',
'P','r','o',' ','(','t','m',')',#000,'6','*','1','A','_','o',
'u','t','p','u','t',' ','f','o','r','m','a','t',#000,'6','*',
'2','A','g','a','s','_','G','N','U',' ','M','o','t','o','r',
'o','l','a',' ','a','s','s','e','m','b','l','e','r',#000,'6',
'*','2','A','o','_','U','N','I','X',' ','o','-','f','i','l',
'e',#000,'6','*','2','A','m','_','S','t','a','n','d','a','r',
'd',' ','M','o','t','o','r','o','l','a',' ','a','s','s','e',
'm','b','l','e','r',#000,'6','*','2','A','i','_','M','I','T',
' ','S','y','n','t','a','x',' ','(','o','l','d',' ','G','A',
'S',')',#000,'6','*','1','O','_','o','p','t','i','m','i','z',
'a','t','i','o','n','s',#000,'6','*','2','O','a','_','s','i',
'm','p','l','e',' ','o','p','t','i','m','i','z','a','t','i',
'o','n','s',#000,'6','*','2','O','g','_','o','p','t','i','m',
'i','z','e',' ','f','o','r',' ','s','i','z','e',#000,'6','*',
'2','O','G','_','o','p','t','i','m','i','z','e',' ','f','o',
'r',' ','t','i','m','e',#000,'6','*','2','O','x','_','o','p',
't','i','m','i','z','e',' ','m','a','x','i','m','u','m',#000,
'6','*','2','O','2','_','t','a','r','g','e','t',' ','i','s',
' ','a',' ','M','C','6','8','0','2','0','+',' ','p','r','o',
'c','e','s','s','o','r',#000,'*','*','1','*','_',#000,'*','*',
'1','?','_','s','h','o','w','s',' ','t','h','i','s',' ','h',
'e','l','p',#000,'*','*','1','h','_','s','h','o','w','s',' ',
't','h','i','s',' ','h','e','l','p',' ','w','i','t','h','o',
'u','t',' ','w','a','i','t','i','n','g',#000);

View File

@ -141,7 +141,7 @@ unit parser;
oldc : char; oldc : char;
oldcomment_level : word; oldcomment_level : word;
oldimports,oldexports,oldresource, oldimports,oldexports,oldresource,oldrttilist,
oldbsssegment,olddatasegment,oldcodesegment, oldbsssegment,olddatasegment,oldcodesegment,
oldexprasmlist,olddebuglist, oldexprasmlist,olddebuglist,
oldinternals,oldexternals,oldconsts : paasmoutput; oldinternals,oldexternals,oldconsts : paasmoutput;
@ -269,6 +269,7 @@ unit parser;
oldexternals:=externals; oldexternals:=externals;
oldinternals:=internals; oldinternals:=internals;
oldconsts:=consts; oldconsts:=consts;
oldrttilist:=rttilist;
oldexprasmlist:=exprasmlist; oldexprasmlist:=exprasmlist;
oldimports:=importssection; oldimports:=importssection;
oldexports:=exportssection; oldexports:=exportssection;
@ -312,6 +313,7 @@ unit parser;
externals:=new(paasmoutput,init); externals:=new(paasmoutput,init);
internals:=new(paasmoutput,init); internals:=new(paasmoutput,init);
consts:=new(paasmoutput,init); consts:=new(paasmoutput,init);
rttilist:=new(paasmoutput,init);
importssection:=nil; importssection:=nil;
exportssection:=nil; exportssection:=nil;
resourcesection:=nil; resourcesection:=nil;
@ -540,7 +542,11 @@ done:
end. end.
{ {
$Log$ $Log$
Revision 1.9 1998-04-30 15:59:40 pierre Revision 1.10 1998-05-01 07:43:56 florian
+ basics for rtti implemented
+ switch $m (generate rtti for published sections)
Revision 1.9 1998/04/30 15:59:40 pierre
* GDB works again better : * GDB works again better :
correct type info in one pass correct type info in one pass
+ UseTokenInfo for better source position + UseTokenInfo for better source position

View File

@ -933,8 +933,15 @@ unit pdecl;
{ set the class attribute } { set the class attribute }
if is_a_class then if is_a_class then
aktclass^.options:=aktclass^.options or oois_class; begin
aktclass^.options:=aktclass^.options or oois_class;
if (cs_generate_rtti in aktswitches) or
(assigned(aktclass^.childof) and
((aktclass^.childof^.options and oo_can_have_published)<>0)
) then
aktclass^.options:=aktclass^.options or oo_can_have_published;
end;
aktobjectdef:=aktclass; aktobjectdef:=aktclass;
@ -971,9 +978,11 @@ unit pdecl;
end; end;
if (token=ID) and (pattern='PUBLISHED') then if (token=ID) and (pattern='PUBLISHED') then
begin begin
if (aktclass^.options and oo_can_have_published)=0 then
Message(parser_e_cant_have_published);
consume(ID); consume(ID);
current_object_option:=sp_public; current_object_option:=sp_published;
actmembertype:=sp_public; actmembertype:=sp_published;
end; end;
object_komponenten; object_komponenten;
end; end;
@ -1778,7 +1787,11 @@ unit pdecl;
end. end.
{ {
$Log$ $Log$
Revision 1.13 1998-04-30 15:59:41 pierre Revision 1.14 1998-05-01 07:43:56 florian
+ basics for rtti implemented
+ switch $m (generate rtti for published sections)
Revision 1.13 1998/04/30 15:59:41 pierre
* GDB works again better : * GDB works again better :
correct type info in one pass correct type info in one pass
+ UseTokenInfo for better source position + UseTokenInfo for better source position

View File

@ -73,7 +73,7 @@ const
{J} (typesw:illegal; setsw:cs_none; proc:nil), {J} (typesw:illegal; setsw:cs_none; proc:nil),
{K} (typesw:unsupported; setsw:cs_none; proc:nil), {K} (typesw:unsupported; setsw:cs_none; proc:nil),
{L} (typesw:unsupported; setsw:cs_none; proc:nil), {L} (typesw:unsupported; setsw:cs_none; proc:nil),
{M} (typesw:illegal; setsw:cs_none; proc:nil), {M} (typesw:local; setsw:cs_generate_rtti; proc:nil),
{N} (typesw:unsupported; setsw:cs_none; proc:nil), {N} (typesw:unsupported; setsw:cs_none; proc:nil),
{O} (typesw:unsupported; setsw:cs_none; proc:nil), {O} (typesw:unsupported; setsw:cs_none; proc:nil),
{P} (typesw:unsupported; setsw:cs_none; proc:nil), {P} (typesw:unsupported; setsw:cs_none; proc:nil),
@ -158,7 +158,11 @@ end;
end. end.
{ {
$Log$ $Log$
Revision 1.2 1998-04-28 11:45:53 florian Revision 1.3 1998-05-01 07:43:56 florian
+ basics for rtti implemented
+ switch $m (generate rtti for published sections)
Revision 1.2 1998/04/28 11:45:53 florian
* make it compilable with TP * make it compilable with TP
+ small COM problems solved to compile classes.pp + small COM problems solved to compile classes.pp

View File

@ -176,6 +176,7 @@ unit systems;
{ just for tests } { just for tests }
objext : '.OA'; objext : '.OA';
dllext : '.DLL'; dllext : '.DLL';
arext : '.AA';
unitext : '.PAU'; unitext : '.PAU';
libext : '.PPL'; libext : '.PPL';
asmext : '.SA'; asmext : '.SA';
@ -375,7 +376,11 @@ begin
end. end.
{ {
$Log$ $Log$
Revision 1.5 1998-04-29 10:34:06 pierre Revision 1.6 1998-05-01 07:43:57 florian
+ basics for rtti implemented
+ switch $m (generate rtti for published sections)
Revision 1.5 1998/04/29 10:34:06 pierre
+ added some code for ansistring (not complete nor working yet) + added some code for ansistring (not complete nor working yet)
* corrected operator overloading * corrected operator overloading
* corrected nasm output * corrected nasm output