aggas.pas 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052
  1. {
  2. Copyright (c) 1998-2006 by the Free Pascal team
  3. This unit implements the generic part of the GNU assembler
  4. (v2.8 or later) writer
  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. }
  18. { Base unit for writing GNU assembler output.
  19. }
  20. unit aggas;
  21. {$i fpcdefs.inc}
  22. interface
  23. uses
  24. globtype,globals,
  25. aasmbase,aasmtai,aasmdata,
  26. assemble;
  27. type
  28. TCPUInstrWriter = class;
  29. {# This is a derived class which is used to write
  30. GAS styled assembler.
  31. }
  32. { TGNUAssembler }
  33. TGNUAssembler=class(texternalassembler)
  34. protected
  35. function sectionname(atype:TAsmSectiontype;const aname:string;aorder:TAsmSectionOrder):string;virtual;
  36. function sectionattrs_coff(atype:TAsmSectiontype):string;virtual;
  37. function sectionalignment_aix(atype:TAsmSectiontype;secalign: byte):string;
  38. procedure WriteSection(atype:TAsmSectiontype;const aname:string;aorder:TAsmSectionOrder;secalign:byte);
  39. procedure WriteExtraHeader;virtual;
  40. procedure WriteExtraFooter;virtual;
  41. procedure WriteInstruction(hp: tai);
  42. procedure WriteWeakSymbolDef(s: tasmsymbol); virtual;
  43. procedure WriteAixStringConst(hp: tai_string);
  44. procedure WriteAixIntConst(hp: tai_const);
  45. procedure WriteUnalignedIntConst(hp: tai_const);
  46. procedure WriteDirectiveName(dir: TAsmDirective); virtual;
  47. public
  48. function MakeCmdLine: TCmdStr; override;
  49. procedure WriteTree(p:TAsmList);override;
  50. procedure WriteAsmList;override;
  51. destructor destroy; override;
  52. private
  53. setcount: longint;
  54. procedure WriteDecodedSleb128(a: int64);
  55. procedure WriteDecodedUleb128(a: qword);
  56. function NextSetLabel: string;
  57. protected
  58. InstrWriter: TCPUInstrWriter;
  59. end;
  60. {# This is the base class for writing instructions.
  61. The WriteInstruction() method must be overridden
  62. to write a single instruction to the assembler
  63. file.
  64. }
  65. TCPUInstrWriter = class
  66. constructor create(_owner: TGNUAssembler);
  67. procedure WriteInstruction(hp : tai); virtual; abstract;
  68. protected
  69. owner: TGNUAssembler;
  70. end;
  71. { TAppleGNUAssembler }
  72. TAppleGNUAssembler=class(TGNUAssembler)
  73. protected
  74. function sectionname(atype:TAsmSectiontype;const aname:string;aorder:TAsmSectionOrder):string;override;
  75. procedure WriteWeakSymbolDef(s: tasmsymbol); override;
  76. end;
  77. TAoutGNUAssembler=class(TGNUAssembler)
  78. function sectionname(atype:TAsmSectiontype;const aname:string;aorder:TAsmSectionOrder):string;override;
  79. end;
  80. implementation
  81. uses
  82. SysUtils,
  83. cutils,cfileutl,systems,
  84. fmodule,verbose,
  85. {$ifndef DISABLE_WIN64_SEH}
  86. itcpugas,
  87. {$endif DISABLE_WIN64_SEH}
  88. {$ifdef m68k}
  89. cpuinfo,aasmcpu,
  90. {$endif m68k}
  91. cpubase;
  92. const
  93. line_length = 70;
  94. var
  95. symendcount : longint;
  96. type
  97. {$ifdef cpuextended}
  98. t80bitarray = array[0..9] of byte;
  99. {$endif cpuextended}
  100. t64bitarray = array[0..7] of byte;
  101. t32bitarray = array[0..3] of byte;
  102. {****************************************************************************}
  103. { Support routines }
  104. {****************************************************************************}
  105. function single2str(d : single) : string;
  106. var
  107. hs : string;
  108. begin
  109. str(d,hs);
  110. { replace space with + }
  111. if hs[1]=' ' then
  112. hs[1]:='+';
  113. single2str:='0d'+hs
  114. end;
  115. function double2str(d : double) : string;
  116. var
  117. hs : string;
  118. begin
  119. str(d,hs);
  120. { replace space with + }
  121. if hs[1]=' ' then
  122. hs[1]:='+';
  123. double2str:='0d'+hs
  124. end;
  125. function extended2str(e : extended) : string;
  126. var
  127. hs : string;
  128. begin
  129. str(e,hs);
  130. { replace space with + }
  131. if hs[1]=' ' then
  132. hs[1]:='+';
  133. extended2str:='0d'+hs
  134. end;
  135. { convert floating point values }
  136. { to correct endian }
  137. procedure swap64bitarray(var t: t64bitarray);
  138. var
  139. b: byte;
  140. begin
  141. b:= t[7];
  142. t[7] := t[0];
  143. t[0] := b;
  144. b := t[6];
  145. t[6] := t[1];
  146. t[1] := b;
  147. b:= t[5];
  148. t[5] := t[2];
  149. t[2] := b;
  150. b:= t[4];
  151. t[4] := t[3];
  152. t[3] := b;
  153. end;
  154. procedure swap32bitarray(var t: t32bitarray);
  155. var
  156. b: byte;
  157. begin
  158. b:= t[1];
  159. t[1]:= t[2];
  160. t[2]:= b;
  161. b:= t[0];
  162. t[0]:= t[3];
  163. t[3]:= b;
  164. end;
  165. const
  166. ait_const2str : array[aitconst_128bit..aitconst_64bit_unaligned] of string[20]=(
  167. #9'.fixme128'#9,#9'.quad'#9,#9'.long'#9,#9'.short'#9,#9'.byte'#9,
  168. #9'.sleb128'#9,#9'.uleb128'#9,
  169. #9'.rva'#9,#9'.secrel32'#9,#9'.quad'#9,#9'.long'#9,#9'.short'#9,
  170. #9'.short'#9,#9'.long'#9,#9'.quad'#9
  171. );
  172. ait_unaligned_consts = [aitconst_16bit_unaligned..aitconst_64bit_unaligned];
  173. { Sparc type of unaligned pseudo-instructions }
  174. use_ua_sparc_systems = [system_sparc_linux];
  175. ait_ua_sparc_const2str : array[aitconst_16bit_unaligned..aitconst_64bit_unaligned]
  176. of string[20]=(
  177. #9'.uahalf'#9,#9'.uaword'#9,#9'.uaxword'#9
  178. );
  179. { Alpha type of unaligned pseudo-instructions }
  180. use_ua_alpha_systems = [system_alpha_linux];
  181. ait_ua_alpha_const2str : array[aitconst_16bit_unaligned..aitconst_64bit_unaligned]
  182. of string[20]=(
  183. #9'.uword'#9,#9'.ulong'#9,#9'.uquad'#9
  184. );
  185. { Generic unaligned pseudo-instructions, seems ELF specific }
  186. use_ua_elf_systems = [system_mipsel_linux,system_mipseb_linux,system_mipsel_android,system_mipsel_embedded,system_mipseb_embedded];
  187. ait_ua_elf_const2str : array[aitconst_16bit_unaligned..aitconst_64bit_unaligned]
  188. of string[20]=(
  189. #9'.2byte'#9,#9'.4byte'#9,#9'.8byte'#9
  190. );
  191. {****************************************************************************}
  192. { GNU Assembler writer }
  193. {****************************************************************************}
  194. destructor TGNUAssembler.Destroy;
  195. begin
  196. InstrWriter.free;
  197. inherited destroy;
  198. end;
  199. function TGNUAssembler.MakeCmdLine: TCmdStr;
  200. begin
  201. result := inherited MakeCmdLine;
  202. // MWE: disabled again. It generates dwarf info for the generated .s
  203. // files as well. This conflicts with the info we generate
  204. // if target_dbg.id = dbg_dwarf then
  205. // result := result + ' --gdwarf-2';
  206. end;
  207. function TGNUAssembler.NextSetLabel: string;
  208. begin
  209. inc(setcount);
  210. result := target_asm.labelprefix+'$set$'+tostr(setcount);
  211. end;
  212. function is_smart_section(atype:TAsmSectiontype):boolean;
  213. begin
  214. { For bss we need to set some flags that are target dependent,
  215. it is easier to disable it for smartlinking. It doesn't take up
  216. filespace }
  217. result:=not(target_info.system in systems_darwin) and
  218. create_smartlink_sections and
  219. (atype<>sec_toc) and
  220. (atype<>sec_user) and
  221. { on embedded systems every byte counts, so smartlink bss too }
  222. ((atype<>sec_bss) or (target_info.system in systems_embedded));
  223. end;
  224. function TGNUAssembler.sectionname(atype:TAsmSectiontype;const aname:string;aorder:TAsmSectionOrder):string;
  225. const
  226. secnames : array[TAsmSectiontype] of string[length('__DATA, __datacoal_nt,coalesced')] = ('','',
  227. '.text',
  228. '.data',
  229. { why doesn't .rodata work? (FK) }
  230. { sometimes we have to create a data.rel.ro instead of .rodata, e.g. for }
  231. { vtables (and anything else containing relocations), otherwise those are }
  232. { not relocated properly on e.g. linux/ppc64. g++ generates there for a }
  233. { vtable for a class called Window: }
  234. { .section .data.rel.ro._ZTV6Window,"awG",@progbits,_ZTV6Window,comdat }
  235. { TODO: .data.ro not yet working}
  236. {$if defined(arm) or defined(powerpc)}
  237. '.rodata',
  238. {$else arm}
  239. '.data',
  240. {$endif arm}
  241. {$if defined(m68k)} { Amiga/m68k GNU AS doesn't seem to like .rodata (KB) }
  242. '.data',
  243. {$else}
  244. '.rodata',
  245. {$endif}
  246. '.bss',
  247. '.threadvar',
  248. '.pdata',
  249. '', { stubs }
  250. '__DATA,__nl_symbol_ptr',
  251. '__DATA,__la_symbol_ptr',
  252. '__DATA,__mod_init_func',
  253. '__DATA,__mod_term_func',
  254. '.stab',
  255. '.stabstr',
  256. '.idata$2','.idata$4','.idata$5','.idata$6','.idata$7','.edata',
  257. '.eh_frame',
  258. '.debug_frame','.debug_info','.debug_line','.debug_abbrev',
  259. '.fpc',
  260. '.toc',
  261. '.init',
  262. '.fini',
  263. '.objc_class',
  264. '.objc_meta_class',
  265. '.objc_cat_cls_meth',
  266. '.objc_cat_inst_meth',
  267. '.objc_protocol',
  268. '.objc_string_object',
  269. '.objc_cls_meth',
  270. '.objc_inst_meth',
  271. '.objc_cls_refs',
  272. '.objc_message_refs',
  273. '.objc_symbols',
  274. '.objc_category',
  275. '.objc_class_vars',
  276. '.objc_instance_vars',
  277. '.objc_module_info',
  278. '.objc_class_names',
  279. '.objc_meth_var_types',
  280. '.objc_meth_var_names',
  281. '.objc_selector_strs',
  282. '.objc_protocol_ext',
  283. '.objc_class_ext',
  284. '.objc_property',
  285. '.objc_image_info',
  286. '.objc_cstring_object',
  287. '.objc_sel_fixup',
  288. '__DATA,__objc_data',
  289. '__DATA,__objc_const',
  290. '.objc_superrefs',
  291. '__DATA, __datacoal_nt,coalesced',
  292. '.objc_classlist',
  293. '.objc_nlclasslist',
  294. '.objc_catlist',
  295. '.obcj_nlcatlist',
  296. '.objc_protolist',
  297. '.stack',
  298. '.heap'
  299. );
  300. secnames_pic : array[TAsmSectiontype] of string[length('__DATA, __datacoal_nt,coalesced')] = ('','',
  301. '.text',
  302. '.data.rel',
  303. '.data.rel',
  304. '.data.rel',
  305. '.bss',
  306. '.threadvar',
  307. '.pdata',
  308. '', { stubs }
  309. '__DATA,__nl_symbol_ptr',
  310. '__DATA,__la_symbol_ptr',
  311. '__DATA,__mod_init_func',
  312. '__DATA,__mod_term_func',
  313. '.stab',
  314. '.stabstr',
  315. '.idata$2','.idata$4','.idata$5','.idata$6','.idata$7','.edata',
  316. '.eh_frame',
  317. '.debug_frame','.debug_info','.debug_line','.debug_abbrev',
  318. '.fpc',
  319. '.toc',
  320. '.init',
  321. '.fini',
  322. '.objc_class',
  323. '.objc_meta_class',
  324. '.objc_cat_cls_meth',
  325. '.objc_cat_inst_meth',
  326. '.objc_protocol',
  327. '.objc_string_object',
  328. '.objc_cls_meth',
  329. '.objc_inst_meth',
  330. '.objc_cls_refs',
  331. '.objc_message_refs',
  332. '.objc_symbols',
  333. '.objc_category',
  334. '.objc_class_vars',
  335. '.objc_instance_vars',
  336. '.objc_module_info',
  337. '.objc_class_names',
  338. '.objc_meth_var_types',
  339. '.objc_meth_var_names',
  340. '.objc_selector_strs',
  341. '.objc_protocol_ext',
  342. '.objc_class_ext',
  343. '.objc_property',
  344. '.objc_image_info',
  345. '.objc_cstring_object',
  346. '.objc_sel_fixup',
  347. '__DATA, __objc_data',
  348. '__DATA, __objc_const',
  349. '.objc_superrefs',
  350. '__DATA, __datacoal_nt,coalesced',
  351. '.objc_classlist',
  352. '.objc_nlclasslist',
  353. '.objc_catlist',
  354. '.obcj_nlcatlist',
  355. '.objc_protolist',
  356. '.stack',
  357. '.heap'
  358. );
  359. var
  360. sep : string[3];
  361. secname : string;
  362. begin
  363. if (cs_create_pic in current_settings.moduleswitches) and
  364. not(target_info.system in systems_darwin) then
  365. secname:=secnames_pic[atype]
  366. else
  367. secname:=secnames[atype];
  368. {$ifdef m68k}
  369. { old Amiga GNU AS doesn't support .section .fpc }
  370. if (atype=sec_fpc) and (target_info.system = system_m68k_amiga) then
  371. secname:=secnames[sec_data];
  372. {$endif}
  373. if (atype=sec_fpc) and (Copy(aname,1,3)='res') then
  374. begin
  375. result:=secname+'.'+aname;
  376. exit;
  377. end;
  378. if (atype=sec_threadvar) and
  379. (target_info.system in (systems_windows+systems_wince)) then
  380. secname:='.tls';
  381. { go32v2 stub only loads .text and .data sections, and allocates space for .bss.
  382. Thus, data which normally goes into .rodata and .rodata_norel sections must
  383. end up in .data section }
  384. if (atype in [sec_rodata,sec_rodata_norel]) and
  385. (target_info.system=system_i386_go32v2) then
  386. secname:='.data';
  387. { section type user gives the user full controll on the section name }
  388. if atype=sec_user then
  389. secname:=aname;
  390. if is_smart_section(atype) and (aname<>'') then
  391. begin
  392. case aorder of
  393. secorder_begin :
  394. sep:='.b_';
  395. secorder_end :
  396. sep:='.z_';
  397. else
  398. sep:='.n_';
  399. end;
  400. result:=secname+sep+aname
  401. end
  402. else
  403. result:=secname;
  404. end;
  405. function TGNUAssembler.sectionattrs_coff(atype:TAsmSectiontype):string;
  406. begin
  407. case atype of
  408. sec_code, sec_init, sec_fini, sec_stub:
  409. result:='x';
  410. { TODO: must be individual for each section }
  411. sec_user:
  412. result:='d';
  413. sec_data, sec_data_lazy, sec_data_nonlazy, sec_fpc,
  414. sec_idata2, sec_idata4, sec_idata5, sec_idata6, sec_idata7:
  415. result:='d';
  416. { TODO: these need a fix to become read-only }
  417. sec_rodata, sec_rodata_norel:
  418. result:='d';
  419. sec_bss:
  420. result:='b';
  421. { TODO: Somewhat questionable. FPC does not allow initialized threadvars,
  422. so no sense to mark it as containing data. But Windows allows it to
  423. contain data, and Linux even has .tdata and .tbss }
  424. sec_threadvar:
  425. result:='b';
  426. sec_pdata, sec_edata, sec_eh_frame, sec_toc:
  427. result:='r';
  428. sec_stab,sec_stabstr,
  429. sec_debug_frame,sec_debug_info,sec_debug_line,sec_debug_abbrev:
  430. result:='n';
  431. else
  432. result:=''; { defaults to data+load }
  433. end;
  434. end;
  435. function TGNUAssembler.sectionalignment_aix(atype:TAsmSectiontype;secalign: byte): string;
  436. var
  437. l: longint;
  438. begin
  439. if (secalign=0) or
  440. not(atype in [sec_code,sec_bss,sec_rodata_norel,sec_rodata,sec_data]) then
  441. begin
  442. result:='';
  443. exit;
  444. end;
  445. if not ispowerof2(secalign,l) then
  446. internalerror(2012022201);
  447. result:=tostr(l);
  448. end;
  449. procedure TGNUAssembler.WriteSection(atype:TAsmSectiontype;const aname:string;aorder:TAsmSectionOrder;secalign:byte);
  450. var
  451. s : string;
  452. begin
  453. AsmLn;
  454. case target_info.system of
  455. system_i386_OS2,
  456. system_i386_EMX,
  457. system_m68k_amiga: ; { amiga has old GNU AS (2.14), which blews up from .section (KB) }
  458. system_powerpc_darwin,
  459. system_i386_darwin,
  460. system_i386_iphonesim,
  461. system_powerpc64_darwin,
  462. system_x86_64_darwin,
  463. system_arm_darwin,
  464. system_aarch64_darwin,
  465. system_x86_64_iphonesim,
  466. system_powerpc_aix,
  467. system_powerpc64_aix:
  468. begin
  469. if (atype in [sec_stub,sec_objc_data,sec_objc_const,sec_data_coalesced]) then
  470. AsmWrite('.section ');
  471. end
  472. else
  473. AsmWrite('.section ');
  474. end;
  475. s:=sectionname(atype,aname,aorder);
  476. AsmWrite(s);
  477. case atype of
  478. sec_fpc :
  479. if aname = 'resptrs' then
  480. AsmWrite(', "a", @progbits');
  481. sec_stub :
  482. begin
  483. case target_info.system of
  484. { there are processor-independent shortcuts available }
  485. { for this, namely .symbol_stub and .picsymbol_stub, but }
  486. { they don't work and gcc doesn't use them either... }
  487. system_powerpc_darwin,
  488. system_powerpc64_darwin:
  489. if (cs_create_pic in current_settings.moduleswitches) then
  490. AsmWriteln('__TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32')
  491. else
  492. AsmWriteln('__TEXT,__symbol_stub1,symbol_stubs,pure_instructions,16');
  493. system_i386_darwin,
  494. system_i386_iphonesim:
  495. AsmWriteln('__IMPORT,__jump_table,symbol_stubs,self_modifying_code+pure_instructions,5');
  496. system_arm_darwin:
  497. if (cs_create_pic in current_settings.moduleswitches) then
  498. AsmWriteln('__TEXT,__picsymbolstub4,symbol_stubs,none,16')
  499. else
  500. AsmWriteln('__TEXT,__symbol_stub4,symbol_stubs,none,12')
  501. { darwin/(x86-64/AArch64) uses PC-based GOT addressing, no
  502. explicit symbol stubs }
  503. else
  504. internalerror(2006031101);
  505. end;
  506. end;
  507. else
  508. { GNU AS won't recognize '.text.n_something' section name as belonging
  509. to '.text' and assigns default attributes to it, which is not
  510. always correct. We have to fix it.
  511. TODO: This likely applies to all systems which smartlink without
  512. creating libraries }
  513. if (target_info.system in [system_i386_win32,system_x86_64_win64]) and
  514. is_smart_section(atype) and (aname<>'') then
  515. begin
  516. s:=sectionattrs_coff(atype);
  517. if (s<>'') then
  518. AsmWrite(',"'+s+'"');
  519. end
  520. else if target_info.system in systems_aix then
  521. begin
  522. s:=sectionalignment_aix(atype,secalign);
  523. if s<>'' then
  524. AsmWrite(','+s);
  525. end;
  526. end;
  527. AsmLn;
  528. LastSecType:=atype;
  529. end;
  530. procedure TGNUAssembler.WriteDecodedUleb128(a: qword);
  531. var
  532. i,len : longint;
  533. buf : array[0..63] of byte;
  534. begin
  535. len:=EncodeUleb128(a,buf);
  536. for i:=0 to len-1 do
  537. begin
  538. if (i > 0) then
  539. AsmWrite(',');
  540. AsmWrite(tostr(buf[i]));
  541. end;
  542. end;
  543. procedure TGNUAssembler.WriteDecodedSleb128(a: int64);
  544. var
  545. i,len : longint;
  546. buf : array[0..255] of byte;
  547. begin
  548. len:=EncodeSleb128(a,buf);
  549. for i:=0 to len-1 do
  550. begin
  551. if (i > 0) then
  552. AsmWrite(',');
  553. AsmWrite(tostr(buf[i]));
  554. end;
  555. end;
  556. procedure TGNUAssembler.WriteTree(p:TAsmList);
  557. function needsObject(hp : tai_symbol) : boolean;
  558. begin
  559. needsObject :=
  560. (
  561. assigned(hp.next) and
  562. (tai(hp.next).typ in [ait_const,ait_datablock,
  563. ait_real_32bit,ait_real_64bit,ait_real_80bit,ait_comp_64bit])
  564. ) or
  565. (hp.sym.typ=AT_DATA);
  566. end;
  567. procedure doalign(alignment: byte; use_op: boolean; fillop: byte; out last_align: longint;lasthp:tai);
  568. var
  569. i: longint;
  570. {$ifdef m68k}
  571. instr : string;
  572. {$endif}
  573. begin
  574. last_align:=alignment;
  575. if alignment>1 then
  576. begin
  577. if not(target_info.system in (systems_darwin+systems_aix)) then
  578. begin
  579. {$ifdef m68k}
  580. if not use_op and (lastsectype=sec_code) then
  581. begin
  582. if not ispowerof2(alignment,i) then
  583. internalerror(2014022201);
  584. { the Coldfire manual suggests the TBF instruction for
  585. alignments, but somehow QEMU does not interpret that
  586. correctly... }
  587. {if current_settings.cputype in cpu_coldfire then
  588. instr:='0x51fc'
  589. else}
  590. instr:='0x4e71';
  591. AsmWrite(#9'.balignw '+tostr(alignment)+','+instr);
  592. end
  593. else
  594. begin
  595. {$endif m68k}
  596. AsmWrite(#9'.balign '+tostr(alignment));
  597. if use_op then
  598. AsmWrite(','+tostr(fillop))
  599. {$ifdef x86}
  600. { force NOP as alignment op code }
  601. else if LastSecType=sec_code then
  602. AsmWrite(',0x90');
  603. {$endif x86}
  604. {$ifdef m68k}
  605. end;
  606. {$endif m68k}
  607. end
  608. else
  609. begin
  610. { darwin and aix as only support .align }
  611. if not ispowerof2(alignment,i) then
  612. internalerror(2003010305);
  613. AsmWrite(#9'.align '+tostr(i));
  614. last_align:=i;
  615. end;
  616. AsmLn;
  617. end;
  618. end;
  619. var
  620. ch : char;
  621. lasthp,
  622. hp : tai;
  623. constdef : taiconst_type;
  624. s,t : string;
  625. i,pos,l : longint;
  626. InlineLevel : cardinal;
  627. last_align : longint;
  628. co : comp;
  629. sin : single;
  630. d : double;
  631. {$ifdef cpuextended}
  632. e : extended;
  633. {$endif cpuextended}
  634. do_line : boolean;
  635. sepChar : char;
  636. replaceforbidden: boolean;
  637. begin
  638. if not assigned(p) then
  639. exit;
  640. replaceforbidden:=target_asm.dollarsign<>'$';
  641. last_align := 2;
  642. InlineLevel:=0;
  643. { lineinfo is only needed for al_procedures (PFV) }
  644. do_line:=(cs_asm_source in current_settings.globalswitches) or
  645. ((cs_lineinfo in current_settings.moduleswitches)
  646. and (p=current_asmdata.asmlists[al_procedures]));
  647. lasthp:=nil;
  648. hp:=tai(p.first);
  649. while assigned(hp) do
  650. begin
  651. prefetch(pointer(hp.next)^);
  652. if not(hp.typ in SkipLineInfo) then
  653. begin
  654. current_filepos:=tailineinfo(hp).fileinfo;
  655. { no line info for inlined code }
  656. if do_line and (inlinelevel=0) then
  657. WriteSourceLine(hp as tailineinfo);
  658. end;
  659. case hp.typ of
  660. ait_comment :
  661. Begin
  662. AsmWrite(target_asm.comment);
  663. AsmWritePChar(tai_comment(hp).str);
  664. AsmLn;
  665. End;
  666. ait_regalloc :
  667. begin
  668. if (cs_asm_regalloc in current_settings.globalswitches) then
  669. begin
  670. AsmWrite(#9+target_asm.comment+'Register ');
  671. repeat
  672. AsmWrite(std_regname(Tai_regalloc(hp).reg));
  673. if (hp.next=nil) or
  674. (tai(hp.next).typ<>ait_regalloc) or
  675. (tai_regalloc(hp.next).ratype<>tai_regalloc(hp).ratype) then
  676. break;
  677. hp:=tai(hp.next);
  678. AsmWrite(',');
  679. until false;
  680. AsmWrite(' ');
  681. AsmWriteLn(regallocstr[tai_regalloc(hp).ratype]);
  682. end;
  683. end;
  684. ait_tempalloc :
  685. begin
  686. if (cs_asm_tempalloc in current_settings.globalswitches) then
  687. WriteTempalloc(tai_tempalloc(hp));
  688. end;
  689. ait_align :
  690. begin
  691. doalign(tai_align_abstract(hp).aligntype,tai_align_abstract(hp).use_op,tai_align_abstract(hp).fillop,last_align,lasthp);
  692. end;
  693. ait_section :
  694. begin
  695. if tai_section(hp).sectype<>sec_none then
  696. if replaceforbidden then
  697. WriteSection(tai_section(hp).sectype,ReplaceForbiddenAsmSymbolChars(tai_section(hp).name^),tai_section(hp).secorder,tai_section(hp).secalign)
  698. else
  699. WriteSection(tai_section(hp).sectype,tai_section(hp).name^,tai_section(hp).secorder,tai_section(hp).secalign)
  700. else
  701. begin
  702. {$ifdef EXTDEBUG}
  703. AsmWrite(target_asm.comment);
  704. AsmWriteln(' sec_none');
  705. {$endif EXTDEBUG}
  706. end;
  707. end;
  708. ait_datablock :
  709. begin
  710. if (target_info.system in systems_darwin) then
  711. begin
  712. { On Mac OS X you can't have common symbols in a shared library
  713. since those are in the TEXT section and the text section is
  714. read-only in shared libraries (so it can be shared among different
  715. processes). The alternate code creates some kind of common symbols
  716. in the data segment.
  717. }
  718. if tai_datablock(hp).is_global then
  719. begin
  720. asmwrite('.globl ');
  721. asmwriteln(tai_datablock(hp).sym.name);
  722. asmwriteln('.data');
  723. asmwrite('.zerofill __DATA, __common, ');
  724. asmwrite(tai_datablock(hp).sym.name);
  725. asmwriteln(', '+tostr(tai_datablock(hp).size)+','+tostr(last_align));
  726. if not(LastSecType in [sec_data,sec_none]) then
  727. writesection(LastSecType,'',secorder_default,1 shl last_align);
  728. end
  729. else
  730. begin
  731. asmwrite(#9'.lcomm'#9);
  732. asmwrite(tai_datablock(hp).sym.name);
  733. asmwrite(','+tostr(tai_datablock(hp).size));
  734. asmwrite(','+tostr(last_align));
  735. asmln;
  736. end;
  737. end
  738. else if target_info.system in systems_aix then
  739. begin
  740. if tai_datablock(hp).is_global then
  741. begin
  742. asmwrite(#9'.globl ');
  743. asmwriteln(ReplaceForbiddenAsmSymbolChars(tai_datablock(hp).sym.name));
  744. asmwrite(ReplaceForbiddenAsmSymbolChars(tai_datablock(hp).sym.name));
  745. asmwriteln(':');
  746. asmwrite(#9'.space ');
  747. asmwriteln(tostr(tai_datablock(hp).size));
  748. if not(LastSecType in [sec_data,sec_none]) then
  749. writesection(LastSecType,'',secorder_default,1 shl last_align);
  750. end
  751. else
  752. begin
  753. asmwrite(#9'.lcomm ');
  754. asmwrite(ReplaceForbiddenAsmSymbolChars(tai_datablock(hp).sym.name));
  755. asmwrite(',');
  756. asmwrite(tostr(tai_datablock(hp).size)+',');
  757. asmwrite('_data.bss_,');
  758. asmwriteln(tostr(last_align));
  759. end;
  760. end
  761. else
  762. begin
  763. {$ifdef USE_COMM_IN_BSS}
  764. if writingpackages then
  765. begin
  766. { The .comm is required for COMMON symbols. These are used
  767. in the shared library loading. All the symbols declared in
  768. the .so file need to resolve to the data allocated in the main
  769. program (PFV) }
  770. if tai_datablock(hp).is_global then
  771. begin
  772. asmwrite(#9'.comm'#9);
  773. if replaceforbidden then
  774. asmwrite(ReplaceForbiddenAsmSymbolChars(tai_datablock(hp).sym.name))
  775. else
  776. asmwrite(tai_datablock(hp).sym.name);
  777. asmwrite(','+tostr(tai_datablock(hp).size));
  778. asmwrite(','+tostr(last_align));
  779. asmln;
  780. end
  781. else
  782. begin
  783. asmwrite(#9'.lcomm'#9);
  784. if replaceforbidden then
  785. asmwrite(ReplaceForbiddenAsmSymbolChars(tai_datablock(hp).sym.name));
  786. else
  787. asmwrite(tai_datablock(hp).sym.name);
  788. asmwrite(','+tostr(tai_datablock(hp).size));
  789. asmwrite(','+tostr(last_align));
  790. asmln;
  791. end
  792. end
  793. else
  794. {$endif USE_COMM_IN_BSS}
  795. begin
  796. if Tai_datablock(hp).is_global then
  797. begin
  798. asmwrite(#9'.globl ');
  799. if replaceforbidden then
  800. asmwriteln(ReplaceForbiddenAsmSymbolChars(Tai_datablock(hp).sym.name))
  801. else
  802. asmwriteln(Tai_datablock(hp).sym.name);
  803. end;
  804. if ((target_info.system <> system_arm_linux) and (target_info.system <> system_arm_android)) then
  805. sepChar := '@'
  806. else
  807. sepChar := '%';
  808. if replaceforbidden then
  809. begin
  810. if (tf_needs_symbol_type in target_info.flags) then
  811. asmwriteln(#9'.type '+ReplaceForbiddenAsmSymbolChars(Tai_datablock(hp).sym.name)+','+sepChar+'object');
  812. if (tf_needs_symbol_size in target_info.flags) and (tai_datablock(hp).size > 0) then
  813. asmwriteln(#9'.size '+ReplaceForbiddenAsmSymbolChars(Tai_datablock(hp).sym.name)+','+tostr(Tai_datablock(hp).size));
  814. asmwrite(ReplaceForbiddenAsmSymbolChars(Tai_datablock(hp).sym.name))
  815. end
  816. else
  817. begin
  818. if (tf_needs_symbol_type in target_info.flags) then
  819. asmwriteln(#9'.type '+Tai_datablock(hp).sym.name+','+sepChar+'object');
  820. if (tf_needs_symbol_size in target_info.flags) and (tai_datablock(hp).size > 0) then
  821. asmwriteln(#9'.size '+Tai_datablock(hp).sym.name+','+tostr(Tai_datablock(hp).size));
  822. asmwrite(Tai_datablock(hp).sym.name);
  823. end;
  824. asmwriteln(':');
  825. asmwriteln(#9'.zero '+tostr(Tai_datablock(hp).size));
  826. end;
  827. end;
  828. end;
  829. ait_const:
  830. begin
  831. constdef:=tai_const(hp).consttype;
  832. case constdef of
  833. {$ifndef cpu64bitaddr}
  834. aitconst_128bit :
  835. begin
  836. internalerror(200404291);
  837. end;
  838. aitconst_64bit :
  839. begin
  840. if assigned(tai_const(hp).sym) then
  841. internalerror(200404292);
  842. if not(target_info.system in systems_aix) then
  843. begin
  844. AsmWrite(ait_const2str[aitconst_32bit]);
  845. if target_info.endian = endian_little then
  846. begin
  847. AsmWrite(tostr(longint(lo(tai_const(hp).value))));
  848. AsmWrite(',');
  849. AsmWrite(tostr(longint(hi(tai_const(hp).value))));
  850. end
  851. else
  852. begin
  853. AsmWrite(tostr(longint(hi(tai_const(hp).value))));
  854. AsmWrite(',');
  855. AsmWrite(tostr(longint(lo(tai_const(hp).value))));
  856. end;
  857. end
  858. else
  859. WriteAixIntConst(tai_const(hp));
  860. AsmLn;
  861. end;
  862. {$endif cpu64bitaddr}
  863. aitconst_got:
  864. begin
  865. if tai_const(hp).symofs<>0 then
  866. InternalError(2015091401); // No symbol offset is allowed for GOT.
  867. AsmWrite(#9'.word'#9+tai_const(hp).sym.name+'(GOT)');
  868. Asmln;
  869. end;
  870. aitconst_gotoff_symbol:
  871. begin
  872. if (tai_const(hp).sym=nil) then
  873. InternalError(2014022601);
  874. case target_info.cpu of
  875. cpu_mipseb,cpu_mipsel:
  876. begin
  877. AsmWrite(#9'.gpword'#9);
  878. AsmWrite(tai_const(hp).sym.name);
  879. end;
  880. cpu_i386:
  881. begin
  882. AsmWrite(ait_const2str[aitconst_32bit]);
  883. AsmWrite(tai_const(hp).sym.name+'-_GLOBAL_OFFSET_TABLE_');
  884. end;
  885. else
  886. InternalError(2014022602);
  887. end;
  888. if (tai_const(hp).value<>0) then
  889. AsmWrite(tostr_with_plus(tai_const(hp).value));
  890. Asmln;
  891. end;
  892. aitconst_uleb128bit,
  893. aitconst_sleb128bit,
  894. {$ifdef cpu64bitaddr}
  895. aitconst_128bit,
  896. aitconst_64bit,
  897. {$endif cpu64bitaddr}
  898. aitconst_32bit,
  899. aitconst_16bit,
  900. aitconst_8bit,
  901. aitconst_rva_symbol,
  902. aitconst_secrel32_symbol,
  903. aitconst_darwin_dwarf_delta32,
  904. aitconst_darwin_dwarf_delta64,
  905. aitconst_half16bit,
  906. aitconst_16bit_unaligned,
  907. aitconst_32bit_unaligned,
  908. aitconst_64bit_unaligned:
  909. begin
  910. { the AIX assembler (and for compatibility, the GNU
  911. assembler when targeting AIX) automatically aligns
  912. .short/.long/.llong to a multiple of 2/4/8 bytes. We
  913. don't want that, since this may be data inside a packed
  914. record -> use .vbyte instead (byte stream of fixed
  915. length) }
  916. if (target_info.system in systems_aix) and
  917. (constdef in [aitconst_128bit,aitconst_64bit,aitconst_32bit,aitconst_16bit]) and
  918. not assigned(tai_const(hp).sym) then
  919. begin
  920. WriteAixIntConst(tai_const(hp));
  921. end
  922. else if (target_info.system in systems_darwin) and
  923. (constdef in [aitconst_uleb128bit,aitconst_sleb128bit]) then
  924. begin
  925. AsmWrite(ait_const2str[aitconst_8bit]);
  926. case tai_const(hp).consttype of
  927. aitconst_uleb128bit:
  928. WriteDecodedUleb128(qword(tai_const(hp).value));
  929. aitconst_sleb128bit:
  930. WriteDecodedSleb128(int64(tai_const(hp).value));
  931. end
  932. end
  933. else
  934. begin
  935. if (constdef in ait_unaligned_consts) and
  936. (target_info.system in use_ua_sparc_systems) then
  937. AsmWrite(ait_ua_sparc_const2str[constdef])
  938. else if (constdef in ait_unaligned_consts) and
  939. (target_info.system in use_ua_alpha_systems) then
  940. AsmWrite(ait_ua_alpha_const2str[constdef])
  941. else if (constdef in ait_unaligned_consts) and
  942. (target_info.system in use_ua_elf_systems) then
  943. AsmWrite(ait_ua_elf_const2str[constdef])
  944. { we can also have unaligned pointers in packed record
  945. constants, which don't get translated into
  946. unaligned tai -> always use vbyte }
  947. else if target_info.system in systems_aix then
  948. AsmWrite(#9'.vbyte'#9+tostr(tai_const(hp).size)+',')
  949. else
  950. AsmWrite(ait_const2str[constdef]);
  951. l:=0;
  952. t := '';
  953. repeat
  954. if assigned(tai_const(hp).sym) then
  955. begin
  956. if assigned(tai_const(hp).endsym) then
  957. begin
  958. if (constdef in [aitconst_darwin_dwarf_delta32,aitconst_darwin_dwarf_delta64]) then
  959. begin
  960. s := NextSetLabel;
  961. t := #9'.set '+s+','+tai_const(hp).endsym.name+'-'+tai_const(hp).sym.name;
  962. end
  963. else
  964. s:=tai_const(hp).endsym.name+'-'+tai_const(hp).sym.name
  965. end
  966. else
  967. s:=tai_const(hp).sym.name;
  968. if replaceforbidden then
  969. s:=ReplaceForbiddenAsmSymbolChars(s);
  970. if tai_const(hp).value<>0 then
  971. s:=s+tostr_with_plus(tai_const(hp).value);
  972. end
  973. else
  974. {$ifdef cpu64bitaddr}
  975. s:=tostr(tai_const(hp).value);
  976. {$else cpu64bitaddr}
  977. { 64 bit constants are already handled above in this case }
  978. s:=tostr(longint(tai_const(hp).value));
  979. {$endif cpu64bitaddr}
  980. if constdef = aitconst_half16bit then
  981. s:='('+s+')/2';
  982. AsmWrite(s);
  983. inc(l,length(s));
  984. { Values with symbols are written on a single line to improve
  985. reading of the .s file (PFV) }
  986. if assigned(tai_const(hp).sym) or
  987. not(LastSecType in [sec_data,sec_rodata,sec_rodata_norel]) or
  988. (l>line_length) or
  989. (hp.next=nil) or
  990. (tai(hp.next).typ<>ait_const) or
  991. (tai_const(hp.next).consttype<>constdef) or
  992. assigned(tai_const(hp.next).sym) then
  993. break;
  994. hp:=tai(hp.next);
  995. AsmWrite(',');
  996. until false;
  997. if (t <> '') then
  998. begin
  999. AsmLn;
  1000. AsmWrite(t);
  1001. end;
  1002. end;
  1003. AsmLn;
  1004. end;
  1005. else
  1006. internalerror(200704251);
  1007. end;
  1008. end;
  1009. { the "and defined(FPC_HAS_TYPE_EXTENDED)" isn't optimal but currently the only solution
  1010. it prevents proper cross compilation to i386 though
  1011. }
  1012. {$if defined(cpuextended) and defined(FPC_HAS_TYPE_EXTENDED)}
  1013. ait_real_80bit :
  1014. begin
  1015. if do_line then
  1016. AsmWriteLn(target_asm.comment+'value: '+extended2str(tai_real_80bit(hp).value));
  1017. { Make sure e is a extended type, bestreal could be
  1018. a different type (bestreal) !! (PFV) }
  1019. e:=tai_real_80bit(hp).value;
  1020. AsmWrite(#9'.byte'#9);
  1021. for i:=0 to 9 do
  1022. begin
  1023. if i<>0 then
  1024. AsmWrite(',');
  1025. AsmWrite(tostr(t80bitarray(e)[i]));
  1026. end;
  1027. for i:=11 to tai_real_80bit(hp).savesize do
  1028. AsmWrite(',0');
  1029. AsmLn;
  1030. end;
  1031. {$endif cpuextended}
  1032. ait_real_64bit :
  1033. begin
  1034. if do_line then
  1035. AsmWriteLn(target_asm.comment+'value: '+double2str(tai_real_64bit(hp).value));
  1036. d:=tai_real_64bit(hp).value;
  1037. { swap the values to correct endian if required }
  1038. if source_info.endian <> target_info.endian then
  1039. swap64bitarray(t64bitarray(d));
  1040. AsmWrite(#9'.byte'#9);
  1041. {$ifdef arm}
  1042. if tai_real_64bit(hp).formatoptions=fo_hiloswapped then
  1043. begin
  1044. for i:=4 to 7 do
  1045. begin
  1046. if i<>4 then
  1047. AsmWrite(',');
  1048. AsmWrite(tostr(t64bitarray(d)[i]));
  1049. end;
  1050. for i:=0 to 3 do
  1051. begin
  1052. AsmWrite(',');
  1053. AsmWrite(tostr(t64bitarray(d)[i]));
  1054. end;
  1055. end
  1056. else
  1057. {$endif arm}
  1058. begin
  1059. for i:=0 to 7 do
  1060. begin
  1061. if i<>0 then
  1062. AsmWrite(',');
  1063. AsmWrite(tostr(t64bitarray(d)[i]));
  1064. end;
  1065. end;
  1066. AsmLn;
  1067. end;
  1068. ait_real_32bit :
  1069. begin
  1070. if do_line then
  1071. AsmWriteLn(target_asm.comment+'value: '+single2str(tai_real_32bit(hp).value));
  1072. sin:=tai_real_32bit(hp).value;
  1073. { swap the values to correct endian if required }
  1074. if source_info.endian <> target_info.endian then
  1075. swap32bitarray(t32bitarray(sin));
  1076. AsmWrite(#9'.byte'#9);
  1077. for i:=0 to 3 do
  1078. begin
  1079. if i<>0 then
  1080. AsmWrite(',');
  1081. AsmWrite(tostr(t32bitarray(sin)[i]));
  1082. end;
  1083. AsmLn;
  1084. end;
  1085. ait_comp_64bit :
  1086. begin
  1087. if do_line then
  1088. AsmWriteLn(target_asm.comment+'value: '+extended2str(tai_comp_64bit(hp).value));
  1089. AsmWrite(#9'.byte'#9);
  1090. co:=comp(tai_comp_64bit(hp).value);
  1091. { swap the values to correct endian if required }
  1092. if source_info.endian <> target_info.endian then
  1093. swap64bitarray(t64bitarray(co));
  1094. for i:=0 to 7 do
  1095. begin
  1096. if i<>0 then
  1097. AsmWrite(',');
  1098. AsmWrite(tostr(t64bitarray(co)[i]));
  1099. end;
  1100. AsmLn;
  1101. end;
  1102. ait_string :
  1103. begin
  1104. pos:=0;
  1105. if not(target_info.system in systems_aix) then
  1106. begin
  1107. for i:=1 to tai_string(hp).len do
  1108. begin
  1109. if pos=0 then
  1110. begin
  1111. AsmWrite(#9'.ascii'#9'"');
  1112. pos:=20;
  1113. end;
  1114. ch:=tai_string(hp).str[i-1];
  1115. case ch of
  1116. #0, {This can't be done by range, because a bug in FPC}
  1117. #1..#31,
  1118. #128..#255 : s:='\'+tostr(ord(ch) shr 6)+tostr((ord(ch) and 63) shr 3)+tostr(ord(ch) and 7);
  1119. '"' : s:='\"';
  1120. '\' : s:='\\';
  1121. else
  1122. s:=ch;
  1123. end;
  1124. AsmWrite(s);
  1125. inc(pos,length(s));
  1126. if (pos>line_length) or (i=tai_string(hp).len) then
  1127. begin
  1128. AsmWriteLn('"');
  1129. pos:=0;
  1130. end;
  1131. end;
  1132. end
  1133. else
  1134. WriteAixStringConst(tai_string(hp));
  1135. end;
  1136. ait_label :
  1137. begin
  1138. if (tai_label(hp).labsym.is_used) then
  1139. begin
  1140. if (tai_label(hp).labsym.bind=AB_PRIVATE_EXTERN) then
  1141. begin
  1142. AsmWrite(#9'.private_extern ');
  1143. AsmWriteln(tai_label(hp).labsym.name);
  1144. end;
  1145. if tai_label(hp).labsym.bind in [AB_GLOBAL,AB_PRIVATE_EXTERN] then
  1146. begin
  1147. {$ifdef arm}
  1148. { do no change arm mode accidently, .globl seems to reset the mode }
  1149. if GenerateThumbCode or GenerateThumb2Code then
  1150. AsmWriteln(#9'.thumb_func'#9);
  1151. {$endif arm}
  1152. AsmWrite('.globl'#9);
  1153. if replaceforbidden then
  1154. AsmWriteLn(ReplaceForbiddenAsmSymbolChars(tai_label(hp).labsym.name))
  1155. else
  1156. AsmWriteLn(tai_label(hp).labsym.name);
  1157. end;
  1158. if replaceforbidden then
  1159. AsmWrite(ReplaceForbiddenAsmSymbolChars(tai_label(hp).labsym.name))
  1160. else
  1161. AsmWrite(tai_label(hp).labsym.name);
  1162. AsmWriteLn(':');
  1163. end;
  1164. end;
  1165. ait_symbol :
  1166. begin
  1167. if (tai_symbol(hp).sym.bind=AB_PRIVATE_EXTERN) then
  1168. begin
  1169. AsmWrite(#9'.private_extern ');
  1170. if replaceforbidden then
  1171. AsmWriteln(ReplaceForbiddenAsmSymbolChars(tai_symbol(hp).sym.name))
  1172. else
  1173. AsmWriteln(tai_symbol(hp).sym.name);
  1174. end;
  1175. if (target_info.system = system_powerpc64_linux) and
  1176. (tai_symbol(hp).sym.typ = AT_FUNCTION) and (cs_profile in current_settings.moduleswitches) then
  1177. AsmWriteLn('.globl _mcount');
  1178. if tai_symbol(hp).is_global then
  1179. begin
  1180. AsmWrite('.globl'#9);
  1181. if replaceforbidden then
  1182. AsmWriteln(ReplaceForbiddenAsmSymbolChars(tai_symbol(hp).sym.name))
  1183. else
  1184. AsmWriteln(tai_symbol(hp).sym.name);
  1185. end;
  1186. if (target_info.system = system_powerpc64_linux) and
  1187. (tai_symbol(hp).sym.typ = AT_FUNCTION) then
  1188. begin
  1189. AsmWriteLn('.section ".opd", "aw"');
  1190. AsmWriteLn('.align 3');
  1191. AsmWriteLn(tai_symbol(hp).sym.name + ':');
  1192. AsmWriteLn('.quad .' + tai_symbol(hp).sym.name + ', .TOC.@tocbase, 0');
  1193. AsmWriteLn('.previous');
  1194. AsmWriteLn('.size ' + tai_symbol(hp).sym.name + ', 24');
  1195. if (tai_symbol(hp).is_global) then
  1196. AsmWriteLn('.globl .' + tai_symbol(hp).sym.name);
  1197. AsmWriteLn('.type .' + tai_symbol(hp).sym.name + ', @function');
  1198. { the dotted name is the name of the actual function entry }
  1199. AsmWrite('.');
  1200. end
  1201. else if (target_info.system in systems_aix) and
  1202. (tai_symbol(hp).sym.typ = AT_FUNCTION) then
  1203. begin
  1204. if target_info.system=system_powerpc_aix then
  1205. begin
  1206. s:=#9'.long .';
  1207. ch:='2';
  1208. end
  1209. else
  1210. begin
  1211. s:=#9'.llong .';
  1212. ch:='3';
  1213. end;
  1214. AsmWriteLn(#9'.csect '+ReplaceForbiddenAsmSymbolChars(tai_symbol(hp).sym.name)+'[DS],'+ch);
  1215. AsmWriteLn(ReplaceForbiddenAsmSymbolChars(tai_symbol(hp).sym.name)+':');
  1216. AsmWriteln(s+ReplaceForbiddenAsmSymbolChars(tai_symbol(hp).sym.name)+', TOC[tc0], 0');
  1217. AsmWriteln(#9'.csect .text[PR]');
  1218. if (tai_symbol(hp).is_global) then
  1219. AsmWriteLn('.globl .'+ReplaceForbiddenAsmSymbolChars(tai_symbol(hp).sym.name))
  1220. else
  1221. AsmWriteLn('.lglobl .'+ReplaceForbiddenAsmSymbolChars(tai_symbol(hp).sym.name));
  1222. { the dotted name is the name of the actual function entry }
  1223. AsmWrite('.');
  1224. end
  1225. else
  1226. begin
  1227. if ((target_info.system <> system_arm_linux) and (target_info.system <> system_arm_android)) then
  1228. sepChar := '@'
  1229. else
  1230. sepChar := '#';
  1231. if (tf_needs_symbol_type in target_info.flags) then
  1232. begin
  1233. AsmWrite(#9'.type'#9 + tai_symbol(hp).sym.name);
  1234. if (needsObject(tai_symbol(hp))) then
  1235. AsmWriteLn(',' + sepChar + 'object')
  1236. else
  1237. AsmWriteLn(',' + sepChar + 'function');
  1238. end;
  1239. end;
  1240. if replaceforbidden then
  1241. if not(tai_symbol(hp).has_value) then
  1242. AsmWriteLn(ReplaceForbiddenAsmSymbolChars(tai_symbol(hp).sym.name + ':'))
  1243. else
  1244. AsmWriteLn(ReplaceForbiddenAsmSymbolChars(tai_symbol(hp).sym.name + '=' + tostr(tai_symbol(hp).value)))
  1245. else if not(tai_symbol(hp).has_value) then
  1246. AsmWriteLn(tai_symbol(hp).sym.name + ':')
  1247. else
  1248. AsmWriteLn(tai_symbol(hp).sym.name + '=' + tostr(tai_symbol(hp).value));
  1249. end;
  1250. {$ifdef arm}
  1251. ait_thumb_set:
  1252. begin
  1253. AsmWriteLn(#9'.thumb_set '+tai_thumb_set(hp).sym^+', '+tai_thumb_set(hp).value^);
  1254. end;
  1255. {$endif arm}
  1256. ait_set:
  1257. begin
  1258. if replaceforbidden then
  1259. AsmWriteLn(#9'.set '+ReplaceForbiddenAsmSymbolChars(tai_set(hp).sym^)+', '+ReplaceForbiddenAsmSymbolChars(tai_set(hp).value^))
  1260. else
  1261. AsmWriteLn(#9'.set '+tai_set(hp).sym^+', '+tai_set(hp).value^);
  1262. end;
  1263. ait_weak:
  1264. begin
  1265. if replaceforbidden then
  1266. AsmWriteLn(#9'.weak '+ReplaceForbiddenAsmSymbolChars(tai_weak(hp).sym^))
  1267. else
  1268. AsmWriteLn(#9'.weak '+tai_weak(hp).sym^);
  1269. end;
  1270. ait_symbol_end :
  1271. begin
  1272. if tf_needs_symbol_size in target_info.flags then
  1273. begin
  1274. s:=target_asm.labelprefix+'e'+tostr(symendcount);
  1275. inc(symendcount);
  1276. AsmWriteLn(s+':');
  1277. AsmWrite(#9'.size'#9);
  1278. if (target_info.system = system_powerpc64_linux) and (tai_symbol_end(hp).sym.typ = AT_FUNCTION) then
  1279. AsmWrite('.');
  1280. if replaceforbidden then
  1281. AsmWrite(ReplaceForbiddenAsmSymbolChars(tai_symbol_end(hp).sym.name))
  1282. else
  1283. AsmWrite(tai_symbol_end(hp).sym.name);
  1284. AsmWrite(', '+s+' - ');
  1285. if (target_info.system = system_powerpc64_linux) and (tai_symbol_end(hp).sym.typ = AT_FUNCTION) then
  1286. AsmWrite('.');
  1287. if replaceforbidden then
  1288. AsmWriteLn(ReplaceForbiddenAsmSymbolChars(tai_symbol_end(hp).sym.name))
  1289. else
  1290. AsmWriteLn(tai_symbol_end(hp).sym.name);
  1291. end;
  1292. end;
  1293. ait_instruction :
  1294. begin
  1295. WriteInstruction(hp);
  1296. end;
  1297. ait_stab :
  1298. begin
  1299. if assigned(tai_stab(hp).str) then
  1300. begin
  1301. AsmWrite(#9'.'+stabtypestr[tai_stab(hp).stabtype]+' ');
  1302. AsmWritePChar(tai_stab(hp).str);
  1303. AsmLn;
  1304. end;
  1305. end;
  1306. ait_force_line,
  1307. ait_function_name :
  1308. ;
  1309. ait_cutobject :
  1310. begin
  1311. if SmartAsm then
  1312. begin
  1313. { only reset buffer if nothing has changed }
  1314. if AsmSize=AsmStartSize then
  1315. AsmClear
  1316. else
  1317. begin
  1318. AsmClose;
  1319. DoAssemble;
  1320. AsmCreate(tai_cutobject(hp).place);
  1321. end;
  1322. { avoid empty files }
  1323. while assigned(hp.next) and (tai(hp.next).typ in [ait_cutobject,ait_section,ait_comment]) do
  1324. begin
  1325. if tai(hp.next).typ=ait_section then
  1326. LastSecType:=tai_section(hp.next).sectype;
  1327. hp:=tai(hp.next);
  1328. end;
  1329. if LastSecType<>sec_none then
  1330. WriteSection(LastSecType,'',secorder_default,last_align);
  1331. AsmStartSize:=AsmSize;
  1332. end;
  1333. end;
  1334. ait_marker :
  1335. if tai_marker(hp).kind=mark_NoLineInfoStart then
  1336. inc(InlineLevel)
  1337. else if tai_marker(hp).kind=mark_NoLineInfoEnd then
  1338. dec(InlineLevel);
  1339. ait_directive :
  1340. begin
  1341. WriteDirectiveName(tai_directive(hp).directive);
  1342. if tai_directive(hp).name <>'' then
  1343. begin
  1344. if replaceforbidden then
  1345. AsmWrite(ReplaceForbiddenAsmSymbolChars(tai_directive(hp).name))
  1346. else
  1347. AsmWrite(tai_directive(hp).name);
  1348. end;
  1349. AsmLn;
  1350. end;
  1351. ait_seh_directive :
  1352. begin
  1353. {$ifndef DISABLE_WIN64_SEH}
  1354. AsmWrite(sehdirectivestr[tai_seh_directive(hp).kind]);
  1355. case tai_seh_directive(hp).datatype of
  1356. sd_none:;
  1357. sd_string:
  1358. begin
  1359. AsmWrite(' '+tai_seh_directive(hp).data.name^);
  1360. if (tai_seh_directive(hp).data.flags and 1)<>0 then
  1361. AsmWrite(',@except');
  1362. if (tai_seh_directive(hp).data.flags and 2)<>0 then
  1363. AsmWrite(',@unwind');
  1364. end;
  1365. sd_reg:
  1366. AsmWrite(' '+gas_regname(tai_seh_directive(hp).data.reg));
  1367. sd_offset:
  1368. AsmWrite(' '+tostr(tai_seh_directive(hp).data.offset));
  1369. sd_regoffset:
  1370. AsmWrite(' '+gas_regname(tai_seh_directive(hp).data.reg)+', '+
  1371. tostr(tai_seh_directive(hp).data.offset));
  1372. end;
  1373. AsmLn;
  1374. {$endif DISABLE_WIN64_SEH}
  1375. end;
  1376. ait_varloc:
  1377. begin
  1378. if tai_varloc(hp).newlocationhi<>NR_NO then
  1379. AsmWrite(strpnew('Var '+tai_varloc(hp).varsym.realname+' located in register '+
  1380. std_regname(tai_varloc(hp).newlocationhi)+':'+std_regname(tai_varloc(hp).newlocation)))
  1381. else
  1382. AsmWrite(strpnew('Var '+tai_varloc(hp).varsym.realname+' located in register '+
  1383. std_regname(tai_varloc(hp).newlocation)));
  1384. AsmLn;
  1385. end;
  1386. else
  1387. internalerror(2006012201);
  1388. end;
  1389. lasthp:=hp;
  1390. hp:=tai(hp.next);
  1391. end;
  1392. end;
  1393. procedure TGNUAssembler.WriteExtraHeader;
  1394. begin
  1395. end;
  1396. procedure TGNUAssembler.WriteExtraFooter;
  1397. begin
  1398. end;
  1399. procedure TGNUAssembler.WriteInstruction(hp: tai);
  1400. begin
  1401. InstrWriter.WriteInstruction(hp);
  1402. end;
  1403. procedure TGNUAssembler.WriteWeakSymbolDef(s: tasmsymbol);
  1404. begin
  1405. AsmWriteLn(#9'.weak '+s.name);
  1406. end;
  1407. procedure TGNUAssembler.WriteAixStringConst(hp: tai_string);
  1408. type
  1409. tterminationkind = (term_none,term_string,term_nostring);
  1410. var
  1411. i: longint;
  1412. pos: longint;
  1413. s: string;
  1414. ch: char;
  1415. instring: boolean;
  1416. procedure newstatement(terminationkind: tterminationkind);
  1417. begin
  1418. case terminationkind of
  1419. term_none: ;
  1420. term_string:
  1421. AsmWriteLn('"');
  1422. term_nostring:
  1423. AsmLn;
  1424. end;
  1425. AsmWrite(#9'.byte'#9);
  1426. pos:=20;
  1427. instring:=false;
  1428. end;
  1429. begin
  1430. pos:=0;
  1431. instring:=false;
  1432. for i:=1 to hp.len do
  1433. begin
  1434. if pos=0 then
  1435. newstatement(term_none);
  1436. ch:=hp.str[i-1];
  1437. case ch of
  1438. #0..#31,
  1439. #127..#255 :
  1440. begin
  1441. if instring then
  1442. newstatement(term_string);
  1443. if pos=20 then
  1444. s:=tostr(ord(ch))
  1445. else
  1446. s:=', '+tostr(ord(ch))
  1447. end;
  1448. '"' :
  1449. if instring then
  1450. s:='""'
  1451. else
  1452. begin
  1453. if pos<>20 then
  1454. newstatement(term_nostring);
  1455. s:='"""';
  1456. instring:=true;
  1457. end;
  1458. else
  1459. if not instring then
  1460. begin
  1461. if (pos<>20) then
  1462. newstatement(term_nostring);
  1463. s:='"'+ch;
  1464. instring:=true;
  1465. end
  1466. else
  1467. s:=ch;
  1468. end;
  1469. AsmWrite(s);
  1470. inc(pos,length(s));
  1471. if (pos>line_length) or (i=tai_string(hp).len) then
  1472. begin
  1473. if instring then
  1474. AsmWriteLn('"')
  1475. else
  1476. AsmLn;
  1477. pos:=0;
  1478. end;
  1479. end;
  1480. end;
  1481. procedure TGNUAssembler.WriteAixIntConst(hp: tai_const);
  1482. var
  1483. pos, size: longint;
  1484. begin
  1485. { only big endian AIX supported for now }
  1486. if target_info.endian<>endian_big then
  1487. internalerror(2012010401);
  1488. { limitation: can only write 4 bytes at a time }
  1489. pos:=0;
  1490. size:=tai_const(hp).size;
  1491. while pos<(size-4) do
  1492. begin
  1493. AsmWrite(#9'.vbyte'#9'4, ');
  1494. AsmWriteln(tostr(longint(tai_const(hp).value shr ((size-pos-4)*8))));
  1495. inc(pos,4);
  1496. end;
  1497. AsmWrite(#9'.vbyte'#9);
  1498. AsmWrite(tostr(size-pos));
  1499. AsmWrite(', ');
  1500. case size-pos of
  1501. 1: AsmWrite(tostr(byte(tai_const(hp).value)));
  1502. 2: AsmWrite(tostr(word(tai_const(hp).value)));
  1503. 4: AsmWrite(tostr(longint(tai_const(hp).value)));
  1504. else
  1505. internalerror(2012010402);
  1506. end;
  1507. end;
  1508. procedure TGNUAssembler.WriteUnalignedIntConst(hp: tai_const);
  1509. var
  1510. pos, size: longint;
  1511. begin
  1512. size:=tai_const(hp).size;
  1513. AsmWrite(#9'.byte'#9);
  1514. if target_info.endian=endian_big then
  1515. begin
  1516. pos:=size-1;
  1517. while pos>=0 do
  1518. begin
  1519. AsmWrite(tostr((tai_const(hp).value shr (pos*8)) and $ff));
  1520. dec(pos);
  1521. if pos>=0 then
  1522. AsmWrite(', ')
  1523. else
  1524. AsmLn;
  1525. end;
  1526. end
  1527. else
  1528. begin
  1529. pos:=0;
  1530. while pos<size do
  1531. begin
  1532. AsmWriteln(tostr((tai_const(hp).value shr (pos*8)) and $ff));
  1533. inc(pos);
  1534. if pos<=size then
  1535. AsmWrite(', ')
  1536. else
  1537. AsmLn;
  1538. end;
  1539. end;
  1540. AsmLn;
  1541. end;
  1542. procedure TGNUAssembler.WriteDirectiveName(dir: TAsmDirective);
  1543. begin
  1544. AsmWrite('.'+directivestr[dir]+' ');
  1545. end;
  1546. procedure TGNUAssembler.WriteAsmList;
  1547. var
  1548. n : string;
  1549. hal : tasmlisttype;
  1550. i: longint;
  1551. begin
  1552. {$ifdef EXTDEBUG}
  1553. if current_module.mainsource<>'' then
  1554. Comment(V_Debug,'Start writing gas-styled assembler output for '+current_module.mainsource);
  1555. {$endif}
  1556. if current_module.mainsource<>'' then
  1557. n:=ExtractFileName(current_module.mainsource)
  1558. else
  1559. n:=InputFileName;
  1560. { gcc does not add it either for Darwin. Grep for
  1561. TARGET_ASM_FILE_START_FILE_DIRECTIVE in gcc/config/*.h
  1562. }
  1563. if not(target_info.system in systems_darwin) then
  1564. AsmWriteLn(#9'.file "'+FixFileName(n)+'"');
  1565. WriteExtraHeader;
  1566. AsmStartSize:=AsmSize;
  1567. symendcount:=0;
  1568. for hal:=low(TasmlistType) to high(TasmlistType) do
  1569. begin
  1570. if not (current_asmdata.asmlists[hal].empty) then
  1571. begin
  1572. AsmWriteLn(target_asm.comment+'Begin asmlist '+AsmlistTypeStr[hal]);
  1573. writetree(current_asmdata.asmlists[hal]);
  1574. AsmWriteLn(target_asm.comment+'End asmlist '+AsmlistTypeStr[hal]);
  1575. end;
  1576. end;
  1577. { add weak symbol markers }
  1578. for i:=0 to current_asmdata.asmsymboldict.count-1 do
  1579. if (tasmsymbol(current_asmdata.asmsymboldict[i]).bind=AB_WEAK_EXTERNAL) then
  1580. writeweaksymboldef(tasmsymbol(current_asmdata.asmsymboldict[i]));
  1581. if create_smartlink_sections and
  1582. (target_info.system in systems_darwin) then
  1583. AsmWriteLn(#9'.subsections_via_symbols');
  1584. { "no executable stack" marker }
  1585. { TODO: used by OpenBSD/NetBSD as well? }
  1586. if (target_info.system in (systems_linux + systems_android + systems_freebsd + systems_dragonfly)) and
  1587. not(cs_executable_stack in current_settings.moduleswitches) then
  1588. begin
  1589. AsmWriteLn('.section .note.GNU-stack,"",%progbits');
  1590. end;
  1591. AsmLn;
  1592. WriteExtraFooter;
  1593. {$ifdef EXTDEBUG}
  1594. if current_module.mainsource<>'' then
  1595. Comment(V_Debug,'Done writing gas-styled assembler output for '+current_module.mainsource);
  1596. {$endif EXTDEBUG}
  1597. end;
  1598. {****************************************************************************}
  1599. { Apple/GNU Assembler writer }
  1600. {****************************************************************************}
  1601. function TAppleGNUAssembler.sectionname(atype:TAsmSectiontype;const aname:string;aorder:TAsmSectionOrder):string;
  1602. begin
  1603. if (target_info.system in systems_darwin) then
  1604. case atype of
  1605. sec_bss:
  1606. { all bss (lcomm) symbols are automatically put in the right }
  1607. { place by using the lcomm assembler directive }
  1608. atype := sec_none;
  1609. sec_debug_frame,
  1610. sec_eh_frame:
  1611. begin
  1612. result := '.section __DWARF,__debug_info,regular,debug';
  1613. exit;
  1614. end;
  1615. sec_debug_line:
  1616. begin
  1617. result := '.section __DWARF,__debug_line,regular,debug';
  1618. exit;
  1619. end;
  1620. sec_debug_info:
  1621. begin
  1622. result := '.section __DWARF,__debug_info,regular,debug';
  1623. exit;
  1624. end;
  1625. sec_debug_abbrev:
  1626. begin
  1627. result := '.section __DWARF,__debug_abbrev,regular,debug';
  1628. exit;
  1629. end;
  1630. sec_rodata:
  1631. begin
  1632. result := '.const_data';
  1633. exit;
  1634. end;
  1635. sec_rodata_norel:
  1636. begin
  1637. result := '.const';
  1638. exit;
  1639. end;
  1640. sec_fpc:
  1641. begin
  1642. result := '.section __TEXT, .fpc, regular, no_dead_strip';
  1643. exit;
  1644. end;
  1645. sec_code:
  1646. begin
  1647. if (aname='fpc_geteipasebx') or
  1648. (aname='fpc_geteipasecx') then
  1649. begin
  1650. result:='.section __TEXT,__textcoal_nt,coalesced,pure_instructions'#10'.weak_definition '+aname+
  1651. #10'.private_extern '+aname;
  1652. exit;
  1653. end;
  1654. end;
  1655. sec_data_nonlazy:
  1656. begin
  1657. result:='.section __DATA, __nl_symbol_ptr,non_lazy_symbol_pointers';
  1658. exit;
  1659. end;
  1660. sec_data_lazy:
  1661. begin
  1662. result:='.section __DATA, __la_symbol_ptr,lazy_symbol_pointers';
  1663. exit;
  1664. end;
  1665. sec_init_func:
  1666. begin
  1667. result:='.section __DATA, __mod_init_func, mod_init_funcs';
  1668. exit;
  1669. end;
  1670. sec_term_func:
  1671. begin
  1672. result:='.section __DATA, __mod_term_func, mod_term_funcs';
  1673. exit;
  1674. end;
  1675. sec_objc_protocol_ext:
  1676. begin
  1677. result:='.section __OBJC, __protocol_ext, regular, no_dead_strip';
  1678. exit;
  1679. end;
  1680. sec_objc_class_ext:
  1681. begin
  1682. result:='.section __OBJC, __class_ext, regular, no_dead_strip';
  1683. exit;
  1684. end;
  1685. sec_objc_property:
  1686. begin
  1687. result:='.section __OBJC, __property, regular, no_dead_strip';
  1688. exit;
  1689. end;
  1690. sec_objc_image_info:
  1691. begin
  1692. if (target_info.system in systems_objc_nfabi) then
  1693. result:='.section __DATA,__objc_imageinfo,regular,no_dead_strip'
  1694. else
  1695. result:='.section __OBJC, __image_info, regular, no_dead_strip';
  1696. exit;
  1697. end;
  1698. sec_objc_cstring_object:
  1699. begin
  1700. result:='.section __OBJC, __cstring_object, regular, no_dead_strip';
  1701. exit;
  1702. end;
  1703. sec_objc_sel_fixup:
  1704. begin
  1705. result:='.section __OBJC, __sel_fixup, regular, no_dead_strip';
  1706. exit;
  1707. end;
  1708. sec_objc_message_refs:
  1709. begin
  1710. if (target_info.system in systems_objc_nfabi) then
  1711. begin
  1712. result:='.section __DATA, __objc_selrefs, literal_pointers, no_dead_strip';
  1713. exit;
  1714. end;
  1715. end;
  1716. sec_objc_cls_refs:
  1717. begin
  1718. if (target_info.system in systems_objc_nfabi) then
  1719. begin
  1720. result:='.section __DATA, __objc_clsrefs, regular, no_dead_strip';
  1721. exit;
  1722. end;
  1723. end;
  1724. sec_objc_meth_var_types:
  1725. begin
  1726. if (target_info.system in systems_objc_nfabi) then
  1727. begin
  1728. result:='.section __TEXT,__objc_methtype,cstring_literals';
  1729. exit
  1730. end;
  1731. end;
  1732. sec_objc_meth_var_names:
  1733. begin
  1734. if (target_info.system in systems_objc_nfabi) then
  1735. begin
  1736. result:='.section __TEXT,__objc_methname,cstring_literals';
  1737. exit
  1738. end;
  1739. end;
  1740. sec_objc_class_names:
  1741. begin
  1742. if (target_info.system in systems_objc_nfabi) then
  1743. begin
  1744. result:='.section __TEXT,__objc_classname,cstring_literals';
  1745. exit
  1746. end;
  1747. end;
  1748. sec_objc_inst_meth,
  1749. sec_objc_cls_meth,
  1750. sec_objc_cat_inst_meth,
  1751. sec_objc_cat_cls_meth:
  1752. begin
  1753. if (target_info.system in systems_objc_nfabi) then
  1754. begin
  1755. result:='.section __DATA, __objc_const';
  1756. exit;
  1757. end;
  1758. end;
  1759. sec_objc_meta_class,
  1760. sec_objc_class:
  1761. begin
  1762. if (target_info.system in systems_objc_nfabi) then
  1763. begin
  1764. result:='.section __DATA, __objc_data';
  1765. exit;
  1766. end;
  1767. end;
  1768. sec_objc_sup_refs:
  1769. begin
  1770. result:='.section __DATA, __objc_superrefs, regular, no_dead_strip';
  1771. exit
  1772. end;
  1773. sec_objc_classlist:
  1774. begin
  1775. result:='.section __DATA, __objc_classlist, regular, no_dead_strip';
  1776. exit
  1777. end;
  1778. sec_objc_nlclasslist:
  1779. begin
  1780. result:='.section __DATA, __objc_nlclasslist, regular, no_dead_strip';
  1781. exit
  1782. end;
  1783. sec_objc_catlist:
  1784. begin
  1785. result:='.section __DATA, __objc_catlist, regular, no_dead_strip';
  1786. exit
  1787. end;
  1788. sec_objc_nlcatlist:
  1789. begin
  1790. result:='.section __DATA, __objc_nlcatlist, regular, no_dead_strip';
  1791. exit
  1792. end;
  1793. sec_objc_protolist:
  1794. begin
  1795. result:='.section __DATA, __objc_protolist, coalesced, no_dead_strip';
  1796. exit;
  1797. end;
  1798. end;
  1799. result := inherited sectionname(atype,aname,aorder);
  1800. end;
  1801. procedure TAppleGNUAssembler.WriteWeakSymbolDef(s: tasmsymbol);
  1802. begin
  1803. AsmWriteLn(#9'.weak_reference '+s.name);
  1804. end;
  1805. {****************************************************************************}
  1806. { a.out/GNU Assembler writer }
  1807. {****************************************************************************}
  1808. function TAoutGNUAssembler.sectionname(atype:TAsmSectiontype;const aname:string;aorder:TAsmSectionOrder):string;
  1809. const
  1810. (* Translation table - replace unsupported section types with basic ones. *)
  1811. SecXTable: array[TAsmSectionType] of TAsmSectionType = (
  1812. sec_none,
  1813. sec_none,
  1814. sec_code,
  1815. sec_data,
  1816. sec_data (* sec_rodata *),
  1817. sec_data (* sec_rodata_norel *),
  1818. sec_bss,
  1819. sec_data (* sec_threadvar *),
  1820. { used for wince exception handling }
  1821. sec_code (* sec_pdata *),
  1822. { used for darwin import stubs }
  1823. sec_code (* sec_stub *),
  1824. sec_data,(* sec_data_nonlazy *)
  1825. sec_data,(* sec_data_lazy *)
  1826. sec_data,(* sec_init_func *)
  1827. sec_data,(* sec_term_func *)
  1828. { stabs }
  1829. sec_stab,sec_stabstr,
  1830. { win32 }
  1831. sec_data (* sec_idata2 *),
  1832. sec_data (* sec_idata4 *),
  1833. sec_data (* sec_idata5 *),
  1834. sec_data (* sec_idata6 *),
  1835. sec_data (* sec_idata7 *),
  1836. sec_data (* sec_edata *),
  1837. { C++ exception handling unwinding (uses dwarf) }
  1838. sec_eh_frame,
  1839. { dwarf }
  1840. sec_debug_frame,
  1841. sec_debug_info,
  1842. sec_debug_line,
  1843. sec_debug_abbrev,
  1844. { ELF resources (+ references to stabs debug information sections) }
  1845. sec_code (* sec_fpc *),
  1846. { Table of contents section }
  1847. sec_code (* sec_toc *),
  1848. sec_code (* sec_init *),
  1849. sec_code (* sec_fini *),
  1850. sec_none (* sec_objc_class *),
  1851. sec_none (* sec_objc_meta_class *),
  1852. sec_none (* sec_objc_cat_cls_meth *),
  1853. sec_none (* sec_objc_cat_inst_meth *),
  1854. sec_none (* sec_objc_protocol *),
  1855. sec_none (* sec_objc_string_object *),
  1856. sec_none (* sec_objc_cls_meth *),
  1857. sec_none (* sec_objc_inst_meth *),
  1858. sec_none (* sec_objc_cls_refs *),
  1859. sec_none (* sec_objc_message_refs *),
  1860. sec_none (* sec_objc_symbols *),
  1861. sec_none (* sec_objc_category *),
  1862. sec_none (* sec_objc_class_vars *),
  1863. sec_none (* sec_objc_instance_vars *),
  1864. sec_none (* sec_objc_module_info *),
  1865. sec_none (* sec_objc_class_names *),
  1866. sec_none (* sec_objc_meth_var_types *),
  1867. sec_none (* sec_objc_meth_var_names *),
  1868. sec_none (* sec_objc_selector_strs *),
  1869. sec_none (* sec_objc_protocol_ext *),
  1870. sec_none (* sec_objc_class_ext *),
  1871. sec_none (* sec_objc_property *),
  1872. sec_none (* sec_objc_image_info *),
  1873. sec_none (* sec_objc_cstring_object *),
  1874. sec_none (* sec_objc_sel_fixup *),
  1875. sec_none (* sec_objc_data *),
  1876. sec_none (* sec_objc_const *),
  1877. sec_none (* sec_objc_sup_refs *),
  1878. sec_none (* sec_data_coalesced *),
  1879. sec_none (* sec_objc_classlist *),
  1880. sec_none (* sec_objc_nlclasslist *),
  1881. sec_none (* sec_objc_catlist *),
  1882. sec_none (* sec_objc_nlcatlist *),
  1883. sec_none (* sec_objc_protlist *),
  1884. sec_none (* sec_stack *),
  1885. sec_none (* sec_heap *)
  1886. );
  1887. begin
  1888. Result := inherited SectionName (SecXTable [AType], AName, AOrder);
  1889. end;
  1890. {****************************************************************************}
  1891. { Abstract Instruction Writer }
  1892. {****************************************************************************}
  1893. constructor TCPUInstrWriter.create(_owner: TGNUAssembler);
  1894. begin
  1895. inherited create;
  1896. owner := _owner;
  1897. end;
  1898. end.