asmutils.pas 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860
  1. {
  2. $Id$
  3. Copyright (c) 1998 Carl Eric Codere
  4. This unit implements some support routines for assembler parsing
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. **********************************************************************}
  17. Unit AsmUtils;
  18. {*************************************************************************}
  19. { This unit implements some objects as well as utilities which will be }
  20. { used by all inline assembler parsers (non-processor specific). }
  21. { }
  22. { Main routines/objects herein: }
  23. { o Object TExprParse is a simple expression parser to resolve assembler }
  24. { expressions. (Based generally on some code by Thai Tran from SWAG). }
  25. { o Object TInstruction is a simple object used for instructions }
  26. { o Record TOperand is a simple record used to store information on }
  27. { each operand. }
  28. { o String conversion routines from octal,binary and hex to decimal. }
  29. { o A linked list object/record for local labels }
  30. { o Routines for retrieving symbols (local and global) }
  31. { o Object for a linked list of strings (with duplicate strings not }
  32. { allowed). }
  33. { o Non-processor dependant routines for adding instructions to the }
  34. { instruction list. }
  35. {*************************************************************************}
  36. {--------------------------------------------------------------------}
  37. { LEFT TO DO: }
  38. { o Fix the remaining bugs in the expression parser, such as with }
  39. { 4+-3 }
  40. { o Add support for local typed constants search. }
  41. { o Add support for private/protected fields in method assembler }
  42. { routines. }
  43. {--------------------------------------------------------------------}
  44. Interface
  45. Uses
  46. globtype,systems,
  47. symtable,aasm,hcodegen,verbose,globals,files,strings,
  48. cobjects,
  49. {$ifdef i386}
  50. i386;
  51. {$endif}
  52. {$ifdef m68k}
  53. m68k;
  54. {$endif}
  55. Const
  56. RPNMax = 10; { I think you only need 4, but just to be safe }
  57. OpMax = 25;
  58. maxoperands = 3; { Maximum operands for assembler instructions }
  59. Type
  60. {---------------------------------------------------------------------}
  61. { Label Management types }
  62. {---------------------------------------------------------------------}
  63. PAsmLabel = ^TAsmLabel;
  64. { Each local label has this structure associated with it }
  65. TAsmLabel = record
  66. name: PString; { pointer to a pascal string name of label }
  67. lab: PLabel; { pointer to a label as defined in FPC }
  68. emitted: boolean; { as the label itself been emitted ? }
  69. next: PAsmLabel; { next node }
  70. end;
  71. TAsmLabelList = Object
  72. public
  73. First: PAsmLabel;
  74. Constructor Init;
  75. Destructor Done;
  76. Procedure Insert(s:string; lab: PLabel; emitted: boolean);
  77. Function Search(const s: string): PAsmLabel;
  78. private
  79. Last: PAsmLabel;
  80. Function NewPasStr(s:string): PString;
  81. end;
  82. {---------------------------------------------------------------------}
  83. { Instruction management types }
  84. {---------------------------------------------------------------------}
  85. toperandtype = (OPR_NONE,OPR_REFERENCE,OPR_CONSTANT,OPR_REGISTER,OPR_LABINSTR,
  86. OPR_REGLIST,OPR_SYMBOL);
  87. { When the TReference field isintvalue = TRUE }
  88. { then offset points to an ABSOLUTE address }
  89. { otherwise isintvalue should always be false }
  90. { Special cases: }
  91. { For the M68k Target, size is UNUSED, the }
  92. { opcode determines the size of the }
  93. { instruction. }
  94. { DIVS/DIVU/MULS/MULU of the form dn,dn:dn }
  95. { is stored as three operands!! }
  96. { Each instruction operand can be of this type }
  97. TOperand = record
  98. size: topsize;
  99. opinfo: longint; { ao_xxxx flags }
  100. overriden : boolean; { indicates if the opcode has been overriden }
  101. { by a pseudo-opcode such as DWORD PTR }
  102. case operandtype:toperandtype of
  103. { the size of the opr_none field should be at least equal to each }
  104. { other field as to facilitate initialization. }
  105. OPR_NONE: (l: array[1..sizeof(treference)] of byte);
  106. OPR_REFERENCE: (ref:treference);
  107. OPR_CONSTANT: (val: longint);
  108. OPR_REGISTER: (reg:tregister);
  109. OPR_LABINSTR: (hl: plabel);
  110. { Register list such as in the movem instruction }
  111. OPR_REGLIST: (list: set of tregister);
  112. OPR_SYMBOL : (symbol:pstring);
  113. end;
  114. TInstruction = object
  115. public
  116. operands: array[1..maxoperands] of TOperand;
  117. { if numops = zero, a size may still be valid in operands[1] }
  118. { it still should be checked. }
  119. numops: byte;
  120. { set to TRUE if the instruction is labeled. }
  121. labeled: boolean;
  122. { This is used for instructions such A_CMPSB... etc, to determine }
  123. { the size of the instruction. }
  124. stropsize: topsize;
  125. procedure init;
  126. procedure done;
  127. { sets up the prefix field with the instruction pointed to in s }
  128. procedure addprefix(tok: tasmop);
  129. { sets up the instruction with the instruction pointed to in s }
  130. procedure addinstr(tok: tasmop);
  131. { get the current instruction of this object }
  132. function getinstruction: tasmop;
  133. { get the current prefix of this instruction }
  134. function getprefix: tasmop;
  135. private
  136. prefix: tasmop;
  137. instruction: tasmop;
  138. end;
  139. {---------------------------------------------------------------------}
  140. { Expression parser types }
  141. {---------------------------------------------------------------------}
  142. { expression parser error codes }
  143. texpr_error =
  144. (zero_divide, { divide by zero. }
  145. stack_overflow, { stack overflow. }
  146. stack_underflow, { stack underflow. }
  147. invalid_number, { invalid conversion }
  148. invalid_op); { invalid operator }
  149. TExprOperator = record
  150. ch: char; { operator }
  151. is_prefix: boolean; { was it a prefix, possible prefixes are +,- and not }
  152. end;
  153. String15 = String[15];
  154. {**********************************************************************}
  155. { The following operators are supported: }
  156. { '+' : addition }
  157. { '-' : subtraction }
  158. { '*' : multiplication }
  159. { '/' : modulo division }
  160. { '^' : exclusive or }
  161. { '<' : shift left }
  162. { '>' : shift right }
  163. { '&' : bitwise and }
  164. { '|' : bitwise or }
  165. { '~' : bitwise complement }
  166. { '%' : modulo division }
  167. { nnn: longint numbers }
  168. { ( and ) parenthesis }
  169. {**********************************************************************}
  170. TExprParse = Object
  171. public
  172. Constructor Init;
  173. Destructor Done;
  174. Function Evaluate(Expr: String): longint;
  175. Procedure Error(anerror: texpr_error); virtual;
  176. Function Priority(_Operator: Char): Integer; virtual;
  177. private
  178. RPNStack : Array[1..RPNMax] of longint; { Stack For RPN calculator }
  179. RPNTop : Integer;
  180. OpStack : Array[1..OpMax] of TExprOperator; { Operator stack For conversion }
  181. OpTop : Integer;
  182. Procedure RPNPush(Num: Longint);
  183. Function RPNPop: Longint;
  184. Procedure RPNCalc(token: String15; prefix: boolean);
  185. Procedure OpPush(_Operator: char; prefix: boolean);
  186. { In reality returns TExprOperaotr }
  187. Procedure OpPop(var _Operator:TExprOperator);
  188. end;
  189. {---------------------------------------------------------------------}
  190. { String routines }
  191. {---------------------------------------------------------------------}
  192. {*********************************************************************}
  193. { PROCEDURE PadZero; }
  194. { Description: Makes sure that the string specified is of the given }
  195. { length, by padding it with binary zeros, or truncating if necessary}
  196. { Remark: The return value is determined BEFORE any eventual padding.}
  197. { Return Value: TRUE = if length of string s was <= then n }
  198. { FALSE = if length of string s was > then n }
  199. {*********************************************************************}
  200. Function PadZero(Var s: String; n: byte): Boolean;
  201. { Converts an Hex digit string to a Decimal string }
  202. { Returns '' if there was an error. }
  203. Function HexToDec(const S:String): String;
  204. { Converts a binary digit string to a Decimal string }
  205. { Returns '' if there was an error. }
  206. Function BinaryToDec(const S:String): String;
  207. { Converts an octal digit string to a Decimal string }
  208. { Returns '' if there was an error. }
  209. Function OctalToDec(const S:String): String;
  210. { Converts a string containing C styled escape sequences to }
  211. { a pascal style string. }
  212. Function EscapeToPascal(const s:string): string;
  213. Procedure ConcatPasString(p : paasmoutput;s:string);
  214. { Writes the string s directly to the assembler output }
  215. Procedure ConcatDirect(p : paasmoutput;s:string);
  216. {---------------------------------------------------------------------}
  217. { Symbol helper routines }
  218. {---------------------------------------------------------------------}
  219. Procedure SetOperandSize(var instr:TInstruction;operandnum,size:longint);
  220. Function GetVarOffsetSize(const base,field:string;Var Offset: longint;var Size:longint):boolean;
  221. Function GetTypeOffsetSize(const base,field: string;Var Offset: longint;var Size:longint):boolean;
  222. Function SearchIConstant(const s:string; var l:longint): boolean;
  223. Function SearchLabel(const s: string; var hl: plabel): boolean;
  224. Function CreateVarInstr(var Instr: TInstruction; const hs:string;
  225. operandnum:byte):boolean;
  226. {*********************************************************************}
  227. { FUNCTION NewPasStr(s:string): PString }
  228. { Description: This routine allocates a string on the heap and }
  229. { returns a pointer to the allocated string. }
  230. { }
  231. { Remarks: The string allocated should not be modified, since it's }
  232. { length will be less then 255. }
  233. { Remarks: It is assumed that HeapError will be called if an }
  234. { allocation fails. }
  235. {*********************************************************************}
  236. Function newpasstr(s: string): Pointer;
  237. Procedure SetupResult(Var Instr:TInstruction; operandnum: byte);
  238. {$ifdef i386}
  239. Procedure FWaitWarning;
  240. {$endif}
  241. {---------------------------------------------------------------------}
  242. { Instruction generation routines }
  243. {---------------------------------------------------------------------}
  244. { swaps in the case of a 2/3 operand opcode the destination and the }
  245. { source as to put it in AT&T style instruction format. }
  246. Procedure SwapOperands(Var instr: TInstruction);
  247. Procedure ConcatLabel(p : paasmoutput;op : tasmop;var l : plabel);
  248. Procedure ConcatConstant(p : paasmoutput;value: longint; maxvalue: longint);
  249. Procedure ConcatRealConstant(p : paasmoutput;value: bestreal; real_typ : tfloattype);
  250. Procedure ConcatString(p : paasmoutput;s:string);
  251. Procedure ConcatPublic(p:paasmoutput;const s : string);
  252. Procedure ConcatLocal(p:paasmoutput;const s : string);
  253. Procedure ConcatGlobalBss(const s : string;size : longint);
  254. Procedure ConcatLocalBss(const s : string;size : longint);
  255. { add to list of external labels }
  256. Procedure ConcatExternal(const s : string;typ : texternal_typ);
  257. { add to internal list of labels }
  258. Procedure ConcatInternal(const s : string;typ : texternal_typ);
  259. Implementation
  260. {*************************************************************************}
  261. { Expression Parser }
  262. {*************************************************************************}
  263. Constructor TExprParse.Init;
  264. Begin
  265. end;
  266. Procedure TExprParse.Error(anerror:texpr_error);
  267. var
  268. t : tmsgconst;
  269. Begin
  270. case anerror of
  271. zero_divide: t:=assem_f_ev_zero_divide;
  272. stack_overflow: t:=assem_f_ev_stack_overflow;
  273. stack_underflow: t:=assem_f_ev_stack_underflow;
  274. invalid_number: t:=assem_f_ev_invalid_number;
  275. invalid_op: t:=assem_f_ev_invalid_op;
  276. else
  277. t:=assem_f_ev_unknown;
  278. end;
  279. Message(t);
  280. end;
  281. Procedure TExprParse.RPNPush(Num : longint); { Add an operand to the top of the RPN stack }
  282. begin
  283. if RPNTop < RPNMax then
  284. begin
  285. Inc(RPNTop);
  286. RPNStack[RPNTop] := Num;
  287. end
  288. else
  289. Error(stack_overflow); { Put some error handler here }
  290. end;
  291. Function TExprParse.RPNPop : longint; { Get the operand at the top of the RPN stack }
  292. begin
  293. if RPNTop > 0 then
  294. begin
  295. RPNPop := RPNStack[RPNTop];
  296. Dec(RPNTop);
  297. end
  298. else { Put some error handler here }
  299. Error(stack_underflow);
  300. end;
  301. Procedure TExprParse.RPNCalc(Token : String15; prefix:boolean); { RPN Calculator }
  302. Var
  303. Temp : longint;
  304. LocalError : Integer;
  305. begin
  306. { Write(Token, ' '); This just outputs the RPN expression }
  307. if (Length(Token) = 1) and (Token[1] in ['+', '-', '*', '/','&','|','%','^','~','<','>']) then
  308. Case Token[1] of { Handle operators }
  309. '+' : Begin
  310. if prefix then
  311. else
  312. RPNPush(RPNPop + RPNPop);
  313. end;
  314. '-' : Begin
  315. if prefix then
  316. RPNPush(-(RPNPop))
  317. else
  318. RPNPush(RPNPop - RPNPop);
  319. end;
  320. '*' : RPNPush(RPNPop * RPNPop);
  321. '&' : RPNPush(RPNPop AND RPNPop);
  322. '|' : RPNPush(RPNPop OR RPNPop);
  323. '~' : RPNPush(NOT RPNPop);
  324. '<' : RPNPush(RPNPop SHL RPNPop);
  325. '>' : RPNPush(RPNPop SHR RPNPop);
  326. '%' : begin
  327. Temp := RPNPop;
  328. if Temp <> 0 then
  329. RPNPush(RPNPop mod Temp)
  330. else Error(zero_divide); { Handle divide by zero error }
  331. end;
  332. '^' : RPNPush(RPNPop XOR RPNPop);
  333. '/' :
  334. begin
  335. Temp := RPNPop;
  336. if Temp <> 0 then
  337. RPNPush(RPNPop div Temp)
  338. else Error(zero_divide);{ Handle divide by 0 error }
  339. end;
  340. end
  341. else
  342. begin { Convert String to number and add to stack }
  343. if token='-2147483648' then
  344. begin
  345. temp:=$80000000;
  346. localerror:=0;
  347. end
  348. else
  349. Val(Token, Temp, LocalError);
  350. if LocalError = 0 then
  351. RPNPush(Temp)
  352. else Error(invalid_number);{ Handle error }
  353. end;
  354. end;
  355. Procedure TExprParse.OpPush(_Operator : char;prefix: boolean); { Add an operator onto top of the stack }
  356. begin
  357. if OpTop < OpMax then
  358. begin
  359. Inc(OpTop);
  360. OpStack[OpTop].ch := _Operator;
  361. OpStack[OpTop].is_prefix := prefix;
  362. end
  363. else Error(stack_overflow); { Put some error handler here }
  364. end;
  365. Procedure TExprParse.OpPop(var _Operator:TExprOperator); { Get operator at the top of the stack }
  366. begin
  367. if OpTop > 0 then
  368. begin
  369. _Operator := OpStack[OpTop];
  370. Dec(OpTop);
  371. end
  372. else Error(stack_underflow); { Put some error handler here }
  373. end;
  374. Function TExprParse.Priority(_Operator : Char) : Integer; { Return priority of operator }
  375. { The greater the priority, the higher the precedence }
  376. begin
  377. Case _Operator OF
  378. '(' : Priority := 0;
  379. '+', '-' : Priority := 1;
  380. '*', '/','%','<','>' : Priority := 2;
  381. '|','&','^','~': Priority := 0;
  382. else Error(invalid_op);{ More error handling }
  383. end;
  384. end;
  385. Function TExprParse.Evaluate(Expr : String):longint;
  386. Var
  387. I : Integer;
  388. Token : String15;
  389. opr: TExprOperator;
  390. begin
  391. OpTop := 0; { Reset stacks }
  392. RPNTop := 0;
  393. Token := '';
  394. For I := 1 to Length(Expr) DO
  395. begin
  396. if Expr[I] in ['0'..'9'] then
  397. begin { Build multi-digit numbers }
  398. Token := Token + Expr[I];
  399. if I = Length(Expr) then { Send last one to calculator }
  400. RPNCalc(Token,false);
  401. end
  402. else
  403. if Expr[I] in ['+', '-', '*', '/', '(', ')','^','&','|','%','~','<','>'] then
  404. begin
  405. if Token <> '' then
  406. begin { Send last built number to calc. }
  407. RPNCalc(Token,false);
  408. Token := '';
  409. end;
  410. Case Expr[I] OF
  411. '(' : OpPush('(',false);
  412. ')' : begin
  413. While OpStack[OpTop].ch <> '(' DO
  414. Begin
  415. OpPop(opr);
  416. RPNCalc(opr.ch,opr.is_prefix);
  417. end;
  418. OpPop(opr); { Pop off and ignore the '(' }
  419. end;
  420. '+','-','~' : Begin
  421. { workaround for -2147483648 }
  422. if (expr[I]='-') and (expr[i+1] in ['0'..'9']) then
  423. begin
  424. token:='-';
  425. expr[i]:='+';
  426. end;
  427. { if start of expression then surely a prefix }
  428. { or if previous char was also an operator }
  429. if (I = 1) or (not (Expr[I-1] in ['0'..'9','(',')'])) then
  430. OpPush(Expr[I],true)
  431. else
  432. Begin
  433. { Evaluate all higher priority operators }
  434. While (OpTop > 0) AND (Priority(Expr[I]) <= Priority(OpStack[OpTop].ch)) DO
  435. Begin
  436. OpPop(opr);
  437. RPNCalc(opr.ch,opr.is_prefix);
  438. end;
  439. OpPush(Expr[I],false);
  440. End;
  441. end;
  442. '*', '/',
  443. '^','|','&',
  444. '%','<','>' : begin
  445. While (OpTop > 0) and (Priority(Expr[I]) <= Priority(OpStack[OpTop].ch)) DO
  446. Begin
  447. OpPop(opr);
  448. RPNCalc(opr.ch,opr.is_prefix);
  449. end;
  450. OpPush(Expr[I],false);
  451. end;
  452. end; { Case }
  453. end
  454. else
  455. Error(invalid_op); { Handle bad input error }
  456. end;
  457. { Pop off the remaining operators }
  458. While OpTop > 0 do
  459. Begin
  460. OpPop(opr);
  461. RPNCalc(opr.ch,opr.is_prefix);
  462. end;
  463. { The result is stored on the top of the stack }
  464. Evaluate := RPNPop;
  465. end;
  466. Destructor TExprParse.Done;
  467. Begin
  468. end;
  469. {*************************************************************************}
  470. { String conversions/utils }
  471. {*************************************************************************}
  472. Function newpasstr(s: string): Pointer;
  473. Var
  474. StrPtr: PString;
  475. Begin
  476. GetMem(StrPtr, length(s)+1);
  477. Move(s,StrPtr^,length(s)+1);
  478. newpasstr:= Strptr;
  479. end;
  480. Function EscapeToPascal(const s:string): string;
  481. { converts a C styled string - which contains escape }
  482. { characters to a pascal style string. }
  483. var
  484. i,j: word;
  485. str: string;
  486. temp: string;
  487. value: byte;
  488. code: integer;
  489. Begin
  490. str:='';
  491. i:=1;
  492. j:=1;
  493. repeat
  494. if s[i] = '\' then
  495. Begin
  496. Inc(i);
  497. if i > 255 then
  498. Begin
  499. EscapeToPascal:=str;
  500. exit;
  501. end;
  502. case s[i] of
  503. '\': insert('\',str,j);
  504. 'b': insert(#08,str,j);
  505. 'f': insert(#12,str,j);
  506. 'n': insert(#10,str,j);
  507. 'r': insert(#13,str,j);
  508. 't': insert(#09,str,j);
  509. '"': insert('"',str,j);
  510. { octal number }
  511. '0'..'7': Begin
  512. temp:=s[i];
  513. temp:=temp+s[i+1];
  514. temp:=temp+s[i+2];
  515. inc(i,2);
  516. val(octaltodec(temp),value,code);
  517. if (code <> 0) then
  518. Message(assem_w_invalid_numeric);
  519. insert(chr(value),str,j);
  520. end;
  521. { hexadecimal number }
  522. 'x': Begin
  523. temp:=s[i+1];
  524. temp:=temp+s[i+2];
  525. inc(i,2);
  526. val(hextodec(temp),value,code);
  527. if (code <> 0) then
  528. Message(assem_w_invalid_numeric);
  529. insert(chr(value),str,j);
  530. end;
  531. else
  532. Begin
  533. Message1(assem_e_escape_seq_ignored,s[i]);
  534. insert(s[i],str,j);
  535. end;
  536. end; {end case }
  537. Inc(i);
  538. end
  539. else
  540. Begin
  541. Insert(s[i],str,j);
  542. Inc(i);
  543. if i > 255 then
  544. Begin
  545. EscapeToPascal:=str;
  546. exit;
  547. end;
  548. end;
  549. Inc(j);
  550. until (i > length(s)) or (j > 255);
  551. EscapeToPascal:=str;
  552. end;
  553. Function OctalToDec(const S:String): String;
  554. { Converts an octal string to a Decimal string }
  555. { Returns '' if there was an error. }
  556. var vs: longint;
  557. c: byte;
  558. st: string;
  559. Begin
  560. vs := 0;
  561. for c:=1 to length(s) do
  562. begin
  563. case s[c] of
  564. '0': vs:=vs shl 3;
  565. '1': vs:=vs shl 3+1;
  566. '2': vs:=vs shl 3+2;
  567. '3': vs:=vs shl 3+3;
  568. '4': vs:=vs shl 3+4;
  569. '5': vs:=vs shl 3+5;
  570. '6': vs:=vs shl 3+6;
  571. '7': vs:=vs shl 3+7;
  572. else
  573. begin
  574. OctalToDec := '';
  575. exit;
  576. end;
  577. end;
  578. end;
  579. str(vs,st);
  580. OctalToDec := st;
  581. end;
  582. Function BinaryToDec(const S:String): String;
  583. { Converts a binary string to a Decimal string }
  584. { Returns '' if there was an error. }
  585. var vs: longint;
  586. c: byte;
  587. st: string;
  588. Begin
  589. vs := 0;
  590. for c:=1 to length(s) do
  591. begin
  592. if s[c] = '0' then
  593. vs:=vs shl 1
  594. else
  595. if s[c]='1' then
  596. vs:=vs shl 1+1
  597. else
  598. begin
  599. BinaryToDec := '';
  600. exit;
  601. end;
  602. end;
  603. str(vs,st);
  604. BinaryToDec := st;
  605. end;
  606. Function HexToDec(const S:String): String;
  607. var vs: longint;
  608. c: byte;
  609. st: string;
  610. Begin
  611. vs := 0;
  612. for c:=1 to length(s) do
  613. begin
  614. case upcase(s[c]) of
  615. '0': vs:=vs shl 4;
  616. '1': vs:=vs shl 4+1;
  617. '2': vs:=vs shl 4+2;
  618. '3': vs:=vs shl 4+3;
  619. '4': vs:=vs shl 4+4;
  620. '5': vs:=vs shl 4+5;
  621. '6': vs:=vs shl 4+6;
  622. '7': vs:=vs shl 4+7;
  623. '8': vs:=vs shl 4+8;
  624. '9': vs:=vs shl 4+9;
  625. 'A': vs:=vs shl 4+10;
  626. 'B': vs:=vs shl 4+11;
  627. 'C': vs:=vs shl 4+12;
  628. 'D': vs:=vs shl 4+13;
  629. 'E': vs:=vs shl 4+14;
  630. 'F': vs:=vs shl 4+15;
  631. else
  632. begin
  633. HexToDec := '';
  634. exit;
  635. end;
  636. end;
  637. end;
  638. str(vs,st);
  639. HexToDec := st;
  640. end;
  641. Function PadZero(Var s: String; n: byte): Boolean;
  642. Begin
  643. PadZero := TRUE;
  644. { Do some error checking first }
  645. if Length(s) = n then
  646. exit
  647. else
  648. if Length(s) > n then
  649. Begin
  650. PadZero := FALSE;
  651. delete(s,n+1,length(s));
  652. exit;
  653. end
  654. else
  655. PadZero := TRUE;
  656. { Fill it up with the specified character }
  657. fillchar(s[length(s)+1],n-1,#0);
  658. {$ifndef TP}
  659. {$ifopt H+}
  660. setlength(s,n);
  661. {$else}
  662. s[0] := chr(n);
  663. {$endif}
  664. {$else}
  665. s[0] := chr(n);
  666. {$endif}
  667. end;
  668. {*************************************************************************}
  669. { Instruction utilities }
  670. {*************************************************************************}
  671. Procedure TInstruction.init;
  672. var
  673. k: integer;
  674. Begin
  675. numops := 0;
  676. labeled := FALSE;
  677. stropsize := S_NO;
  678. prefix := A_NONE;
  679. instruction := A_NONE;
  680. for k:=1 to maxoperands do
  681. begin
  682. operands[k].size := S_NO;
  683. operands[k].overriden := FALSE;
  684. operands[k].operandtype := OPR_NONE;
  685. { init to zeros }
  686. fillchar(operands[k].l, sizeof(operands[k].l),#0);
  687. end;
  688. end;
  689. Procedure TInstruction.addprefix(tok: tasmop);
  690. Begin
  691. if tok = A_NONE then
  692. Message(assem_e_syn_prefix_not_found);
  693. if Prefix = A_NONE then
  694. Prefix := tok
  695. else
  696. Message(assem_e_syn_try_add_more_prefix);
  697. end;
  698. Procedure TInstruction.addinstr(tok: tasmop);
  699. Begin
  700. if tok = A_NONE then
  701. Message(assem_e_syn_opcode_not_found);
  702. Instruction := tok;
  703. end;
  704. function TInstruction.getinstruction: tasmop;
  705. Begin
  706. getinstruction := Instruction;
  707. end;
  708. { get the current prefix of this instruction }
  709. function TInstruction.getprefix: tasmop;
  710. Begin
  711. getprefix := prefix;
  712. end;
  713. Procedure TInstruction.done;
  714. var
  715. k: integer;
  716. Begin
  717. for k:=1 to numops do
  718. begin
  719. if (operands[k].operandtype=OPR_REFERENCE) and
  720. assigned(operands[k].ref.symbol) then
  721. stringdispose(operands[k].ref.symbol);
  722. if (operands[k].operandtype=OPR_SYMBOL) and
  723. assigned(operands[k].symbol) then
  724. stringdispose(operands[k].symbol);
  725. end;
  726. end;
  727. {*************************************************************************}
  728. { Local label utilities }
  729. {*************************************************************************}
  730. Constructor TAsmLabelList.Init;
  731. Begin
  732. First := nil;
  733. Last := nil;
  734. end;
  735. Procedure TAsmLabelList.Insert(s:string; lab: PLabel; emitted: boolean);
  736. {*********************************************************************}
  737. { Description: Insert a node at the end of the list with lab and }
  738. { and the name in s. The name is allocated on the heap. }
  739. { Duplicates are not allowed. }
  740. { Indicate in emitted if this label itself has been emitted, or is it}
  741. { a simple labeled instruction? }
  742. {*********************************************************************}
  743. Begin
  744. if search(s) = nil then
  745. Begin
  746. if First = nil then
  747. Begin
  748. New(First);
  749. Last := First;
  750. end
  751. else
  752. Begin
  753. New(Last^.Next);
  754. Last := Last^.Next;
  755. end;
  756. Last^.name := NewPasStr(s);
  757. Last^.Lab := lab;
  758. Last^.Next := nil;
  759. Last^.emitted := emitted;
  760. end;
  761. end;
  762. Function TAsmLabelList.Search(const s: string): PAsmLabel;
  763. {*********************************************************************}
  764. { Description: This routine searches for a label named s in the }
  765. { linked list, returns a pointer to the label if found, otherwise }
  766. { returns nil. }
  767. {*********************************************************************}
  768. Var
  769. asmlab: PAsmLabel;
  770. Begin
  771. asmlab := First;
  772. if First = nil then
  773. Begin
  774. Search := nil;
  775. exit;
  776. end;
  777. While (asmlab^.name^ <> s) and (asmlab^.Next <> nil) do
  778. asmlab := asmlab^.Next;
  779. if asmlab^.name^ = s then
  780. search := asmlab
  781. else
  782. search := nil;
  783. end;
  784. Destructor TAsmLabelList.Done;
  785. {*********************************************************************}
  786. { Description: This routine takes care of deallocating all nodes }
  787. { in the linked list, as well as deallocating the string pointers }
  788. { of these nodes. }
  789. { }
  790. { Remark: The PLabel field is NOT freed, the compiler takes care of }
  791. { this. }
  792. {*********************************************************************}
  793. Var
  794. temp: PAsmLabel;
  795. temp1: PAsmLabel;
  796. Begin
  797. temp := First;
  798. while temp <> nil do
  799. Begin
  800. Freemem(Temp^.name, length(Temp^.name^)+1);
  801. Temp1 := Temp^.Next;
  802. Dispose(Temp);
  803. Temp := Temp1;
  804. { The plabel could be deleted here, but let us not do }
  805. { it, FPC will do it instead. }
  806. end;
  807. end;
  808. Function TAsmLabelList.newpasstr(s: string): PString;
  809. {*********************************************************************}
  810. { FUNCTION NewPasStr(s:string): PString }
  811. { Description: This routine allocates a string on the heap and }
  812. { returns a pointer to the allocated string. }
  813. { }
  814. { Remarks: The string allocated should not be modified, since it's }
  815. { length will be less then 255. }
  816. { Remarks: It is assumed that HeapError will be called if an }
  817. { allocation fails. }
  818. {*********************************************************************}
  819. Var
  820. StrPtr: PString;
  821. Begin
  822. GetMem(StrPtr, length(s)+1);
  823. Move(s,StrPtr^,length(s)+1);
  824. newpasstr:= Strptr;
  825. end;
  826. {*************************************************************************}
  827. { Symbol table helper routines }
  828. {*************************************************************************}
  829. Procedure SwapOperands(Var instr: TInstruction);
  830. Var
  831. tempopr: TOperand;
  832. Begin
  833. if instr.numops = 2 then
  834. Begin
  835. tempopr := instr.operands[1];
  836. instr.operands[1] := instr.operands[2];
  837. instr.operands[2] := tempopr;
  838. end
  839. else
  840. if instr.numops = 3 then
  841. Begin
  842. tempopr := instr.operands[1];
  843. instr.operands[1] := instr.operands[3];
  844. instr.operands[3] := tempopr;
  845. end;
  846. end;
  847. Function SearchIConstant(const s:string; var l:longint): boolean;
  848. {**********************************************************************}
  849. { Description: Searches for a CONSTANT of name s in either the local }
  850. { symbol list, then in the global symbol list, and returns the value }
  851. { of that constant in l. Returns TRUE if successfull, if not found, }
  852. { or if the constant is not of correct type, then returns FALSE }
  853. { Remarks: Also handle TRUE and FALSE returning in those cases 1 and 0 }
  854. { respectively. }
  855. {**********************************************************************}
  856. var
  857. sym: psym;
  858. Begin
  859. SearchIConstant := FALSE;
  860. { check for TRUE or FALSE reserved words first }
  861. if s = 'TRUE' then
  862. Begin
  863. SearchIConstant := TRUE;
  864. l := 1;
  865. end
  866. else
  867. if s = 'FALSE' then
  868. Begin
  869. SearchIConstant := TRUE;
  870. l := 0;
  871. end
  872. else
  873. if assigned(aktprocsym) then
  874. Begin
  875. if assigned(aktprocsym^.definition) then
  876. Begin
  877. { Check the local constants }
  878. if assigned(aktprocsym^.definition^.localst) then
  879. sym := aktprocsym^.definition^.localst^.search(s)
  880. else
  881. sym := nil;
  882. if assigned(sym) then
  883. Begin
  884. if (sym^.typ = constsym) and
  885. (pconstsym(sym)^.consttype in [constord,constint,constchar,constbool]) then
  886. Begin
  887. l:=pconstsym(sym)^.value;
  888. SearchIConstant := TRUE;
  889. exit;
  890. end;
  891. end;
  892. end;
  893. end;
  894. { Check the global constants }
  895. getsym(s,false);
  896. if srsym <> nil then
  897. Begin
  898. case srsym^.typ of
  899. constsym :
  900. begin
  901. if (pconstsym(srsym)^.consttype in [constord,constint,constchar,constbool]) then
  902. Begin
  903. l:=pconstsym(srsym)^.value;
  904. SearchIConstant := TRUE;
  905. exit;
  906. end;
  907. end;
  908. end;
  909. end;
  910. end;
  911. Procedure SetupResult(Var Instr:TInstruction; operandnum: byte);
  912. {**********************************************************************}
  913. { Description: This routine changes the correct fields and correct }
  914. { offset in the reference, so that it points to the __RESULT or }
  915. { @Result variable (depending on the inline asm). }
  916. { Resturns a reference with all correct offset correctly set up. }
  917. { The Operand should already point to a treference on entry. }
  918. {**********************************************************************}
  919. Begin
  920. { replace by correct offset. }
  921. if assigned(procinfo.retdef) and
  922. (procinfo.retdef<>pdef(voiddef)) then
  923. begin
  924. instr.operands[operandnum].ref.offset := procinfo.retoffset;
  925. instr.operands[operandnum].ref.base := procinfo.framepointer;
  926. { always assume that the result is valid. }
  927. procinfo.funcret_is_valid:=true;
  928. end
  929. else
  930. Message(assem_e_invalid_symbol_ref);
  931. end;
  932. {$ifdef i386}
  933. Procedure FWaitWarning;
  934. begin
  935. if (target_info.target=target_i386_GO32V2) and (cs_fp_emulation in aktmoduleswitches) then
  936. Message(assem_w_fwait_emu_prob);
  937. end;
  938. {$endif i386}
  939. Procedure SetOperandSize(var instr:TInstruction;operandnum,size:longint);
  940. begin
  941. { the current size is NOT overriden if it already }
  942. { exists, such as in the case of a byte ptr, in }
  943. { front of the identifier. }
  944. if (instr.operands[operandnum].size = S_NO) or (instr.operands[operandnum].overriden = FALSE) then
  945. Begin
  946. case size of
  947. 1: instr.operands[operandnum].size := S_B;
  948. 2: instr.operands[operandnum].size := S_W{ could be S_IS};
  949. 4: instr.operands[operandnum].size := S_L{ could be S_IL or S_FS};
  950. 8: instr.operands[operandnum].size := S_IQ{ could be S_D or S_FL};
  951. extended_size: instr.operands[operandnum].size := S_FX;
  952. else
  953. { this is in the case where the instruction is LEA }
  954. { or something like that, in that case size is not }
  955. { important. }
  956. instr.operands[operandnum].size := S_NO;
  957. end; { end case }
  958. end;
  959. end;
  960. Function GetVarOffsetSize(const base,field:string;Var Offset: longint;var Size:longint):boolean;
  961. { search and returns the offset and size of records/objects of the base }
  962. { with field name setup in field. }
  963. { returns FALSE if not found. }
  964. { used when base is a variable or a typed constant name. }
  965. var
  966. sym:psym;
  967. p: psym;
  968. Begin
  969. GetVarOffsetSize := FALSE;
  970. Offset := 0;
  971. { local list }
  972. if assigned(aktprocsym) then
  973. begin
  974. if assigned(aktprocsym^.definition^.localst) then
  975. sym:=aktprocsym^.definition^.localst^.search(base)
  976. else
  977. sym:=nil;
  978. if assigned(sym) then
  979. begin
  980. { field of local record variable. }
  981. if (sym^.typ=varsym) and (pvarsym(sym)^.definition^.deftype=recorddef) then
  982. begin
  983. p:=pvarsym(precdef(pvarsym(sym)^.definition)^.symtable^.search(field));
  984. if assigned(pvarsym(p)) then
  985. Begin
  986. Offset := pvarsym(p)^.address;
  987. Size:=PVarsym(p)^.getsize;
  988. GetVarOffsetSize := TRUE;
  989. Exit;
  990. end;
  991. end
  992. else
  993. if (sym^.typ=varsym) and (pvarsym(sym)^.definition^.deftype=objectdef) then
  994. begin
  995. if assigned(pobjectdef(pvarsym(sym)^.definition)^.publicsyms) then
  996. begin
  997. p:=pvarsym(pobjectdef(pvarsym(sym)^.definition)^.publicsyms^.search(field));
  998. if assigned(pvarsym(p)) then
  999. Begin
  1000. Offset := pvarsym(p)^.address;
  1001. Size:=PVarsym(p)^.getsize;
  1002. GetVarOffsetSize := TRUE;
  1003. Exit;
  1004. end;
  1005. end;
  1006. end;
  1007. end
  1008. else
  1009. begin
  1010. { field of local record parameter to routine. }
  1011. if assigned(aktprocsym^.definition^.parast) then
  1012. sym:=aktprocsym^.definition^.parast^.search(base)
  1013. else
  1014. sym:=nil;
  1015. if assigned(sym) then
  1016. begin
  1017. if (sym^.typ=varsym) and (pvarsym(sym)^.definition^.deftype=recorddef)
  1018. then
  1019. begin
  1020. p:=pvarsym(precdef(pvarsym(sym)^.definition)^.symtable^.search(field));
  1021. if assigned(p) then
  1022. Begin
  1023. Offset := pvarsym(p)^.address;
  1024. Size:=PVarsym(p)^.getsize;
  1025. GetVarOffsetSize := TRUE;
  1026. Exit;
  1027. end;
  1028. end { endif }
  1029. else
  1030. if (sym^.typ=varsym) and (pvarsym(sym)^.definition^.deftype=objectdef) then
  1031. begin
  1032. if assigned(pobjectdef(pvarsym(sym)^.definition)^.publicsyms) then
  1033. begin
  1034. p:=pvarsym(pobjectdef(pvarsym(sym)^.definition)^.publicsyms^.search(field));
  1035. if assigned(pvarsym(p)) then
  1036. Begin
  1037. Offset := pvarsym(p)^.address;
  1038. Size:=PVarsym(p)^.getsize;
  1039. GetVarOffsetSize := TRUE;
  1040. Exit;
  1041. end;
  1042. end;
  1043. end;
  1044. end;
  1045. end;
  1046. end; { endif assigned(aktprocsym) }
  1047. { not found.. .now look for global variables. }
  1048. getsym(base,false);
  1049. sym:=srsym;
  1050. if assigned(sym) then
  1051. Begin
  1052. { field of global record variable. }
  1053. if (sym^.typ=varsym) and (pvarsym(sym)^.definition^.deftype=recorddef) then
  1054. begin
  1055. p:=pvarsym(precdef(pvarsym(sym)^.definition)^.symtable^.search(field));
  1056. if assigned(p) then
  1057. Begin
  1058. Offset := pvarsym(p)^.address;
  1059. Size:=PVarsym(p)^.getsize;
  1060. GetVarOffsetSize := TRUE;
  1061. Exit;
  1062. end;
  1063. end
  1064. else
  1065. { field of global record type constant. }
  1066. if (sym^.typ=typedconstsym) and (ptypedconstsym(sym)^.definition^.deftype=recorddef)
  1067. then
  1068. begin
  1069. p:=pvarsym(precdef(pvarsym(sym)^.definition)^.symtable^.search(field));
  1070. if assigned(p) then
  1071. Begin
  1072. Offset := pvarsym(p)^.address;
  1073. Size:=PVarsym(p)^.getsize;
  1074. GetVarOffsetSize := TRUE;
  1075. Exit;
  1076. end;
  1077. end
  1078. else
  1079. if (sym^.typ=varsym) and (pvarsym(sym)^.definition^.deftype=objectdef) then
  1080. begin
  1081. if assigned(pobjectdef(pvarsym(sym)^.definition)^.publicsyms) then
  1082. begin
  1083. p:=pvarsym(pobjectdef(pvarsym(sym)^.definition)^.publicsyms^.search(field));
  1084. if assigned(pvarsym(p)) then
  1085. Begin
  1086. Offset := pvarsym(p)^.address;
  1087. Size:=PVarsym(p)^.getsize;
  1088. GetVarOffsetSize := TRUE;
  1089. Exit;
  1090. end;
  1091. end;
  1092. end;
  1093. end; { end looking for global variables .. }
  1094. end;
  1095. Function GetTypeOffsetSize(const base,field: string;Var Offset: longint;var Size:longint):boolean;
  1096. { search and returns the offset of records/objects of the base }
  1097. { with field name setup in field. }
  1098. { returns 0 if not found. }
  1099. { used when base is a variable or a typed constant name. }
  1100. var
  1101. sym:psym;
  1102. p: psym;
  1103. Begin
  1104. Offset := 0;
  1105. GetTypeOffsetSize := FALSE;
  1106. { local list }
  1107. if assigned(aktprocsym) then
  1108. begin
  1109. if assigned(aktprocsym^.definition^.localst) then
  1110. sym:=aktprocsym^.definition^.localst^.search(base)
  1111. else
  1112. sym:=nil;
  1113. if assigned(sym) then
  1114. begin
  1115. { field of local record type. }
  1116. if (sym^.typ=typesym) and (ptypesym(sym)^.definition^.deftype=recorddef) then
  1117. begin
  1118. p:=precdef(ptypesym(sym)^.definition)^.symtable^.search(field);
  1119. if assigned(p) then
  1120. Begin
  1121. Offset := pvarsym(p)^.address;
  1122. Size:=PVarsym(p)^.getsize;
  1123. GetTypeOffsetSize := TRUE;
  1124. Exit;
  1125. end;
  1126. end;
  1127. end
  1128. else
  1129. begin
  1130. { field of local record type to routine. }
  1131. if assigned(aktprocsym^.definition^.parast) then
  1132. sym:=aktprocsym^.definition^.parast^.search(base)
  1133. else
  1134. sym:=nil;
  1135. if assigned(sym) then
  1136. begin
  1137. if (sym^.typ=typesym) and (ptypesym(sym)^.definition^.deftype=recorddef)
  1138. then
  1139. begin
  1140. p:=precdef(ptypesym(sym)^.definition)^.symtable^.search(field);
  1141. if assigned(p) then
  1142. Begin
  1143. Offset := pvarsym(p)^.address;
  1144. GetTypeOffsetSize := TRUE;
  1145. Exit;
  1146. end;
  1147. end; { endif }
  1148. end; {endif }
  1149. end; { endif }
  1150. end;
  1151. { not found.. .now look for global types. }
  1152. getsym(base,false);
  1153. sym:=srsym;
  1154. if assigned(sym) then
  1155. Begin
  1156. { field of global record types. }
  1157. if (sym^.typ=typesym) and (ptypesym(sym)^.definition^.deftype=recorddef) then
  1158. begin
  1159. p:=precdef(ptypesym(sym)^.definition)^.symtable^.search(field);
  1160. if assigned(p) then
  1161. Begin
  1162. Offset := pvarsym(p)^.address;
  1163. Size:=PVarsym(p)^.getsize;
  1164. GetTypeOffsetSize := TRUE;
  1165. Exit;
  1166. end
  1167. end
  1168. else
  1169. { public field names of objects }
  1170. if (sym^.typ=typesym) and (ptypesym(sym)^.definition^.deftype=objectdef)then
  1171. begin
  1172. if assigned(pobjectdef(ptypesym(sym)^.definition)^.publicsyms) then
  1173. Begin
  1174. p:=pobjectdef(ptypesym(sym)^.definition)^.publicsyms^.search(field);
  1175. if assigned(p) then
  1176. Begin
  1177. Offset := pvarsym(p)^.address;
  1178. Size:=PVarsym(p)^.getsize;
  1179. GetTypeOffsetSize := TRUE;
  1180. Exit;
  1181. end
  1182. end;
  1183. end;
  1184. end; { end looking for global variables .. }
  1185. end;
  1186. Function CreateVarInstr(var Instr: TInstruction; const hs:string;operandnum:byte): Boolean;
  1187. { search and sets up the correct fields in the Instr record }
  1188. { for the NON-constant identifier passed to the routine. }
  1189. { if not found returns FALSE. }
  1190. var
  1191. sym : psym;
  1192. l : longint;
  1193. Begin
  1194. CreateVarInstr := FALSE;
  1195. { are we in a routine ? }
  1196. if assigned(aktprocsym) then
  1197. begin
  1198. { search the local list for the name of this variable. }
  1199. if assigned(aktprocsym^.definition^.localst) then
  1200. sym:=aktprocsym^.definition^.localst^.search(hs)
  1201. else
  1202. sym:=nil;
  1203. if assigned(sym) then
  1204. begin
  1205. case sym^.typ of
  1206. varsym : begin
  1207. { we always assume in asm statements that }
  1208. { that the variable is valid. }
  1209. pvarsym(sym)^.is_valid:=1;
  1210. if pvarsym(sym)^.owner^.symtabletype=staticsymtable then
  1211. begin
  1212. if assigned(instr.operands[operandnum].ref.symbol) then
  1213. FreeMem(instr.operands[operandnum].ref.symbol,length(instr.operands[operandnum].ref.symbol^)+1);
  1214. instr.operands[operandnum].ref.symbol:=newpasstr(pvarsym(sym)^.mangledname);
  1215. end
  1216. else
  1217. begin
  1218. instr.operands[operandnum].ref.base := procinfo.framepointer;
  1219. instr.operands[operandnum].ref.offset := -(pvarsym(sym)^.address);
  1220. end;
  1221. { the current size is NOT overriden if it already }
  1222. { exists, such as in the case of a byte ptr, in }
  1223. { front of the identifier. }
  1224. if (instr.operands[operandnum].size = S_NO) or (instr.operands[operandnum].overriden = FALSE) then
  1225. Begin
  1226. case pvarsym(sym)^.getsize of
  1227. 1: instr.operands[operandnum].size := S_B;
  1228. 2: instr.operands[operandnum].size := S_W{ could be S_IS};
  1229. 4: instr.operands[operandnum].size := S_L{ could be S_IL or S_FS};
  1230. 8: instr.operands[operandnum].size := S_IQ{ could be S_D or S_FL};
  1231. extended_size: instr.operands[operandnum].size := S_FX;
  1232. else
  1233. { this is in the case where the instruction is LEA }
  1234. { or something like that, in that case size is not }
  1235. { important. }
  1236. instr.operands[operandnum].size := S_NO;
  1237. end; { end case }
  1238. end;
  1239. { ok, finished for this var }
  1240. CreateVarInstr := TRUE;
  1241. Exit;
  1242. end;
  1243. typedconstsym : begin
  1244. { we always assume in asm statements that }
  1245. { that the variable is valid. }
  1246. if assigned(instr.operands[operandnum].ref.symbol) then
  1247. FreeMem(instr.operands[operandnum].ref.symbol,length(instr.operands[operandnum].ref.symbol^)+1);
  1248. instr.operands[operandnum].ref.symbol:=newpasstr(pvarsym(sym)^.mangledname);
  1249. { the current size is NOT overriden if it already }
  1250. { exists, such as in the case of a byte ptr, in }
  1251. { front of the identifier. }
  1252. if (instr.operands[operandnum].size = S_NO) or (instr.operands[operandnum].overriden = FALSE) then
  1253. Begin
  1254. case ptypedconstsym(sym)^.getsize of
  1255. 1: instr.operands[operandnum].size := S_B;
  1256. 2: instr.operands[operandnum].size := S_W{ could be S_IS};
  1257. 4: instr.operands[operandnum].size := S_L{ could be S_IL or S_FS};
  1258. 8: instr.operands[operandnum].size := S_IQ{ could be S_D or S_FL};
  1259. extended_size: instr.operands[operandnum].size := S_FX;
  1260. else
  1261. instr.operands[operandnum].size := S_NO;
  1262. end; { end case }
  1263. end;
  1264. { ok, finished for this var }
  1265. CreateVarInstr := TRUE;
  1266. Exit;
  1267. end;
  1268. constsym : begin
  1269. if pconstsym(sym)^.consttype in [constint,constchar,constbool] then
  1270. begin
  1271. instr.operands[operandnum].operandtype:=OPR_CONSTANT;
  1272. instr.operands[operandnum].val:=pconstsym(sym)^.value;
  1273. CreateVarInstr := TRUE;
  1274. Exit;
  1275. end;
  1276. end;
  1277. typesym : begin
  1278. if ptypesym(sym)^.definition^.deftype in [recorddef,objectdef] then
  1279. begin
  1280. instr.operands[operandnum].operandtype:=OPR_CONSTANT;
  1281. instr.operands[operandnum].val:=0;
  1282. CreateVarInstr := TRUE;
  1283. Exit;
  1284. end;
  1285. end;
  1286. procsym : begin
  1287. { free the memory before changing the symbol name. }
  1288. if assigned(instr.operands[operandnum].ref.symbol) then
  1289. FreeMem(instr.operands[operandnum].ref.symbol,length(instr.operands[operandnum].ref.symbol^)+1);
  1290. instr.operands[operandnum].operandtype:=OPR_SYMBOL;
  1291. instr.operands[operandnum].symbol:=newpasstr(pprocsym(sym)^.definition^.mangledname);
  1292. CreateVarInstr := TRUE;
  1293. Exit;
  1294. end
  1295. else
  1296. begin
  1297. Message(assem_e_unsupported_symbol_type);
  1298. exit;
  1299. end;
  1300. end;
  1301. end;
  1302. { now check for parameters passed to routine }
  1303. if assigned(aktprocsym^.definition^.parast) then
  1304. sym:=aktprocsym^.definition^.parast^.search(hs)
  1305. else
  1306. sym:=nil;
  1307. if assigned(sym) then
  1308. begin
  1309. case sym^.typ of
  1310. varsym : begin
  1311. l:=pvarsym(sym)^.address;
  1312. { set offset }
  1313. inc(l,aktprocsym^.definition^.parast^.call_offset);
  1314. pvarsym(sym)^.is_valid:=1;
  1315. instr.operands[operandnum].ref.base := procinfo.framepointer;
  1316. instr.operands[operandnum].ref.offset := l;
  1317. { the current size is NOT overriden if it already }
  1318. { exists, such as in the case of a byte ptr, in }
  1319. { front of the identifier. }
  1320. if (instr.operands[operandnum].size = S_NO) or (instr.operands[operandnum].overriden = FALSE) then
  1321. Begin
  1322. case pvarsym(sym)^.getsize of
  1323. 1: instr.operands[operandnum].size := S_B;
  1324. 2: instr.operands[operandnum].size := S_W;
  1325. 4: instr.operands[operandnum].size := S_L;
  1326. 8: instr.operands[operandnum].size := S_IQ;
  1327. extended_size: instr.operands[operandnum].size := S_FX;
  1328. else
  1329. { this is in the case where the instruction is LEA }
  1330. { or something like that, in that case size is not }
  1331. { important. }
  1332. instr.operands[operandnum].size := S_NO;
  1333. end; { end case }
  1334. end; { endif }
  1335. CreateVarInstr := TRUE;
  1336. Exit;
  1337. end;
  1338. else
  1339. begin
  1340. Message(assem_e_unsupported_symbol_type);
  1341. exit;
  1342. end;
  1343. end; { case }
  1344. end; { endif }
  1345. end;
  1346. { not found.. .now look for global variables. }
  1347. getsym(hs,false);
  1348. sym:=srsym;
  1349. if assigned(sym) then
  1350. Begin
  1351. case sym^.typ of
  1352. varsym,
  1353. typedconstsym : Begin
  1354. { free the memory before changing the symbol name. }
  1355. if assigned(instr.operands[operandnum].ref.symbol) then
  1356. FreeMem(instr.operands[operandnum].ref.symbol,length(instr.operands[operandnum].ref.symbol^)+1);
  1357. instr.operands[operandnum].ref.symbol:=newpasstr(sym^.mangledname);
  1358. { the current size is NOT overriden if it already }
  1359. { exists, such as in the case of a byte ptr, in }
  1360. { front of the identifier. }
  1361. if (instr.operands[operandnum].size = S_NO) or (instr.operands[operandnum].overriden = FALSE) then
  1362. Begin
  1363. case pvarsym(sym)^.getsize of
  1364. 1: instr.operands[operandnum].size := S_B;
  1365. 2: instr.operands[operandnum].size := S_W;
  1366. 4: instr.operands[operandnum].size := S_L;
  1367. 8: instr.operands[operandnum].size := S_IQ;
  1368. else
  1369. { this is in the case where the instruction is LEA }
  1370. { or something like that, in that case size is not }
  1371. { important. }
  1372. instr.operands[operandnum].size := S_NO;
  1373. end;
  1374. end
  1375. else
  1376. if (instr.operands[operandnum].size = S_NO) and (sym^.typ = typedconstsym) then
  1377. Begin
  1378. { only these are valid sizes, otherwise prefixes are }
  1379. { required. }
  1380. case ptypedconstsym(sym)^.definition^.size of
  1381. 1: instr.operands[operandnum].size := S_B;
  1382. 2: instr.operands[operandnum].size := S_W;
  1383. 4: instr.operands[operandnum].size := S_L;
  1384. 8: instr.operands[operandnum].size := S_IQ;
  1385. else
  1386. { this is in the case where the instruction is LEA }
  1387. { or something like that, in that case size is not }
  1388. { important. }
  1389. instr.operands[operandnum].size := S_NO;
  1390. end;
  1391. end; { endif }
  1392. CreateVarInstr := TRUE;
  1393. Exit;
  1394. end;
  1395. constsym : begin
  1396. if pconstsym(sym)^.consttype in [constint,constchar,constbool] then
  1397. begin
  1398. instr.operands[operandnum].operandtype:=OPR_CONSTANT;
  1399. instr.operands[operandnum].val:=pconstsym(sym)^.value;
  1400. CreateVarInstr := TRUE;
  1401. Exit;
  1402. end;
  1403. end;
  1404. typesym : begin
  1405. if ptypesym(sym)^.definition^.deftype in [recorddef,objectdef] then
  1406. begin
  1407. instr.operands[operandnum].operandtype:=OPR_CONSTANT;
  1408. instr.operands[operandnum].val:=0;
  1409. CreateVarInstr := TRUE;
  1410. Exit;
  1411. end;
  1412. end;
  1413. procsym : begin
  1414. if assigned(pprocsym(sym)^.definition^.nextoverloaded) then
  1415. Message(assem_w_calling_overload_func);
  1416. { free the memory before changing the symbol name. }
  1417. if assigned(instr.operands[operandnum].ref.symbol) then
  1418. FreeMem(instr.operands[operandnum].ref.symbol,length(instr.operands[operandnum].ref.symbol^)+1);
  1419. instr.operands[operandnum].operandtype:=OPR_SYMBOL;
  1420. instr.operands[operandnum].size:=S_L;
  1421. instr.operands[operandnum].symbol:=newpasstr(pprocsym(sym)^.definition^.mangledname);
  1422. CreateVarInstr := TRUE;
  1423. Exit;
  1424. end;
  1425. else
  1426. begin
  1427. Message(assem_e_unsupported_symbol_type);
  1428. exit;
  1429. end;
  1430. end; {case}
  1431. end; { end looking for global variables .. }
  1432. end;
  1433. Function SearchLabel(const s: string; var hl: plabel): boolean;
  1434. {**********************************************************************}
  1435. { Description: Searches for a pascal label definition, first in the }
  1436. { local symbol list and then in the global symbol list. If found then }
  1437. { return pointer to label and return true, otherwise returns false. }
  1438. {**********************************************************************}
  1439. var
  1440. sym: psym;
  1441. Begin
  1442. SearchLabel := FALSE;
  1443. if assigned(aktprocsym) then
  1444. Begin
  1445. { Check the local constants }
  1446. if assigned(aktprocsym^.definition) then
  1447. Begin
  1448. if assigned(aktprocsym^.definition^.localst) then
  1449. sym := aktprocsym^.definition^.localst^.search(s)
  1450. else
  1451. sym := nil;
  1452. if assigned(sym) then
  1453. Begin
  1454. if (sym^.typ = labelsym) then
  1455. Begin
  1456. hl:=plabelsym(sym)^.number;
  1457. SearchLabel := TRUE;
  1458. exit;
  1459. end;
  1460. end;
  1461. end;
  1462. end;
  1463. { Check the global label symbols... }
  1464. getsym(s,false);
  1465. if srsym <> nil then
  1466. Begin
  1467. if (srsym^.typ=labelsym) then
  1468. Begin
  1469. hl:=plabelsym(srsym)^.number;
  1470. SearchLabel:= TRUE;
  1471. exit;
  1472. end;
  1473. end;
  1474. end;
  1475. {*************************************************************************}
  1476. { Instruction Generation Utilities }
  1477. {*************************************************************************}
  1478. Procedure ConcatString(p : paasmoutput;s:string);
  1479. {*********************************************************************}
  1480. { PROCEDURE ConcatString(s:string); }
  1481. { Description: This routine adds the character chain pointed to in }
  1482. { s to the instruction linked list. }
  1483. {*********************************************************************}
  1484. Var
  1485. pc: PChar;
  1486. Begin
  1487. getmem(pc,length(s)+1);
  1488. p^.concat(new(pai_string,init_length_pchar(strpcopy(pc,s),length(s))));
  1489. end;
  1490. Procedure ConcatPasString(p : paasmoutput;s:string);
  1491. {*********************************************************************}
  1492. { PROCEDURE ConcatPasString(s:string); }
  1493. { Description: This routine adds the character chain pointed to in }
  1494. { s to the instruction linked list, contrary to ConcatString it }
  1495. { uses a pascal style string, so it conserves null characters. }
  1496. {*********************************************************************}
  1497. Begin
  1498. p^.concat(new(pai_string,init(s)));
  1499. end;
  1500. Procedure ConcatDirect(p : paasmoutput;s:string);
  1501. {*********************************************************************}
  1502. { PROCEDURE ConcatDirect(s:string) }
  1503. { Description: This routine output the string directly to the asm }
  1504. { output, it is only sed when writing special labels in AT&T mode, }
  1505. { and should not be used without due consideration, since it may }
  1506. { cause problems. }
  1507. {*********************************************************************}
  1508. Var
  1509. pc: PChar;
  1510. Begin
  1511. getmem(pc,length(s)+1);
  1512. p^.concat(new(pai_direct,init(strpcopy(pc,s))));
  1513. end;
  1514. Procedure ConcatConstant(p: paasmoutput; value: longint; maxvalue: longint);
  1515. {*********************************************************************}
  1516. { PROCEDURE ConcatConstant(value: longint; maxvalue: longint); }
  1517. { Description: This routine adds the value constant to the current }
  1518. { instruction linked list. }
  1519. { maxvalue -> indicates the size of the data to initialize: }
  1520. { $ff -> create a byte node. }
  1521. { $ffff -> create a word node. }
  1522. { $ffffffff -> create a dword node. }
  1523. {*********************************************************************}
  1524. Begin
  1525. if value > maxvalue then
  1526. Begin
  1527. Message(assem_e_constant_out_of_bounds);
  1528. { assuming a value of maxvalue }
  1529. value := maxvalue;
  1530. end;
  1531. if maxvalue = $ff then
  1532. p^.concat(new(pai_const,init_8bit(byte(value))))
  1533. else
  1534. if maxvalue = $ffff then
  1535. p^.concat(new(pai_const,init_16bit(word(value))))
  1536. else
  1537. if maxvalue = $ffffffff then
  1538. p^.concat(new(pai_const,init_32bit(longint(value))));
  1539. end;
  1540. Procedure ConcatRealConstant(p : paasmoutput;value: bestreal; real_typ : tfloattype);
  1541. {***********************************************************************}
  1542. { PROCEDURE ConcatRealConstant(value: bestreal; real_typ : tfloattype); }
  1543. { Description: This routine adds the value constant to the current }
  1544. { instruction linked list. }
  1545. { real_typ -> indicates the type of the real data to initialize: }
  1546. { s32real -> create a single node. }
  1547. { s64real -> create a double node. }
  1548. { s80real -> create an extended node. }
  1549. { s64bit -> create a comp node. }
  1550. { f32bit -> create a fixed node. (not used normally) }
  1551. {***********************************************************************}
  1552. Begin
  1553. case real_typ of
  1554. s32real : p^.concat(new(pai_single,init(value)));
  1555. s64real : p^.concat(new(pai_double,init(value)));
  1556. s80real : p^.concat(new(pai_extended,init(value)));
  1557. s64bit : p^.concat(new(pai_comp,init(value)));
  1558. f32bit : p^.concat(new(pai_const,init_32bit(trunc(value*$10000))));
  1559. end;
  1560. end;
  1561. Procedure ConcatLabel(p: paasmoutput;op : tasmop;var l : plabel);
  1562. {*********************************************************************}
  1563. { PROCEDURE ConcatLabel }
  1564. { Description: This routine either emits a label or a labeled }
  1565. { instruction to the linked list of instructions. }
  1566. {*********************************************************************}
  1567. begin
  1568. if op=A_LABEL then
  1569. p^.concat(new(pai_label,init(l)))
  1570. else
  1571. p^.concat(new(pai_labeled,init(op,l)))
  1572. end;
  1573. procedure ConcatPublic(p:paasmoutput;const s : string);
  1574. {*********************************************************************}
  1575. { PROCEDURE ConcatPublic }
  1576. { Description: This routine emits an global definition to the }
  1577. { linked list of instructions.(used by AT&T styled asm) }
  1578. {*********************************************************************}
  1579. begin
  1580. p^.concat(new(pai_symbol,init_global(s)));
  1581. { concat_internal(s,EXT_NEAR); done in aasm }
  1582. end;
  1583. procedure ConcatLocal(p:paasmoutput;const s : string);
  1584. {*********************************************************************}
  1585. { PROCEDURE ConcatLocal }
  1586. { Description: This routine emits an local definition to the }
  1587. { linked list of instructions. }
  1588. {*********************************************************************}
  1589. begin
  1590. p^.concat(new(pai_symbol,init(s)));
  1591. { concat_internal(s,EXT_NEAR); done in aasm }
  1592. end;
  1593. Procedure ConcatGlobalBss(const s : string;size : longint);
  1594. {*********************************************************************}
  1595. { PROCEDURE ConcatGlobalBss }
  1596. { Description: This routine emits an global datablock to the }
  1597. { linked list of instructions. }
  1598. {*********************************************************************}
  1599. begin
  1600. bsssegment^.concat(new(pai_datablock,init_global(s,size)));
  1601. { concat_internal(s,EXT_NEAR); done in aasm }
  1602. end;
  1603. Procedure ConcatLocalBss(const s : string;size : longint);
  1604. {*********************************************************************}
  1605. { PROCEDURE ConcatLocalBss }
  1606. { Description: This routine emits a local datablcok to the }
  1607. { linked list of instructions. }
  1608. {*********************************************************************}
  1609. begin
  1610. bsssegment^.concat(new(pai_datablock,init(s,size)));
  1611. { concat_internal(s,EXT_NEAR); done in aasm }
  1612. end;
  1613. { add to list of external labels }
  1614. Procedure ConcatExternal(const s : string;typ : texternal_typ);
  1615. {*********************************************************************}
  1616. { PROCEDURE ConcatExternal }
  1617. { Description: This routine emits an external definition to the }
  1618. { linked list of instructions.(used by AT&T styled asm) }
  1619. {*********************************************************************}
  1620. { check if in internal list and remove it there }
  1621. var p : pai_external;
  1622. begin
  1623. p:=search_assembler_symbol(internals,s,typ);
  1624. if p<>nil then internals^.remove(p);
  1625. concat_external(s,typ);
  1626. end;
  1627. { add to internal list of labels }
  1628. Procedure ConcatInternal(const s : string;typ : texternal_typ);
  1629. {*********************************************************************}
  1630. { PROCEDURE ConcatInternal }
  1631. { Description: This routine emits an internal definition of a symbol }
  1632. { (used by AT&T styled asm for undefined labels) }
  1633. {*********************************************************************}
  1634. begin
  1635. concat_internal(s,typ);
  1636. end;
  1637. end.
  1638. {
  1639. $Log$
  1640. Revision 1.16 1998-12-11 00:02:44 peter
  1641. + globtype,tokens,version unit splitted from globals
  1642. Revision 1.15 1998/11/17 00:26:11 peter
  1643. * fixed for $H+
  1644. Revision 1.14 1998/11/05 23:48:17 peter
  1645. * recordtype.field support in constant expressions
  1646. * fixed imul for oa_imm8 which was not allowed
  1647. * fixed reading of local typed constants
  1648. * fixed comment reading which is not any longer a separator
  1649. Revision 1.13 1998/10/28 00:08:45 peter
  1650. + leal procsym,eax is now allowed
  1651. + constants are now handled also when starting an expression
  1652. + call *pointer is now allowed
  1653. Revision 1.12 1998/10/14 11:28:13 florian
  1654. * emitpushreferenceaddress gets now the asmlist as parameter
  1655. * m68k version compiles with -duseansistrings
  1656. Revision 1.11 1998/10/13 16:49:59 pierre
  1657. * undid some changes of Peter that made the compiler wrong
  1658. for m68k (I had to reinsert some ifdefs)
  1659. * removed several memory leaks under m68k
  1660. * removed the meory leaks for assembler readers
  1661. * cross compiling shoud work again better
  1662. ( crosscompiling sysamiga works
  1663. but as68k still complain about some code !)
  1664. Revision 1.10 1998/10/13 13:10:10 peter
  1665. * new style for m68k/i386 infos and enums
  1666. Revision 1.9 1998/09/24 17:54:15 carl
  1667. * bugfixes from fix branch
  1668. Revision 1.8.2.1 1998/09/24 17:46:25 carl
  1669. * support for objects in asm statements
  1670. Revision 1.8 1998/08/27 00:43:06 carl
  1671. +} now record offsets searches set the operand sizes
  1672. Revision 1.7 1998/08/18 20:51:32 peter
  1673. * fixed bug 42
  1674. Revision 1.6 1998/08/10 14:49:40 peter
  1675. + localswitches, moduleswitches, globalswitches splitting
  1676. Revision 1.5 1998/07/14 21:46:38 peter
  1677. * updated messages file
  1678. Revision 1.4 1998/06/04 23:51:31 peter
  1679. * m68k compiles
  1680. + .def file creation moved to gendef.pas so it could also be used
  1681. for win32
  1682. Revision 1.3 1998/05/31 14:13:30 peter
  1683. * fixed call bugs with assembler readers
  1684. + OPR_SYMBOL to hold a symbol in the asm parser
  1685. * fixed staticsymtable vars which were acessed through %ebp instead of
  1686. name
  1687. Revision 1.2 1998/04/29 10:33:43 pierre
  1688. + added some code for ansistring (not complete nor working yet)
  1689. * corrected operator overloading
  1690. * corrected nasm output
  1691. + started inline procedures
  1692. + added starstarn : use ** for exponentiation (^ gave problems)
  1693. + started UseTokenInfo cond to get accurate positions
  1694. }