t_win.pas 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689
  1. {
  2. Copyright (c) 1998-2002 by Peter Vreman
  3. This unit implements support import,export,link routines
  4. for the (i386) Win32 target
  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. unit t_win;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. dos,
  23. cutils,cclasses,
  24. aasmbase,aasmtai,aasmcpu,fmodule,globtype,globals,systems,verbose,
  25. symconst,symdef,symsym,
  26. script,gendef,
  27. cpubase,
  28. import,export,link,cgobj,i_win;
  29. const
  30. MAX_DEFAULT_EXTENSIONS = 3;
  31. type
  32. tStr4=array[1..MAX_DEFAULT_EXTENSIONS] of string[4];
  33. pStr4=^tStr4;
  34. twin32imported_item = class(timported_item)
  35. procdef : tprocdef;
  36. end;
  37. timportlibwin32=class(timportlib)
  38. private
  39. procedure win32importproc(aprocdef:tprocdef;const func,module : string;index : longint;const name : string);
  40. procedure importvariable_str(const s:string;const name,module:string);
  41. procedure importprocedure_str(const func,module:string;index:longint;const name:string);
  42. public
  43. procedure preparelib(const s:string);override;
  44. procedure importprocedure(aprocdef:tprocdef;const module:string;index:longint;const name:string);override;
  45. procedure importvariable(vs:tglobalvarsym;const name,module:string);override;
  46. procedure generatelib;override;
  47. procedure generatenasmlib;virtual;
  48. procedure generatesmartlib;override;
  49. end;
  50. texportlibwin32=class(texportlib)
  51. st : string;
  52. EList_indexed:tList;
  53. EList_nonindexed:tList;
  54. procedure preparelib(const s:string);override;
  55. procedure exportprocedure(hp : texported_item);override;
  56. procedure exportvar(hp : texported_item);override;
  57. procedure exportfromlist(hp : texported_item);
  58. procedure generatelib;override;
  59. procedure generatenasmlib;virtual;
  60. end;
  61. tlinkerwin32=class(texternallinker)
  62. private
  63. Function WriteResponseFile(isdll:boolean) : Boolean;
  64. Function PostProcessExecutable(const fn:string;isdll:boolean) : Boolean;
  65. public
  66. Constructor Create;override;
  67. Procedure SetDefaultInfo;override;
  68. function MakeExecutable:boolean;override;
  69. function MakeSharedLibrary:boolean;override;
  70. end;
  71. tDLLScannerWin32=class(tDLLScanner)
  72. private
  73. cstring : array[0..127]of char;
  74. function DOSstubOK(var x:cardinal):boolean;
  75. function ExtractDllName(Const Name : string) : string;
  76. public
  77. function isSuitableFileType(x:cardinal):longbool;override;
  78. function GetEdata(HeaderEntry:cardinal):longbool;override;
  79. function Scan(const binname:string):longbool;override;
  80. end;
  81. implementation
  82. uses
  83. cpuinfo,cgutils,dbgbase;
  84. const
  85. res_gnu_windres_info : tresinfo =
  86. (
  87. id : res_gnu_windres;
  88. resbin : 'windres';
  89. rescmd : '--include $INC -O coff -o $OBJ $RES'
  90. );
  91. res_gnu_wince_windres_info : tresinfo =
  92. (
  93. id : res_gnu_wince_windres;
  94. resbin : 'windres';
  95. rescmd : '--include $INC -O coff -o $OBJ $RES'
  96. );
  97. {*****************************************************************************
  98. TIMPORTLIBWIN32
  99. *****************************************************************************}
  100. procedure timportlibwin32.preparelib(const s : string);
  101. begin
  102. if asmlist[al_imports]=nil then
  103. asmlist[al_imports]:=TAAsmoutput.create;
  104. end;
  105. procedure timportlibwin32.win32importproc(aprocdef:tprocdef;const func,module : string;index : longint;const name : string);
  106. var
  107. hp1 : timportlist;
  108. hp2 : twin32imported_item;
  109. hs : string;
  110. begin
  111. { If we don't generate imports then we need to only the dll for
  112. the linker }
  113. if not GenerateImportSection then
  114. begin
  115. hs:=AddExtension(module,target_info.sharedlibext);
  116. current_module.linkdlls.add(hs,link_allways);
  117. exit;
  118. end;
  119. { procdef or funcname must be give, not both }
  120. if assigned(aprocdef) and (func<>'') then
  121. internalerror(200411161);
  122. { append extension if required }
  123. hs:=AddExtension(module,target_info.sharedlibext);
  124. { search for the module }
  125. hp1:=timportlist(current_module.imports.first);
  126. while assigned(hp1) do
  127. begin
  128. if hs=hp1.dllname^ then
  129. break;
  130. hp1:=timportlist(hp1.next);
  131. end;
  132. { generate a new item ? }
  133. if not(assigned(hp1)) then
  134. begin
  135. hp1:=timportlist.create(hs);
  136. current_module.imports.concat(hp1);
  137. end;
  138. { search for reuse of old import item }
  139. if assigned(aprocdef) then
  140. begin
  141. hp2:=twin32imported_item(hp1.imported_items.first);
  142. while assigned(hp2) do
  143. begin
  144. if (hp2.procdef=aprocdef) then
  145. break;
  146. hp2:=twin32imported_item(hp2.next);
  147. end;
  148. end
  149. else
  150. begin
  151. hp2:=twin32imported_item(hp1.imported_items.first);
  152. while assigned(hp2) do
  153. begin
  154. if (hp2.func^=func) then
  155. break;
  156. hp2:=twin32imported_item(hp2.next);
  157. end;
  158. end;
  159. if not assigned(hp2) then
  160. begin
  161. hp2:=twin32imported_item.create(func,name,index);
  162. hp2.procdef:=aprocdef;
  163. hp1.imported_items.concat(hp2);
  164. end;
  165. end;
  166. procedure timportlibwin32.importprocedure(aprocdef:tprocdef;const module : string;index : longint;const name : string);
  167. begin
  168. win32importproc(aprocdef,'',module,index,name);
  169. end;
  170. procedure timportlibwin32.importprocedure_str(const func,module : string;index : longint;const name : string);
  171. begin
  172. win32importproc(nil,func,module,index,name);
  173. end;
  174. procedure timportlibwin32.importvariable(vs:tglobalvarsym;const name,module:string);
  175. begin
  176. importvariable_str(vs.mangledname,name,module);
  177. end;
  178. procedure timportlibwin32.importvariable_str(const s:string;const name,module:string);
  179. var
  180. hp1 : timportlist;
  181. hp2 : twin32imported_item;
  182. hs : string;
  183. begin
  184. { If we don't generate imports then we need to only the dll for
  185. the linker }
  186. if not GenerateImportSection then
  187. begin
  188. hs:=AddExtension(module,target_info.sharedlibext);
  189. current_module.linkdlls.add(hs,link_allways);
  190. exit;
  191. end;
  192. hs:=AddExtension(module,target_info.sharedlibext);
  193. { search for the module }
  194. hp1:=timportlist(current_module.imports.first);
  195. while assigned(hp1) do
  196. begin
  197. if hs=hp1.dllname^ then
  198. break;
  199. hp1:=timportlist(hp1.next);
  200. end;
  201. { generate a new item ? }
  202. if not(assigned(hp1)) then
  203. begin
  204. hp1:=timportlist.create(hs);
  205. current_module.imports.concat(hp1);
  206. end;
  207. hp2:=twin32imported_item.create_var(s,name);
  208. hp2.procdef:=nil;
  209. hp1.imported_items.concat(hp2);
  210. end;
  211. procedure timportlibwin32.generatenasmlib;
  212. var
  213. hp1 : timportlist;
  214. hp2 : twin32imported_item;
  215. begin
  216. new_section(asmlist[al_imports],sec_code,'',0);
  217. hp1:=timportlist(current_module.imports.first);
  218. while assigned(hp1) do
  219. begin
  220. hp2:=twin32imported_item(hp1.imported_items.first);
  221. while assigned(hp2) do
  222. begin
  223. asmlist[al_imports].concat(tai_directive.create(asd_extern,hp2.func^));
  224. asmlist[al_imports].concat(tai_directive.create(asd_nasm_import,hp2.func^+' '+hp1.dllname^+' '+hp2.name^));
  225. hp2:=twin32imported_item(hp2.next);
  226. end;
  227. hp1:=timportlist(hp1.next);
  228. end;
  229. end;
  230. procedure timportlibwin32.generatesmartlib;
  231. var
  232. hp1 : timportlist;
  233. mangledstring : string;
  234. importname : string;
  235. suffix : integer;
  236. hp2 : twin32imported_item;
  237. lhead,lname,lcode, {$ifdef ARM} lpcode, {$endif ARM}
  238. lidata4,lidata5 : tasmlabel;
  239. href : treference;
  240. begin
  241. if (target_asm.id in [as_i386_masm,as_i386_tasm,as_i386_nasmwin32]) then
  242. begin
  243. generatenasmlib;
  244. exit;
  245. end;
  246. hp1:=timportlist(current_module.imports.first);
  247. while assigned(hp1) do
  248. begin
  249. { Get labels for the sections }
  250. objectlibrary.getdatalabel(lhead);
  251. objectlibrary.getdatalabel(lname);
  252. objectlibrary.getaddrlabel(lidata4);
  253. objectlibrary.getaddrlabel(lidata5);
  254. { create header for this importmodule }
  255. asmlist[al_imports].concat(Tai_cutobject.Create_begin);
  256. new_section(asmlist[al_imports],sec_idata2,'',0);
  257. asmlist[al_imports].concat(Tai_label.Create(lhead));
  258. { pointer to procedure names }
  259. asmlist[al_imports].concat(Tai_const.Create_rva_sym(lidata4));
  260. { two empty entries follow }
  261. asmlist[al_imports].concat(Tai_const.Create_32bit(0));
  262. asmlist[al_imports].concat(Tai_const.Create_32bit(0));
  263. { pointer to dll name }
  264. asmlist[al_imports].concat(Tai_const.Create_rva_sym(lname));
  265. { pointer to fixups }
  266. asmlist[al_imports].concat(Tai_const.Create_rva_sym(lidata5));
  267. { first write the name references }
  268. new_section(asmlist[al_imports],sec_idata4,'',0);
  269. asmlist[al_imports].concat(Tai_const.Create_32bit(0));
  270. asmlist[al_imports].concat(Tai_label.Create(lidata4));
  271. { then the addresses and create also the indirect jump }
  272. new_section(asmlist[al_imports],sec_idata5,'',0);
  273. asmlist[al_imports].concat(Tai_const.Create_32bit(0));
  274. asmlist[al_imports].concat(Tai_label.Create(lidata5));
  275. { create procedures }
  276. hp2:=twin32imported_item(hp1.imported_items.first);
  277. while assigned(hp2) do
  278. begin
  279. { insert cuts }
  280. asmlist[al_imports].concat(Tai_cutobject.Create);
  281. { create indirect jump }
  282. if not hp2.is_var then
  283. begin
  284. objectlibrary.getjumplabel(lcode);
  285. {$ifdef ARM}
  286. objectlibrary.getjumplabel(lpcode);
  287. {$endif ARM}
  288. { place jump in al_procedures, insert a code section in the
  289. al_imports to reduce the amount of .s files (PFV) }
  290. new_section(asmlist[al_imports],sec_code,'',0);
  291. if assigned(hp2.procdef) then
  292. mangledstring:=hp2.procdef.mangledname
  293. else
  294. mangledstring:=hp2.func^;
  295. asmlist[al_imports].concat(Tai_symbol.Createname_global(mangledstring,AT_FUNCTION,0));
  296. asmlist[al_imports].concat(Tai_function_name.Create(''));
  297. {$ifdef ARM}
  298. reference_reset_symbol(href,lpcode,0);
  299. asmlist[al_imports].concat(Taicpu.op_reg_ref(A_LDR,NR_R12,href));
  300. reference_reset_base(href,NR_R12,0);
  301. asmlist[al_imports].concat(Taicpu.op_reg_ref(A_LDR,NR_R15,href));
  302. asmlist[al_imports].concat(Tai_label.Create(lpcode));
  303. reference_reset_symbol(href,lcode,0);
  304. asmlist[al_imports].concat(tai_const.create_sym_offset(href.symbol,href.offset));
  305. {$else ARM}
  306. reference_reset_symbol(href,lcode,0);
  307. asmlist[al_imports].concat(Taicpu.Op_ref(A_JMP,S_NO,href));
  308. asmlist[al_imports].concat(Tai_align.Create_op(4,$90));
  309. {$endif ARM}
  310. end;
  311. { create head link }
  312. new_section(asmlist[al_imports],sec_idata7,'',0);
  313. asmlist[al_imports].concat(Tai_const.Create_rva_sym(lhead));
  314. { fixup }
  315. objectlibrary.getjumplabel(tasmlabel(hp2.lab));
  316. new_section(asmlist[al_imports],sec_idata4,'',0);
  317. asmlist[al_imports].concat(Tai_const.Create_rva_sym(hp2.lab));
  318. { add jump field to al_imports }
  319. new_section(asmlist[al_imports],sec_idata5,'',0);
  320. if hp2.is_var then
  321. asmlist[al_imports].concat(Tai_symbol.Createname_global(hp2.func^,AT_FUNCTION,0))
  322. else
  323. asmlist[al_imports].concat(Tai_label.Create(lcode));
  324. if (cs_debuginfo in aktmoduleswitches) then
  325. begin
  326. if assigned(hp2.name) then
  327. begin
  328. importname:='__imp_'+hp2.name^;
  329. suffix:=0;
  330. while assigned(objectlibrary.getasmsymbol(importname)) do
  331. begin
  332. inc(suffix);
  333. importname:='__imp_'+hp2.name^+'_'+tostr(suffix);
  334. end;
  335. asmlist[al_imports].concat(tai_symbol.createname(importname,AT_FUNCTION,4));
  336. end
  337. else
  338. begin
  339. importname:='__imp_by_ordinal'+tostr(hp2.ordnr);
  340. suffix:=0;
  341. while assigned(objectlibrary.getasmsymbol(importname)) do
  342. begin
  343. inc(suffix);
  344. importname:='__imp_by_ordinal'+tostr(hp2.ordnr)+'_'+tostr(suffix);
  345. end;
  346. asmlist[al_imports].concat(tai_symbol.createname(importname,AT_FUNCTION,4));
  347. end;
  348. end;
  349. if hp2.name^<>'' then
  350. asmlist[al_imports].concat(Tai_const.Create_rva_sym(hp2.lab))
  351. else
  352. asmlist[al_imports].concat(Tai_const.Create_32bit(longint($80000000) or longint(hp2.ordnr)));
  353. { finally the import information }
  354. new_section(asmlist[al_imports],sec_idata6,'',0);
  355. asmlist[al_imports].concat(Tai_label.Create(hp2.lab));
  356. asmlist[al_imports].concat(Tai_const.Create_16bit(hp2.ordnr));
  357. asmlist[al_imports].concat(Tai_string.Create(hp2.name^+#0));
  358. asmlist[al_imports].concat(Tai_align.Create_op(2,0));
  359. hp2:=twin32imported_item(hp2.next);
  360. end;
  361. { write final section }
  362. asmlist[al_imports].concat(Tai_cutobject.Create_end);
  363. { end of name references }
  364. new_section(asmlist[al_imports],sec_idata4,'',0);
  365. asmlist[al_imports].concat(Tai_const.Create_32bit(0));
  366. { end if addresses }
  367. new_section(asmlist[al_imports],sec_idata5,'',0);
  368. asmlist[al_imports].concat(Tai_const.Create_32bit(0));
  369. { dllname }
  370. new_section(asmlist[al_imports],sec_idata7,'',0);
  371. asmlist[al_imports].concat(Tai_label.Create(lname));
  372. asmlist[al_imports].concat(Tai_string.Create(hp1.dllname^+#0));
  373. hp1:=timportlist(hp1.next);
  374. end;
  375. end;
  376. procedure timportlibwin32.generatelib;
  377. var
  378. hp1 : timportlist;
  379. hp2 : twin32imported_item;
  380. l1,l2,l3,l4 {$ifdef ARM} ,l5 {$endif ARM} : tasmlabel;
  381. mangledstring : string;
  382. importname : string;
  383. suffix : integer;
  384. href : treference;
  385. begin
  386. if (target_asm.id in [as_i386_masm,as_i386_tasm,as_i386_nasmwin32]) then
  387. begin
  388. generatenasmlib;
  389. exit;
  390. end;
  391. hp1:=timportlist(current_module.imports.first);
  392. while assigned(hp1) do
  393. begin
  394. { align al_procedures for the jumps }
  395. new_section(asmlist[al_imports],sec_code,'',sizeof(aint));
  396. { Get labels for the sections }
  397. objectlibrary.getjumplabel(l1);
  398. objectlibrary.getjumplabel(l2);
  399. objectlibrary.getjumplabel(l3);
  400. new_section(asmlist[al_imports],sec_idata2,'',0);
  401. { pointer to procedure names }
  402. asmlist[al_imports].concat(Tai_const.Create_rva_sym(l2));
  403. { two empty entries follow }
  404. asmlist[al_imports].concat(Tai_const.Create_32bit(0));
  405. asmlist[al_imports].concat(Tai_const.Create_32bit(0));
  406. { pointer to dll name }
  407. asmlist[al_imports].concat(Tai_const.Create_rva_sym(l1));
  408. { pointer to fixups }
  409. asmlist[al_imports].concat(Tai_const.Create_rva_sym(l3));
  410. { only create one section for each else it will
  411. create a lot of idata* }
  412. { first write the name references }
  413. new_section(asmlist[al_imports],sec_idata4,'',0);
  414. asmlist[al_imports].concat(Tai_label.Create(l2));
  415. hp2:=twin32imported_item(hp1.imported_items.first);
  416. while assigned(hp2) do
  417. begin
  418. objectlibrary.getjumplabel(tasmlabel(hp2.lab));
  419. if hp2.name^<>'' then
  420. asmlist[al_imports].concat(Tai_const.Create_rva_sym(hp2.lab))
  421. else
  422. asmlist[al_imports].concat(Tai_const.Create_32bit(longint($80000000) or hp2.ordnr));
  423. hp2:=twin32imported_item(hp2.next);
  424. end;
  425. { finalize the names ... }
  426. asmlist[al_imports].concat(Tai_const.Create_32bit(0));
  427. { then the addresses and create also the indirect jump }
  428. new_section(asmlist[al_imports],sec_idata5,'',0);
  429. asmlist[al_imports].concat(Tai_label.Create(l3));
  430. hp2:=twin32imported_item(hp1.imported_items.first);
  431. while assigned(hp2) do
  432. begin
  433. if not hp2.is_var then
  434. begin
  435. objectlibrary.getjumplabel(l4);
  436. {$ifdef ARM}
  437. objectlibrary.getjumplabel(l5);
  438. {$endif ARM}
  439. { create indirect jump and }
  440. { place jump in al_procedures }
  441. new_section(asmlist[al_imports],sec_code,'',0);
  442. if assigned(hp2.procdef) then
  443. mangledstring:=hp2.procdef.mangledname
  444. else
  445. mangledstring:=hp2.func^;
  446. asmlist[al_imports].concat(Tai_symbol.Createname_global(mangledstring,AT_FUNCTION,0));
  447. asmlist[al_imports].concat(tai_function_name.create(''));
  448. {$ifdef ARM}
  449. reference_reset_symbol(href,l5,0);
  450. asmlist[al_imports].concat(Taicpu.op_reg_ref(A_LDR,NR_R12,href));
  451. reference_reset_base(href,NR_R12,0);
  452. asmlist[al_imports].concat(Taicpu.op_reg_ref(A_LDR,NR_R15,href));
  453. asmlist[al_imports].concat(Tai_label.Create(l5));
  454. reference_reset_symbol(href,l4,0);
  455. asmlist[al_imports].concat(tai_const.create_sym_offset(href.symbol,href.offset));
  456. {$else ARM}
  457. reference_reset_symbol(href,l4,0);
  458. asmlist[al_imports].concat(Taicpu.Op_ref(A_JMP,S_NO,href));
  459. asmlist[al_imports].concat(Tai_align.Create_op(4,$90));
  460. {$endif ARM}
  461. { add jump field to al_imports }
  462. new_section(asmlist[al_imports],sec_idata5,'',0);
  463. if (cs_debuginfo in aktmoduleswitches) then
  464. begin
  465. if assigned(hp2.name) then
  466. begin
  467. importname:='__imp_'+hp2.name^;
  468. suffix:=0;
  469. while assigned(objectlibrary.getasmsymbol(importname)) do
  470. begin
  471. inc(suffix);
  472. importname:='__imp_'+hp2.name^+'_'+tostr(suffix);
  473. end;
  474. asmlist[al_imports].concat(tai_symbol.createname(importname,AT_FUNCTION,4));
  475. end
  476. else
  477. begin
  478. importname:='__imp_by_ordinal'+tostr(hp2.ordnr);
  479. suffix:=0;
  480. while assigned(objectlibrary.getasmsymbol(importname)) do
  481. begin
  482. inc(suffix);
  483. importname:='__imp_by_ordinal'+tostr(hp2.ordnr)+'_'+tostr(suffix);
  484. end;
  485. asmlist[al_imports].concat(tai_symbol.createname(importname,AT_FUNCTION,4));
  486. end;
  487. end;
  488. asmlist[al_imports].concat(Tai_label.Create(l4));
  489. end
  490. else
  491. begin
  492. asmlist[al_imports].concat(Tai_symbol.Createname_global(hp2.func^,AT_DATA,0));
  493. end;
  494. asmlist[al_imports].concat(Tai_const.Create_rva_sym(hp2.lab));
  495. hp2:=twin32imported_item(hp2.next);
  496. end;
  497. { finalize the addresses }
  498. asmlist[al_imports].concat(Tai_const.Create_32bit(0));
  499. { finally the import information }
  500. new_section(asmlist[al_imports],sec_idata6,'',0);
  501. hp2:=twin32imported_item(hp1.imported_items.first);
  502. while assigned(hp2) do
  503. begin
  504. asmlist[al_imports].concat(Tai_label.Create(hp2.lab));
  505. { the ordinal number }
  506. asmlist[al_imports].concat(Tai_const.Create_16bit(hp2.ordnr));
  507. asmlist[al_imports].concat(Tai_string.Create(hp2.name^+#0));
  508. asmlist[al_imports].concat(Tai_align.Create_op(2,0));
  509. hp2:=twin32imported_item(hp2.next);
  510. end;
  511. { create import dll name }
  512. new_section(asmlist[al_imports],sec_idata7,'',0);
  513. asmlist[al_imports].concat(Tai_label.Create(l1));
  514. asmlist[al_imports].concat(Tai_string.Create(hp1.dllname^+#0));
  515. hp1:=timportlist(hp1.next);
  516. end;
  517. end;
  518. {*****************************************************************************
  519. TEXPORTLIBWIN32
  520. *****************************************************************************}
  521. procedure texportlibwin32.preparelib(const s:string);
  522. begin
  523. if asmlist[al_exports]=nil then
  524. asmlist[al_exports]:=TAAsmoutput.create;
  525. EList_indexed:=tList.Create;
  526. EList_nonindexed:=tList.Create;
  527. objectlibrary.getdatalabel(edatalabel);
  528. end;
  529. procedure texportlibwin32.exportvar(hp : texported_item);
  530. begin
  531. { same code used !! PM }
  532. exportprocedure(hp);
  533. end;
  534. var
  535. Gl_DoubleIndex:boolean;
  536. Gl_DoubleIndexValue:longint;
  537. function IdxCompare(Item1, Item2: Pointer): Integer;
  538. var
  539. I1:texported_item absolute Item1;
  540. I2:texported_item absolute Item2;
  541. begin
  542. Result:=I1.index-I2.index;
  543. if(Result=0)and(Item1<>Item2)then
  544. begin
  545. Gl_DoubleIndex:=true;
  546. Gl_DoubleIndexValue:=I1.index;
  547. end;
  548. end;
  549. procedure texportlibwin32.exportprocedure(hp : texported_item);
  550. begin
  551. if ((hp.options and eo_index)<>0)and((hp.index<=0) or (hp.index>$ffff)) then
  552. begin
  553. message1(parser_e_export_invalid_index,tostr(hp.index));
  554. exit;
  555. end;
  556. if hp.options and eo_index=eo_index then
  557. EList_indexed.Add(hp)
  558. else
  559. EList_nonindexed.Add(hp);
  560. end;
  561. procedure texportlibwin32.exportfromlist(hp : texported_item);
  562. //formerly texportlibwin32.exportprocedure
  563. { must be ordered at least for win32 !! }
  564. var
  565. hp2 : texported_item;
  566. begin
  567. hp2:=texported_item(current_module._exports.first);
  568. while assigned(hp2) and
  569. (hp.name^>hp2.name^) do
  570. hp2:=texported_item(hp2.next);
  571. { insert hp there !! }
  572. if hp2=nil then
  573. current_module._exports.concat(hp)
  574. else
  575. begin
  576. if hp2.name^=hp.name^ then
  577. begin
  578. { this is not allowed !! }
  579. message1(parser_e_export_name_double,hp.name^);
  580. exit;
  581. end;
  582. current_module._exports.insertbefore(hp,hp2);
  583. end;
  584. end;
  585. procedure texportlibwin32.generatelib;
  586. var
  587. ordinal_base,ordinal_max,ordinal_min : longint;
  588. current_index : longint;
  589. entries,named_entries : longint;
  590. name_label,dll_name_label,export_address_table : tasmlabel;
  591. export_name_table_pointers,export_ordinal_table : tasmlabel;
  592. hp,hp2 : texported_item;
  593. temtexport : TLinkedList;
  594. address_table,name_table_pointers,
  595. name_table,ordinal_table : TAAsmoutput;
  596. i,autoindex,ni_high : longint;
  597. hole : boolean;
  598. begin
  599. Gl_DoubleIndex:=false;
  600. ELIst_indexed.Sort(@IdxCompare);
  601. if Gl_DoubleIndex then
  602. begin
  603. message1(parser_e_export_ordinal_double,tostr(Gl_DoubleIndexValue));
  604. EList_indexed.Free;
  605. EList_nonindexed.Free;
  606. exit;
  607. end;
  608. autoindex:=1;
  609. while EList_nonindexed.Count>0 do
  610. begin
  611. hole:=(EList_indexed.Count>0)and(texported_item(EList_indexed.Items[0]).index>1);
  612. if not hole then
  613. for i:=autoindex to pred(EList_indexed.Count)do
  614. if texported_item(EList_indexed.Items[i]).index-texported_item(EList_indexed.Items[pred(i)]).index>1 then
  615. begin
  616. autoindex:=succ(texported_item(EList_indexed.Items[pred(i)]).index);
  617. hole:=true;
  618. break;
  619. end;
  620. ni_high:=pred(EList_nonindexed.Count);
  621. if not hole then
  622. begin
  623. autoindex:=succ(EList_indexed.Count);
  624. EList_indexed.Add(EList_nonindexed.Items[ni_high]);
  625. end
  626. else
  627. EList_indexed.Insert(pred(AutoIndex),EList_nonindexed.Items[ni_high]);
  628. EList_nonindexed.Delete(ni_high);
  629. texported_item(EList_indexed.Items[pred(AutoIndex)]).index:=autoindex;
  630. end;
  631. EList_nonindexed.Free;
  632. for i:=0 to pred(EList_indexed.Count)do
  633. exportfromlist(texported_item(EList_indexed.Items[i]));
  634. EList_indexed.Free;
  635. if (target_asm.id in [as_i386_masm,as_i386_tasm,as_i386_nasmwin32]) then
  636. begin
  637. generatenasmlib;
  638. exit;
  639. end;
  640. hp:=texported_item(current_module._exports.first);
  641. if not assigned(hp) then
  642. exit;
  643. ordinal_max:=0;
  644. ordinal_min:=$7FFFFFFF;
  645. entries:=0;
  646. named_entries:=0;
  647. objectlibrary.getjumplabel(dll_name_label);
  648. objectlibrary.getjumplabel(export_address_table);
  649. objectlibrary.getjumplabel(export_name_table_pointers);
  650. objectlibrary.getjumplabel(export_ordinal_table);
  651. { count entries }
  652. while assigned(hp) do
  653. begin
  654. inc(entries);
  655. if (hp.index>ordinal_max) then
  656. ordinal_max:=hp.index;
  657. if (hp.index>0) and (hp.index<ordinal_min) then
  658. ordinal_min:=hp.index;
  659. if assigned(hp.name) then
  660. inc(named_entries);
  661. hp:=texported_item(hp.next);
  662. end;
  663. { no support for higher ordinal base yet !! }
  664. ordinal_base:=1;
  665. current_index:=ordinal_base;
  666. { we must also count the holes !! }
  667. entries:=ordinal_max-ordinal_base+1;
  668. new_section(asmlist[al_exports],sec_edata,'',0);
  669. { create label to reference from main so smartlink will include
  670. the .edata section }
  671. asmlist[al_exports].concat(Tai_symbol.Create_global(edatalabel,0));
  672. { export flags }
  673. asmlist[al_exports].concat(Tai_const.Create_32bit(0));
  674. { date/time stamp }
  675. asmlist[al_exports].concat(Tai_const.Create_32bit(0));
  676. { major version }
  677. asmlist[al_exports].concat(Tai_const.Create_16bit(0));
  678. { minor version }
  679. asmlist[al_exports].concat(Tai_const.Create_16bit(0));
  680. { pointer to dll name }
  681. asmlist[al_exports].concat(Tai_const.Create_rva_sym(dll_name_label));
  682. { ordinal base normally set to 1 }
  683. asmlist[al_exports].concat(Tai_const.Create_32bit(ordinal_base));
  684. { number of entries }
  685. asmlist[al_exports].concat(Tai_const.Create_32bit(entries));
  686. { number of named entries }
  687. asmlist[al_exports].concat(Tai_const.Create_32bit(named_entries));
  688. { address of export address table }
  689. asmlist[al_exports].concat(Tai_const.Create_rva_sym(export_address_table));
  690. { address of name pointer pointers }
  691. asmlist[al_exports].concat(Tai_const.Create_rva_sym(export_name_table_pointers));
  692. { address of ordinal number pointers }
  693. asmlist[al_exports].concat(Tai_const.Create_rva_sym(export_ordinal_table));
  694. { the name }
  695. asmlist[al_exports].concat(Tai_label.Create(dll_name_label));
  696. if st='' then
  697. asmlist[al_exports].concat(Tai_string.Create(current_module.modulename^+target_info.sharedlibext+#0))
  698. else
  699. asmlist[al_exports].concat(Tai_string.Create(st+target_info.sharedlibext+#0));
  700. { export address table }
  701. address_table:=TAAsmoutput.create;
  702. address_table.concat(Tai_align.Create_op(4,0));
  703. address_table.concat(Tai_label.Create(export_address_table));
  704. name_table_pointers:=TAAsmoutput.create;
  705. name_table_pointers.concat(Tai_align.Create_op(4,0));
  706. name_table_pointers.concat(Tai_label.Create(export_name_table_pointers));
  707. ordinal_table:=TAAsmoutput.create;
  708. ordinal_table.concat(Tai_align.Create_op(4,0));
  709. ordinal_table.concat(Tai_label.Create(export_ordinal_table));
  710. name_table:=TAAsmoutput.Create;
  711. name_table.concat(Tai_align.Create_op(4,0));
  712. { write each address }
  713. hp:=texported_item(current_module._exports.first);
  714. while assigned(hp) do
  715. begin
  716. if (hp.options and eo_name)<>0 then
  717. begin
  718. objectlibrary.getjumplabel(name_label);
  719. name_table_pointers.concat(Tai_const.Create_rva_sym(name_label));
  720. ordinal_table.concat(Tai_const.Create_16bit(hp.index-ordinal_base));
  721. name_table.concat(Tai_align.Create_op(2,0));
  722. name_table.concat(Tai_label.Create(name_label));
  723. name_table.concat(Tai_string.Create(hp.name^+#0));
  724. end;
  725. hp:=texported_item(hp.next);
  726. end;
  727. { order in increasing ordinal values }
  728. { into temtexport list }
  729. temtexport:=TLinkedList.Create;
  730. hp:=texported_item(current_module._exports.first);
  731. while assigned(hp) do
  732. begin
  733. current_module._exports.remove(hp);
  734. hp2:=texported_item(temtexport.first);
  735. while assigned(hp2) and (hp.index>hp2.index) do
  736. hp2:=texported_item(hp2.next);
  737. if hp2=nil then
  738. temtexport.concat(hp)
  739. else
  740. temtexport.insertbefore(hp,hp2);
  741. hp:=texported_item(current_module._exports.first);;
  742. end;
  743. { write the export adress table }
  744. current_index:=ordinal_base;
  745. hp:=texported_item(temtexport.first);
  746. while assigned(hp) do
  747. begin
  748. { fill missing values }
  749. while current_index<hp.index do
  750. begin
  751. address_table.concat(Tai_const.Create_32bit(0));
  752. inc(current_index);
  753. end;
  754. case hp.sym.typ of
  755. globalvarsym :
  756. address_table.concat(Tai_const.Createname_rva(tglobalvarsym(hp.sym).mangledname));
  757. typedconstsym :
  758. address_table.concat(Tai_const.Createname_rva(ttypedconstsym(hp.sym).mangledname));
  759. procsym :
  760. address_table.concat(Tai_const.Createname_rva(tprocsym(hp.sym).first_procdef.mangledname));
  761. end;
  762. inc(current_index);
  763. hp:=texported_item(hp.next);
  764. end;
  765. asmlist[al_exports].concatlist(address_table);
  766. asmlist[al_exports].concatlist(name_table_pointers);
  767. asmlist[al_exports].concatlist(ordinal_table);
  768. asmlist[al_exports].concatlist(name_table);
  769. address_table.Free;
  770. name_table_pointers.free;
  771. ordinal_table.free;
  772. name_table.free;
  773. temtexport.free;
  774. end;
  775. procedure texportlibwin32.generatenasmlib;
  776. var
  777. hp : texported_item;
  778. p : pchar;
  779. s : string;
  780. begin
  781. new_section(asmlist[al_exports],sec_code,'',0);
  782. hp:=texported_item(current_module._exports.first);
  783. while assigned(hp) do
  784. begin
  785. case hp.sym.typ of
  786. globalvarsym :
  787. s:=tglobalvarsym(hp.sym).mangledname;
  788. typedconstsym :
  789. s:=ttypedconstsym(hp.sym).mangledname;
  790. procsym :
  791. s:=tprocsym(hp.sym).first_procdef.mangledname;
  792. else
  793. s:='';
  794. end;
  795. p:=strpnew(#9+'export '+s+' '+hp.name^+' '+tostr(hp.index));
  796. {asmlist[al_exports].concat(tai_direct.create(p));}
  797. hp:=texported_item(hp.next);
  798. end;
  799. end;
  800. {****************************************************************************
  801. TLINKERWIN32
  802. ****************************************************************************}
  803. Constructor TLinkerWin32.Create;
  804. begin
  805. Inherited Create;
  806. { allow duplicated libs (PM) }
  807. SharedLibFiles.doubles:=true;
  808. StaticLibFiles.doubles:=true; if not Dontlinkstdlibpath Then
  809. end;
  810. Procedure TLinkerWin32.SetDefaultInfo;
  811. var
  812. targetopts: string;
  813. begin
  814. with Info do
  815. begin
  816. {$ifdef ARM}
  817. targetopts:='-m armpe';
  818. {$else ARM}
  819. targetopts:='-b pe-i386 -m i386pe';
  820. {$endif ARM}
  821. ExeCmd[1]:='ld '+targetopts+' $OPT $GCSECTIONS $STRIP $APPTYPE $IMAGEBASE $RELOC -o $EXE $RES';
  822. DllCmd[1]:='ld '+targetopts+' $OPT $GCSECTIONS $STRIP --dll $APPTYPE $IMAGEBASE $RELOC -o $EXE $RES';
  823. { ExeCmd[2]:='dlltool --as $ASBIN --dllname $EXE --output-exp exp.$$$ $RELOC $DEF';
  824. use short forms to avoid 128 char limitation problem }
  825. ExeCmd[2]:='dlltool -S $ASBIN -D $EXE -e exp.$$$ $RELOC $DEF';
  826. ExeCmd[3]:='ld '+targetopts+' $OPT $STRIP $APPTYPE $IMAGEBASE -o $EXE $RES exp.$$$';
  827. { DllCmd[2]:='dlltool --as $ASBIN --dllname $EXE --output-exp exp.$$$ $RELOC $DEF'; }
  828. DllCmd[2]:='dlltool -S $ASBIN -D $EXE -e exp.$$$ $RELOC $DEF';
  829. DllCmd[3]:='ld '+targetopts+' $OPT $STRIP --dll $APPTYPE $IMAGEBASE -o $EXE $RES exp.$$$';
  830. end;
  831. end;
  832. Function TLinkerWin32.WriteResponseFile(isdll:boolean) : Boolean;
  833. Var
  834. linkres : TLinkRes;
  835. HPath : TStringListItem;
  836. s,s2 : string;
  837. i : integer;
  838. linklibcygwin : boolean;
  839. begin
  840. WriteResponseFile:=False;
  841. linklibcygwin:=(SharedLibFiles.Find('cygwin')<>nil);
  842. if (cs_profile in aktmoduleswitches) then
  843. begin
  844. SharedLibFiles.Concat('gmon');
  845. SharedLibFiles.Concat('c');
  846. SharedLibFiles.Concat('gcc');
  847. SharedLibFiles.Concat('kernel32');
  848. end;
  849. { Open link.res file }
  850. LinkRes:=TLinkRes.Create(outputexedir+Info.ResName);
  851. { Write path to search libraries }
  852. HPath:=TStringListItem(current_module.locallibrarysearchpath.First);
  853. while assigned(HPath) do
  854. begin
  855. LinkRes.Add('SEARCH_DIR('+MaybeQuoted(HPath.Str)+')');
  856. HPath:=TStringListItem(HPath.Next);
  857. end;
  858. HPath:=TStringListItem(LibrarySearchPath.First);
  859. while assigned(HPath) do
  860. begin
  861. LinkRes.Add('SEARCH_DIR('+MaybeQuoted(HPath.Str)+')');
  862. HPath:=TStringListItem(HPath.Next);
  863. end;
  864. { add objectfiles, start with prt0 always }
  865. { profiling of shared libraries is currently not supported }
  866. LinkRes.Add('INPUT(');
  867. if isdll then
  868. LinkRes.AddFileName(MaybeQuoted(FindObjectFile('wdllprt0','',false)))
  869. else
  870. if (cs_profile in aktmoduleswitches) then
  871. LinkRes.AddFileName(MaybeQuoted(FindObjectFile('gprt0','',false)))
  872. else
  873. begin
  874. if linklibcygwin then
  875. LinkRes.AddFileName(MaybeQuoted(FindObjectFile('wcygprt0','',false)))
  876. else
  877. LinkRes.AddFileName(MaybeQuoted(FindObjectFile('wprt0','',false)));
  878. end;
  879. while not ObjectFiles.Empty do
  880. begin
  881. s:=ObjectFiles.GetFirst;
  882. if s<>'' then
  883. LinkRes.AddFileName(MaybeQuoted(s));
  884. end;
  885. LinkRes.Add(')');
  886. { Write staticlibraries }
  887. if (not StaticLibFiles.Empty) then
  888. begin
  889. LinkRes.Add('GROUP(');
  890. While not StaticLibFiles.Empty do
  891. begin
  892. S:=StaticLibFiles.GetFirst;
  893. LinkRes.AddFileName(MaybeQuoted(s));
  894. end;
  895. LinkRes.Add(')');
  896. end;
  897. { Write sharedlibraries (=import libraries) }
  898. if not SharedLibFiles.Empty then
  899. begin
  900. LinkRes.Add('INPUT(') ;
  901. While not SharedLibFiles.Empty do
  902. begin
  903. S:=SharedLibFiles.GetFirst;
  904. if FindLibraryFile(s,target_info.staticClibprefix,target_info.staticClibext,s2) then
  905. begin
  906. LinkRes.Add(MaybeQuoted(s2));
  907. continue;
  908. end;
  909. if pos(target_info.sharedlibprefix,s)=1 then
  910. s:=copy(s,length(target_info.sharedlibprefix)+1,255);
  911. i:=Pos(target_info.sharedlibext,S);
  912. if i>0 then
  913. Delete(S,i,255);
  914. LinkRes.Add('-l'+s);
  915. end;
  916. LinkRes.Add(')');
  917. end;
  918. { Write DLLs (=direct DLL linking) }
  919. if not DLLFiles.Empty then
  920. begin
  921. LinkRes.Add('INPUT(') ;
  922. While not DLLFiles.Empty do
  923. begin
  924. s:=DLLFiles.GetFirst;
  925. if FindDLL(s,s2) then
  926. LinkRes.Add(MaybeQuoted(s2))
  927. else
  928. LinkRes.Add('-l'+s);
  929. end;
  930. LinkRes.Add(')');
  931. end;
  932. { Write and Close response }
  933. linkres.writetodisk;
  934. LinkRes.Free;
  935. WriteResponseFile:=True;
  936. end;
  937. function TLinkerWin32.MakeExecutable:boolean;
  938. var
  939. binstr : String;
  940. cmdstr : TCmdStr;
  941. success : boolean;
  942. cmds,i : longint;
  943. AsBinStr : string[80];
  944. GCSectionsStr,
  945. StripStr,
  946. RelocStr,
  947. AppTypeStr,
  948. ImageBaseStr : string[40];
  949. begin
  950. if not(cs_link_extern in aktglobalswitches) then
  951. Message1(exec_i_linking,current_module.exefilename^);
  952. { Create some replacements }
  953. RelocStr:='';
  954. AppTypeStr:='';
  955. ImageBaseStr:='';
  956. StripStr:='';
  957. GCSectionsStr:='';
  958. AsBinStr:=FindUtil(utilsprefix+'as');
  959. if RelocSection then
  960. RelocStr:='--base-file base.$$$';
  961. if use_smartlink_section then
  962. GCSectionsStr:='--gc-sections';
  963. if target_info.system in [system_arm_wince,system_i386_wince] then
  964. begin
  965. AppTypeStr:='--subsystem wince';
  966. if apptype <> app_gui then
  967. AppTypeStr:=AppTypeStr + ' --entry=mainCRTStartup';
  968. end
  969. else
  970. if apptype=app_gui then
  971. AppTypeStr:='--subsystem windows';
  972. if assigned(DLLImageBase) then
  973. ImageBaseStr:='--image-base=0x'+DLLImageBase^;
  974. if (cs_link_strip in aktglobalswitches) then
  975. StripStr:='-s';
  976. { Write used files and libraries }
  977. WriteResponseFile(false);
  978. { Call linker }
  979. success:=false;
  980. if RelocSection or (not Deffile.empty) then
  981. cmds:=3
  982. else
  983. cmds:=1;
  984. for i:=1 to cmds do
  985. begin
  986. SplitBinCmd(Info.ExeCmd[i],binstr,cmdstr);
  987. if binstr<>'' then
  988. begin
  989. Replace(cmdstr,'$EXE',maybequoted(current_module.exefilename^));
  990. Replace(cmdstr,'$OPT',Info.ExtraOptions);
  991. Replace(cmdstr,'$RES',maybequoted(outputexedir+Info.ResName));
  992. Replace(cmdstr,'$APPTYPE',AppTypeStr);
  993. Replace(cmdstr,'$ASBIN',AsbinStr);
  994. Replace(cmdstr,'$RELOC',RelocStr);
  995. Replace(cmdstr,'$IMAGEBASE',ImageBaseStr);
  996. Replace(cmdstr,'$GCSECTIONS',GCSectionsStr);
  997. Replace(cmdstr,'$STRIP',StripStr);
  998. if not DefFile.Empty then
  999. begin
  1000. DefFile.WriteFile;
  1001. Replace(cmdstr,'$DEF','-d '+maybequoted(deffile.fname));
  1002. end
  1003. else
  1004. Replace(cmdstr,'$DEF','');
  1005. success:=DoExec(FindUtil(utilsprefix+binstr),cmdstr,(i=1),false);
  1006. if not success then
  1007. break;
  1008. end;
  1009. end;
  1010. { Post process }
  1011. if success then
  1012. success:=PostProcessExecutable(current_module.exefilename^,false);
  1013. { Remove ReponseFile }
  1014. if (success) and not(cs_link_extern in aktglobalswitches) then
  1015. begin
  1016. RemoveFile(outputexedir+Info.ResName);
  1017. RemoveFile('base.$$$');
  1018. RemoveFile('exp.$$$');
  1019. RemoveFile('deffile.$$$');
  1020. end;
  1021. MakeExecutable:=success; { otherwise a recursive call to link method }
  1022. end;
  1023. Function TLinkerWin32.MakeSharedLibrary:boolean;
  1024. var
  1025. binstr : String;
  1026. cmdstr : TCmdStr;
  1027. success : boolean;
  1028. cmds,
  1029. i : longint;
  1030. AsBinStr : string[80];
  1031. StripStr,
  1032. GCSectionsStr,
  1033. RelocStr,
  1034. AppTypeStr,
  1035. ImageBaseStr : string[40];
  1036. begin
  1037. MakeSharedLibrary:=false;
  1038. if not(cs_link_extern in aktglobalswitches) then
  1039. Message1(exec_i_linking,current_module.sharedlibfilename^);
  1040. { Create some replacements }
  1041. RelocStr:='';
  1042. AppTypeStr:='';
  1043. ImageBaseStr:='';
  1044. StripStr:='';
  1045. GCSectionsStr:='';
  1046. AsBinStr:=FindUtil(utilsprefix+'as');
  1047. if RelocSection then
  1048. RelocStr:='--base-file base.$$$';
  1049. if use_smartlink_section then
  1050. GCSectionsStr:='--gc-sections';
  1051. if apptype=app_gui then
  1052. AppTypeStr:='--subsystem windows';
  1053. if assigned(DLLImageBase) then
  1054. ImageBaseStr:='--image-base=0x'+DLLImageBase^;
  1055. if (cs_link_strip in aktglobalswitches) then
  1056. StripStr:='-s';
  1057. { Write used files and libraries }
  1058. WriteResponseFile(true);
  1059. { Call linker }
  1060. success:=false;
  1061. if RelocSection or (not Deffile.empty) then
  1062. cmds:=3
  1063. else
  1064. cmds:=1;
  1065. for i:=1 to cmds do
  1066. begin
  1067. SplitBinCmd(Info.DllCmd[i],binstr,cmdstr);
  1068. if binstr<>'' then
  1069. begin
  1070. Replace(cmdstr,'$EXE',maybequoted(current_module.sharedlibfilename^));
  1071. Replace(cmdstr,'$OPT',Info.ExtraOptions);
  1072. Replace(cmdstr,'$RES',maybequoted(outputexedir+Info.ResName));
  1073. Replace(cmdstr,'$APPTYPE',AppTypeStr);
  1074. Replace(cmdstr,'$ASBIN',AsbinStr);
  1075. Replace(cmdstr,'$RELOC',RelocStr);
  1076. Replace(cmdstr,'$IMAGEBASE',ImageBaseStr);
  1077. Replace(cmdstr,'$STRIP',StripStr);
  1078. Replace(cmdstr,'$GCSECTIONS',GCSectionsStr);
  1079. if not DefFile.Empty then
  1080. begin
  1081. DefFile.WriteFile;
  1082. Replace(cmdstr,'$DEF','-d '+maybequoted(deffile.fname));
  1083. end
  1084. else
  1085. Replace(cmdstr,'$DEF','');
  1086. success:=DoExec(FindUtil(utilsprefix+binstr),cmdstr,(i=1),false);
  1087. if not success then
  1088. break;
  1089. end;
  1090. end;
  1091. { Post process }
  1092. if success then
  1093. success:=PostProcessExecutable(current_module.sharedlibfilename^,true);
  1094. { Remove ReponseFile }
  1095. if (success) and not(cs_link_extern in aktglobalswitches) then
  1096. begin
  1097. RemoveFile(outputexedir+Info.ResName);
  1098. RemoveFile('base.$$$');
  1099. RemoveFile('exp.$$$');
  1100. RemoveFile('deffile.$$$');
  1101. end;
  1102. MakeSharedLibrary:=success; { otherwise a recursive call to link method }
  1103. end;
  1104. function tlinkerwin32.postprocessexecutable(const fn : string;isdll:boolean):boolean;
  1105. type
  1106. tdosheader = packed record
  1107. e_magic : word;
  1108. e_cblp : word;
  1109. e_cp : word;
  1110. e_crlc : word;
  1111. e_cparhdr : word;
  1112. e_minalloc : word;
  1113. e_maxalloc : word;
  1114. e_ss : word;
  1115. e_sp : word;
  1116. e_csum : word;
  1117. e_ip : word;
  1118. e_cs : word;
  1119. e_lfarlc : word;
  1120. e_ovno : word;
  1121. e_res : array[0..3] of word;
  1122. e_oemid : word;
  1123. e_oeminfo : word;
  1124. e_res2 : array[0..9] of word;
  1125. e_lfanew : longint;
  1126. end;
  1127. tpeheader = packed record
  1128. PEMagic : array[0..3] of char;
  1129. Machine : word;
  1130. NumberOfSections : word;
  1131. TimeDateStamp : longint;
  1132. PointerToSymbolTable : longint;
  1133. NumberOfSymbols : longint;
  1134. SizeOfOptionalHeader : word;
  1135. Characteristics : word;
  1136. Magic : word;
  1137. MajorLinkerVersion : byte;
  1138. MinorLinkerVersion : byte;
  1139. SizeOfCode : longint;
  1140. SizeOfInitializedData : longint;
  1141. SizeOfUninitializedData : longint;
  1142. AddressOfEntryPoint : longint;
  1143. BaseOfCode : longint;
  1144. BaseOfData : longint;
  1145. ImageBase : longint;
  1146. SectionAlignment : longint;
  1147. FileAlignment : longint;
  1148. MajorOperatingSystemVersion : word;
  1149. MinorOperatingSystemVersion : word;
  1150. MajorImageVersion : word;
  1151. MinorImageVersion : word;
  1152. MajorSubsystemVersion : word;
  1153. MinorSubsystemVersion : word;
  1154. Reserved1 : longint;
  1155. SizeOfImage : longint;
  1156. SizeOfHeaders : longint;
  1157. CheckSum : longint;
  1158. Subsystem : word;
  1159. DllCharacteristics : word;
  1160. SizeOfStackReserve : longint;
  1161. SizeOfStackCommit : longint;
  1162. SizeOfHeapReserve : longint;
  1163. SizeOfHeapCommit : longint;
  1164. LoaderFlags : longint;
  1165. NumberOfRvaAndSizes : longint;
  1166. DataDirectory : array[1..$80] of byte;
  1167. end;
  1168. tcoffsechdr=packed record
  1169. name : array[0..7] of char;
  1170. vsize : longint;
  1171. rvaofs : longint;
  1172. datalen : longint;
  1173. datapos : longint;
  1174. relocpos : longint;
  1175. lineno1 : longint;
  1176. nrelocs : word;
  1177. lineno2 : word;
  1178. flags : longint;
  1179. end;
  1180. psecfill=^TSecfill;
  1181. TSecfill=record
  1182. fillpos,
  1183. fillsize : longint;
  1184. next : psecfill;
  1185. end;
  1186. var
  1187. f : file;
  1188. cmdstr : string;
  1189. dosheader : tdosheader;
  1190. peheader : tpeheader;
  1191. firstsecpos,
  1192. maxfillsize,
  1193. l,peheaderpos : longint;
  1194. coffsec : tcoffsechdr;
  1195. secroot,hsecroot : psecfill;
  1196. zerobuf : pointer;
  1197. begin
  1198. postprocessexecutable:=false;
  1199. { when -s is used or it's a dll then quit }
  1200. if (cs_link_extern in aktglobalswitches) then
  1201. begin
  1202. case apptype of
  1203. app_native :
  1204. cmdstr:='--subsystem native';
  1205. app_gui :
  1206. cmdstr:='--subsystem gui';
  1207. app_cui :
  1208. cmdstr:='--subsystem console';
  1209. end;
  1210. if dllversion<>'' then
  1211. cmdstr:=cmdstr+' --version '+dllversion;
  1212. cmdstr:=cmdstr+' --input '+maybequoted(fn);
  1213. cmdstr:=cmdstr+' --stack '+tostr(stacksize);
  1214. DoExec(FindUtil(utilsprefix+'postw32'),cmdstr,false,false);
  1215. postprocessexecutable:=true;
  1216. exit;
  1217. end;
  1218. { open file }
  1219. assign(f,fn);
  1220. {$I-}
  1221. reset(f,1);
  1222. if ioresult<>0 then
  1223. Message1(execinfo_f_cant_open_executable,fn);
  1224. { read headers }
  1225. blockread(f,dosheader,sizeof(tdosheader));
  1226. peheaderpos:=dosheader.e_lfanew;
  1227. seek(f,peheaderpos);
  1228. blockread(f,peheader,sizeof(tpeheader));
  1229. { write info }
  1230. Message1(execinfo_x_codesize,tostr(peheader.SizeOfCode));
  1231. Message1(execinfo_x_initdatasize,tostr(peheader.SizeOfInitializedData));
  1232. Message1(execinfo_x_uninitdatasize,tostr(peheader.SizeOfUninitializedData));
  1233. { change stack size (PM) }
  1234. { I am not sure that the default value is adequate !! }
  1235. peheader.SizeOfStackReserve:=stacksize;
  1236. { change the header }
  1237. { sub system }
  1238. { gui=2 }
  1239. { cui=3 }
  1240. { wincegui=9 }
  1241. if target_info.system in [system_arm_wince,system_i386_wince] then
  1242. peheader.Subsystem:=9
  1243. else
  1244. case apptype of
  1245. app_native :
  1246. peheader.Subsystem:=1;
  1247. app_gui :
  1248. peheader.Subsystem:=2;
  1249. app_cui :
  1250. peheader.Subsystem:=3;
  1251. end;
  1252. if dllversion<>'' then
  1253. begin
  1254. peheader.MajorImageVersion:=dllmajor;
  1255. peheader.MinorImageVersion:=dllminor;
  1256. end;
  1257. { reset timestamp }
  1258. peheader.TimeDateStamp:=0;
  1259. { write header back }
  1260. seek(f,peheaderpos);
  1261. blockwrite(f,peheader,sizeof(tpeheader));
  1262. if ioresult<>0 then
  1263. Message1(execinfo_f_cant_process_executable,fn);
  1264. seek(f,peheaderpos);
  1265. blockread(f,peheader,sizeof(tpeheader));
  1266. { write the value after the change }
  1267. Message1(execinfo_x_stackreserve,tostr(peheader.SizeOfStackReserve));
  1268. Message1(execinfo_x_stackcommit,tostr(peheader.SizeOfStackCommit));
  1269. { read section info }
  1270. maxfillsize:=0;
  1271. firstsecpos:=0;
  1272. secroot:=nil;
  1273. for l:=1 to peheader.NumberOfSections do
  1274. begin
  1275. blockread(f,coffsec,sizeof(tcoffsechdr));
  1276. if coffsec.datapos>0 then
  1277. begin
  1278. if secroot=nil then
  1279. firstsecpos:=coffsec.datapos;
  1280. new(hsecroot);
  1281. hsecroot^.fillpos:=coffsec.datapos+coffsec.vsize;
  1282. hsecroot^.fillsize:=coffsec.datalen-coffsec.vsize;
  1283. hsecroot^.next:=secroot;
  1284. secroot:=hsecroot;
  1285. if secroot^.fillsize>maxfillsize then
  1286. maxfillsize:=secroot^.fillsize;
  1287. end;
  1288. end;
  1289. if firstsecpos>0 then
  1290. begin
  1291. l:=firstsecpos-filepos(f);
  1292. if l>maxfillsize then
  1293. maxfillsize:=l;
  1294. end
  1295. else
  1296. l:=0;
  1297. { get zero buffer }
  1298. getmem(zerobuf,maxfillsize);
  1299. fillchar(zerobuf^,maxfillsize,0);
  1300. { zero from sectioninfo until first section }
  1301. blockwrite(f,zerobuf^,l);
  1302. { zero section alignments }
  1303. while assigned(secroot) do
  1304. begin
  1305. seek(f,secroot^.fillpos);
  1306. blockwrite(f,zerobuf^,secroot^.fillsize);
  1307. hsecroot:=secroot;
  1308. secroot:=secroot^.next;
  1309. dispose(hsecroot);
  1310. end;
  1311. freemem(zerobuf,maxfillsize);
  1312. close(f);
  1313. {$I+}
  1314. if ioresult<>0 then;
  1315. postprocessexecutable:=true;
  1316. end;
  1317. {****************************************************************************
  1318. TDLLScannerWin32
  1319. ****************************************************************************}
  1320. function tDLLScannerWin32.DOSstubOK(var x:cardinal):boolean;
  1321. begin
  1322. blockread(f,TheWord,2,loaded);
  1323. if loaded<>2 then
  1324. DOSstubOK:=false
  1325. else
  1326. begin
  1327. DOSstubOK:=(TheWord='MZ');
  1328. seek(f,$3C);
  1329. blockread(f,x,4,loaded);
  1330. if(loaded<>4)or(longint(x)>filesize(f))then
  1331. DOSstubOK:=false;
  1332. end;
  1333. end;
  1334. function tDLLScannerWin32.ExtractDllName(Const Name : string) : string;
  1335. var n : string;
  1336. begin
  1337. n:=Upper(SplitExtension(Name));
  1338. if (n='.DLL') or (n='.DRV') or (n='.EXE') then
  1339. ExtractDllName:=Name
  1340. else
  1341. ExtractDllName:=Name+target_info.sharedlibext;
  1342. end;
  1343. function tDLLScannerWin32.isSuitableFileType(x:cardinal):longbool;
  1344. begin
  1345. seek(f,x);
  1346. blockread(f,TheWord,2,loaded);
  1347. isSuitableFileType:=(loaded=2)and(TheWord='PE');
  1348. end;
  1349. function tDLLScannerWin32.GetEdata(HeaderEntry:cardinal):longbool;
  1350. type
  1351. TObjInfo=packed record
  1352. ObjName:array[0..7]of char;
  1353. VirtSize,
  1354. VirtAddr,
  1355. RawSize,
  1356. RawOffset,
  1357. Reloc,
  1358. LineNum:cardinal;
  1359. RelCount,
  1360. LineCount:word;
  1361. flags:cardinal;
  1362. end;
  1363. var
  1364. i:cardinal;
  1365. ObjOfs:cardinal;
  1366. Obj:TObjInfo;
  1367. APE_obj,APE_Optsize:word;
  1368. ExportRVA:cardinal;
  1369. delta:cardinal;
  1370. const
  1371. IMAGE_SCN_CNT_CODE=$00000020;
  1372. var
  1373. _d:dirstr;
  1374. _n:namestr;
  1375. _e:extstr;
  1376. function isUsedFunction(name:pchar):longbool;
  1377. var
  1378. hp:tExternalsItem;
  1379. begin
  1380. isUsedFunction:=false;
  1381. hp:=tExternalsItem(current_module.Externals.first);
  1382. while assigned(hp)do
  1383. begin
  1384. if(assigned(hp.data))and(not hp.found)then
  1385. if hp.data^=StrPas(name)then
  1386. begin
  1387. isUsedFunction:=true;
  1388. hp.found:=true;
  1389. exit;
  1390. end;
  1391. hp:=tExternalsItem(hp.next);
  1392. end;
  1393. end;
  1394. procedure Store(index:cardinal;name:pchar;isData:longbool);
  1395. begin
  1396. if not isUsedFunction(name)then
  1397. exit;
  1398. if not(current_module.uses_imports) then
  1399. begin
  1400. current_module.uses_imports:=true;
  1401. importlib.preparelib(current_module.modulename^);
  1402. end;
  1403. if IsData then
  1404. timportlibwin32(importlib).importvariable_str(name,_n,name)
  1405. else
  1406. timportlibwin32(importlib).importprocedure_str(name,_n,index,name);
  1407. end;
  1408. procedure ProcessEdata;
  1409. type
  1410. a8=array[0..7]of char;
  1411. function GetSectionName(rva:cardinal;var Flags:cardinal):a8;
  1412. var
  1413. i:cardinal;
  1414. LocObjOfs:cardinal;
  1415. LocObj:TObjInfo;
  1416. begin
  1417. GetSectionName:='';
  1418. Flags:=0;
  1419. LocObjOfs:=APE_OptSize+HeaderOffset+24;
  1420. for i:=1 to APE_obj do
  1421. begin
  1422. seek(f,LocObjOfs);
  1423. blockread(f,LocObj,sizeof(LocObj));
  1424. if(rva>=LocObj.VirtAddr)and(rva<=LocObj.VirtAddr+LocObj.RawSize)then
  1425. begin
  1426. GetSectionName:=a8(LocObj.ObjName);
  1427. Flags:=LocObj.flags;
  1428. end;
  1429. end;
  1430. end;
  1431. var
  1432. j,Fl:cardinal;
  1433. ulongval,procEntry:cardinal;
  1434. Ordinal:word;
  1435. isData:longbool;
  1436. ExpDir:packed record
  1437. flag,
  1438. stamp:cardinal;
  1439. Major,
  1440. Minor:word;
  1441. Name,
  1442. Base,
  1443. NumFuncs,
  1444. NumNames,
  1445. AddrFuncs,
  1446. AddrNames,
  1447. AddrOrds:cardinal;
  1448. end;
  1449. begin
  1450. with Obj do
  1451. begin
  1452. seek(f,RawOffset+delta);
  1453. blockread(f,ExpDir,sizeof(ExpDir));
  1454. fsplit(impname,_d,_n,_e);
  1455. for j:=0 to pred(ExpDir.NumNames)do
  1456. begin
  1457. { Don't know why but this gives serious problems with overflow checking on }
  1458. {$IFOPT Q+}
  1459. {$DEFINE OVERFLOW_CHECK_WAS_ON}
  1460. {$ENDIF}
  1461. {$Q-}
  1462. seek(f,RawOffset-VirtAddr+ExpDir.AddrOrds+j*2);
  1463. blockread(f,Ordinal,2);
  1464. seek(f,RawOffset-VirtAddr+ExpDir.AddrFuncs+cardinal(Ordinal)*4);
  1465. blockread(f,ProcEntry,4);
  1466. seek(f,RawOffset-VirtAddr+ExpDir.AddrNames+j*4);
  1467. blockread(f,ulongval,4);
  1468. seek(f,RawOffset-VirtAddr+ulongval);
  1469. blockread(f,cstring,sizeof(cstring));
  1470. isData:=GetSectionName(procentry,Fl)='';
  1471. {$IFDEF OVERFLOW_CHECK_WAS_ON}
  1472. {$Q+}
  1473. {$ENDIF}
  1474. if not isData then
  1475. isData:=Fl and IMAGE_SCN_CNT_CODE<>IMAGE_SCN_CNT_CODE;
  1476. Store(succ(Ordinal),cstring,isData);
  1477. end;
  1478. end;
  1479. end;
  1480. begin
  1481. GetEdata:=false;
  1482. seek(f,HeaderEntry+120);
  1483. blockread(f,ExportRVA,4);
  1484. seek(f,HeaderEntry+6);
  1485. blockread(f,APE_Obj,2);
  1486. seek(f,HeaderEntry+20);
  1487. blockread(f,APE_OptSize,2);
  1488. ObjOfs:=APE_OptSize+HeaderOffset+24;
  1489. for i:=1 to APE_obj do
  1490. begin
  1491. seek(f,ObjOfs);
  1492. blockread(f,Obj,sizeof(Obj));
  1493. inc(ObjOfs,sizeof(Obj));
  1494. with Obj do
  1495. if(VirtAddr<=ExportRva)and(ExportRva<VirtAddr+VirtSize)then
  1496. begin
  1497. delta:=ExportRva-VirtAddr;
  1498. ProcessEdata;
  1499. GetEdata:=true;
  1500. end;
  1501. end;
  1502. end;
  1503. function tDLLScannerWin32.scan(const binname:string):longbool;
  1504. var
  1505. OldFileMode:byte;
  1506. hs,
  1507. foundimp : string;
  1508. begin
  1509. Scan:=false;
  1510. { is there already an import library the we will use that one }
  1511. if FindLibraryFile(binname,target_info.staticClibprefix,target_info.staticClibext,foundimp) then
  1512. exit;
  1513. { check if we can find the dll }
  1514. hs:=AddExtension(binname,target_info.sharedlibext);
  1515. if not FindDll(hs,impname) then
  1516. exit;
  1517. { read the dll file }
  1518. assign(f,impname);
  1519. OldFileMode:=filemode;
  1520. filemode:=0;
  1521. reset(f,1);
  1522. filemode:=OldFileMode;
  1523. if not DOSstubOK(HeaderOffset)then
  1524. scan:=false
  1525. else if not isSuitableFileType(HeaderOffset)then
  1526. scan:=false
  1527. else
  1528. scan:=GetEdata(HeaderOffset);
  1529. close(f);
  1530. end;
  1531. {*****************************************************************************
  1532. Initialize
  1533. *****************************************************************************}
  1534. initialization
  1535. {$ifdef i386}
  1536. RegisterExternalLinker(system_i386_win32_info,TLinkerWin32);
  1537. RegisterImport(system_i386_win32,TImportLibWin32);
  1538. RegisterExport(system_i386_win32,TExportLibWin32);
  1539. RegisterDLLScanner(system_i386_win32,TDLLScannerWin32);
  1540. RegisterRes(res_gnu_windres_info);
  1541. RegisterTarget(system_i386_win32_info);
  1542. RegisterExternalLinker(system_i386_wince_info,TLinkerWin32);
  1543. RegisterImport(system_i386_wince,TImportLibWin32);
  1544. RegisterExport(system_i386_wince,TExportLibWin32);
  1545. RegisterDLLScanner(system_i386_wince,TDLLScannerWin32);
  1546. RegisterTarget(system_i386_wince_info);
  1547. {$endif i386}
  1548. {$ifdef x86_64}
  1549. RegisterExternalLinker(system_x64_win64_info,TLinkerWin32);
  1550. RegisterImport(system_x86_64_win64,TImportLibWin32);
  1551. RegisterExport(system_x86_64_win64,TExportLibWin32);
  1552. RegisterDLLScanner(system_x86_64_win64,TDLLScannerWin32);
  1553. RegisterRes(res_gnu_windres_info);
  1554. RegisterTarget(system_x64_win64_info);
  1555. {$endif x86_64}
  1556. {$ifdef arm}
  1557. RegisterExternalLinker(system_arm_wince_info,TLinkerWin32);
  1558. RegisterImport(system_arm_wince,TImportLibWin32);
  1559. RegisterExport(system_arm_wince,TExportLibWin32);
  1560. RegisterRes(res_gnu_wince_windres_info);
  1561. RegisterTarget(system_arm_wince_info);
  1562. {$endif arm}
  1563. end.