aggas.pas 79 KB

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