rautils.pas 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Carl Eric Codere and Peter Vreman
  4. This unit implements some support routines for assembler parsing
  5. independent of the processor
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2 of the License, or
  9. (at your option) any later version.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with this program; if not, write to the Free Software
  16. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. **********************************************************************}
  18. Unit RAUtils;
  19. {$i fpcdefs.inc}
  20. Interface
  21. Uses
  22. cutils,cclasses,
  23. globtype,aasmbase,aasmtai,cpubase,cpuinfo,cgbase,
  24. symconst,symbase,symtype,symdef,symsym;
  25. Const
  26. RPNMax = 10; { I think you only need 4, but just to be safe }
  27. OpMax = 25;
  28. {---------------------------------------------------------------------
  29. Local Label Management
  30. ---------------------------------------------------------------------}
  31. Type
  32. { Each local label has this structure associated with it }
  33. TLocalLabel = class(TNamedIndexItem)
  34. Emitted : boolean;
  35. constructor Create(const n:string);
  36. function Gettasmlabel:tasmlabel;
  37. private
  38. lab : tasmlabel;
  39. end;
  40. TLocalLabelList = class(TDictionary)
  41. procedure CheckEmitted;
  42. end;
  43. var
  44. LocalLabelList : TLocalLabelList;
  45. function CreateLocalLabel(const s: string; var hl: tasmlabel; emit:boolean):boolean;
  46. Function SearchLabel(const s: string; var hl: tasmlabel;emit:boolean): boolean;
  47. {---------------------------------------------------------------------
  48. Instruction management
  49. ---------------------------------------------------------------------}
  50. type
  51. TOprType=(OPR_NONE,OPR_CONSTANT,OPR_SYMBOL,OPR_LOCAL,
  52. OPR_REFERENCE,OPR_REGISTER,OPR_REGLIST);
  53. TOprRec = record
  54. case typ:TOprType of
  55. OPR_NONE : ();
  56. OPR_CONSTANT : (val:longint);
  57. OPR_SYMBOL : (symbol:tasmsymbol;symofs:longint);
  58. OPR_REFERENCE : (ref:treference);
  59. OPR_LOCAL : (localsym:tvarsym;localsymofs:longint;localindexreg:tregister;localscale:byte;localgetoffset:boolean);
  60. OPR_REGISTER : (reg:tregister);
  61. {$ifdef m68k}
  62. OPR_REGLIST : (reglist:Tsupregset);
  63. {$else not m68k}
  64. OPR_REGLIST : ();
  65. {$endif m68k}
  66. end;
  67. TOperand = class
  68. hastype, { if the operand has typecasted variable }
  69. hasvar : boolean; { if the operand is loaded with a variable }
  70. size : TCGSize;
  71. opr : TOprRec;
  72. constructor create;
  73. destructor destroy;override;
  74. Procedure BuildOperand;virtual;
  75. Procedure SetSize(_size:longint;force:boolean);virtual;
  76. Procedure SetCorrectSize(opcode:tasmop);virtual;
  77. Function SetupResult:boolean;virtual;
  78. Function SetupSelf:boolean;
  79. Function SetupOldEBP:boolean;
  80. Function SetupVar(const s:string;GetOffset : boolean): Boolean;
  81. Function SetupDirectVar(const hs:string): Boolean;
  82. Procedure InitRef;
  83. end;
  84. TInstruction = class
  85. opcode : tasmop;
  86. condition : tasmcond;
  87. ops : byte;
  88. labeled : boolean;
  89. operands : array[1..max_operands] of toperand;
  90. constructor create;
  91. destructor destroy;override;
  92. Procedure InitOperands;virtual;
  93. Procedure BuildOpcode;virtual;
  94. procedure ConcatInstruction(p:TAAsmoutput);virtual;
  95. Procedure Swapoperands;
  96. end;
  97. {---------------------------------------------------------------------}
  98. { Expression parser types }
  99. {---------------------------------------------------------------------}
  100. TExprOperator = record
  101. ch: char; { operator }
  102. is_prefix: boolean; { was it a prefix, possible prefixes are +,- and not }
  103. end;
  104. String15 = String[15];
  105. {**********************************************************************}
  106. { The following operators are supported: }
  107. { '+' : addition }
  108. { '-' : subtraction }
  109. { '*' : multiplication }
  110. { '/' : modulo division }
  111. { '^' : exclusive or }
  112. { '<' : shift left }
  113. { '>' : shift right }
  114. { '&' : bitwise and }
  115. { '|' : bitwise or }
  116. { '~' : bitwise complement }
  117. { '%' : modulo division }
  118. { nnn: longint numbers }
  119. { ( and ) parenthesis }
  120. {**********************************************************************}
  121. TExprParse = class
  122. public
  123. Constructor create;
  124. Destructor Destroy;override;
  125. Function Evaluate(Expr: String): longint;
  126. Function Priority(_Operator: Char): longint;
  127. private
  128. RPNStack : Array[1..RPNMax] of longint; { Stack For RPN calculator }
  129. RPNTop : longint;
  130. OpStack : Array[1..OpMax] of TExprOperator; { Operator stack For conversion }
  131. OpTop : longint;
  132. Procedure RPNPush(Num: Longint);
  133. Function RPNPop: Longint;
  134. Procedure RPNCalc(token: String15; prefix: boolean);
  135. Procedure OpPush(_Operator: char; prefix: boolean);
  136. { In reality returns TExprOperaotr }
  137. Procedure OpPop(var _Operator:TExprOperator);
  138. end;
  139. { Evaluate an expression string to a longint }
  140. Function CalculateExpression(const expression: string): longint;
  141. {---------------------------------------------------------------------}
  142. { String routines }
  143. {---------------------------------------------------------------------}
  144. Function ValDecimal(const S:String):longint;
  145. Function ValOctal(const S:String):longint;
  146. Function ValBinary(const S:String):longint;
  147. Function ValHexaDecimal(const S:String):longint;
  148. Function PadZero(Var s: String; n: byte): Boolean;
  149. Function EscapeToPascal(const s:string): string;
  150. {---------------------------------------------------------------------
  151. Symbol helper routines
  152. ---------------------------------------------------------------------}
  153. procedure AsmSearchSym(const s:string;var srsym:tsym;var srsymtable:tsymtable);
  154. Function GetRecordOffsetSize(s:string;Var Offset: longint;var Size:longint):boolean;
  155. Function SearchType(const hs:string;var size:longint): Boolean;
  156. Function SearchRecordType(const s:string): boolean;
  157. Function SearchIConstant(const s:string; var l:longint): boolean;
  158. {---------------------------------------------------------------------
  159. Instruction generation routines
  160. ---------------------------------------------------------------------}
  161. Procedure ConcatPasString(p : TAAsmoutput;s:string);
  162. Procedure ConcatDirect(p : TAAsmoutput;s:string);
  163. Procedure ConcatLabel(p: TAAsmoutput;var l : tasmlabel);
  164. Procedure ConcatConstant(p : TAAsmoutput;value: longint; maxvalue: longint);
  165. Procedure ConcatConstSymbol(p : TAAsmoutput;const sym:string;l:longint);
  166. Procedure ConcatRealConstant(p : TAAsmoutput;value: bestreal; real_typ : tfloattype);
  167. Procedure ConcatString(p : TAAsmoutput;s:string);
  168. procedure ConcatAlign(p:TAAsmoutput;l:longint);
  169. Procedure ConcatPublic(p:TAAsmoutput;const s : string);
  170. Procedure ConcatLocal(p:TAAsmoutput;const s : string);
  171. Procedure ConcatGlobalBss(const s : string;size : longint);
  172. Procedure ConcatLocalBss(const s : string;size : longint);
  173. Implementation
  174. uses
  175. {$ifdef delphi}
  176. sysutils,
  177. {$else}
  178. strings,
  179. {$endif}
  180. defutil,systems,verbose,globals,
  181. symtable,paramgr,
  182. aasmcpu,
  183. procinfo;
  184. {*************************************************************************
  185. TExprParse
  186. *************************************************************************}
  187. Constructor TExprParse.create;
  188. Begin
  189. end;
  190. Procedure TExprParse.RPNPush(Num : longint);
  191. { Add an operand to the top of the RPN stack }
  192. begin
  193. if RPNTop < RPNMax then
  194. begin
  195. Inc(RPNTop);
  196. RPNStack[RPNTop]:=Num;
  197. end
  198. else
  199. Message(asmr_e_expr_illegal);
  200. end;
  201. Function TExprParse.RPNPop : longint;
  202. { Get the operand at the top of the RPN stack }
  203. begin
  204. if RPNTop > 0 then
  205. begin
  206. RPNPop:=RPNStack[RPNTop];
  207. Dec(RPNTop);
  208. end
  209. else
  210. Message(asmr_e_expr_illegal);
  211. end;
  212. Procedure TExprParse.RPNCalc(Token : String15; prefix:boolean); { RPN Calculator }
  213. Var
  214. Temp : longint;
  215. n1,n2 : longint;
  216. LocalError : Integer;
  217. begin
  218. { Handle operators }
  219. if (Length(Token) = 1) and (Token[1] in ['+', '-', '*', '/','&','|','%','^','~','<','>']) then
  220. Case Token[1] of
  221. '+' :
  222. Begin
  223. if not prefix then
  224. RPNPush(RPNPop + RPNPop);
  225. end;
  226. '-' :
  227. Begin
  228. if prefix then
  229. RPNPush(-(RPNPop))
  230. else
  231. begin
  232. n1:=RPNPop;
  233. n2:=RPNPop;
  234. RPNPush(n2 - n1);
  235. end;
  236. end;
  237. '*' : RPNPush(RPNPop * RPNPop);
  238. '&' :
  239. begin
  240. n1:=RPNPop;
  241. n2:=RPNPop;
  242. RPNPush(n2 and n1);
  243. end;
  244. '|' :
  245. begin
  246. n1:=RPNPop;
  247. n2:=RPNPop;
  248. RPNPush(n2 or n1);
  249. end;
  250. '~' : RPNPush(NOT RPNPop);
  251. '<' :
  252. begin
  253. n1:=RPNPop;
  254. n2:=RPNPop;
  255. RPNPush(n2 SHL n1);
  256. end;
  257. '>' :
  258. begin
  259. n1:=RPNPop;
  260. n2:=RPNPop;
  261. RPNPush(n2 SHR n1);
  262. end;
  263. '%' :
  264. begin
  265. Temp:=RPNPop;
  266. if Temp <> 0 then
  267. RPNPush(RPNPop mod Temp)
  268. else
  269. begin
  270. Message(asmr_e_expr_zero_divide);
  271. { push 1 for error recovery }
  272. RPNPush(1);
  273. end;
  274. end;
  275. '^' : RPNPush(RPNPop XOR RPNPop);
  276. '/' :
  277. begin
  278. Temp:=RPNPop;
  279. if Temp <> 0 then
  280. RPNPush(RPNPop div Temp)
  281. else
  282. begin
  283. Message(asmr_e_expr_zero_divide);
  284. { push 1 for error recovery }
  285. RPNPush(1);
  286. end;
  287. end;
  288. end
  289. else
  290. begin
  291. { Convert String to number and add to stack }
  292. Val(Token, Temp, LocalError);
  293. if LocalError = 0 then
  294. RPNPush(Temp)
  295. else
  296. begin
  297. Message(asmr_e_expr_illegal);
  298. { push 1 for error recovery }
  299. RPNPush(1);
  300. end;
  301. end;
  302. end;
  303. Procedure TExprParse.OpPush(_Operator : char;prefix: boolean);
  304. { Add an operator onto top of the stack }
  305. begin
  306. if OpTop < OpMax then
  307. begin
  308. Inc(OpTop);
  309. OpStack[OpTop].ch:=_Operator;
  310. OpStack[OpTop].is_prefix:=prefix;
  311. end
  312. else
  313. Message(asmr_e_expr_illegal);
  314. end;
  315. Procedure TExprParse.OpPop(var _Operator:TExprOperator);
  316. { Get operator at the top of the stack }
  317. begin
  318. if OpTop > 0 then
  319. begin
  320. _Operator:=OpStack[OpTop];
  321. Dec(OpTop);
  322. end
  323. else
  324. Message(asmr_e_expr_illegal);
  325. end;
  326. Function TExprParse.Priority(_Operator : Char) : longint;
  327. { Return priority of operator }
  328. { The greater the priority, the higher the precedence }
  329. begin
  330. Case _Operator OF
  331. '(' :
  332. Priority:=0;
  333. '+', '-' :
  334. Priority:=1;
  335. '*', '/','%','<','>' :
  336. Priority:=2;
  337. '|','&','^','~' :
  338. Priority:=0;
  339. else
  340. Message(asmr_e_expr_illegal);
  341. end;
  342. end;
  343. Function TExprParse.Evaluate(Expr : String):longint;
  344. Var
  345. I : LongInt;
  346. Token : String15;
  347. opr : TExprOperator;
  348. begin
  349. Evaluate:=0;
  350. { Reset stacks }
  351. OpTop :=0;
  352. RPNTop:=0;
  353. Token :='';
  354. { nothing to do ? }
  355. if Expr='' then
  356. exit;
  357. For I:=1 to Length(Expr) DO
  358. begin
  359. if Expr[I] in ['0'..'9'] then
  360. begin { Build multi-digit numbers }
  361. Token:=Token + Expr[I];
  362. if I = Length(Expr) then { Send last one to calculator }
  363. RPNCalc(Token,false);
  364. end
  365. else
  366. if Expr[I] in ['+', '-', '*', '/', '(', ')','^','&','|','%','~','<','>'] then
  367. begin
  368. if Token <> '' then
  369. begin { Send last built number to calc. }
  370. RPNCalc(Token,false);
  371. Token:='';
  372. end;
  373. Case Expr[I] OF
  374. '(' : OpPush('(',false);
  375. ')' : begin
  376. While OpStack[OpTop].ch <> '(' DO
  377. Begin
  378. OpPop(opr);
  379. RPNCalc(opr.ch,opr.is_prefix);
  380. end;
  381. OpPop(opr); { Pop off and ignore the '(' }
  382. end;
  383. '+','-','~' : Begin
  384. { workaround for -2147483648 }
  385. if (expr[I]='-') and (expr[i+1] in ['0'..'9']) then
  386. begin
  387. token:='-';
  388. expr[i]:='+';
  389. end;
  390. { if start of expression then surely a prefix }
  391. { or if previous char was also an operator }
  392. if (I = 1) or (not (Expr[I-1] in ['0'..'9','(',')'])) then
  393. OpPush(Expr[I],true)
  394. else
  395. Begin
  396. { Evaluate all higher priority operators }
  397. While (OpTop > 0) AND (Priority(Expr[I]) <= Priority(OpStack[OpTop].ch)) DO
  398. Begin
  399. OpPop(opr);
  400. RPNCalc(opr.ch,opr.is_prefix);
  401. end;
  402. OpPush(Expr[I],false);
  403. End;
  404. end;
  405. '*', '/',
  406. '^','|','&',
  407. '%','<','>' : begin
  408. While (OpTop > 0) and (Priority(Expr[I]) <= Priority(OpStack[OpTop].ch)) DO
  409. Begin
  410. OpPop(opr);
  411. RPNCalc(opr.ch,opr.is_prefix);
  412. end;
  413. OpPush(Expr[I],false);
  414. end;
  415. end; { Case }
  416. end
  417. else
  418. Message(asmr_e_expr_illegal); { Handle bad input error }
  419. end;
  420. { Pop off the remaining operators }
  421. While OpTop > 0 do
  422. Begin
  423. OpPop(opr);
  424. RPNCalc(opr.ch,opr.is_prefix);
  425. end;
  426. { The result is stored on the top of the stack }
  427. Evaluate:=RPNPop;
  428. end;
  429. Destructor TExprParse.Destroy;
  430. Begin
  431. end;
  432. Function CalculateExpression(const expression: string): longint;
  433. var
  434. expr: TExprParse;
  435. Begin
  436. expr:=TExprParse.create;
  437. CalculateExpression:=expr.Evaluate(expression);
  438. expr.Free;
  439. end;
  440. {*************************************************************************}
  441. { String conversions/utils }
  442. {*************************************************************************}
  443. Function EscapeToPascal(const s:string): string;
  444. { converts a C styled string - which contains escape }
  445. { characters to a pascal style string. }
  446. var
  447. i,len : longint;
  448. hs : string;
  449. temp : string;
  450. c : char;
  451. Begin
  452. hs:='';
  453. len:=0;
  454. i:=0;
  455. while (i<length(s)) and (len<255) do
  456. begin
  457. Inc(i);
  458. if (s[i]='\') and (i<length(s)) then
  459. Begin
  460. inc(i);
  461. case s[i] of
  462. '\' :
  463. c:='\';
  464. 'b':
  465. c:=#8;
  466. 'f':
  467. c:=#12;
  468. 'n':
  469. c:=#10;
  470. 'r':
  471. c:=#13;
  472. 't':
  473. c:=#9;
  474. '"':
  475. c:='"';
  476. '0'..'7':
  477. Begin
  478. temp:=s[i];
  479. temp:=temp+s[i+1];
  480. temp:=temp+s[i+2];
  481. inc(i,2);
  482. c:=chr(ValOctal(temp));
  483. end;
  484. 'x':
  485. Begin
  486. temp:=s[i+1];
  487. temp:=temp+s[i+2];
  488. inc(i,2);
  489. c:=chr(ValHexaDecimal(temp));
  490. end;
  491. else
  492. Begin
  493. Message1(asmr_e_escape_seq_ignored,s[i]);
  494. c:=s[i];
  495. end;
  496. end;
  497. end
  498. else
  499. c:=s[i];
  500. inc(len);
  501. hs[len]:=c;
  502. end;
  503. hs[0]:=chr(len);
  504. EscapeToPascal:=hs;
  505. end;
  506. Function ValDecimal(const S:String):longint;
  507. { Converts a decimal string to longint }
  508. var
  509. vs,c : longint;
  510. Begin
  511. vs:=0;
  512. for c:=1 to length(s) do
  513. begin
  514. vs:=vs*10;
  515. if s[c] in ['0'..'9'] then
  516. inc(vs,ord(s[c])-ord('0'))
  517. else
  518. begin
  519. Message1(asmr_e_error_converting_decimal,s);
  520. ValDecimal:=0;
  521. exit;
  522. end;
  523. end;
  524. ValDecimal:=vs;
  525. end;
  526. Function ValOctal(const S:String):longint;
  527. { Converts an octal string to longint }
  528. var
  529. vs,c : longint;
  530. Begin
  531. vs:=0;
  532. for c:=1 to length(s) do
  533. begin
  534. vs:=vs shl 3;
  535. if s[c] in ['0'..'7'] then
  536. inc(vs,ord(s[c])-ord('0'))
  537. else
  538. begin
  539. Message1(asmr_e_error_converting_octal,s);
  540. ValOctal:=0;
  541. exit;
  542. end;
  543. end;
  544. ValOctal:=vs;
  545. end;
  546. Function ValBinary(const S:String):longint;
  547. { Converts a binary string to longint }
  548. var
  549. vs,c : longint;
  550. Begin
  551. vs:=0;
  552. for c:=1 to length(s) do
  553. begin
  554. vs:=vs shl 1;
  555. if s[c] in ['0'..'1'] then
  556. inc(vs,ord(s[c])-ord('0'))
  557. else
  558. begin
  559. Message1(asmr_e_error_converting_binary,s);
  560. ValBinary:=0;
  561. exit;
  562. end;
  563. end;
  564. ValBinary:=vs;
  565. end;
  566. Function ValHexadecimal(const S:String):longint;
  567. { Converts a binary string to longint }
  568. var
  569. vs,c : longint;
  570. Begin
  571. vs:=0;
  572. for c:=1 to length(s) do
  573. begin
  574. vs:=vs shl 4;
  575. case s[c] of
  576. '0'..'9' :
  577. inc(vs,ord(s[c])-ord('0'));
  578. 'A'..'F' :
  579. inc(vs,ord(s[c])-ord('A')+10);
  580. 'a'..'f' :
  581. inc(vs,ord(s[c])-ord('a')+10);
  582. else
  583. begin
  584. Message1(asmr_e_error_converting_hexadecimal,s);
  585. ValHexadecimal:=0;
  586. exit;
  587. end;
  588. end;
  589. end;
  590. ValHexadecimal:=vs;
  591. end;
  592. Function PadZero(Var s: String; n: byte): Boolean;
  593. Begin
  594. PadZero:=TRUE;
  595. { Do some error checking first }
  596. if Length(s) = n then
  597. exit
  598. else
  599. if Length(s) > n then
  600. Begin
  601. PadZero:=FALSE;
  602. delete(s,n+1,length(s));
  603. exit;
  604. end
  605. else
  606. PadZero:=TRUE;
  607. { Fill it up with the specified character }
  608. fillchar(s[length(s)+1],n-1,#0);
  609. s[0]:=chr(n);
  610. end;
  611. {****************************************************************************
  612. TOperand
  613. ****************************************************************************}
  614. constructor TOperand.Create;
  615. begin
  616. size:=OS_NO;
  617. hastype:=false;
  618. hasvar:=false;
  619. FillChar(Opr,sizeof(Opr),0);
  620. end;
  621. destructor TOperand.destroy;
  622. begin
  623. end;
  624. Procedure TOperand.SetSize(_size:longint;force:boolean);
  625. begin
  626. if force or
  627. ((size = OS_NO) and (_size<=extended_size)) then
  628. Begin
  629. case _size of
  630. 1 : size:=OS_8;
  631. 2 : size:=OS_16{ could be S_IS};
  632. 4 : size:=OS_32{ could be S_IL or S_FS};
  633. 8 : size:=OS_64{ could be S_D or S_FL};
  634. else
  635. begin
  636. { extended_size can also be 8, resulting in a
  637. duplicate label }
  638. if _size=extended_size then
  639. size:=OS_F80;
  640. end;
  641. end;
  642. end;
  643. end;
  644. Procedure TOperand.SetCorrectSize(opcode:tasmop);
  645. begin
  646. end;
  647. Function TOperand.SetupResult:boolean;
  648. Begin
  649. SetupResult:=false;
  650. { replace by correct offset. }
  651. if (not is_void(current_procinfo.procdef.rettype.def)) then
  652. begin
  653. if (m_tp7 in aktmodeswitches) and
  654. (not paramanager.ret_in_param(current_procinfo.procdef.rettype.def,current_procinfo.procdef.proccalloption)) then
  655. begin
  656. Message(asmr_e_cannot_use_RESULT_here);
  657. exit;
  658. end;
  659. SetupResult:=setupvar('result',false)
  660. end
  661. else
  662. Message(asmr_e_void_function);
  663. end;
  664. Function TOperand.SetupSelf:boolean;
  665. Begin
  666. SetupSelf:=false;
  667. if assigned(current_procinfo.procdef._class) then
  668. SetupSelf:=setupvar('self',false)
  669. else
  670. Message(asmr_e_cannot_use_SELF_outside_a_method);
  671. end;
  672. Function TOperand.SetupOldEBP:boolean;
  673. Begin
  674. SetupOldEBP:=false;
  675. if current_procinfo.procdef.parast.symtablelevel>normal_function_level then
  676. SetupOldEBP:=setupvar('parentframe',false)
  677. else
  678. Message(asmr_e_cannot_use_OLDEBP_outside_nested_procedure);
  679. end;
  680. Function TOperand.SetupVar(const s:string;GetOffset : boolean): Boolean;
  681. function symtable_has_varsyms(st:tsymtable):boolean;
  682. var
  683. sym : tsym;
  684. begin
  685. result:=false;
  686. sym:=tsym(st.symindex.first);
  687. while assigned(sym) do
  688. begin
  689. if sym.typ=varsym then
  690. begin
  691. result:=true;
  692. exit;
  693. end;
  694. sym:=tsym(sym.indexnext);
  695. end;
  696. end;
  697. procedure setconst(l:longint);
  698. begin
  699. { We return the address of the field, just like Delphi/TP }
  700. case opr.typ of
  701. OPR_NONE :
  702. begin
  703. opr.typ:=OPR_CONSTANT;
  704. opr.val:=l;
  705. end;
  706. OPR_CONSTANT :
  707. inc(opr.val,l);
  708. OPR_REFERENCE :
  709. inc(opr.ref.offset,l);
  710. OPR_LOCAL :
  711. inc(opr.localsymofs,l);
  712. else
  713. Message(asmr_e_invalid_operand_type);
  714. end;
  715. end;
  716. { search and sets up the correct fields in the Instr record }
  717. { for the NON-constant identifier passed to the routine. }
  718. { if not found returns FALSE. }
  719. var
  720. sym : tsym;
  721. srsymtable : tsymtable;
  722. harrdef : tarraydef;
  723. indexreg : tregister;
  724. l : longint;
  725. plist : psymlistitem;
  726. Begin
  727. SetupVar:=false;
  728. asmsearchsym(s,sym,srsymtable);
  729. if sym = nil then
  730. exit;
  731. if sym.typ=absolutesym then
  732. begin
  733. if (tabsolutesym(sym).abstyp=tovar) then
  734. begin
  735. { Only support simple loads }
  736. plist:=tabsolutesym(sym).ref.firstsym;
  737. if assigned(plist) and
  738. (plist^.sltype=sl_load) then
  739. sym:=plist^.sym
  740. else
  741. begin
  742. Message(asmr_e_unsupported_symbol_type);
  743. exit;
  744. end;
  745. end
  746. else
  747. begin
  748. Message(asmr_e_unsupported_symbol_type);
  749. exit;
  750. end;
  751. end;
  752. case sym.typ of
  753. varsym :
  754. begin
  755. { we always assume in asm statements that }
  756. { that the variable is valid. }
  757. tvarsym(sym).varstate:=vs_used;
  758. inc(tvarsym(sym).refs);
  759. case tvarsym(sym).owner.symtabletype of
  760. objectsymtable :
  761. begin
  762. setconst(tvarsym(sym).fieldoffset);
  763. hasvar:=true;
  764. SetupVar:=true;
  765. Exit;
  766. end;
  767. globalsymtable,
  768. staticsymtable :
  769. begin
  770. initref;
  771. opr.ref.symbol:=objectlibrary.newasmsymboldata(tvarsym(sym).mangledname);
  772. end;
  773. parasymtable,
  774. localsymtable :
  775. begin
  776. if (vo_is_external in tvarsym(sym).varoptions) then
  777. begin
  778. initref;
  779. opr.ref.symbol:=objectlibrary.newasmsymboldata(tvarsym(sym).mangledname)
  780. end
  781. else
  782. begin
  783. if opr.typ=OPR_REFERENCE then
  784. begin
  785. indexreg:=opr.ref.base;
  786. if opr.ref.index<>NR_NO then
  787. begin
  788. if indexreg=NR_NO then
  789. indexreg:=opr.ref.index
  790. else
  791. Message(asmr_e_multiple_index);
  792. end;
  793. end
  794. else
  795. indexreg:=NR_NO;
  796. opr.typ:=OPR_LOCAL;
  797. if assigned(current_procinfo.parent) and
  798. (current_procinfo.procdef.proccalloption<>pocall_inline) and
  799. (tvarsym(sym).owner<>current_procinfo.procdef.localst) and
  800. (tvarsym(sym).owner<>current_procinfo.procdef.parast) and
  801. (current_procinfo.procdef.localst.symtablelevel>normal_function_level) and
  802. symtable_has_varsyms(current_procinfo.procdef.localst) then
  803. message1(asmr_e_local_para_unreachable,s);
  804. opr.localsym:=tvarsym(sym);
  805. opr.localsymofs:=0;
  806. opr.localindexreg:=indexreg;
  807. opr.localscale:=0;
  808. opr.localgetoffset:=GetOffset;
  809. end;
  810. if paramanager.push_addr_param(tvarsym(sym).varspez,tvarsym(sym).vartype.def,current_procinfo.procdef.proccalloption) then
  811. SetSize(pointer_size,false);
  812. end;
  813. end;
  814. case tvarsym(sym).vartype.def.deftype of
  815. orddef,
  816. enumdef,
  817. pointerdef,
  818. floatdef :
  819. SetSize(tvarsym(sym).getsize,false);
  820. arraydef :
  821. begin
  822. { for arrays try to get the element size, take care of
  823. multiple indexes }
  824. harrdef:=tarraydef(tvarsym(sym).vartype.def);
  825. while assigned(harrdef.elementtype.def) and
  826. (harrdef.elementtype.def.deftype=arraydef) do
  827. harrdef:=tarraydef(harrdef.elementtype.def);
  828. SetSize(harrdef.elesize,false);
  829. end;
  830. end;
  831. hasvar:=true;
  832. SetupVar:=true;
  833. Exit;
  834. end;
  835. typedconstsym :
  836. begin
  837. initref;
  838. opr.ref.symbol:=objectlibrary.newasmsymboldata(ttypedconstsym(sym).mangledname);
  839. case ttypedconstsym(sym).typedconsttype.def.deftype of
  840. orddef,
  841. enumdef,
  842. pointerdef,
  843. floatdef :
  844. SetSize(ttypedconstsym(sym).getsize,false);
  845. arraydef :
  846. begin
  847. { for arrays try to get the element size, take care of
  848. multiple indexes }
  849. harrdef:=tarraydef(ttypedconstsym(sym).typedconsttype.def);
  850. while assigned(harrdef.elementtype.def) and
  851. (harrdef.elementtype.def.deftype=arraydef) do
  852. harrdef:=tarraydef(harrdef.elementtype.def);
  853. SetSize(harrdef.elesize,false);
  854. end;
  855. end;
  856. hasvar:=true;
  857. SetupVar:=true;
  858. Exit;
  859. end;
  860. constsym :
  861. begin
  862. if tconstsym(sym).consttyp in [constint,constchar,constbool] then
  863. begin
  864. setconst(tconstsym(sym).value.valueord);
  865. SetupVar:=true;
  866. Exit;
  867. end;
  868. end;
  869. typesym :
  870. begin
  871. if ttypesym(sym).restype.def.deftype in [recorddef,objectdef] then
  872. begin
  873. setconst(0);
  874. SetupVar:=TRUE;
  875. Exit;
  876. end;
  877. end;
  878. procsym :
  879. begin
  880. if opr.typ<>OPR_NONE then
  881. Message(asmr_e_invalid_operand_type);
  882. if Tprocsym(sym).procdef_count>1 then
  883. Message(asmr_w_calling_overload_func);
  884. l:=opr.ref.offset;
  885. opr.typ:=OPR_SYMBOL;
  886. opr.symbol:=objectlibrary.newasmsymbol(tprocsym(sym).first_procdef.mangledname);
  887. opr.symofs:=l;
  888. hasvar:=true;
  889. SetupVar:=TRUE;
  890. Exit;
  891. end;
  892. else
  893. begin
  894. Message(asmr_e_unsupported_symbol_type);
  895. exit;
  896. end;
  897. end;
  898. end;
  899. { looks for internal names of variables and routines }
  900. Function TOperand.SetupDirectVar(const hs:string): Boolean;
  901. var
  902. p : tasmsymbol;
  903. begin
  904. SetupDirectVar:=false;
  905. p:=objectlibrary.getasmsymbol(hs);
  906. if assigned(p) then
  907. begin
  908. InitRef;
  909. opr.ref.symbol:=p;
  910. hasvar:=true;
  911. SetupDirectVar:=true;
  912. end;
  913. end;
  914. procedure TOperand.InitRef;
  915. {*********************************************************************}
  916. { Description: This routine first check if the opcode is of }
  917. { type OPR_NONE, or OPR_REFERENCE , if not it gives out an error. }
  918. { If the operandtype = OPR_NONE or <> OPR_REFERENCE then it sets up }
  919. { the operand type to OPR_REFERENCE, as well as setting up the ref }
  920. { to point to the default segment. }
  921. {*********************************************************************}
  922. var
  923. l : longint;
  924. Begin
  925. case opr.typ of
  926. OPR_REFERENCE :
  927. exit;
  928. OPR_CONSTANT :
  929. begin
  930. l:=opr.val;
  931. opr.typ:=OPR_REFERENCE;
  932. Fillchar(opr.ref,sizeof(treference),0);
  933. opr.Ref.Offset:=l;
  934. end;
  935. OPR_NONE :
  936. begin
  937. opr.typ:=OPR_REFERENCE;
  938. Fillchar(opr.ref,sizeof(treference),0);
  939. end;
  940. else
  941. begin
  942. Message(asmr_e_invalid_operand_type);
  943. { Recover }
  944. opr.typ:=OPR_REFERENCE;
  945. Fillchar(opr.ref,sizeof(treference),0);
  946. end;
  947. end;
  948. end;
  949. procedure TOperand.BuildOperand;
  950. begin
  951. abstract;
  952. end;
  953. {****************************************************************************
  954. TInstruction
  955. ****************************************************************************}
  956. constructor TInstruction.create;
  957. Begin
  958. Opcode:=A_NONE;
  959. Condition:=C_NONE;
  960. Ops:=0;
  961. InitOperands;
  962. Labeled:=false;
  963. end;
  964. destructor TInstruction.destroy;
  965. var
  966. i : longint;
  967. Begin
  968. for i:=1 to 3 do
  969. Operands[i].free;
  970. end;
  971. procedure TInstruction.InitOperands;
  972. var
  973. i : longint;
  974. begin
  975. for i:=1 to 3 do
  976. Operands[i].create;
  977. end;
  978. Procedure TInstruction.Swapoperands;
  979. Var
  980. p : toperand;
  981. Begin
  982. case Ops of
  983. 2 :
  984. begin
  985. p:=Operands[1];
  986. Operands[1]:=Operands[2];
  987. Operands[2]:=p;
  988. end;
  989. 3 :
  990. begin
  991. p:=Operands[1];
  992. Operands[1]:=Operands[3];
  993. Operands[3]:=p;
  994. end;
  995. end;
  996. end;
  997. procedure TInstruction.ConcatInstruction(p:TAAsmOutput);
  998. begin
  999. abstract;
  1000. end;
  1001. procedure TInstruction.BuildOpcode;
  1002. begin
  1003. abstract;
  1004. end;
  1005. {***************************************************************************
  1006. TLocalLabel
  1007. ***************************************************************************}
  1008. constructor TLocalLabel.create(const n:string);
  1009. begin
  1010. inherited CreateName(n);
  1011. lab:=nil;
  1012. emitted:=false;
  1013. end;
  1014. function TLocalLabel.Gettasmlabel:tasmlabel;
  1015. begin
  1016. if not assigned(lab) then
  1017. begin
  1018. objectlibrary.getlabel(lab);
  1019. { this label is forced to be used so it's always written }
  1020. lab.increfs;
  1021. end;
  1022. Gettasmlabel:=lab;
  1023. end;
  1024. {***************************************************************************
  1025. TLocalLabelList
  1026. ***************************************************************************}
  1027. procedure LocalLabelEmitted(p:tnamedindexitem;arg:pointer);
  1028. begin
  1029. if not TLocalLabel(p).emitted then
  1030. Message1(asmr_e_unknown_label_identifier,p.name);
  1031. end;
  1032. procedure TLocalLabelList.CheckEmitted;
  1033. begin
  1034. ForEach_Static({$ifdef FPCPROCVAR}@{$endif}LocalLabelEmitted,nil)
  1035. end;
  1036. function CreateLocalLabel(const s: string; var hl: tasmlabel; emit:boolean):boolean;
  1037. var
  1038. lab : TLocalLabel;
  1039. Begin
  1040. CreateLocalLabel:=true;
  1041. { Check if it already is defined }
  1042. lab:=TLocalLabel(LocalLabellist.Search(s));
  1043. if not assigned(lab) then
  1044. begin
  1045. lab:=TLocalLabel.Create(s);
  1046. LocalLabellist.Insert(lab);
  1047. end;
  1048. { set emitted flag and check for dup syms }
  1049. if emit then
  1050. begin
  1051. if lab.Emitted then
  1052. begin
  1053. Message1(asmr_e_dup_local_sym,lab.Name);
  1054. CreateLocalLabel:=false;
  1055. end;
  1056. lab.Emitted:=true;
  1057. end;
  1058. hl:=lab.Gettasmlabel;
  1059. end;
  1060. {****************************************************************************
  1061. Symbol table helper routines
  1062. ****************************************************************************}
  1063. procedure AsmSearchSym(const s:string;var srsym:tsym;var srsymtable:tsymtable);
  1064. var
  1065. i : integer;
  1066. begin
  1067. i:=pos('.',s);
  1068. { allow unit.identifier }
  1069. if i>0 then
  1070. begin
  1071. searchsym(Copy(s,1,i-1),srsym,srsymtable);
  1072. if assigned(srsym) then
  1073. begin
  1074. if (srsym.typ=unitsym) and
  1075. (srsym.owner.unitid=0) then
  1076. srsym:=searchsymonlyin(tunitsym(srsym).unitsymtable,Copy(s,i+1,255))
  1077. else
  1078. srsym:=nil;
  1079. end;
  1080. end
  1081. else
  1082. searchsym(s,srsym,srsymtable);
  1083. end;
  1084. Function SearchType(const hs:string;var size:longint): Boolean;
  1085. var
  1086. srsym : tsym;
  1087. srsymtable : tsymtable;
  1088. begin
  1089. result:=false;
  1090. size:=0;
  1091. asmsearchsym(hs,srsym,srsymtable);
  1092. if assigned(srsym) and
  1093. (srsym.typ=typesym) then
  1094. begin
  1095. size:=ttypesym(srsym).restype.def.size;
  1096. result:=true;
  1097. end;
  1098. end;
  1099. Function SearchRecordType(const s:string): boolean;
  1100. var
  1101. srsym : tsym;
  1102. srsymtable : tsymtable;
  1103. Begin
  1104. SearchRecordType:=false;
  1105. { Check the constants in symtable }
  1106. asmsearchsym(s,srsym,srsymtable);
  1107. if srsym <> nil then
  1108. Begin
  1109. case srsym.typ of
  1110. typesym :
  1111. begin
  1112. if ttypesym(srsym).restype.def.deftype in [recorddef,objectdef] then
  1113. begin
  1114. SearchRecordType:=true;
  1115. exit;
  1116. end;
  1117. end;
  1118. end;
  1119. end;
  1120. end;
  1121. Function SearchIConstant(const s:string; var l:longint): boolean;
  1122. {**********************************************************************}
  1123. { Description: Searches for a CONSTANT of name s in either the local }
  1124. { symbol list, then in the global symbol list, and returns the value }
  1125. { of that constant in l. Returns TRUE if successfull, if not found, }
  1126. { or if the constant is not of correct type, then returns FALSE }
  1127. { Remarks: Also handle TRUE and FALSE returning in those cases 1 and 0 }
  1128. { respectively. }
  1129. {**********************************************************************}
  1130. var
  1131. srsym : tsym;
  1132. srsymtable : tsymtable;
  1133. Begin
  1134. SearchIConstant:=false;
  1135. { check for TRUE or FALSE reserved words first }
  1136. if s = 'TRUE' then
  1137. Begin
  1138. SearchIConstant:=TRUE;
  1139. l:=1;
  1140. exit;
  1141. end;
  1142. if s = 'FALSE' then
  1143. Begin
  1144. SearchIConstant:=TRUE;
  1145. l:=0;
  1146. exit;
  1147. end;
  1148. { Check the constants in symtable }
  1149. asmsearchsym(s,srsym,srsymtable);
  1150. if srsym <> nil then
  1151. Begin
  1152. case srsym.typ of
  1153. constsym :
  1154. begin
  1155. if (tconstsym(srsym).consttyp in [constord,constint,constchar,constbool]) then
  1156. Begin
  1157. l:=tconstsym(srsym).value.valueord;
  1158. SearchIConstant:=TRUE;
  1159. exit;
  1160. end;
  1161. end;
  1162. enumsym:
  1163. Begin
  1164. l:=tenumsym(srsym).value;
  1165. SearchIConstant:=TRUE;
  1166. exit;
  1167. end;
  1168. end;
  1169. end;
  1170. end;
  1171. Function GetRecordOffsetSize(s:string;Var Offset: longint;var Size:longint):boolean;
  1172. { search and returns the offset and size of records/objects of the base }
  1173. { with field name setup in field. }
  1174. { returns FALSE if not found. }
  1175. { used when base is a variable or a typed constant name. }
  1176. var
  1177. st : tsymtable;
  1178. harrdef : tarraydef;
  1179. sym : tsym;
  1180. srsymtable : tsymtable;
  1181. i : longint;
  1182. base : string;
  1183. Begin
  1184. GetRecordOffsetSize:=FALSE;
  1185. Offset:=0;
  1186. Size:=0;
  1187. i:=pos('.',s);
  1188. if i=0 then
  1189. i:=255;
  1190. base:=Copy(s,1,i-1);
  1191. delete(s,1,i);
  1192. if base='SELF' then
  1193. st:=current_procinfo.procdef._class.symtable
  1194. else
  1195. begin
  1196. asmsearchsym(base,sym,srsymtable);
  1197. st:=nil;
  1198. { we can start with a var,type,typedconst }
  1199. case sym.typ of
  1200. varsym :
  1201. begin
  1202. case tvarsym(sym).vartype.def.deftype of
  1203. recorddef :
  1204. st:=trecorddef(tvarsym(sym).vartype.def).symtable;
  1205. objectdef :
  1206. st:=tobjectdef(tvarsym(sym).vartype.def).symtable;
  1207. end;
  1208. end;
  1209. typesym :
  1210. begin
  1211. case ttypesym(sym).restype.def.deftype of
  1212. recorddef :
  1213. st:=trecorddef(ttypesym(sym).restype.def).symtable;
  1214. objectdef :
  1215. st:=tobjectdef(ttypesym(sym).restype.def).symtable;
  1216. end;
  1217. end;
  1218. typedconstsym :
  1219. begin
  1220. case ttypedconstsym(sym).typedconsttype.def.deftype of
  1221. recorddef :
  1222. st:=trecorddef(ttypedconstsym(sym).typedconsttype.def).symtable;
  1223. objectdef :
  1224. st:=tobjectdef(ttypedconstsym(sym).typedconsttype.def).symtable;
  1225. end;
  1226. end;
  1227. end;
  1228. end;
  1229. { now walk all recordsymtables }
  1230. while assigned(st) and (s<>'') do
  1231. begin
  1232. { load next field in base }
  1233. i:=pos('.',s);
  1234. if i=0 then
  1235. i:=255;
  1236. base:=Copy(s,1,i-1);
  1237. delete(s,1,i);
  1238. if st.symtabletype=objectsymtable then
  1239. sym:=search_class_member(tobjectdef(st.defowner),base)
  1240. else
  1241. sym:=tsym(st.search(base));
  1242. if not assigned(sym) then
  1243. begin
  1244. GetRecordOffsetSize:=false;
  1245. exit;
  1246. end;
  1247. st:=nil;
  1248. case sym.typ of
  1249. varsym :
  1250. begin
  1251. inc(Offset,tvarsym(sym).fieldoffset);
  1252. Size:=tvarsym(sym).getsize;
  1253. case tvarsym(sym).vartype.def.deftype of
  1254. arraydef :
  1255. begin
  1256. { for arrays try to get the element size, take care of
  1257. multiple indexes }
  1258. harrdef:=tarraydef(tvarsym(sym).vartype.def);
  1259. while assigned(harrdef.elementtype.def) and
  1260. (harrdef.elementtype.def.deftype=arraydef) do
  1261. harrdef:=tarraydef(harrdef.elementtype.def);
  1262. size:=harrdef.elesize;
  1263. end;
  1264. recorddef :
  1265. st:=trecorddef(tvarsym(sym).vartype.def).symtable;
  1266. objectdef :
  1267. st:=tobjectdef(tvarsym(sym).vartype.def).symtable;
  1268. end;
  1269. end;
  1270. end;
  1271. end;
  1272. GetRecordOffsetSize:=(s='');
  1273. end;
  1274. Function SearchLabel(const s: string; var hl: tasmlabel;emit:boolean): boolean;
  1275. var
  1276. sym : tsym;
  1277. srsymtable : tsymtable;
  1278. hs : string;
  1279. Begin
  1280. hl:=nil;
  1281. SearchLabel:=false;
  1282. { Check for pascal labels, which are case insensetive }
  1283. hs:=upper(s);
  1284. asmsearchsym(hs,sym,srsymtable);
  1285. if sym=nil then
  1286. exit;
  1287. case sym.typ of
  1288. labelsym :
  1289. begin
  1290. hl:=tlabelsym(sym).lab;
  1291. if emit then
  1292. tlabelsym(sym).defined:=true
  1293. else
  1294. tlabelsym(sym).used:=true;
  1295. SearchLabel:=true;
  1296. exit;
  1297. end;
  1298. end;
  1299. end;
  1300. {*************************************************************************}
  1301. { Instruction Generation Utilities }
  1302. {*************************************************************************}
  1303. Procedure ConcatString(p : TAAsmoutput;s:string);
  1304. {*********************************************************************}
  1305. { PROCEDURE ConcatString(s:string); }
  1306. { Description: This routine adds the character chain pointed to in }
  1307. { s to the instruction linked list. }
  1308. {*********************************************************************}
  1309. Var
  1310. pc: PChar;
  1311. Begin
  1312. getmem(pc,length(s)+1);
  1313. p.concat(Tai_string.Create_length_pchar(strpcopy(pc,s),length(s)));
  1314. end;
  1315. Procedure ConcatPasString(p : TAAsmoutput;s:string);
  1316. {*********************************************************************}
  1317. { PROCEDURE ConcatPasString(s:string); }
  1318. { Description: This routine adds the character chain pointed to in }
  1319. { s to the instruction linked list, contrary to ConcatString it }
  1320. { uses a pascal style string, so it conserves null characters. }
  1321. {*********************************************************************}
  1322. Begin
  1323. p.concat(Tai_string.Create(s));
  1324. end;
  1325. Procedure ConcatDirect(p : TAAsmoutput;s:string);
  1326. {*********************************************************************}
  1327. { PROCEDURE ConcatDirect(s:string) }
  1328. { Description: This routine output the string directly to the asm }
  1329. { output, it is only sed when writing special labels in AT&T mode, }
  1330. { and should not be used without due consideration, since it may }
  1331. { cause problems. }
  1332. {*********************************************************************}
  1333. Var
  1334. pc: PChar;
  1335. Begin
  1336. getmem(pc,length(s)+1);
  1337. p.concat(Tai_direct.Create(strpcopy(pc,s)));
  1338. end;
  1339. Procedure ConcatConstant(p: TAAsmoutput; value: longint; maxvalue: longint);
  1340. {*********************************************************************}
  1341. { PROCEDURE ConcatConstant(value: longint; maxvalue: longint); }
  1342. { Description: This routine adds the value constant to the current }
  1343. { instruction linked list. }
  1344. { maxvalue -> indicates the size of the data to initialize: }
  1345. { $ff -> create a byte node. }
  1346. { $ffff -> create a word node. }
  1347. { $ffffffff -> create a dword node. }
  1348. {*********************************************************************}
  1349. Begin
  1350. if (maxvalue <> longint($ffffffff)) and (value > maxvalue) then
  1351. Begin
  1352. Message(asmr_e_constant_out_of_bounds);
  1353. { assuming a value of maxvalue }
  1354. value:=maxvalue;
  1355. end;
  1356. if maxvalue = $ff then
  1357. p.concat(Tai_const.Create_8bit(byte(value)))
  1358. else
  1359. if maxvalue = $ffff then
  1360. p.concat(Tai_const.Create_16bit(word(value)))
  1361. else
  1362. if maxvalue = longint($ffffffff) then
  1363. p.concat(Tai_const.Create_32bit(longint(value)));
  1364. end;
  1365. Procedure ConcatConstSymbol(p : TAAsmoutput;const sym:string;l:longint);
  1366. begin
  1367. p.concat(Tai_const_symbol.Createname_offset(sym,l));
  1368. end;
  1369. Procedure ConcatRealConstant(p : TAAsmoutput;value: bestreal; real_typ : tfloattype);
  1370. {***********************************************************************}
  1371. { PROCEDURE ConcatRealConstant(value: bestreal; real_typ : tfloattype); }
  1372. { Description: This routine adds the value constant to the current }
  1373. { instruction linked list. }
  1374. { real_typ -> indicates the type of the real data to initialize: }
  1375. { s32real -> create a single node. }
  1376. { s64real -> create a double node. }
  1377. { s80real -> create an extended node. }
  1378. { s64bit -> create a comp node. }
  1379. { f32bit -> create a fixed node. (not used normally) }
  1380. {***********************************************************************}
  1381. Begin
  1382. case real_typ of
  1383. s32real : p.concat(Tai_real_32bit.Create(value));
  1384. s64real : p.concat(Tai_real_64bit.Create(value));
  1385. s80real : p.concat(Tai_real_80bit.Create(value));
  1386. s64comp : p.concat(Tai_comp_64bit.Create(value));
  1387. end;
  1388. end;
  1389. Procedure ConcatLabel(p: TAAsmoutput;var l : tasmlabel);
  1390. {*********************************************************************}
  1391. { PROCEDURE ConcatLabel }
  1392. { Description: This routine either emits a label or a labeled }
  1393. { instruction to the linked list of instructions. }
  1394. {*********************************************************************}
  1395. begin
  1396. p.concat(Tai_label.Create(l));
  1397. end;
  1398. procedure ConcatAlign(p:TAAsmoutput;l:longint);
  1399. {*********************************************************************}
  1400. { PROCEDURE ConcatPublic }
  1401. { Description: This routine emits an global definition to the }
  1402. { linked list of instructions.(used by AT&T styled asm) }
  1403. {*********************************************************************}
  1404. begin
  1405. p.concat(Tai_align.Create(l));
  1406. end;
  1407. procedure ConcatPublic(p:TAAsmoutput;const s : string);
  1408. {*********************************************************************}
  1409. { PROCEDURE ConcatPublic }
  1410. { Description: This routine emits an global definition to the }
  1411. { linked list of instructions.(used by AT&T styled asm) }
  1412. {*********************************************************************}
  1413. begin
  1414. p.concat(Tai_symbol.Createname_global(s,0));
  1415. end;
  1416. procedure ConcatLocal(p:TAAsmoutput;const s : string);
  1417. {*********************************************************************}
  1418. { PROCEDURE ConcatLocal }
  1419. { Description: This routine emits an local definition to the }
  1420. { linked list of instructions. }
  1421. {*********************************************************************}
  1422. begin
  1423. p.concat(Tai_symbol.Createname(s,0));
  1424. end;
  1425. Procedure ConcatGlobalBss(const s : string;size : longint);
  1426. {*********************************************************************}
  1427. { PROCEDURE ConcatGlobalBss }
  1428. { Description: This routine emits an global datablock to the }
  1429. { linked list of instructions. }
  1430. {*********************************************************************}
  1431. begin
  1432. bssSegment.concat(Tai_datablock.Create_global(s,size));
  1433. end;
  1434. Procedure ConcatLocalBss(const s : string;size : longint);
  1435. {*********************************************************************}
  1436. { PROCEDURE ConcatLocalBss }
  1437. { Description: This routine emits a local datablcok to the }
  1438. { linked list of instructions. }
  1439. {*********************************************************************}
  1440. begin
  1441. bssSegment.concat(Tai_datablock.Create(s,size));
  1442. end;
  1443. end.
  1444. {
  1445. $Log$
  1446. Revision 1.76 2003-10-30 19:59:00 peter
  1447. * support scalefactor for opr_local
  1448. * support reference with opr_local set, fixes tw2631
  1449. Revision 1.75 2003/10/29 16:47:18 peter
  1450. * fix field offset in reference
  1451. Revision 1.74 2003/10/29 15:40:20 peter
  1452. * support indexing and offset retrieval for locals
  1453. Revision 1.73 2003/10/28 15:36:01 peter
  1454. * absolute to object field supported, fixes tb0458
  1455. Revision 1.72 2003/10/24 17:39:03 peter
  1456. * more intel parser updates
  1457. Revision 1.71 2003/10/23 17:19:11 peter
  1458. * SearchType returns also the size
  1459. Revision 1.70 2003/10/08 19:39:58 peter
  1460. * allow access to parent locals when the currnet localst has no
  1461. varsyms
  1462. Revision 1.69 2003/10/01 20:34:49 peter
  1463. * procinfo unit contains tprocinfo
  1464. * cginfo renamed to cgbase
  1465. * moved cgmessage to verbose
  1466. * fixed ppc and sparc compiles
  1467. Revision 1.68 2003/09/25 14:57:36 peter
  1468. * fix check for unreachable locals
  1469. Revision 1.67 2003/09/23 17:56:06 peter
  1470. * locals and paras are allocated in the code generation
  1471. * tvarsym.localloc contains the location of para/local when
  1472. generating code for the current procedure
  1473. Revision 1.66 2003/09/16 16:17:01 peter
  1474. * varspez in calls to push_addr_param
  1475. Revision 1.65 2003/09/03 15:55:01 peter
  1476. * NEWRA branch merged
  1477. Revision 1.64.2.1 2003/08/27 19:55:54 peter
  1478. * first tregister patch
  1479. Revision 1.64 2003/06/13 21:19:31 peter
  1480. * current_procdef removed, use current_procinfo.procdef instead
  1481. Revision 1.63 2003/06/06 14:43:29 peter
  1482. * absolutesym support
  1483. Revision 1.62 2003/05/30 23:57:08 peter
  1484. * more sparc cleanup
  1485. * accumulator removed, splitted in function_return_reg (called) and
  1486. function_result_reg (caller)
  1487. Revision 1.61 2003/05/25 08:55:49 peter
  1488. * load result using hidden parameter
  1489. Revision 1.60 2003/05/15 18:58:53 peter
  1490. * removed selfpointer_offset, vmtpointer_offset
  1491. * tvarsym.adjusted_address
  1492. * address in localsymtable is now in the real direction
  1493. * removed some obsolete globals
  1494. Revision 1.59 2003/05/12 17:22:00 jonas
  1495. * fixed (last?) remaining -tvarsym(X).address to
  1496. tg.direction*tvarsym(X).address...
  1497. Revision 1.58 2003/04/27 11:21:34 peter
  1498. * aktprocdef renamed to current_procinfo.procdef
  1499. * procinfo renamed to current_procinfo
  1500. * procinfo will now be stored in current_module so it can be
  1501. cleaned up properly
  1502. * gen_main_procsym changed to create_main_proc and release_main_proc
  1503. to also generate a tprocinfo structure
  1504. * fixed unit implicit initfinal
  1505. Revision 1.57 2003/04/27 07:29:51 peter
  1506. * current_procinfo.procdef cleanup, current_procinfo.procdef is now always nil when parsing
  1507. a new procdef declaration
  1508. * aktprocsym removed
  1509. * lexlevel removed, use symtable.symtablelevel instead
  1510. * implicit init/final code uses the normal genentry/genexit
  1511. * funcret state checking updated for new funcret handling
  1512. Revision 1.56 2003/04/25 20:59:34 peter
  1513. * removed funcretn,funcretsym, function result is now in varsym
  1514. and aliases for result and function name are added using absolutesym
  1515. * vs_hidden parameter for funcret passed in parameter
  1516. * vs_hidden fixes
  1517. * writenode changed to printnode and released from extdebug
  1518. * -vp option added to generate a tree.log with the nodetree
  1519. * nicer printnode for statements, callnode
  1520. Revision 1.55 2003/04/06 21:11:23 olle
  1521. * changed newasmsymbol to newasmsymboldata for data symbols
  1522. Revision 1.54 2003/03/28 19:16:57 peter
  1523. * generic constructor working for i386
  1524. * remove fixed self register
  1525. * esi added as address register for i386
  1526. Revision 1.53 2003/02/19 22:00:14 daniel
  1527. * Code generator converted to new register notation
  1528. - Horribily outdated todo.txt removed
  1529. Revision 1.52 2003/01/08 18:43:56 daniel
  1530. * Tregister changed into a record
  1531. Revision 1.51 2002/12/14 15:02:03 carl
  1532. * maxoperands -> max_operands (for portability in rautils.pas)
  1533. * fix some range-check errors with loadconst
  1534. + add ncgadd unit to m68k
  1535. * some bugfix of a_param_reg with LOC_CREFERENCE
  1536. Revision 1.50 2002/11/25 17:43:23 peter
  1537. * splitted defbase in defutil,symutil,defcmp
  1538. * merged isconvertable and is_equal into compare_defs(_ext)
  1539. * made operator search faster by walking the list only once
  1540. Revision 1.49 2002/11/22 22:48:10 carl
  1541. * memory optimization with tconstsym (1.5%)
  1542. Revision 1.48 2002/11/18 17:31:59 peter
  1543. * pass proccalloption to ret_in_xxx and push_xxx functions
  1544. Revision 1.47 2002/11/15 16:29:31 peter
  1545. * made tasmsymbol.refs private (merged)
  1546. Revision 1.46 2002/09/03 16:26:27 daniel
  1547. * Make Tprocdef.defs protected
  1548. Revision 1.45 2002/08/25 19:25:20 peter
  1549. * sym.insert_in_data removed
  1550. * symtable.insertvardata/insertconstdata added
  1551. * removed insert_in_data call from symtable.insert, it needs to be
  1552. called separatly. This allows to deref the address calculation
  1553. * procedures now calculate the parast addresses after the procedure
  1554. directives are parsed. This fixes the cdecl parast problem
  1555. * push_addr_param has an extra argument that specifies if cdecl is used
  1556. or not
  1557. Revision 1.44 2002/08/17 09:23:41 florian
  1558. * first part of procinfo rewrite
  1559. Revision 1.43 2002/08/16 14:24:59 carl
  1560. * issameref() to test if two references are the same (then emit no opcodes)
  1561. + ret_in_reg to replace ret_in_acc
  1562. (fix some register allocation bugs at the same time)
  1563. + save_std_register now has an extra parameter which is the
  1564. usedinproc registers
  1565. Revision 1.42 2002/08/13 18:01:52 carl
  1566. * rename swatoperands to swapoperands
  1567. + m68k first compilable version (still needs a lot of testing):
  1568. assembler generator, system information , inline
  1569. assembler reader.
  1570. Revision 1.41 2002/08/12 15:08:40 carl
  1571. + stab register indexes for powerpc (moved from gdb to cpubase)
  1572. + tprocessor enumeration moved to cpuinfo
  1573. + linker in target_info is now a class
  1574. * many many updates for m68k (will soon start to compile)
  1575. - removed some ifdef or correct them for correct cpu
  1576. Revision 1.40 2002/08/11 14:32:27 peter
  1577. * renamed current_library to objectlibrary
  1578. Revision 1.39 2002/08/11 13:24:13 peter
  1579. * saving of asmsymbols in ppu supported
  1580. * asmsymbollist global is removed and moved into a new class
  1581. tasmlibrarydata that will hold the info of a .a file which
  1582. corresponds with a single module. Added librarydata to tmodule
  1583. to keep the library info stored for the module. In the future the
  1584. objectfiles will also be stored to the tasmlibrarydata class
  1585. * all getlabel/newasmsymbol and friends are moved to the new class
  1586. Revision 1.38 2002/07/20 11:57:57 florian
  1587. * types.pas renamed to defbase.pas because D6 contains a types
  1588. unit so this would conflicts if D6 programms are compiled
  1589. + Willamette/SSE2 instructions to assembler added
  1590. Revision 1.37 2002/07/11 14:41:28 florian
  1591. * start of the new generic parameter handling
  1592. Revision 1.36 2002/07/01 18:46:25 peter
  1593. * internal linker
  1594. * reorganized aasm layer
  1595. Revision 1.35 2002/05/18 13:34:17 peter
  1596. * readded missing revisions
  1597. Revision 1.34 2002/05/16 19:46:44 carl
  1598. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  1599. + try to fix temp allocation (still in ifdef)
  1600. + generic constructor calls
  1601. + start of tassembler / tmodulebase class cleanup
  1602. Revision 1.31 2002/05/12 16:53:10 peter
  1603. * moved entry and exitcode to ncgutil and cgobj
  1604. * foreach gets extra argument for passing local data to the
  1605. iterator function
  1606. * -CR checks also class typecasts at runtime by changing them
  1607. into as
  1608. * fixed compiler to cycle with the -CR option
  1609. * fixed stabs with elf writer, finally the global variables can
  1610. be watched
  1611. * removed a lot of routines from cga unit and replaced them by
  1612. calls to cgobj
  1613. * u32bit-s32bit updates for and,or,xor nodes. When one element is
  1614. u32bit then the other is typecasted also to u32bit without giving
  1615. a rangecheck warning/error.
  1616. * fixed pascal calling method with reversing also the high tree in
  1617. the parast, detected by tcalcst3 test
  1618. Revision 1.30 2002/04/20 21:32:24 carl
  1619. + generic FPC_CHECKPOINTER
  1620. + first parameter offset in stack now portable
  1621. * rename some constants
  1622. + move some cpu stuff to other units
  1623. - remove unused constents
  1624. * fix stacksize for some targets
  1625. * fix generic size problems which depend now on EXTEND_SIZE constant
  1626. Revision 1.29 2002/04/15 19:02:35 carl
  1627. + target_info.size_of_pointer -> pointer_Size
  1628. Revision 1.28 2002/04/02 17:11:29 peter
  1629. * tlocation,treference update
  1630. * LOC_CONSTANT added for better constant handling
  1631. * secondadd splitted in multiple routines
  1632. * location_force_reg added for loading a location to a register
  1633. of a specified size
  1634. * secondassignment parses now first the right and then the left node
  1635. (this is compatible with Kylix). This saves a lot of push/pop especially
  1636. with string operations
  1637. * adapted some routines to use the new cg methods
  1638. Revision 1.27 2002/01/29 21:32:03 peter
  1639. * allow accessing locals in other lexlevel when the current assembler
  1640. routine doesn't have locals.
  1641. Revision 1.26 2002/01/24 18:25:50 peter
  1642. * implicit result variable generation for assembler routines
  1643. * removed m_tp modeswitch, use m_tp7 or not(m_fpc) instead
  1644. }