t_win.pas 57 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699
  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,ogcoff;
  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_always);
  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_always);
  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 $ENTRY $IMAGEBASE $RELOC -o $EXE $RES';
  822. DllCmd[1]:='ld '+targetopts+' $OPT $GCSECTIONS $STRIP --dll $APPTYPE $ENTRY $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 $ENTRY $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 $ENTRY $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. if not ObjectFiles.Empty then
  867. begin
  868. LinkRes.Add('INPUT(');
  869. { For wince external startup file is used and placed first, }
  870. { because ARM prolog structure must be located at the very }
  871. { beginning of code. Otherwise exceptions do not work properly. }
  872. if target_info.system in [system_arm_wince,system_i386_wince] then
  873. LinkRes.AddFileName(MaybeQuoted(FindObjectFile('wprt0','',false)));
  874. while not ObjectFiles.Empty do
  875. begin
  876. s:=ObjectFiles.GetFirst;
  877. if s<>'' then
  878. LinkRes.AddFileName(MaybeQuoted(s));
  879. end;
  880. LinkRes.Add(')');
  881. end;
  882. { Write staticlibraries }
  883. if (not StaticLibFiles.Empty) then
  884. begin
  885. LinkRes.Add('GROUP(');
  886. While not StaticLibFiles.Empty do
  887. begin
  888. S:=StaticLibFiles.GetFirst;
  889. LinkRes.AddFileName(MaybeQuoted(s));
  890. end;
  891. LinkRes.Add(')');
  892. end;
  893. { Write sharedlibraries (=import libraries) }
  894. if not SharedLibFiles.Empty then
  895. begin
  896. LinkRes.Add('INPUT(') ;
  897. While not SharedLibFiles.Empty do
  898. begin
  899. S:=SharedLibFiles.GetFirst;
  900. if FindLibraryFile(s,target_info.staticClibprefix,target_info.staticClibext,s2) then
  901. begin
  902. LinkRes.Add(MaybeQuoted(s2));
  903. continue;
  904. end;
  905. if pos(target_info.sharedlibprefix,s)=1 then
  906. s:=copy(s,length(target_info.sharedlibprefix)+1,255);
  907. i:=Pos(target_info.sharedlibext,S);
  908. if i>0 then
  909. Delete(S,i,255);
  910. LinkRes.Add('-l'+s);
  911. end;
  912. LinkRes.Add(')');
  913. end;
  914. { Write DLLs (=direct DLL linking) }
  915. if not DLLFiles.Empty then
  916. begin
  917. LinkRes.Add('INPUT(') ;
  918. While not DLLFiles.Empty do
  919. begin
  920. s:=DLLFiles.GetFirst;
  921. if FindDLL(s,s2) then
  922. LinkRes.Add(MaybeQuoted(s2))
  923. else
  924. LinkRes.Add('-l'+s);
  925. end;
  926. LinkRes.Add(')');
  927. end;
  928. { Write and Close response }
  929. linkres.writetodisk;
  930. LinkRes.Free;
  931. WriteResponseFile:=True;
  932. end;
  933. function TLinkerWin32.MakeExecutable:boolean;
  934. var
  935. binstr : String;
  936. cmdstr : TCmdStr;
  937. success : boolean;
  938. cmds,i : longint;
  939. AsBinStr : string[80];
  940. GCSectionsStr,
  941. StripStr,
  942. RelocStr,
  943. AppTypeStr,
  944. EntryStr,
  945. ImageBaseStr : string[40];
  946. begin
  947. if not(cs_link_extern in aktglobalswitches) then
  948. Message1(exec_i_linking,current_module.exefilename^);
  949. { Create some replacements }
  950. RelocStr:='';
  951. AppTypeStr:='';
  952. EntryStr:='';
  953. ImageBaseStr:='';
  954. StripStr:='';
  955. GCSectionsStr:='';
  956. AsBinStr:=FindUtil(utilsprefix+'as');
  957. if RelocSection then
  958. RelocStr:='--base-file base.$$$';
  959. if use_smartlink_section then
  960. GCSectionsStr:='--gc-sections';
  961. if target_info.system in [system_arm_wince,system_i386_wince] then
  962. AppTypeStr:='--subsystem wince'
  963. else
  964. begin
  965. if apptype=app_gui then
  966. AppTypeStr:='--subsystem windows';
  967. end;
  968. if apptype=app_gui then
  969. EntryStr:='--entry=_WinMainCRTStartup'
  970. else
  971. EntryStr:='--entry=_mainCRTStartup';
  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,'$ENTRY',EntryStr);
  994. Replace(cmdstr,'$ASBIN',AsbinStr);
  995. Replace(cmdstr,'$RELOC',RelocStr);
  996. Replace(cmdstr,'$IMAGEBASE',ImageBaseStr);
  997. Replace(cmdstr,'$GCSECTIONS',GCSectionsStr);
  998. Replace(cmdstr,'$STRIP',StripStr);
  999. if not DefFile.Empty then
  1000. begin
  1001. DefFile.WriteFile;
  1002. Replace(cmdstr,'$DEF','-d '+maybequoted(deffile.fname));
  1003. end
  1004. else
  1005. Replace(cmdstr,'$DEF','');
  1006. success:=DoExec(FindUtil(utilsprefix+binstr),cmdstr,(i=1),false);
  1007. if not success then
  1008. break;
  1009. end;
  1010. end;
  1011. { Post process }
  1012. if success then
  1013. success:=PostProcessExecutable(current_module.exefilename^,false);
  1014. { Remove ReponseFile }
  1015. if (success) and not(cs_link_extern in aktglobalswitches) then
  1016. begin
  1017. RemoveFile(outputexedir+Info.ResName);
  1018. RemoveFile('base.$$$');
  1019. RemoveFile('exp.$$$');
  1020. RemoveFile('deffile.$$$');
  1021. end;
  1022. MakeExecutable:=success; { otherwise a recursive call to link method }
  1023. end;
  1024. Function TLinkerWin32.MakeSharedLibrary:boolean;
  1025. var
  1026. binstr : String;
  1027. cmdstr : TCmdStr;
  1028. success : boolean;
  1029. cmds,
  1030. i : longint;
  1031. AsBinStr : string[80];
  1032. StripStr,
  1033. GCSectionsStr,
  1034. RelocStr,
  1035. AppTypeStr,
  1036. EntryStr,
  1037. ImageBaseStr : string[40];
  1038. begin
  1039. MakeSharedLibrary:=false;
  1040. if not(cs_link_extern in aktglobalswitches) then
  1041. Message1(exec_i_linking,current_module.sharedlibfilename^);
  1042. { Create some replacements }
  1043. RelocStr:='';
  1044. AppTypeStr:='';
  1045. EntryStr:='';
  1046. ImageBaseStr:='';
  1047. StripStr:='';
  1048. GCSectionsStr:='';
  1049. AsBinStr:=FindUtil(utilsprefix+'as');
  1050. if RelocSection then
  1051. RelocStr:='--base-file base.$$$';
  1052. if use_smartlink_section then
  1053. GCSectionsStr:='--gc-sections';
  1054. if apptype=app_gui then
  1055. begin
  1056. AppTypeStr:='--subsystem windows';
  1057. EntryStr:='--entry _DLLWinMainCRTStartup'
  1058. end
  1059. else
  1060. EntryStr:='--entry _DLLMainCRTStartup';
  1061. if assigned(DLLImageBase) then
  1062. ImageBaseStr:='--image-base=0x'+DLLImageBase^;
  1063. if (cs_link_strip in aktglobalswitches) then
  1064. StripStr:='-s';
  1065. { Write used files and libraries }
  1066. WriteResponseFile(true);
  1067. { Call linker }
  1068. success:=false;
  1069. if RelocSection or (not Deffile.empty) then
  1070. cmds:=3
  1071. else
  1072. cmds:=1;
  1073. for i:=1 to cmds do
  1074. begin
  1075. SplitBinCmd(Info.DllCmd[i],binstr,cmdstr);
  1076. if binstr<>'' then
  1077. begin
  1078. Replace(cmdstr,'$EXE',maybequoted(current_module.sharedlibfilename^));
  1079. Replace(cmdstr,'$OPT',Info.ExtraOptions);
  1080. Replace(cmdstr,'$RES',maybequoted(outputexedir+Info.ResName));
  1081. Replace(cmdstr,'$APPTYPE',AppTypeStr);
  1082. Replace(cmdstr,'$ENTRY',EntryStr);
  1083. Replace(cmdstr,'$ASBIN',AsbinStr);
  1084. Replace(cmdstr,'$RELOC',RelocStr);
  1085. Replace(cmdstr,'$IMAGEBASE',ImageBaseStr);
  1086. Replace(cmdstr,'$STRIP',StripStr);
  1087. Replace(cmdstr,'$GCSECTIONS',GCSectionsStr);
  1088. if not DefFile.Empty then
  1089. begin
  1090. DefFile.WriteFile;
  1091. Replace(cmdstr,'$DEF','-d '+maybequoted(deffile.fname));
  1092. end
  1093. else
  1094. Replace(cmdstr,'$DEF','');
  1095. success:=DoExec(FindUtil(utilsprefix+binstr),cmdstr,(i=1),false);
  1096. if not success then
  1097. break;
  1098. end;
  1099. end;
  1100. { Post process }
  1101. if success then
  1102. success:=PostProcessExecutable(current_module.sharedlibfilename^,true);
  1103. { Remove ReponseFile }
  1104. if (success) and not(cs_link_extern in aktglobalswitches) then
  1105. begin
  1106. RemoveFile(outputexedir+Info.ResName);
  1107. RemoveFile('base.$$$');
  1108. RemoveFile('exp.$$$');
  1109. RemoveFile('deffile.$$$');
  1110. end;
  1111. MakeSharedLibrary:=success; { otherwise a recursive call to link method }
  1112. end;
  1113. function tlinkerwin32.postprocessexecutable(const fn : string;isdll:boolean):boolean;
  1114. type
  1115. tdosheader = packed record
  1116. e_magic : word;
  1117. e_cblp : word;
  1118. e_cp : word;
  1119. e_crlc : word;
  1120. e_cparhdr : word;
  1121. e_minalloc : word;
  1122. e_maxalloc : word;
  1123. e_ss : word;
  1124. e_sp : word;
  1125. e_csum : word;
  1126. e_ip : word;
  1127. e_cs : word;
  1128. e_lfarlc : word;
  1129. e_ovno : word;
  1130. e_res : array[0..3] of word;
  1131. e_oemid : word;
  1132. e_oeminfo : word;
  1133. e_res2 : array[0..9] of word;
  1134. e_lfanew : longint;
  1135. end;
  1136. tpeheader = packed record
  1137. PEMagic : array[0..3] of char;
  1138. Machine : word;
  1139. NumberOfSections : word;
  1140. TimeDateStamp : longint;
  1141. PointerToSymbolTable : longint;
  1142. NumberOfSymbols : longint;
  1143. SizeOfOptionalHeader : word;
  1144. Characteristics : word;
  1145. Magic : word;
  1146. MajorLinkerVersion : byte;
  1147. MinorLinkerVersion : byte;
  1148. SizeOfCode : longint;
  1149. SizeOfInitializedData : longint;
  1150. SizeOfUninitializedData : longint;
  1151. AddressOfEntryPoint : longint;
  1152. BaseOfCode : longint;
  1153. BaseOfData : longint;
  1154. ImageBase : longint;
  1155. SectionAlignment : longint;
  1156. FileAlignment : longint;
  1157. MajorOperatingSystemVersion : word;
  1158. MinorOperatingSystemVersion : word;
  1159. MajorImageVersion : word;
  1160. MinorImageVersion : word;
  1161. MajorSubsystemVersion : word;
  1162. MinorSubsystemVersion : word;
  1163. Reserved1 : longint;
  1164. SizeOfImage : longint;
  1165. SizeOfHeaders : longint;
  1166. CheckSum : longint;
  1167. Subsystem : word;
  1168. DllCharacteristics : word;
  1169. SizeOfStackReserve : longint;
  1170. SizeOfStackCommit : longint;
  1171. SizeOfHeapReserve : longint;
  1172. SizeOfHeapCommit : longint;
  1173. LoaderFlags : longint;
  1174. NumberOfRvaAndSizes : longint;
  1175. DataDirectory : array[1..$80] of byte;
  1176. end;
  1177. tcoffsechdr=packed record
  1178. name : array[0..7] of char;
  1179. vsize : longint;
  1180. rvaofs : longint;
  1181. datalen : longint;
  1182. datapos : longint;
  1183. relocpos : longint;
  1184. lineno1 : longint;
  1185. nrelocs : word;
  1186. lineno2 : word;
  1187. flags : longint;
  1188. end;
  1189. psecfill=^TSecfill;
  1190. TSecfill=record
  1191. fillpos,
  1192. fillsize : longint;
  1193. next : psecfill;
  1194. end;
  1195. var
  1196. f : file;
  1197. cmdstr : string;
  1198. dosheader : tdosheader;
  1199. peheader : tpeheader;
  1200. firstsecpos,
  1201. maxfillsize,
  1202. l,peheaderpos : longint;
  1203. coffsec : tcoffsechdr;
  1204. secroot,hsecroot : psecfill;
  1205. zerobuf : pointer;
  1206. begin
  1207. postprocessexecutable:=false;
  1208. { when -s is used or it's a dll then quit }
  1209. if (cs_link_extern in aktglobalswitches) then
  1210. begin
  1211. case apptype of
  1212. app_native :
  1213. cmdstr:='--subsystem native';
  1214. app_gui :
  1215. cmdstr:='--subsystem gui';
  1216. app_cui :
  1217. cmdstr:='--subsystem console';
  1218. end;
  1219. if dllversion<>'' then
  1220. cmdstr:=cmdstr+' --version '+dllversion;
  1221. cmdstr:=cmdstr+' --input '+maybequoted(fn);
  1222. cmdstr:=cmdstr+' --stack '+tostr(stacksize);
  1223. DoExec(FindUtil(utilsprefix+'postw32'),cmdstr,false,false);
  1224. postprocessexecutable:=true;
  1225. exit;
  1226. end;
  1227. { open file }
  1228. assign(f,fn);
  1229. {$I-}
  1230. reset(f,1);
  1231. if ioresult<>0 then
  1232. Message1(execinfo_f_cant_open_executable,fn);
  1233. { read headers }
  1234. blockread(f,dosheader,sizeof(tdosheader));
  1235. peheaderpos:=dosheader.e_lfanew;
  1236. seek(f,peheaderpos);
  1237. blockread(f,peheader,sizeof(tpeheader));
  1238. { write info }
  1239. Message1(execinfo_x_codesize,tostr(peheader.SizeOfCode));
  1240. Message1(execinfo_x_initdatasize,tostr(peheader.SizeOfInitializedData));
  1241. Message1(execinfo_x_uninitdatasize,tostr(peheader.SizeOfUninitializedData));
  1242. { change stack size (PM) }
  1243. { I am not sure that the default value is adequate !! }
  1244. peheader.SizeOfStackReserve:=stacksize;
  1245. { change the header }
  1246. { sub system }
  1247. { gui=2 }
  1248. { cui=3 }
  1249. { wincegui=9 }
  1250. if target_info.system in [system_arm_wince,system_i386_wince] then
  1251. peheader.Subsystem:=9
  1252. else
  1253. case apptype of
  1254. app_native :
  1255. peheader.Subsystem:=1;
  1256. app_gui :
  1257. peheader.Subsystem:=2;
  1258. app_cui :
  1259. peheader.Subsystem:=3;
  1260. end;
  1261. if dllversion<>'' then
  1262. begin
  1263. peheader.MajorImageVersion:=dllmajor;
  1264. peheader.MinorImageVersion:=dllminor;
  1265. end;
  1266. { reset timestamp }
  1267. peheader.TimeDateStamp:=0;
  1268. { write header back }
  1269. seek(f,peheaderpos);
  1270. blockwrite(f,peheader,sizeof(tpeheader));
  1271. if ioresult<>0 then
  1272. Message1(execinfo_f_cant_process_executable,fn);
  1273. seek(f,peheaderpos);
  1274. blockread(f,peheader,sizeof(tpeheader));
  1275. { write the value after the change }
  1276. Message1(execinfo_x_stackreserve,tostr(peheader.SizeOfStackReserve));
  1277. Message1(execinfo_x_stackcommit,tostr(peheader.SizeOfStackCommit));
  1278. { read section info }
  1279. maxfillsize:=0;
  1280. firstsecpos:=0;
  1281. secroot:=nil;
  1282. for l:=1 to peheader.NumberOfSections do
  1283. begin
  1284. blockread(f,coffsec,sizeof(tcoffsechdr));
  1285. if coffsec.datapos>0 then
  1286. begin
  1287. if secroot=nil then
  1288. firstsecpos:=coffsec.datapos;
  1289. new(hsecroot);
  1290. hsecroot^.fillpos:=coffsec.datapos+coffsec.vsize;
  1291. hsecroot^.fillsize:=coffsec.datalen-coffsec.vsize;
  1292. hsecroot^.next:=secroot;
  1293. secroot:=hsecroot;
  1294. if secroot^.fillsize>maxfillsize then
  1295. maxfillsize:=secroot^.fillsize;
  1296. end;
  1297. end;
  1298. if firstsecpos>0 then
  1299. begin
  1300. l:=firstsecpos-filepos(f);
  1301. if l>maxfillsize then
  1302. maxfillsize:=l;
  1303. end
  1304. else
  1305. l:=0;
  1306. { get zero buffer }
  1307. getmem(zerobuf,maxfillsize);
  1308. fillchar(zerobuf^,maxfillsize,0);
  1309. { zero from sectioninfo until first section }
  1310. blockwrite(f,zerobuf^,l);
  1311. { zero section alignments }
  1312. while assigned(secroot) do
  1313. begin
  1314. seek(f,secroot^.fillpos);
  1315. blockwrite(f,zerobuf^,secroot^.fillsize);
  1316. hsecroot:=secroot;
  1317. secroot:=secroot^.next;
  1318. dispose(hsecroot);
  1319. end;
  1320. freemem(zerobuf,maxfillsize);
  1321. close(f);
  1322. {$I+}
  1323. if ioresult<>0 then;
  1324. postprocessexecutable:=true;
  1325. end;
  1326. {****************************************************************************
  1327. TDLLScannerWin32
  1328. ****************************************************************************}
  1329. function tDLLScannerWin32.DOSstubOK(var x:cardinal):boolean;
  1330. begin
  1331. blockread(f,TheWord,2,loaded);
  1332. if loaded<>2 then
  1333. DOSstubOK:=false
  1334. else
  1335. begin
  1336. DOSstubOK:=(TheWord='MZ');
  1337. seek(f,$3C);
  1338. blockread(f,x,4,loaded);
  1339. if(loaded<>4)or(longint(x)>filesize(f))then
  1340. DOSstubOK:=false;
  1341. end;
  1342. end;
  1343. function tDLLScannerWin32.ExtractDllName(Const Name : string) : string;
  1344. var n : string;
  1345. begin
  1346. n:=Upper(SplitExtension(Name));
  1347. if (n='.DLL') or (n='.DRV') or (n='.EXE') then
  1348. ExtractDllName:=Name
  1349. else
  1350. ExtractDllName:=Name+target_info.sharedlibext;
  1351. end;
  1352. function tDLLScannerWin32.isSuitableFileType(x:cardinal):longbool;
  1353. begin
  1354. seek(f,x);
  1355. blockread(f,TheWord,2,loaded);
  1356. isSuitableFileType:=(loaded=2)and(TheWord='PE');
  1357. end;
  1358. function tDLLScannerWin32.GetEdata(HeaderEntry:cardinal):longbool;
  1359. type
  1360. TObjInfo=packed record
  1361. ObjName:array[0..7]of char;
  1362. VirtSize,
  1363. VirtAddr,
  1364. RawSize,
  1365. RawOffset,
  1366. Reloc,
  1367. LineNum:cardinal;
  1368. RelCount,
  1369. LineCount:word;
  1370. flags:cardinal;
  1371. end;
  1372. var
  1373. i:cardinal;
  1374. ObjOfs:cardinal;
  1375. Obj:TObjInfo;
  1376. APE_obj,APE_Optsize:word;
  1377. ExportRVA:cardinal;
  1378. delta:cardinal;
  1379. const
  1380. IMAGE_SCN_CNT_CODE=$00000020;
  1381. var
  1382. _d:dirstr;
  1383. _n:namestr;
  1384. _e:extstr;
  1385. function isUsedFunction(name:pchar):longbool;
  1386. var
  1387. hp:tExternalsItem;
  1388. begin
  1389. isUsedFunction:=false;
  1390. hp:=tExternalsItem(current_module.Externals.first);
  1391. while assigned(hp)do
  1392. begin
  1393. if(assigned(hp.data))and(not hp.found)then
  1394. if hp.data^=StrPas(name)then
  1395. begin
  1396. isUsedFunction:=true;
  1397. hp.found:=true;
  1398. exit;
  1399. end;
  1400. hp:=tExternalsItem(hp.next);
  1401. end;
  1402. end;
  1403. procedure Store(index:cardinal;name:pchar;isData:longbool);
  1404. begin
  1405. if not isUsedFunction(name)then
  1406. exit;
  1407. if not(current_module.uses_imports) then
  1408. begin
  1409. current_module.uses_imports:=true;
  1410. importlib.preparelib(current_module.modulename^);
  1411. end;
  1412. if IsData then
  1413. timportlibwin32(importlib).importvariable_str(name,_n,name)
  1414. else
  1415. timportlibwin32(importlib).importprocedure_str(name,_n,index,name);
  1416. end;
  1417. procedure ProcessEdata;
  1418. type
  1419. a8=array[0..7]of char;
  1420. function GetSectionName(rva:cardinal;var Flags:cardinal):a8;
  1421. var
  1422. i:cardinal;
  1423. LocObjOfs:cardinal;
  1424. LocObj:TObjInfo;
  1425. begin
  1426. GetSectionName:='';
  1427. Flags:=0;
  1428. LocObjOfs:=APE_OptSize+HeaderOffset+24;
  1429. for i:=1 to APE_obj do
  1430. begin
  1431. seek(f,LocObjOfs);
  1432. blockread(f,LocObj,sizeof(LocObj));
  1433. if(rva>=LocObj.VirtAddr)and(rva<=LocObj.VirtAddr+LocObj.RawSize)then
  1434. begin
  1435. GetSectionName:=a8(LocObj.ObjName);
  1436. Flags:=LocObj.flags;
  1437. end;
  1438. end;
  1439. end;
  1440. var
  1441. j,Fl:cardinal;
  1442. ulongval,procEntry:cardinal;
  1443. Ordinal:word;
  1444. isData:longbool;
  1445. ExpDir:packed record
  1446. flag,
  1447. stamp:cardinal;
  1448. Major,
  1449. Minor:word;
  1450. Name,
  1451. Base,
  1452. NumFuncs,
  1453. NumNames,
  1454. AddrFuncs,
  1455. AddrNames,
  1456. AddrOrds:cardinal;
  1457. end;
  1458. begin
  1459. with Obj do
  1460. begin
  1461. seek(f,RawOffset+delta);
  1462. blockread(f,ExpDir,sizeof(ExpDir));
  1463. fsplit(impname,_d,_n,_e);
  1464. for j:=0 to pred(ExpDir.NumNames)do
  1465. begin
  1466. { Don't know why but this gives serious problems with overflow checking on }
  1467. {$IFOPT Q+}
  1468. {$DEFINE OVERFLOW_CHECK_WAS_ON}
  1469. {$ENDIF}
  1470. {$Q-}
  1471. seek(f,RawOffset-VirtAddr+ExpDir.AddrOrds+j*2);
  1472. blockread(f,Ordinal,2);
  1473. seek(f,RawOffset-VirtAddr+ExpDir.AddrFuncs+cardinal(Ordinal)*4);
  1474. blockread(f,ProcEntry,4);
  1475. seek(f,RawOffset-VirtAddr+ExpDir.AddrNames+j*4);
  1476. blockread(f,ulongval,4);
  1477. seek(f,RawOffset-VirtAddr+ulongval);
  1478. blockread(f,cstring,sizeof(cstring));
  1479. isData:=GetSectionName(procentry,Fl)='';
  1480. {$IFDEF OVERFLOW_CHECK_WAS_ON}
  1481. {$Q+}
  1482. {$ENDIF}
  1483. if not isData then
  1484. isData:=Fl and IMAGE_SCN_CNT_CODE<>IMAGE_SCN_CNT_CODE;
  1485. Store(succ(Ordinal),cstring,isData);
  1486. end;
  1487. end;
  1488. end;
  1489. begin
  1490. GetEdata:=false;
  1491. seek(f,HeaderEntry+120);
  1492. blockread(f,ExportRVA,4);
  1493. seek(f,HeaderEntry+6);
  1494. blockread(f,APE_Obj,2);
  1495. seek(f,HeaderEntry+20);
  1496. blockread(f,APE_OptSize,2);
  1497. ObjOfs:=APE_OptSize+HeaderOffset+24;
  1498. for i:=1 to APE_obj do
  1499. begin
  1500. seek(f,ObjOfs);
  1501. blockread(f,Obj,sizeof(Obj));
  1502. inc(ObjOfs,sizeof(Obj));
  1503. with Obj do
  1504. if(VirtAddr<=ExportRva)and(ExportRva<VirtAddr+VirtSize)then
  1505. begin
  1506. delta:=ExportRva-VirtAddr;
  1507. ProcessEdata;
  1508. GetEdata:=true;
  1509. end;
  1510. end;
  1511. end;
  1512. function tDLLScannerWin32.scan(const binname:string):longbool;
  1513. var
  1514. OldFileMode:byte;
  1515. hs,
  1516. foundimp : string;
  1517. begin
  1518. Scan:=false;
  1519. { is there already an import library the we will use that one }
  1520. if FindLibraryFile(binname,target_info.staticClibprefix,target_info.staticClibext,foundimp) then
  1521. exit;
  1522. { check if we can find the dll }
  1523. hs:=AddExtension(binname,target_info.sharedlibext);
  1524. if not FindDll(hs,impname) then
  1525. exit;
  1526. { read the dll file }
  1527. assign(f,impname);
  1528. OldFileMode:=filemode;
  1529. filemode:=0;
  1530. reset(f,1);
  1531. filemode:=OldFileMode;
  1532. if not DOSstubOK(HeaderOffset)then
  1533. scan:=false
  1534. else if not isSuitableFileType(HeaderOffset)then
  1535. scan:=false
  1536. else
  1537. scan:=GetEdata(HeaderOffset);
  1538. close(f);
  1539. end;
  1540. {*****************************************************************************
  1541. Initialize
  1542. *****************************************************************************}
  1543. initialization
  1544. {$ifdef i386}
  1545. RegisterExternalLinker(system_i386_win32_info,TLinkerWin32);
  1546. RegisterInternalLinker(system_i386_win32_info,TPECoffLinker);
  1547. RegisterImport(system_i386_win32,TImportLibWin32);
  1548. RegisterExport(system_i386_win32,TExportLibWin32);
  1549. RegisterDLLScanner(system_i386_win32,TDLLScannerWin32);
  1550. RegisterRes(res_gnu_windres_info);
  1551. RegisterTarget(system_i386_win32_info);
  1552. RegisterExternalLinker(system_i386_wince_info,TLinkerWin32);
  1553. RegisterImport(system_i386_wince,TImportLibWin32);
  1554. RegisterExport(system_i386_wince,TExportLibWin32);
  1555. RegisterDLLScanner(system_i386_wince,TDLLScannerWin32);
  1556. RegisterTarget(system_i386_wince_info);
  1557. {$endif i386}
  1558. {$ifdef x86_64}
  1559. RegisterExternalLinker(system_x64_win64_info,TLinkerWin32);
  1560. RegisterImport(system_x86_64_win64,TImportLibWin32);
  1561. RegisterExport(system_x86_64_win64,TExportLibWin32);
  1562. RegisterDLLScanner(system_x86_64_win64,TDLLScannerWin32);
  1563. RegisterRes(res_gnu_windres_info);
  1564. RegisterTarget(system_x64_win64_info);
  1565. {$endif x86_64}
  1566. {$ifdef arm}
  1567. RegisterExternalLinker(system_arm_wince_info,TLinkerWin32);
  1568. RegisterImport(system_arm_wince,TImportLibWin32);
  1569. RegisterExport(system_arm_wince,TExportLibWin32);
  1570. RegisterRes(res_gnu_wince_windres_info);
  1571. RegisterTarget(system_arm_wince_info);
  1572. {$endif arm}
  1573. end.