tcoptimizations.pas 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070
  1. {
  2. This file is part of the Free Component Library (FCL)
  3. Copyright (c) 2017 by Michael Van Canneyt
  4. Unit tests for Pascal-to-Javascript converter class.
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************
  11. Examples:
  12. ./testpas2js --suite=TTestOptimizations
  13. ./testpas2js --suite=TTestOptimizations.TestOmitLocalVar
  14. }
  15. unit TCOptimizations;
  16. {$mode objfpc}{$H+}
  17. interface
  18. uses
  19. Classes, SysUtils, testregistry, fppas2js, pastree,
  20. PScanner, Pas2jsUseAnalyzer, PasResolver, PasResolveEval,
  21. TCModules;
  22. type
  23. { TCustomTestOptimizations }
  24. TCustomTestOptimizations = class(TCustomTestModule)
  25. private
  26. FAnalyzerModule: TPas2JSAnalyzer;
  27. FAnalyzerProgram: TPas2JSAnalyzer;
  28. FWholeProgramOptimization: boolean;
  29. function OnConverterIsElementUsed(Sender: TObject; El: TPasElement): boolean;
  30. function OnConverterIsTypeInfoUsed(Sender: TObject; El: TPasElement): boolean;
  31. protected
  32. procedure SetUp; override;
  33. procedure TearDown; override;
  34. procedure ParseModule; override;
  35. procedure ParseProgram; override;
  36. function CreateConverter: TPasToJSConverter; override;
  37. public
  38. property AnalyzerModule: TPas2JSAnalyzer read FAnalyzerModule;
  39. property AnalyzerProgram: TPas2JSAnalyzer read FAnalyzerProgram;
  40. property WholeProgramOptimization: boolean read FWholeProgramOptimization
  41. write FWholeProgramOptimization;
  42. end;
  43. { TTestOptimizations }
  44. TTestOptimizations = class(TCustomTestOptimizations)
  45. published
  46. // unit optimization: jsshortrefglobals
  47. procedure TestOptShortRefGlobals_Program;
  48. procedure TestOptShortRefGlobals_Unit_FromIntfImpl_ToIntfImpl;
  49. procedure TestOptShortRefGlobals_Property;
  50. procedure TestOptShortRefGlobals_ExternalAbstract;
  51. procedure TestOptShortRefGlobals_GenericFunction;
  52. procedure TestOptShortRefGlobals_GenericMethod_Call;
  53. procedure TestOptShortRefGlobals_GenericStaticMethod_Call;
  54. // ToDo: GenericMethod_CallInherited ObjFPC+Delphi
  55. // ToDo: procedure TestOptShortRefGlobals_GenericHelperMethod_Call_Delphi;
  56. // ToDo: proc var
  57. procedure TestOptShortRefGlobals_SameUnit_EnumType;
  58. procedure TestOptShortRefGlobals_SameUnit_ClassType;
  59. procedure TestOptShortRefGlobals_SameUnit_RecordType;
  60. // Whole Program Optimization
  61. procedure TestWPO_OmitLocalVar;
  62. procedure TestWPO_OmitLocalProc;
  63. procedure TestWPO_OmitLocalProcForward;
  64. procedure TestWPO_OmitProcLocalVar;
  65. procedure TestWPO_OmitProcLocalConst;
  66. procedure TestWPO_OmitProcLocalType;
  67. procedure TestWPO_OmitProcLocalProc;
  68. procedure TestWPO_OmitProcLocalForwardProc;
  69. procedure TestWPO_OmitRecordMember;
  70. procedure TestWPO_OmitNotUsedTObject;
  71. procedure TestWPO_TObject;
  72. procedure TestWPO_Class_Property;
  73. procedure TestWPO_Class_OmitField;
  74. procedure TestWPO_Class_OmitMethod;
  75. procedure TestWPO_Class_OmitClassMethod;
  76. procedure TestWPO_Class_OmitPropertyGetter1;
  77. procedure TestWPO_Class_OmitPropertyGetter2;
  78. procedure TestWPO_Class_OmitPropertySetter1;
  79. procedure TestWPO_Class_OmitPropertySetter2;
  80. procedure TestWPO_Class_KeepNewInstance;
  81. procedure TestWPO_CallInherited;
  82. procedure TestWPO_UseUnit;
  83. procedure TestWPO_ArrayOfConst_Use;
  84. procedure TestWPO_ArrayOfConst_NotUsed;
  85. procedure TestWPO_Class_PropertyInOtherUnit;
  86. procedure TestWPO_ProgramPublicDeclaration;
  87. procedure TestWPO_ConstructorDefaultValueConst;
  88. procedure TestWPO_RTTI_PublishedField;
  89. procedure TestWPO_RTTI_TypeInfo;
  90. end;
  91. implementation
  92. { TCustomTestOptimizations }
  93. function TCustomTestOptimizations.OnConverterIsElementUsed(Sender: TObject;
  94. El: TPasElement): boolean;
  95. var
  96. A: TPas2JSAnalyzer;
  97. begin
  98. if WholeProgramOptimization then
  99. A:=AnalyzerProgram
  100. else if Sender=Converter then
  101. A:=AnalyzerModule
  102. else
  103. begin
  104. {$IF defined(VerbosePas2JS) or defined(VerbosePasAnalyzer)}
  105. writeln('TCustomTestOptimizations.OnConverterIsElementUsed El=',GetObjName(El),' WPO=',WholeProgramOptimization,' Sender=',GetObjName(Sender));
  106. {$ENDIF}
  107. Fail('converting other unit without WPO');
  108. end;
  109. Result:=A.IsUsed(El);
  110. {$IF defined(VerbosePas2JS) or defined(VerbosePasAnalyzer)}
  111. writeln('TCustomTestOptimizations.OnConverterIsElementUsed El=',GetObjName(El),' WPO=',WholeProgramOptimization,' Result=',Result);
  112. {$ENDIF}
  113. end;
  114. function TCustomTestOptimizations.OnConverterIsTypeInfoUsed(Sender: TObject;
  115. El: TPasElement): boolean;
  116. var
  117. A: TPas2JSAnalyzer;
  118. begin
  119. if WholeProgramOptimization then
  120. A:=AnalyzerProgram
  121. else if Sender=Converter then
  122. A:=AnalyzerModule
  123. else
  124. begin
  125. {$IF defined(VerbosePas2JS) or defined(VerbosePasAnalyzer)}
  126. writeln('TCustomTestOptimizations.OnConverterIsTypeInfoUsed El=',GetObjName(El),' WPO=',WholeProgramOptimization,' Sender=',GetObjName(Sender));
  127. {$ENDIF}
  128. Fail('converting other unit without WPO');
  129. end;
  130. Result:=A.IsTypeInfoUsed(El);
  131. {$IF defined(VerbosePas2JS) or defined(VerbosePasAnalyzer)}
  132. writeln('TCustomTestOptimizations.OnConverterIsTypeInfoUsed El=',GetObjName(El),' WPO=',WholeProgramOptimization,' Result=',Result);
  133. {$ENDIF}
  134. end;
  135. procedure TCustomTestOptimizations.SetUp;
  136. begin
  137. inherited SetUp;
  138. FWholeProgramOptimization:=false;
  139. FAnalyzerModule:=TPas2JSAnalyzer.Create;
  140. FAnalyzerModule.Resolver:=Engine;
  141. FAnalyzerProgram:=TPas2JSAnalyzer.Create;
  142. FAnalyzerProgram.Resolver:=Engine;
  143. end;
  144. procedure TCustomTestOptimizations.TearDown;
  145. begin
  146. FreeAndNil(FAnalyzerProgram);
  147. FreeAndNil(FAnalyzerModule);
  148. inherited TearDown;
  149. end;
  150. procedure TCustomTestOptimizations.ParseModule;
  151. begin
  152. inherited ParseModule;
  153. {$IF defined(VerbosePas2JS) or defined(VerbosePasAnalyzer)}
  154. writeln('TCustomTestOptimizations.ParseModule START');
  155. {$ENDIF}
  156. AnalyzerModule.AnalyzeModule(Module);
  157. {$IF defined(VerbosePas2JS) or defined(VerbosePasAnalyzer)}
  158. writeln('TCustomTestOptimizations.ParseModule END');
  159. {$ENDIF}
  160. end;
  161. procedure TCustomTestOptimizations.ParseProgram;
  162. begin
  163. WholeProgramOptimization:=true;
  164. inherited ParseProgram;
  165. {$IF defined(VerbosePas2JS) or defined(VerbosePasAnalyzer)}
  166. writeln('TCustomTestOptimizations.ParseProgram START');
  167. {$ENDIF}
  168. AnalyzerProgram.AnalyzeWholeProgram(Module as TPasProgram);
  169. {$IF defined(VerbosePas2JS) or defined(VerbosePasAnalyzer)}
  170. writeln('TCustomTestOptimizations.ParseProgram START');
  171. {$ENDIF}
  172. end;
  173. function TCustomTestOptimizations.CreateConverter: TPasToJSConverter;
  174. begin
  175. Result:=inherited CreateConverter;
  176. Result.OnIsElementUsed:=@OnConverterIsElementUsed;
  177. Result.OnIsTypeInfoUsed:=@OnConverterIsTypeInfoUsed;
  178. end;
  179. { TTestOptimizations }
  180. procedure TTestOptimizations.TestOptShortRefGlobals_Program;
  181. begin
  182. AddModuleWithIntfImplSrc('UnitA.pas',
  183. LinesToStr([
  184. 'type',
  185. ' TColor = (red,green,blue);',
  186. ' TColors = set of TColor;',
  187. 'const',
  188. ' cRedBlue = [red,blue];',
  189. 'type',
  190. ' TBird = class',
  191. ' public',
  192. ' class var c: word;',
  193. ' class function Run(w: word): word; virtual; abstract;',
  194. ' end;',
  195. ' TRec = record',
  196. ' x: word;',
  197. ' end;',
  198. 'var b: TBird;',
  199. '']),
  200. LinesToStr([
  201. '']));
  202. StartProgram(true,[supTObject]);
  203. Add([
  204. '{$optimization JSShortRefGlobals}',
  205. 'uses unita;',
  206. 'type',
  207. ' TEagle = class(TBird)',
  208. ' class function Run(w: word = 5): word; override;',
  209. ' end;',
  210. 'class function TEagle.Run(w: word): word;',
  211. 'begin',
  212. 'end;',
  213. 'var',
  214. ' e: TEagle;',
  215. ' r: TRec;',
  216. ' c: TColors;',
  217. 'begin',
  218. ' e:=TEagle.Create;',
  219. ' b:=TBird.Create;',
  220. ' e.c:=e.c+1;',
  221. ' r.x:=TBird.c;',
  222. ' r.x:=b.c;',
  223. ' r.x:=e.Run;',
  224. ' r.x:=e.Run();',
  225. ' r.x:=e.Run(4);',
  226. ' c:=cRedBlue;',
  227. '']);
  228. ConvertProgram;
  229. CheckSource('TestOptShortRefGlobals_Program',
  230. LinesToStr([
  231. 'var $lt = null;',
  232. 'var $lm = pas.UnitA;',
  233. 'var $lt1 = $lm.TBird;',
  234. 'var $lt2 = $lm.TRec;',
  235. 'rtl.createClass(this, "TEagle", $lt1, function () {',
  236. ' $lt = this;',
  237. ' this.Run = function (w) {',
  238. ' var Result = 0;',
  239. ' return Result;',
  240. ' };',
  241. '});',
  242. 'this.e = null;',
  243. 'this.r = $lt2.$new();',
  244. 'this.c = {};',
  245. '']),
  246. LinesToStr([
  247. '$mod.e = $lt.$create("Create");',
  248. '$lm.b = $lt1.$create("Create");',
  249. '$lt1.c = $mod.e.c + 1;',
  250. '$mod.r.x = $lt1.c;',
  251. '$mod.r.x = $lm.b.c;',
  252. '$mod.r.x = $mod.e.$class.Run(5);',
  253. '$mod.r.x = $mod.e.$class.Run(5);',
  254. '$mod.r.x = $mod.e.$class.Run(4);',
  255. '$mod.c = rtl.refSet($lm.cRedBlue);',
  256. '']));
  257. end;
  258. procedure TTestOptimizations.TestOptShortRefGlobals_Unit_FromIntfImpl_ToIntfImpl;
  259. begin
  260. AddModuleWithIntfImplSrc('UnitA.pas',
  261. LinesToStr([
  262. 'type',
  263. ' TBird = class',
  264. ' public Speed: word;',
  265. ' end;',
  266. ' TRecA = record',
  267. ' x: word;',
  268. ' end;',
  269. 'var Bird: TBird;',
  270. '']),
  271. LinesToStr([
  272. '']));
  273. AddModuleWithIntfImplSrc('UnitB.pas',
  274. LinesToStr([
  275. 'type',
  276. ' TAnt = class',
  277. ' public Size: word;',
  278. ' end;',
  279. ' TRecB = record',
  280. ' y: word;',
  281. ' end;',
  282. ' TBear = class',
  283. ' end;',
  284. ' TFrog = class',
  285. ' end;',
  286. 'var Ant: TAnt;',
  287. '']),
  288. LinesToStr([
  289. '']));
  290. StartUnit(true,[supTObject]);
  291. Add([
  292. '{$optimization JSShortRefGlobals}',
  293. 'interface',
  294. 'uses unita;',
  295. 'type',
  296. ' TEagle = class(TBird)', // intf-JS to intf-uses
  297. ' procedure Fly;',
  298. ' end;',
  299. 'implementation',
  300. 'uses unitb;',
  301. 'type',
  302. ' TRedAnt = class(TAnt)', // impl-JS to impl-uses
  303. ' procedure Run;',
  304. ' end;',
  305. 'procedure TEagle.Fly;',
  306. 'begin',
  307. ' TRedAnt.Create;', // intf-JS to impl-JS
  308. ' TAnt.Create;', // intf-JS to impl-uses
  309. ' TBird.Create;', // intf-JS to intf-uses
  310. ' TEagle.Create;', // intf-JS to intf-JS
  311. 'end;',
  312. 'procedure TRedAnt.Run;',
  313. 'begin',
  314. ' TRedAnt.Create;', // impl-JS to impl-JS
  315. ' TAnt.Create;', // impl-JS to impl-uses
  316. ' TBird.Create;', // impl-JS to intf-uses
  317. ' TEagle.Create;', // impl-JS to intf-JS
  318. ' TBear.Create', // only in impl-JS to impl-uses
  319. 'end;',
  320. 'var',
  321. ' RedAnt: TRedAnt;',
  322. ' Ant: TAnt;',
  323. ' Bird: TBird;',
  324. ' Eagle: TEagle;',
  325. 'initialization',
  326. ' RedAnt:=TRedAnt.Create;', // init to impl-JS
  327. ' Ant:=TAnt.Create;', // init to impl-uses
  328. ' Bird:=TBird.Create;', // init to intf-uses
  329. ' Eagle:=TEagle.Create;', // init to intf-JS
  330. ' TFrog.Create;', // only in init to impl-uses
  331. ' Eagle.Fly;',
  332. ' RedAnt.Run;',
  333. '']);
  334. ConvertUnit;
  335. CheckSource('TestOptShortRefGlobals_Unit_FromIntfImpl_ToIntfImpl',
  336. LinesToStr([
  337. 'var $impl = $mod.$impl;',
  338. 'var $lt = null;',
  339. 'var $lt1 = null;',
  340. 'var $lm = pas.UnitA;',
  341. 'var $lt2 = $lm.TBird;',
  342. 'var $lm1 = null;',
  343. 'var $lt3 = null;',
  344. 'var $lt4 = null;',
  345. 'var $lt5 = null;',
  346. 'rtl.createClass(this, "TEagle", $lt2, function () {',
  347. ' $lt = this;',
  348. ' this.Fly = function () {',
  349. ' $lt1.$create("Create");',
  350. ' $lt3.$create("Create");',
  351. ' $lt2.$create("Create");',
  352. ' $lt.$create("Create");',
  353. ' };',
  354. '});',
  355. '']),
  356. LinesToStr([
  357. '$impl.RedAnt = $lt1.$create("Create");',
  358. '$impl.Ant = $lt3.$create("Create");',
  359. '$impl.Bird = $lt2.$create("Create");',
  360. '$impl.Eagle = $lt.$create("Create");',
  361. '$lt5.$create("Create");',
  362. '$impl.Eagle.Fly();',
  363. '$impl.RedAnt.Run();',
  364. '']),
  365. LinesToStr([
  366. '$lm1 = pas.UnitB;',
  367. '$lt3 = $lm1.TAnt;',
  368. '$lt4 = $lm1.TBear;',
  369. '$lt5 = $lm1.TFrog;',
  370. 'rtl.createClass($impl, "TRedAnt", $lt3, function () {',
  371. ' $lt1 = this;',
  372. ' this.Run = function () {',
  373. ' $lt1.$create("Create");',
  374. ' $lt3.$create("Create");',
  375. ' $lt2.$create("Create");',
  376. ' $lt.$create("Create");',
  377. ' $lt4.$create("Create");',
  378. ' };',
  379. '});',
  380. '$impl.RedAnt = null;',
  381. '$impl.Ant = null;',
  382. '$impl.Bird = null;',
  383. '$impl.Eagle = null;',
  384. '']));
  385. end;
  386. procedure TTestOptimizations.TestOptShortRefGlobals_Property;
  387. begin
  388. AddModuleWithIntfImplSrc('UnitA.pas',
  389. LinesToStr([
  390. 'type',
  391. ' TBird = class',
  392. ' FWing: TObject;',
  393. ' class var FLeg: TObject;',
  394. ' public',
  395. ' property Wing: TObject read FWing write FWing;',
  396. ' class property Leg: TObject read FLeg write FLeg;',
  397. ' end;',
  398. '']),
  399. LinesToStr([
  400. '']));
  401. StartUnit(true,[supTObject]);
  402. Add([
  403. '{$optimization JSShortRefGlobals}',
  404. 'interface',
  405. 'uses unita;',
  406. 'type',
  407. ' TEagle = class(TBird)', // intf-JS to intf-uses
  408. ' procedure Fly(o: TObject);',
  409. ' end;',
  410. 'implementation',
  411. 'procedure TEagle.Fly(o: TObject);',
  412. 'begin',
  413. ' Fly(Wing);',
  414. ' Fly(Leg);',
  415. 'end;',
  416. '']);
  417. ConvertUnit;
  418. CheckSource('TestOptShortRefGlobals_Property',
  419. LinesToStr([
  420. 'var $lt = null;',
  421. 'var $lm = pas.UnitA;',
  422. 'var $lt1 = $lm.TBird;',
  423. 'rtl.createClass(this, "TEagle", $lt1, function () {',
  424. ' $lt = this;',
  425. ' this.Fly = function (o) {',
  426. ' this.Fly(this.FWing);',
  427. ' this.Fly(this.FLeg);',
  428. ' };',
  429. '});',
  430. '']),
  431. LinesToStr([
  432. '']),
  433. LinesToStr([
  434. '']));
  435. end;
  436. procedure TTestOptimizations.TestOptShortRefGlobals_ExternalAbstract;
  437. begin
  438. AddModuleWithIntfImplSrc('UnitA.pas',
  439. LinesToStr([
  440. 'type',
  441. ' TBird = class',
  442. ' generic function FlyExt<T>(a: word = 103): T; external name ''Flying'';',
  443. ' class procedure JumpVirtual(a: word = 104); virtual; abstract;',
  444. ' class procedure RunStaticExt(a: word = 105); static; external name ''Running'';',
  445. ' end;',
  446. 'procedure SayExt(a: word = 106); external name ''Saying'';',
  447. '']),
  448. LinesToStr([
  449. '']));
  450. StartUnit(true,[supTObject]);
  451. Add([
  452. '{$optimization JSShortRefGlobals}',
  453. 'interface',
  454. 'uses unita;',
  455. 'type',
  456. ' TEagle = class(TBird)',
  457. ' procedure Test;',
  458. ' end;',
  459. 'implementation',
  460. 'procedure TEagle.Test;',
  461. 'begin',
  462. ' specialize FlyExt<Word>;',
  463. ' specialize FlyExt<Word>(1);',
  464. ' specialize JumpVirtual;',
  465. ' specialize JumpVirtual(2);',
  466. ' specialize RunStaticExt;',
  467. ' specialize RunStaticExt(3);',
  468. ' specialize SayExt;',
  469. ' specialize SayExt(4);',
  470. ' Self.specialize FlyExt<Word>;',
  471. ' Self.specialize FlyExt<Word>(11);',
  472. ' Self.specialize JumpVirtual;',
  473. ' Self.specialize JumpVirtual(12);',
  474. ' Self.specialize RunStaticExt;',
  475. ' Self.specialize RunStaticExt(13);',
  476. ' with Self do begin',
  477. ' specialize FlyExt<Word>;',
  478. ' specialize FlyExt<Word>(21);',
  479. ' specialize JumpVirtual;',
  480. ' specialize JumpVirtual(22);',
  481. ' specialize RunStaticExt;',
  482. ' specialize RunStaticExt(23);',
  483. ' end;',
  484. 'end;',
  485. '']);
  486. ConvertUnit;
  487. CheckSource('TestOptShortRefGlobals_ExternalAbstract',
  488. LinesToStr([
  489. 'var $lt = null;',
  490. 'var $lm = pas.UnitA;',
  491. 'var $lt1 = $lm.TBird;',
  492. 'rtl.createClass(this, "TEagle", $lt1, function () {',
  493. ' $lt = this;',
  494. ' this.Test = function () {',
  495. ' this.Flying(103);',
  496. ' this.Flying(1);',
  497. ' this.$class.JumpVirtual(104);',
  498. ' this.$class.JumpVirtual(2);',
  499. ' this.Running(105);',
  500. ' this.Running(3);',
  501. ' Saying(106);',
  502. ' Saying(4);',
  503. ' this.Flying(103);',
  504. ' this.Flying(11);',
  505. ' this.$class.JumpVirtual(104);',
  506. ' this.$class.JumpVirtual(12);',
  507. ' this.Running(105);',
  508. ' this.Running(13);',
  509. ' this.Flying(103);',
  510. ' this.Flying(21);',
  511. ' this.$class.JumpVirtual(104);',
  512. ' this.$class.JumpVirtual(22);',
  513. ' this.Running(105);',
  514. ' this.Running(23);',
  515. ' };',
  516. '});',
  517. '']),
  518. LinesToStr([
  519. '']),
  520. LinesToStr([
  521. '']));
  522. end;
  523. procedure TTestOptimizations.TestOptShortRefGlobals_GenericFunction;
  524. begin
  525. AddModuleWithIntfImplSrc('UnitA.pas',
  526. LinesToStr([
  527. 'generic function Run<T>(a: T): T;',
  528. '']),
  529. LinesToStr([
  530. 'generic function Run<T>(a: T): T;',
  531. 'begin',
  532. 'end;',
  533. '']));
  534. StartUnit(true,[supTObject]);
  535. Add([
  536. '{$optimization JSShortRefGlobals}',
  537. 'interface',
  538. 'uses unita;',
  539. 'type',
  540. ' TEagle = class',
  541. ' end;',
  542. 'procedure Fly;',
  543. 'implementation',
  544. 'procedure Fly;',
  545. 'begin',
  546. ' specialize Run<TEagle>(nil);',
  547. 'end;',
  548. '']);
  549. ConvertUnit;
  550. CheckSource('TestOptShortRefGlobals_GenericFunction',
  551. LinesToStr([
  552. 'var $lt = null;',
  553. 'var $lm = pas.system;',
  554. 'var $lt1 = $lm.TObject;',
  555. 'var $lm1 = pas.UnitA;',
  556. 'var $lp = $lm1.Run$G1;',
  557. 'rtl.createClass(this, "TEagle", $lt1, function () {',
  558. ' $lt = this;',
  559. '});',
  560. 'this.Fly = function () {',
  561. ' $lp(null);',
  562. '};',
  563. '']),
  564. LinesToStr([
  565. '']),
  566. LinesToStr([
  567. '']));
  568. end;
  569. procedure TTestOptimizations.TestOptShortRefGlobals_GenericMethod_Call;
  570. begin
  571. AddModuleWithIntfImplSrc('UnitA.pas',
  572. LinesToStr([
  573. 'type',
  574. ' TBird = class',
  575. ' generic function Fly<T>(a: word = 13): T;',
  576. ' generic class function Jump<T>(b: word = 14): T;',
  577. ' end;',
  578. '']),
  579. LinesToStr([
  580. 'generic function TBird.Fly<T>(a: word): T;',
  581. 'begin',
  582. 'end;',
  583. 'generic class function TBird.Jump<T>(b: word): T;',
  584. 'begin',
  585. 'end;',
  586. '']));
  587. StartUnit(true,[supTObject]);
  588. Add([
  589. '{$optimization JSShortRefGlobals}',
  590. 'interface',
  591. 'uses unita;',
  592. 'type',
  593. ' TEagle = class(TBird)',
  594. ' procedure Test;',
  595. ' generic function Run<T>(c: word = 25): T;',
  596. ' generic class function Sing<T>(d: word = 26): T;',
  597. ' end;',
  598. 'implementation',
  599. 'procedure TEagle.Test;',
  600. 'begin',
  601. ' specialize Run<Word>;',
  602. ' specialize Run<Word>(1);',
  603. ' specialize Sing<Word>;',
  604. ' specialize Sing<Word>(2);',
  605. ' specialize Fly<Word>;',
  606. ' specialize Fly<Word>(3);',
  607. ' specialize Jump<Word>;',
  608. ' specialize Jump<Word>(4);',
  609. ' Self.specialize Fly<Word>;',
  610. ' Self.specialize Fly<Word>(5);',
  611. ' Self.specialize Jump<Word>;',
  612. ' Self.specialize Jump<Word>(6);',
  613. ' with Self do begin',
  614. ' specialize Fly<Word>;',
  615. ' specialize Fly<Word>(7);',
  616. ' specialize Jump<Word>;',
  617. ' specialize Jump<Word>(8);',
  618. ' end;',
  619. 'end;',
  620. 'generic function TEagle.Run<T>(c: word): T;',
  621. 'begin',
  622. ' specialize Fly<T>;',
  623. ' specialize Fly<T>(7);',
  624. 'end;',
  625. 'generic class function TEagle.Sing<T>(d: word): T;',
  626. 'begin',
  627. ' specialize Jump<T>;',
  628. ' specialize Jump<T>(8);',
  629. 'end;',
  630. '']);
  631. ConvertUnit;
  632. CheckSource('TestOptShortRefGlobals_GenericMethod_Call',
  633. LinesToStr([
  634. 'var $lt = null;',
  635. 'var $lp = null;',
  636. 'var $lp1 = null;',
  637. 'var $lm = pas.UnitA;',
  638. 'var $lt1 = $lm.TBird;',
  639. 'var $lp2 = $lt1.Fly$G1;',
  640. 'var $lp3 = $lt1.Jump$G1;',
  641. 'rtl.createClass(this, "TEagle", $lt1, function () {',
  642. ' $lt = this;',
  643. ' this.Test = function () {',
  644. ' $lp.apply(this, 25);',
  645. ' $lp.apply(this, 1);',
  646. ' $lp1.apply(this.$class, 26);',
  647. ' $lp1.apply(this.$class, 2);',
  648. ' $lp2.apply(this, 13);',
  649. ' $lp2.apply(this, 3);',
  650. ' $lp3.apply(this.$class, 14);',
  651. ' $lp3.apply(this.$class, 4);',
  652. ' $lp2.apply(this, 13);',
  653. ' $lp2.apply(this, 5);',
  654. ' $lp3.apply(this.$class, 14);',
  655. ' $lp3.apply(this, 6);',
  656. ' $lp2.apply(this, 13);',
  657. ' $lp2.apply(this, 7);',
  658. ' $lp3.apply(this.$class, 14);',
  659. ' $lp3.apply(this.$class, 8);',
  660. ' };',
  661. ' this.Run$G1 = $lp = function (c) {',
  662. ' var Result = 0;',
  663. ' $lp2.apply(this, 13);',
  664. ' $lp2.apply(this, 7);',
  665. ' return Result;',
  666. ' };',
  667. ' this.Sing$G1 = $lp1 = function (d) {',
  668. ' var Result = 0;',
  669. ' $lp3.apply(this, 14);',
  670. ' $lp3.apply(this, 8);',
  671. ' return Result;',
  672. ' };',
  673. '});',
  674. '']),
  675. LinesToStr([
  676. '']),
  677. LinesToStr([
  678. '']));
  679. end;
  680. procedure TTestOptimizations.TestOptShortRefGlobals_GenericStaticMethod_Call;
  681. begin
  682. AddModuleWithIntfImplSrc('UnitA.pas',
  683. LinesToStr([
  684. 'type',
  685. ' TBird = class',
  686. ' generic class function Fly<T>(a: word = 13): T; static;',
  687. ' class function Say(a: word = 13): word; static;',
  688. ' end;',
  689. '']),
  690. LinesToStr([
  691. 'generic class function TBird.Fly<T>(a: word): T;',
  692. 'begin',
  693. 'end;',
  694. 'class function TBird.Say(a: word): word;',
  695. 'begin',
  696. 'end;',
  697. '']));
  698. StartUnit(true,[supTObject]);
  699. Add([
  700. '{$optimization JSShortRefGlobals}',
  701. 'interface',
  702. 'uses unita;',
  703. 'type',
  704. ' TFunc = function(a: word): word;',
  705. ' TEagle = class(TBird)',
  706. ' procedure Test;',
  707. ' generic class function Run<T>(c: word = 25): T; static;',
  708. ' class function Lay(c: word = 25): word; static;',
  709. ' end;',
  710. 'implementation',
  711. 'procedure TEagle.Test;',
  712. 'var f: TFunc;',
  713. 'begin',
  714. ' specialize Fly<Word>;',
  715. ' specialize Fly<Word>(31);',
  716. ' Say;',
  717. ' Say(32);',
  718. ' specialize Run<Word>;',
  719. ' specialize Run<Word>(33);',
  720. ' Lay;',
  721. ' Lay(34);',
  722. ' self.specialize Fly<Word>;',
  723. ' self.specialize Fly<Word>(41);',
  724. ' self.Say;',
  725. ' self.Say(42);',
  726. ' self.specialize Run<Word>;',
  727. ' self.specialize Run<Word>(43);',
  728. ' with Self do begin',
  729. ' specialize Fly<Word>;',
  730. ' specialize Fly<Word>(51);',
  731. ' Say;',
  732. ' Say(52);',
  733. ' specialize Run<Word>;',
  734. ' specialize Run<Word>(53);',
  735. ' end;',
  736. 'end;',
  737. 'generic class function TEagle.Run<T>(c: word): T;',
  738. 'begin',
  739. 'end;',
  740. 'class function TEagle.Lay(c: word): word;',
  741. 'begin',
  742. ' TEagle.specialize Fly<Word>;',
  743. ' TEagle.specialize Fly<Word>(61);',
  744. ' TEagle.Say;',
  745. ' TEagle.Say(62);',
  746. ' TEagle.specialize Run<Word>;',
  747. ' specialize Run<Word>(63);',
  748. ' Lay;',
  749. ' Lay(64);',
  750. 'end;',
  751. '']);
  752. ConvertUnit;
  753. CheckSource('TestOptShortRefGlobals_GenericStaticMethod_Call',
  754. LinesToStr([
  755. 'var $lt = null;',
  756. 'var $lp = null;',
  757. 'var $lm = pas.UnitA;',
  758. 'var $lt1 = $lm.TBird;',
  759. 'var $lp1 = $lt1.Fly$G1;',
  760. 'var $lp2 = $lt1.Say;',
  761. 'rtl.createClass(this, "TEagle", $lt1, function () {',
  762. ' $lt = this;',
  763. ' this.Test = function () {',
  764. ' $lp1(13);',
  765. ' $lp1(31);',
  766. ' $lp2(13);',
  767. ' $lp2(32);',
  768. ' $lp(25);',
  769. ' $lp(33);',
  770. ' $lt.Lay(25);',
  771. ' $lt.Lay(34);',
  772. ' $lp1(13);',
  773. ' $lp1(41);',
  774. ' $lp2(13);',
  775. ' $lp2(42);',
  776. ' $lp(25);',
  777. ' $lp(43);',
  778. ' $lp1(13);',
  779. ' $lp1(51);',
  780. ' $lp2(13);',
  781. ' $lp2(52);',
  782. ' $lp(25);',
  783. ' $lp(53);',
  784. ' };',
  785. ' this.Lay = function (c) {',
  786. ' var Result = 0;',
  787. ' $lp1(13);',
  788. ' $lp1(61);',
  789. ' $lp2(13);',
  790. ' $lp2(62);',
  791. ' $lp(25);',
  792. ' $lp(63);',
  793. ' $lt.Lay(25);',
  794. ' $lt.Lay(64);',
  795. ' return Result;',
  796. ' };',
  797. ' this.Run$G1 = $lp = function (c) {',
  798. ' var Result = 0;',
  799. ' return Result;',
  800. ' };',
  801. '});',
  802. '']),
  803. LinesToStr([
  804. '']),
  805. LinesToStr([
  806. '']));
  807. end;
  808. procedure TTestOptimizations.TestOptShortRefGlobals_SameUnit_EnumType;
  809. begin
  810. StartUnit(true,[supTObject]);
  811. Add([
  812. '{$optimization JSShortRefGlobals}',
  813. 'interface',
  814. 'type',
  815. ' TBird = class',
  816. ' type',
  817. ' TFlag = (big,small);',
  818. ' procedure Fly;',
  819. ' end;',
  820. ' TEnum = (red,blue);',
  821. 'var',
  822. ' e: TEnum;',
  823. ' f: TBird.TFlag;',
  824. 'procedure Run;',
  825. 'implementation',
  826. 'procedure TBird.Fly;',
  827. 'begin',
  828. ' e:=blue;',
  829. ' f:=small;',
  830. 'end;',
  831. 'procedure Run;',
  832. 'type TSub = (left,right);',
  833. 'var s: TSub;',
  834. 'begin',
  835. ' e:=red;',
  836. ' s:=right;',
  837. ' f:=big;',
  838. 'end;',
  839. '']);
  840. ConvertUnit;
  841. CheckSource('TestOptShortRefGlobals_SameUnit_EnumType',
  842. LinesToStr([
  843. 'var $lt = null;',
  844. 'var $lt1 = null;',
  845. 'var $lt2 = null;',
  846. 'var $lm = pas.system;',
  847. 'var $lt3 = $lm.TObject;',
  848. 'rtl.createClass(this, "TBird", $lt3, function () {',
  849. ' $lt = this;',
  850. ' $lt1 = this.TFlag = {',
  851. ' "0": "big",',
  852. ' big: 0,',
  853. ' "1": "small",',
  854. ' small: 1',
  855. ' };',
  856. ' this.Fly = function () {',
  857. ' $mod.e = $lt2.blue;',
  858. ' $mod.f = $lt1.small;',
  859. ' };',
  860. '});',
  861. '$lt2 = this.TEnum = {',
  862. ' "0": "red",',
  863. ' red: 0,',
  864. ' "1": "blue",',
  865. ' blue: 1',
  866. '};',
  867. 'this.e = 0;',
  868. 'this.f = 0;',
  869. 'var TSub = {',
  870. ' "0": "left",',
  871. ' left: 0,',
  872. ' "1": "right",',
  873. ' right: 1',
  874. '};',
  875. 'this.Run = function () {',
  876. ' var s = 0;',
  877. ' $mod.e = $lt2.red;',
  878. ' s = TSub.right;',
  879. ' $mod.f = $lt1.big;',
  880. '};',
  881. '']),
  882. LinesToStr([
  883. '']),
  884. LinesToStr([
  885. '']));
  886. end;
  887. procedure TTestOptimizations.TestOptShortRefGlobals_SameUnit_ClassType;
  888. begin
  889. WithTypeInfo:=true;
  890. StartUnit(true,[supTObject]);
  891. Add([
  892. '{$optimization JSShortRefGlobals}',
  893. 'interface',
  894. 'type',
  895. ' TBird = class;',
  896. ' TAnt = class',
  897. ' type',
  898. ' TLeg = class',
  899. ' end;',
  900. ' procedure Run;',
  901. ' published',
  902. ' Bird: TBird;',
  903. ' end;',
  904. ' TBird = class',
  905. ' procedure Fly;',
  906. ' end;',
  907. 'implementation',
  908. 'type',
  909. ' TFrog = class',
  910. ' end;',
  911. 'procedure TAnt.Run;',
  912. 'begin',
  913. ' if typeinfo(TBird)=nil then;',
  914. ' Bird:=TBird.Create;',
  915. ' TLeg.Create;',
  916. ' TFrog.Create;',
  917. 'end;',
  918. 'procedure TBird.Fly;',
  919. 'begin',
  920. ' if typeinfo(TAnt)=nil then;',
  921. 'end;',
  922. '']);
  923. ConvertUnit;
  924. CheckSource('TestOptShortRefGlobals_SameUnit_ClassType',
  925. LinesToStr([
  926. 'var $impl = $mod.$impl;',
  927. 'var $lt = null;',
  928. 'var $lt1 = null;',
  929. 'var $lt2 = null;',
  930. 'var $lt3 = null;',
  931. 'var $lm = pas.system;',
  932. 'var $lt4 = $lm.TObject;',
  933. 'this.$rtti.$Class("TBird");',
  934. 'rtl.createClass(this, "TAnt", $lt4, function () {',
  935. ' $lt = this;',
  936. ' rtl.createClass(this, "TLeg", $lt4, function () {',
  937. ' $lt1 = this;',
  938. ' }, "TAnt.TLeg");',
  939. ' this.$init = function () {',
  940. ' $lt4.$init.call(this);',
  941. ' this.Bird = null;',
  942. ' };',
  943. ' this.$final = function () {',
  944. ' this.Bird = undefined;',
  945. ' $lt4.$final.call(this);',
  946. ' };',
  947. ' this.Run = function () {',
  948. ' if ($mod.$rtti["TBird"] === null) ;',
  949. ' this.Bird = $lt2.$create("Create");',
  950. ' $lt1.$create("Create");',
  951. ' $lt3.$create("Create");',
  952. ' };',
  953. ' var $r = this.$rtti;',
  954. ' $r.addField("Bird", $mod.$rtti["TBird"]);',
  955. '});',
  956. 'rtl.createClass(this, "TBird", $lt4, function () {',
  957. ' $lt2 = this;',
  958. ' this.Fly = function () {',
  959. ' if ($mod.$rtti["TAnt"] === null) ;',
  960. ' };',
  961. '});',
  962. '']),
  963. LinesToStr([
  964. '']),
  965. LinesToStr([
  966. 'rtl.createClass($impl, "TFrog", $lt4, function () {',
  967. ' $lt3 = this;',
  968. '});',
  969. '']));
  970. end;
  971. procedure TTestOptimizations.TestOptShortRefGlobals_SameUnit_RecordType;
  972. begin
  973. StartUnit(true,[supTObject]);
  974. Add([
  975. '{$optimization JSShortRefGlobals}',
  976. '{$modeswitch advancedrecords}',
  977. 'interface',
  978. 'type',
  979. ' TAnt = record',
  980. ' type',
  981. ' TLeg = record',
  982. ' l: word;',
  983. ' end;',
  984. ' procedure Run;',
  985. ' Leg: TLeg;',
  986. ' end;',
  987. 'implementation',
  988. 'type',
  989. ' TBird = record',
  990. ' b: word;',
  991. ' end;',
  992. 'procedure TAnt.Run;',
  993. 'type',
  994. ' TFoot = record',
  995. ' f: word;',
  996. ' end;',
  997. 'var',
  998. ' b: TBird;',
  999. ' l: TLeg;',
  1000. ' a: TAnt;',
  1001. ' f: TFoot;',
  1002. 'begin',
  1003. ' b.b:=1;',
  1004. ' l.l:=2;',
  1005. ' a.Leg.l:=3;',
  1006. ' f.f:=4;',
  1007. 'end;',
  1008. '']);
  1009. ConvertUnit;
  1010. CheckSource('TestOptShortRefGlobals_SameUnit_RecordType',
  1011. LinesToStr([
  1012. 'var $impl = $mod.$impl;',
  1013. 'var $lt = null;',
  1014. 'var $lt1 = null;',
  1015. 'var $lt2 = null;',
  1016. 'rtl.recNewT(this, "TAnt", function () {',
  1017. ' $lt = this;',
  1018. ' rtl.recNewT($lt, "TLeg", function () {',
  1019. ' $lt1 = this;',
  1020. ' this.l = 0;',
  1021. ' this.$eq = function (b) {',
  1022. ' return this.l === b.l;',
  1023. ' };',
  1024. ' this.$assign = function (s) {',
  1025. ' this.l = s.l;',
  1026. ' return this;',
  1027. ' };',
  1028. ' });',
  1029. ' this.$new = function () {',
  1030. ' var r = Object.create(this);',
  1031. ' r.Leg = $lt1.$new();',
  1032. ' return r;',
  1033. ' };',
  1034. ' this.$eq = function (b) {',
  1035. ' return this.Leg.$eq(b.Leg);',
  1036. ' };',
  1037. ' this.$assign = function (s) {',
  1038. ' this.Leg.$assign(s.Leg);',
  1039. ' return this;',
  1040. ' };',
  1041. ' var TFoot = rtl.recNewT(null, "", function () {',
  1042. ' this.f = 0;',
  1043. ' this.$eq = function (b) {',
  1044. ' return this.f === b.f;',
  1045. ' };',
  1046. ' this.$assign = function (s) {',
  1047. ' this.f = s.f;',
  1048. ' return this;',
  1049. ' };',
  1050. ' });',
  1051. ' this.Run = function () {',
  1052. ' var b = $lt2.$new();',
  1053. ' var l = $lt1.$new();',
  1054. ' var a = $lt.$new();',
  1055. ' var f = TFoot.$new();',
  1056. ' b.b = 1;',
  1057. ' l.l = 2;',
  1058. ' a.Leg.l = 3;',
  1059. ' f.f = 4;',
  1060. ' };',
  1061. '}, true);',
  1062. '']),
  1063. LinesToStr([
  1064. '']),
  1065. LinesToStr([
  1066. 'rtl.recNewT($impl, "TBird", function () {',
  1067. ' $lt2 = this;',
  1068. ' this.b = 0;',
  1069. ' this.$eq = function (b) {',
  1070. ' return this.b === b.b;',
  1071. ' };',
  1072. ' this.$assign = function (s) {',
  1073. ' this.b = s.b;',
  1074. ' return this;',
  1075. ' };',
  1076. '});',
  1077. '']));
  1078. end;
  1079. procedure TTestOptimizations.TestWPO_OmitLocalVar;
  1080. begin
  1081. StartProgram(false);
  1082. Add('var');
  1083. Add(' a: longint;');
  1084. Add(' b: longint;');
  1085. Add('begin');
  1086. Add(' b:=3;');
  1087. ConvertProgram;
  1088. CheckSource('TestWPO_OmitLocalVar',
  1089. 'this.b = 0;',
  1090. '$mod.b = 3;');
  1091. end;
  1092. procedure TTestOptimizations.TestWPO_OmitLocalProc;
  1093. begin
  1094. StartProgram(false);
  1095. Add('procedure DoIt; begin end;');
  1096. Add('procedure NoIt; begin end;');
  1097. Add('begin');
  1098. Add(' DoIt;');
  1099. ConvertProgram;
  1100. CheckSource('TestWPO_OmitLocalProc',
  1101. LinesToStr([
  1102. 'this.DoIt = function () {',
  1103. '};',
  1104. '']),
  1105. LinesToStr([
  1106. '$mod.DoIt();',
  1107. '']));
  1108. end;
  1109. procedure TTestOptimizations.TestWPO_OmitLocalProcForward;
  1110. begin
  1111. StartProgram(false);
  1112. Add('procedure DoIt; forward;');
  1113. Add('procedure NoIt; forward;');
  1114. Add('procedure DoIt; begin end;');
  1115. Add('procedure NoIt; begin end;');
  1116. Add('begin');
  1117. Add(' DoIt;');
  1118. ConvertProgram;
  1119. CheckSource('TestWPO_OmitLocalProcForward',
  1120. LinesToStr([
  1121. 'this.DoIt = function () {',
  1122. '};',
  1123. '']),
  1124. LinesToStr([
  1125. '$mod.DoIt();',
  1126. '']));
  1127. end;
  1128. procedure TTestOptimizations.TestWPO_OmitProcLocalVar;
  1129. begin
  1130. StartProgram(false);
  1131. Add('function DoIt: longint;');
  1132. Add('var');
  1133. Add(' a: longint;');
  1134. Add(' b: longint;');
  1135. Add('begin');
  1136. Add(' b:=3;');
  1137. Add(' Result:=b;');
  1138. Add('end;');
  1139. Add('begin');
  1140. Add(' DoIt;');
  1141. ConvertProgram;
  1142. CheckSource('TestWPO_OmitProcLocalVar',
  1143. LinesToStr([
  1144. 'this.DoIt = function () {',
  1145. ' var Result = 0;',
  1146. ' var b = 0;',
  1147. ' b = 3;',
  1148. ' Result = b;',
  1149. ' return Result;',
  1150. '};',
  1151. '']),
  1152. LinesToStr([
  1153. '$mod.DoIt();',
  1154. '']));
  1155. end;
  1156. procedure TTestOptimizations.TestWPO_OmitProcLocalConst;
  1157. begin
  1158. StartProgram(false);
  1159. Add('function DoIt: longint;');
  1160. Add('const');
  1161. Add(' a = 3;');
  1162. Add(' b = 4;');
  1163. Add(' c: longint = 5;');
  1164. Add(' d: longint = 6;');
  1165. Add('begin');
  1166. Add(' Result:=b+d;');
  1167. Add('end;');
  1168. Add('begin');
  1169. Add(' DoIt;');
  1170. ConvertProgram;
  1171. CheckSource('TestWPO_OmitProcLocalConst',
  1172. LinesToStr([
  1173. 'var b = 4;',
  1174. 'var d = 6;',
  1175. 'this.DoIt = function () {',
  1176. ' var Result = 0;',
  1177. ' Result = 4 + d;',
  1178. ' return Result;',
  1179. '};',
  1180. '']),
  1181. LinesToStr([
  1182. '$mod.DoIt();',
  1183. '']));
  1184. end;
  1185. procedure TTestOptimizations.TestWPO_OmitProcLocalType;
  1186. begin
  1187. StartProgram(false);
  1188. Add('function DoIt: longint;');
  1189. Add('type');
  1190. Add(' TEnum = (red, green);');
  1191. Add(' TEnums = set of TEnum;');
  1192. Add('begin');
  1193. Add(' Result:=3;');
  1194. Add('end;');
  1195. Add('begin');
  1196. Add(' DoIt;');
  1197. ConvertProgram;
  1198. CheckSource('TestWPO_OmitProcLocalType',
  1199. LinesToStr([
  1200. 'this.DoIt = function () {',
  1201. ' var Result = 0;',
  1202. ' Result = 3;',
  1203. ' return Result;',
  1204. '};',
  1205. '']),
  1206. LinesToStr([
  1207. '$mod.DoIt();',
  1208. '']));
  1209. end;
  1210. procedure TTestOptimizations.TestWPO_OmitProcLocalProc;
  1211. begin
  1212. StartProgram(false);
  1213. Add('procedure DoIt;');
  1214. Add(' procedure SubProcA; begin end;');
  1215. Add(' procedure SubProcB; begin end;');
  1216. Add('begin');
  1217. Add(' SubProcB;');
  1218. Add('end;');
  1219. Add('begin');
  1220. Add(' DoIt;');
  1221. ConvertProgram;
  1222. CheckSource('TestWPO_OmitProcLocalProc',
  1223. LinesToStr([
  1224. 'this.DoIt = function () {',
  1225. ' function SubProcB() {',
  1226. ' };',
  1227. ' SubProcB();',
  1228. '};',
  1229. '']),
  1230. LinesToStr([
  1231. '$mod.DoIt();',
  1232. '']));
  1233. end;
  1234. procedure TTestOptimizations.TestWPO_OmitProcLocalForwardProc;
  1235. begin
  1236. StartProgram(false);
  1237. Add('procedure DoIt;');
  1238. Add(' procedure SubProcA; forward;');
  1239. Add(' procedure SubProcB; forward;');
  1240. Add(' procedure SubProcA; begin end;');
  1241. Add(' procedure SubProcB; begin end;');
  1242. Add('begin');
  1243. Add(' SubProcB;');
  1244. Add('end;');
  1245. Add('begin');
  1246. Add(' DoIt;');
  1247. ConvertProgram;
  1248. CheckSource('TestWPO_OmitProcLocalForwardProc',
  1249. LinesToStr([
  1250. 'this.DoIt = function () {',
  1251. ' function SubProcB() {',
  1252. ' };',
  1253. ' SubProcB();',
  1254. '};',
  1255. '']),
  1256. LinesToStr([
  1257. '$mod.DoIt();',
  1258. '']));
  1259. end;
  1260. procedure TTestOptimizations.TestWPO_OmitRecordMember;
  1261. begin
  1262. StartProgram(false);
  1263. Add('type');
  1264. Add(' TRec = record');
  1265. Add(' a: longint;');
  1266. Add(' b: longint;');
  1267. Add(' end;');
  1268. Add('var r: TRec;');
  1269. Add('begin');
  1270. Add(' r.a:=3;');
  1271. ConvertProgram;
  1272. CheckSource('TestWPO_OmitRecordMember',
  1273. LinesToStr([
  1274. 'rtl.recNewT(this, "TRec", function () {',
  1275. ' this.a = 0;',
  1276. ' this.$eq = function (b) {',
  1277. ' return this.a === b.a;',
  1278. ' };',
  1279. ' this.$assign = function (s) {',
  1280. ' this.a = s.a;',
  1281. ' return this;',
  1282. ' };',
  1283. '});',
  1284. 'this.r = this.TRec.$new();',
  1285. '']),
  1286. LinesToStr([
  1287. '$mod.r.a = 3;',
  1288. '']));
  1289. end;
  1290. procedure TTestOptimizations.TestWPO_OmitNotUsedTObject;
  1291. begin
  1292. StartProgram(false);
  1293. Add('type');
  1294. Add(' TObject = class end;');
  1295. Add('var o: TObject;');
  1296. Add('begin');
  1297. ConvertProgram;
  1298. CheckSource('TestWPO_OmitNotUsedTObject',
  1299. LinesToStr([
  1300. '']),
  1301. LinesToStr([
  1302. '']));
  1303. end;
  1304. procedure TTestOptimizations.TestWPO_TObject;
  1305. begin
  1306. StartProgram(false);
  1307. Add('type');
  1308. Add(' TObject = class');
  1309. Add(' procedure AfterConstruction; virtual;');
  1310. Add(' procedure BeforeDestruction; virtual;');
  1311. Add(' end;');
  1312. Add('procedure TObject.AfterConstruction; begin end;');
  1313. Add('procedure TObject.BeforeDestruction; begin end;');
  1314. Add('var o: TObject;');
  1315. Add('begin');
  1316. Add(' o:=nil;');
  1317. ConvertProgram;
  1318. CheckSource('TestWPO_TObject',
  1319. LinesToStr([
  1320. 'rtl.createClass(this, "TObject", null, function () {',
  1321. ' this.$init = function () {',
  1322. ' };',
  1323. ' this.$final = function () {',
  1324. ' };',
  1325. ' this.AfterConstruction = function () {',
  1326. ' };',
  1327. ' this.BeforeDestruction = function () {',
  1328. ' };',
  1329. '});',
  1330. 'this.o = null;',
  1331. '']),
  1332. LinesToStr([
  1333. '$mod.o = null;']));
  1334. end;
  1335. procedure TTestOptimizations.TestWPO_Class_Property;
  1336. begin
  1337. StartProgram(false);
  1338. Add([
  1339. 'type',
  1340. ' TObject = class',
  1341. ' private',
  1342. ' const CA = 3;',
  1343. ' private',
  1344. ' FA: longint;',
  1345. ' function GetA: longint;',
  1346. ' procedure SetA(Value: longint);',
  1347. ' function IsStoredA: boolean;',
  1348. ' property A: longint read GetA write SetA stored IsStoredA default CA;',
  1349. ' end;',
  1350. 'function tobject.geta: longint; begin end;',
  1351. 'procedure tobject.seta(value: longint); begin end;',
  1352. 'function tobject.isstoreda: boolean; begin end;',
  1353. 'var o: TObject;',
  1354. 'begin',
  1355. ' o.A:=o.A;']);
  1356. ConvertProgram;
  1357. CheckSource('TestWPO_Class_TObject',
  1358. LinesToStr([
  1359. 'rtl.createClass(this, "TObject", null, function () {',
  1360. ' this.$init = function () {',
  1361. ' };',
  1362. ' this.$final = function () {',
  1363. ' };',
  1364. ' this.GetA = function () {',
  1365. ' var Result = 0;',
  1366. ' return Result;',
  1367. ' };',
  1368. ' this.SetA = function (Value) {',
  1369. ' };',
  1370. '});',
  1371. 'this.o = null;',
  1372. '']),
  1373. LinesToStr([
  1374. '$mod.o.SetA($mod.o.GetA());']));
  1375. end;
  1376. procedure TTestOptimizations.TestWPO_Class_OmitField;
  1377. begin
  1378. StartProgram(false);
  1379. Add('type');
  1380. Add(' TObject = class');
  1381. Add(' a: longint;');
  1382. Add(' b: longint;');
  1383. Add(' end;');
  1384. Add('var o: TObject;');
  1385. Add('begin');
  1386. Add(' o.a:=3;');
  1387. ConvertProgram;
  1388. CheckSource('TestWPO_OmitClassField',
  1389. LinesToStr([
  1390. 'rtl.createClass(this, "TObject", null, function () {',
  1391. ' this.$init = function () {',
  1392. ' this.a = 0;',
  1393. ' };',
  1394. ' this.$final = function () {',
  1395. ' };',
  1396. '});',
  1397. 'this.o = null;',
  1398. '']),
  1399. LinesToStr([
  1400. '$mod.o.a = 3;']));
  1401. end;
  1402. procedure TTestOptimizations.TestWPO_Class_OmitMethod;
  1403. begin
  1404. StartProgram(false);
  1405. Add('type');
  1406. Add(' TObject = class');
  1407. Add(' procedure ProcA;');
  1408. Add(' procedure ProcB;');
  1409. Add(' end;');
  1410. Add('procedure TObject.ProcA; begin end;');
  1411. Add('procedure TObject.ProcB; begin end;');
  1412. Add('var o: TObject;');
  1413. Add('begin');
  1414. Add(' o.ProcB;');
  1415. ConvertProgram;
  1416. CheckSource('TestWPO_OmitClassMethod',
  1417. LinesToStr([
  1418. 'rtl.createClass(this, "TObject", null, function () {',
  1419. ' this.$init = function () {',
  1420. ' };',
  1421. ' this.$final = function () {',
  1422. ' };',
  1423. ' this.ProcB = function () {',
  1424. ' };',
  1425. '});',
  1426. 'this.o = null;',
  1427. '']),
  1428. LinesToStr([
  1429. '$mod.o.ProcB();']));
  1430. end;
  1431. procedure TTestOptimizations.TestWPO_Class_OmitClassMethod;
  1432. begin
  1433. StartProgram(false);
  1434. Add('type');
  1435. Add(' TObject = class');
  1436. Add(' class procedure ProcA;');
  1437. Add(' class procedure ProcB;');
  1438. Add(' end;');
  1439. Add('class procedure TObject.ProcA; begin end;');
  1440. Add('class procedure TObject.ProcB; begin end;');
  1441. Add('var o: TObject;');
  1442. Add('begin');
  1443. Add(' o.ProcB;');
  1444. ConvertProgram;
  1445. CheckSource('TestWPO_OmitClassMethod',
  1446. LinesToStr([
  1447. 'rtl.createClass(this, "TObject", null, function () {',
  1448. ' this.$init = function () {',
  1449. ' };',
  1450. ' this.$final = function () {',
  1451. ' };',
  1452. ' this.ProcB = function () {',
  1453. ' };',
  1454. '});',
  1455. 'this.o = null;',
  1456. '']),
  1457. LinesToStr([
  1458. '$mod.o.$class.ProcB();']));
  1459. end;
  1460. procedure TTestOptimizations.TestWPO_Class_OmitPropertyGetter1;
  1461. begin
  1462. StartProgram(false);
  1463. Add('type');
  1464. Add(' TObject = class');
  1465. Add(' FFoo: boolean;');
  1466. Add(' function GetFoo: boolean;');
  1467. Add(' property Foo: boolean read FFoo;');
  1468. Add(' property Foo2: boolean read GetFoo;');
  1469. Add(' FBar: boolean;');
  1470. Add(' function GetBar: boolean;');
  1471. Add(' property Bar: boolean read FBar;');
  1472. Add(' property Bar2: boolean read GetBar;');
  1473. Add(' end;');
  1474. Add('function TObject.GetFoo: boolean; begin Result:=FFoo; end;');
  1475. Add('function TObject.GetBar: boolean; begin Result:=FBar; end;');
  1476. Add('var o: TObject;');
  1477. Add('begin');
  1478. Add(' if o.Foo then;');
  1479. ConvertProgram;
  1480. CheckSource('TestWPO_OmitClassPropertyGetter1',
  1481. LinesToStr([
  1482. 'rtl.createClass(this, "TObject", null, function () {',
  1483. ' this.$init = function () {',
  1484. ' this.FFoo = false;',
  1485. ' };',
  1486. ' this.$final = function () {',
  1487. ' };',
  1488. '});',
  1489. 'this.o = null;',
  1490. '']),
  1491. LinesToStr([
  1492. 'if ($mod.o.FFoo);',
  1493. '']));
  1494. end;
  1495. procedure TTestOptimizations.TestWPO_Class_OmitPropertyGetter2;
  1496. begin
  1497. StartProgram(false);
  1498. Add('type');
  1499. Add(' TObject = class');
  1500. Add(' FFoo: boolean;');
  1501. Add(' function GetFoo: boolean;');
  1502. Add(' property Foo: boolean read FFoo;');
  1503. Add(' property Foo2: boolean read GetFoo;');
  1504. Add(' end;');
  1505. Add('function TObject.GetFoo: boolean; begin Result:=FFoo; end;');
  1506. Add('var o: TObject;');
  1507. Add('begin');
  1508. Add(' if o.Foo2 then;');
  1509. ConvertProgram;
  1510. CheckSource('TestWPO_OmitClassPropertyGetter2',
  1511. LinesToStr([
  1512. 'rtl.createClass(this, "TObject", null, function () {',
  1513. ' this.$init = function () {',
  1514. ' this.FFoo = false;',
  1515. ' };',
  1516. ' this.$final = function () {',
  1517. ' };',
  1518. ' this.GetFoo = function () {',
  1519. ' var Result = false;',
  1520. ' Result = this.FFoo;',
  1521. ' return Result;',
  1522. ' };',
  1523. '});',
  1524. 'this.o = null;',
  1525. '']),
  1526. LinesToStr([
  1527. 'if ($mod.o.GetFoo()) ;',
  1528. '']));
  1529. end;
  1530. procedure TTestOptimizations.TestWPO_Class_OmitPropertySetter1;
  1531. begin
  1532. StartProgram(false);
  1533. Add('type');
  1534. Add(' TObject = class');
  1535. Add(' FFoo: boolean;');
  1536. Add(' procedure SetFoo(Value: boolean);');
  1537. Add(' property Foo: boolean write FFoo;');
  1538. Add(' property Foo2: boolean write SetFoo;');
  1539. Add(' FBar: boolean;');
  1540. Add(' procedure SetBar(Value: boolean);');
  1541. Add(' property Bar: boolean write FBar;');
  1542. Add(' property Bar2: boolean write SetBar;');
  1543. Add(' end;');
  1544. Add('procedure TObject.SetFoo(Value: boolean); begin FFoo:=Value; end;');
  1545. Add('procedure TObject.SetBar(Value: boolean); begin FBar:=Value; end;');
  1546. Add('var o: TObject;');
  1547. Add('begin');
  1548. Add(' o.Foo:=true;');
  1549. ConvertProgram;
  1550. CheckSource('TestWPO_OmitClassPropertySetter1',
  1551. LinesToStr([
  1552. 'rtl.createClass(this, "TObject", null, function () {',
  1553. ' this.$init = function () {',
  1554. ' this.FFoo = false;',
  1555. ' };',
  1556. ' this.$final = function () {',
  1557. ' };',
  1558. '});',
  1559. 'this.o = null;',
  1560. '']),
  1561. LinesToStr([
  1562. '$mod.o.FFoo = true;',
  1563. '']));
  1564. end;
  1565. procedure TTestOptimizations.TestWPO_Class_OmitPropertySetter2;
  1566. begin
  1567. StartProgram(false);
  1568. Add('type');
  1569. Add(' TObject = class');
  1570. Add(' FFoo: boolean;');
  1571. Add(' procedure SetFoo(Value: boolean);');
  1572. Add(' property Foo: boolean write FFoo;');
  1573. Add(' property Foo2: boolean write SetFoo;');
  1574. Add(' end;');
  1575. Add('procedure TObject.SetFoo(Value: boolean); begin FFoo:=Value; end;');
  1576. Add('var o: TObject;');
  1577. Add('begin');
  1578. Add(' o.Foo2:=true;');
  1579. ConvertProgram;
  1580. CheckSource('TestWPO_OmitClassPropertySetter2',
  1581. LinesToStr([
  1582. 'rtl.createClass(this, "TObject", null, function () {',
  1583. ' this.$init = function () {',
  1584. ' this.FFoo = false;',
  1585. ' };',
  1586. ' this.$final = function () {',
  1587. ' };',
  1588. ' this.SetFoo = function (Value) {',
  1589. ' this.FFoo = Value;',
  1590. ' };',
  1591. '});',
  1592. 'this.o = null;',
  1593. '']),
  1594. LinesToStr([
  1595. '$mod.o.SetFoo(true);',
  1596. '']));
  1597. end;
  1598. procedure TTestOptimizations.TestWPO_Class_KeepNewInstance;
  1599. begin
  1600. StartProgram(false);
  1601. Add([
  1602. '{$modeswitch externalclass}',
  1603. 'type',
  1604. ' TExt = class external name ''Object''',
  1605. ' end;',
  1606. ' TBird = class(TExt)',
  1607. ' protected',
  1608. ' class function NewInstance(fnname: string; const paramarray): TBird; virtual;',
  1609. ' public',
  1610. ' constructor Create;',
  1611. ' end;',
  1612. 'class function TBird.NewInstance(fnname: string; const paramarray): TBird;',
  1613. 'begin',
  1614. ' asm',
  1615. ' Result = Object.create();',
  1616. ' end;',
  1617. 'end;',
  1618. 'constructor TBird.Create;',
  1619. 'begin',
  1620. ' inherited;',
  1621. 'end;',
  1622. 'begin',
  1623. ' TBird.Create;',
  1624. '']);
  1625. ConvertProgram;
  1626. CheckSource('TestWPO_Class_KeepNewInstance',
  1627. LinesToStr([
  1628. 'rtl.createClassExt(this, "TBird", Object, "NewInstance", function () {',
  1629. ' this.$init = function () {',
  1630. ' };',
  1631. ' this.$final = function () {',
  1632. ' };',
  1633. ' this.NewInstance = function (fnname, paramarray) {',
  1634. ' var Result = null;',
  1635. ' Result = Object.create();',
  1636. ' return Result;',
  1637. ' };',
  1638. ' this.Create = function () {',
  1639. ' return this;',
  1640. ' };',
  1641. '});',
  1642. '']),
  1643. LinesToStr([
  1644. '$mod.TBird.$create("Create");',
  1645. '']));
  1646. end;
  1647. procedure TTestOptimizations.TestWPO_CallInherited;
  1648. begin
  1649. StartProgram(false);
  1650. Add('type');
  1651. Add(' TObject = class');
  1652. Add(' procedure DoA;');
  1653. Add(' procedure DoB;');
  1654. Add(' end;');
  1655. Add(' TMobile = class');
  1656. Add(' procedure DoA;');
  1657. Add(' procedure DoC;');
  1658. Add(' end;');
  1659. Add('procedure TObject.DoA; begin end;');
  1660. Add('procedure TObject.DoB; begin end;');
  1661. Add('procedure TMobile.DoA;');
  1662. Add('begin');
  1663. Add(' inherited;');
  1664. Add('end;');
  1665. Add('procedure TMobile.DoC;');
  1666. Add('begin');
  1667. Add(' inherited DoB;');
  1668. Add('end;');
  1669. Add('var o: TMobile;');
  1670. Add('begin');
  1671. Add(' o.DoA;');
  1672. Add(' o.DoC;');
  1673. ConvertProgram;
  1674. CheckSource('TestWPO_CallInherited',
  1675. LinesToStr([
  1676. 'rtl.createClass(this, "TObject", null, function () {',
  1677. ' this.$init = function () {',
  1678. ' };',
  1679. ' this.$final = function () {',
  1680. ' };',
  1681. ' this.DoA = function () {',
  1682. ' };',
  1683. ' this.DoB = function () {',
  1684. ' };',
  1685. '});',
  1686. ' rtl.createClass(this, "TMobile", this.TObject, function () {',
  1687. ' this.DoA$1 = function () {',
  1688. ' $mod.TObject.DoA.call(this);',
  1689. ' };',
  1690. ' this.DoC = function () {',
  1691. ' $mod.TObject.DoB.call(this);',
  1692. ' };',
  1693. '});',
  1694. 'this.o = null;',
  1695. '']),
  1696. LinesToStr([
  1697. '$mod.o.DoA$1();',
  1698. '$mod.o.DoC();',
  1699. '']));
  1700. end;
  1701. procedure TTestOptimizations.TestWPO_UseUnit;
  1702. var
  1703. ActualSrc, ExpectedSrc: String;
  1704. begin
  1705. AddModuleWithIntfImplSrc('unit1.pp',
  1706. LinesToStr([
  1707. 'var i: longint;',
  1708. 'procedure DoIt;',
  1709. '']),
  1710. LinesToStr([
  1711. 'procedure DoIt; begin end;']));
  1712. AddModuleWithIntfImplSrc('unit2.pp',
  1713. LinesToStr([
  1714. 'var j: longint;',
  1715. 'procedure DoMore;',
  1716. '']),
  1717. LinesToStr([
  1718. 'procedure DoMore; begin end;']));
  1719. StartProgram(true);
  1720. Add('uses unit2;');
  1721. Add('begin');
  1722. Add(' j:=3;');
  1723. ConvertProgram;
  1724. ActualSrc:=ConvertJSModuleToString(JSModule);
  1725. ExpectedSrc:=LinesToStr([
  1726. 'rtl.module("program", ["system", "unit2"], function () {',
  1727. ' var $mod = this;',
  1728. ' $mod.$main = function () {',
  1729. ' pas.unit2.j = 3;',
  1730. ' };',
  1731. '});',
  1732. '']);
  1733. CheckDiff('TestWPO_UseUnit',ExpectedSrc,ActualSrc);
  1734. end;
  1735. procedure TTestOptimizations.TestWPO_ArrayOfConst_Use;
  1736. begin
  1737. StartProgram(true,[supTVarRec]);
  1738. Add([
  1739. 'procedure Say(arr: array of const);',
  1740. 'begin',
  1741. 'end;',
  1742. 'begin',
  1743. ' Say([true]);']);
  1744. ConvertProgram;
  1745. CheckUnit('system.pp',
  1746. LinesToStr([
  1747. 'rtl.module("system", [], function () {',
  1748. ' var $mod = this;',
  1749. ' rtl.recNewT(this, "TVarRec", function () {',
  1750. ' this.VType = 0;',
  1751. ' this.VJSValue = undefined;',
  1752. ' this.$eq = function (b) {',
  1753. ' return (this.VType === b.VType) && (this.VJSValue === b.VJSValue);',
  1754. ' };',
  1755. ' this.$assign = function (s) {',
  1756. ' this.VType = s.VType;',
  1757. ' this.VJSValue = s.VJSValue;',
  1758. ' return this;',
  1759. ' };',
  1760. ' });',
  1761. ' this.VarRecs = function () {',
  1762. ' var Result = [];',
  1763. ' var v = null;',
  1764. ' v.VType = 1;',
  1765. ' v.VJSValue = 2;',
  1766. ' return Result;',
  1767. ' };',
  1768. '});',
  1769. '']));
  1770. end;
  1771. procedure TTestOptimizations.TestWPO_ArrayOfConst_NotUsed;
  1772. begin
  1773. StartProgram(true,[supTVarRec]);
  1774. Add([
  1775. 'procedure Say(arr: array of const);',
  1776. 'begin',
  1777. 'end;',
  1778. 'begin']);
  1779. ConvertProgram;
  1780. CheckUnit('system.pp',
  1781. LinesToStr([
  1782. 'rtl.module("system", [], function () {',
  1783. ' var $mod = this;',
  1784. '});',
  1785. '']));
  1786. end;
  1787. procedure TTestOptimizations.TestWPO_Class_PropertyInOtherUnit;
  1788. begin
  1789. AddModuleWithIntfImplSrc('unit1.pp',
  1790. LinesToStr([
  1791. 'type',
  1792. ' TObject = class',
  1793. ' private',
  1794. ' const CA = 3;',
  1795. ' private',
  1796. ' FOther: string;',
  1797. ' FA: longint;',
  1798. ' function GetA: longint;',
  1799. ' procedure SetA(Value: longint);',
  1800. ' function IsStoredA: boolean;',
  1801. ' public',
  1802. ' property A: longint read GetA write SetA stored IsStoredA default CA;',
  1803. ' end;',
  1804. '']),
  1805. LinesToStr([
  1806. 'function TObject.geta: longint;',
  1807. 'begin',
  1808. 'end;',
  1809. 'procedure TObject.seta(value: longint);',
  1810. 'begin',
  1811. ' FA:=Value;',
  1812. 'end;',
  1813. 'function TObject.isstoreda: boolean; begin end;',
  1814. '']));
  1815. StartProgram(true);
  1816. Add([
  1817. 'uses unit1;',
  1818. 'var o: TObject;',
  1819. 'begin',
  1820. ' o.A:=o.A;']);
  1821. ConvertProgram;
  1822. CheckUnit('unit1.pp',
  1823. LinesToStr([
  1824. 'rtl.module("unit1", ["system"], function () {',
  1825. ' var $mod = this;',
  1826. ' rtl.createClass(this, "TObject", null, function () {',
  1827. ' this.$init = function () {',
  1828. ' this.FA = 0;',
  1829. ' };',
  1830. ' this.$final = function () {',
  1831. ' };',
  1832. ' this.GetA = function () {',
  1833. ' var Result = 0;',
  1834. ' return Result;',
  1835. ' };',
  1836. ' this.SetA = function (Value) {',
  1837. ' this.FA = Value;',
  1838. ' };',
  1839. ' });',
  1840. '});',
  1841. '']));
  1842. end;
  1843. procedure TTestOptimizations.TestWPO_ProgramPublicDeclaration;
  1844. var
  1845. ActualSrc, ExpectedSrc: String;
  1846. begin
  1847. StartProgram(true);
  1848. Add('var');
  1849. Add(' vPublic: longint; public;');
  1850. Add(' vPrivate: longint;');
  1851. Add('procedure DoPublic; public; begin end;');
  1852. Add('procedure DoPrivate; begin end;');
  1853. Add('begin');
  1854. ConvertProgram;
  1855. ActualSrc:=ConvertJSModuleToString(JSModule);
  1856. ExpectedSrc:=LinesToStr([
  1857. 'rtl.module("program", ["system"], function () {',
  1858. ' var $mod = this;',
  1859. ' this.vPublic = 0;',
  1860. ' this.DoPublic =function(){',
  1861. ' };',
  1862. ' $mod.$main = function () {',
  1863. ' };',
  1864. '});',
  1865. '']);
  1866. CheckDiff('TestWPO_ProgramPublicDeclaration',ExpectedSrc,ActualSrc);
  1867. end;
  1868. procedure TTestOptimizations.TestWPO_ConstructorDefaultValueConst;
  1869. var
  1870. ActualSrc, ExpectedSrc: String;
  1871. begin
  1872. WithTypeInfo:=true;
  1873. StartProgram(true);
  1874. Add([
  1875. 'const gcBlack = 0;',
  1876. 'type',
  1877. ' TColor = longint;',
  1878. ' TObject = class',
  1879. ' private',
  1880. ' FColor: TColor;',
  1881. ' public',
  1882. ' property Color: TColor read FColor write FColor;',
  1883. ' constructor Create(const AColor: TColor = gcBlack);',
  1884. ' end;',
  1885. 'constructor TObject.Create(const AColor: TColor = gcBlack);',
  1886. 'begin',
  1887. ' FColor := AColor;',
  1888. 'end;',
  1889. 'var T: TObject;',
  1890. 'begin',
  1891. ' T := TObject.Create;',
  1892. '']);
  1893. ConvertProgram;
  1894. ActualSrc:=ConvertJSModuleToString(JSModule);
  1895. ExpectedSrc:=LinesToStr([
  1896. 'rtl.module("program",["system"],function () {',
  1897. ' var $mod = this;',
  1898. ' this.gcBlack = 0;',
  1899. ' rtl.createClass(this,"TObject",null,function () {',
  1900. ' this.$init = function () {',
  1901. ' this.FColor = 0;',
  1902. ' };',
  1903. ' this.$final = function () {',
  1904. ' };',
  1905. ' this.Create = function (AColor) {',
  1906. ' this.FColor = AColor;',
  1907. ' return this;',
  1908. ' };',
  1909. ' });',
  1910. ' this.T = null;',
  1911. ' $mod.$main = function () {',
  1912. ' $mod.T = $mod.TObject.$create("Create",[0]);',
  1913. ' };',
  1914. '});',
  1915. '']);
  1916. CheckDiff('TestWPO_ConstructorDefaultValueConst',ExpectedSrc,ActualSrc);
  1917. end;
  1918. procedure TTestOptimizations.TestWPO_RTTI_PublishedField;
  1919. var
  1920. ActualSrc, ExpectedSrc: String;
  1921. begin
  1922. WithTypeInfo:=true;
  1923. StartProgram(true);
  1924. Add('type');
  1925. Add(' TArrA = array of char;');
  1926. Add(' TArrB = array of string;');
  1927. Add(' TObject = class');
  1928. Add(' public');
  1929. Add(' PublicA: TArrA;');
  1930. Add(' published');
  1931. Add(' PublishedB: TArrB;');
  1932. Add(' end;');
  1933. Add('var');
  1934. Add(' C: TObject;');
  1935. Add('begin');
  1936. Add(' C.PublicA:=nil;');
  1937. ConvertProgram;
  1938. ActualSrc:=ConvertJSModuleToString(JSModule);
  1939. ExpectedSrc:=LinesToStr([
  1940. 'rtl.module("program", ["system"], function () {',
  1941. ' var $mod = this;',
  1942. ' this.$rtti.$DynArray("TArrB", {',
  1943. ' eltype: rtl.string',
  1944. ' });',
  1945. ' rtl.createClass(this, "TObject", null, function () {',
  1946. ' this.$init = function () {',
  1947. ' this.PublicA = [];',
  1948. ' this.PublishedB = [];',
  1949. ' };',
  1950. ' this.$final = function () {',
  1951. ' this.PublicA = undefined;',
  1952. ' this.PublishedB = undefined;',
  1953. ' };',
  1954. ' var $r = this.$rtti;',
  1955. ' $r.addField("PublishedB", $mod.$rtti["TArrB"]);',
  1956. ' });',
  1957. ' this.C = null;',
  1958. ' $mod.$main = function () {',
  1959. ' $mod.C.PublicA = [];',
  1960. ' };',
  1961. '});',
  1962. '']);
  1963. CheckDiff('TestWPO_RTTI_PublishedField',ExpectedSrc,ActualSrc);
  1964. end;
  1965. procedure TTestOptimizations.TestWPO_RTTI_TypeInfo;
  1966. var
  1967. ActualSrc, ExpectedSrc: String;
  1968. begin
  1969. WithTypeInfo:=true;
  1970. StartProgram(true);
  1971. Add('type');
  1972. Add(' TArrA = array of char;');
  1973. Add(' TArrB = array of string;');
  1974. Add('var');
  1975. Add(' A: TArrA;');
  1976. Add(' B: TArrB;');
  1977. Add(' p: pointer;');
  1978. Add('begin');
  1979. Add(' A:=nil;');
  1980. Add(' p:=typeinfo(B);');
  1981. ConvertProgram;
  1982. ActualSrc:=ConvertJSModuleToString(JSModule);
  1983. ExpectedSrc:=LinesToStr([
  1984. 'rtl.module("program", ["system"], function () {',
  1985. ' var $mod = this;',
  1986. ' this.$rtti.$DynArray("TArrB", {',
  1987. ' eltype: rtl.string',
  1988. ' });',
  1989. ' this.A = [];',
  1990. ' this.B = [];',
  1991. ' this.p = null;',
  1992. ' $mod.$main = function () {',
  1993. ' $mod.A = [];',
  1994. ' $mod.p = $mod.$rtti["TArrB"];',
  1995. ' };',
  1996. '});',
  1997. '']);
  1998. CheckDiff('TestWPO_RTTI_TypeInfo',ExpectedSrc,ActualSrc);
  1999. end;
  2000. Initialization
  2001. RegisterTests([TTestOptimizations]);
  2002. end.