t_beos.pas 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Peter Vreman
  4. This unit implements support import,export,link routines
  5. for the (i386) BeOS target.
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2 of the License, or
  9. (at your option) any later version.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with this program; if not, write to the Free Software
  16. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. ****************************************************************************
  18. }
  19. unit t_beos;
  20. {$i fpcdefs.inc}
  21. interface
  22. uses
  23. import,export,link;
  24. type
  25. timportlibbeos=class(timportlib)
  26. procedure preparelib(const s:string);override;
  27. procedure importprocedure(const func,module:string;index:longint;const name:string);override;
  28. procedure importvariable(const varname,module:string;const name:string);override;
  29. procedure generatelib;override;
  30. end;
  31. texportlibbeos=class(texportlib)
  32. procedure preparelib(const s : string);override;
  33. procedure exportprocedure(hp : texported_item);override;
  34. procedure exportvar(hp : texported_item);override;
  35. procedure generatelib;override;
  36. end;
  37. tlinkerbeos=class(texternallinker)
  38. private
  39. Function WriteResponseFile(isdll:boolean;makelib:boolean) : Boolean;
  40. public
  41. constructor Create;override;
  42. procedure SetDefaultInfo;override;
  43. function MakeExecutable:boolean;override;
  44. function MakeSharedLibrary:boolean;override;
  45. end;
  46. implementation
  47. uses
  48. dos,
  49. cutils,cclasses,
  50. verbose,systems,globtype,globals,
  51. symconst,script,
  52. fmodule,aasmbase,aasmtai,aasmcpu,cpubase,symsym,i_beos;
  53. {*****************************************************************************
  54. TIMPORTLIBBEOS
  55. *****************************************************************************}
  56. procedure timportlibbeos.preparelib(const s : string);
  57. begin
  58. end;
  59. procedure timportlibbeos.importprocedure(const func,module : string;index : longint;const name : string);
  60. begin
  61. { insert sharedlibrary }
  62. current_module.linkothersharedlibs.add(SplitName(module),link_allways);
  63. { do nothing with the procedure, only set the mangledname }
  64. if name<>'' then
  65. aktprocdef.setmangledname(name)
  66. else
  67. message(parser_e_empty_import_name);
  68. end;
  69. procedure timportlibbeos.importvariable(const varname,module:string;const name:string);
  70. begin
  71. { insert sharedlibrary }
  72. current_module.linkothersharedlibs.add(SplitName(module),link_allways);
  73. { reset the mangledname and turn off the dll_var option }
  74. aktvarsym.set_mangledname(name);
  75. exclude(aktvarsym.varoptions,vo_is_dll_var);
  76. end;
  77. procedure timportlibbeos.generatelib;
  78. begin
  79. end;
  80. {*****************************************************************************
  81. TEXPORTLIBBEOS
  82. *****************************************************************************}
  83. procedure texportlibbeos.preparelib(const s:string);
  84. begin
  85. end;
  86. procedure texportlibbeos.exportprocedure(hp : texported_item);
  87. var
  88. hp2 : texported_item;
  89. begin
  90. { first test the index value }
  91. if (hp.options and eo_index)<>0 then
  92. begin
  93. Message1(parser_e_no_export_with_index_for_target,'beos');
  94. exit;
  95. end;
  96. { now place in correct order }
  97. hp2:=texported_item(current_module._exports.first);
  98. while assigned(hp2) and
  99. (hp.name^>hp2.name^) do
  100. hp2:=texported_item(hp2.next);
  101. { insert hp there !! }
  102. if assigned(hp2) and (hp2.name^=hp.name^) then
  103. begin
  104. { this is not allowed !! }
  105. Message1(parser_e_export_name_double,hp.name^);
  106. exit;
  107. end;
  108. if hp2=texported_item(current_module._exports.first) then
  109. current_module._exports.concat(hp)
  110. else if assigned(hp2) then
  111. begin
  112. hp.next:=hp2;
  113. hp.previous:=hp2.previous;
  114. if assigned(hp2.previous) then
  115. hp2.previous.next:=hp;
  116. hp2.previous:=hp;
  117. end
  118. else
  119. current_module._exports.concat(hp);
  120. end;
  121. procedure texportlibbeos.exportvar(hp : texported_item);
  122. begin
  123. hp.is_var:=true;
  124. exportprocedure(hp);
  125. end;
  126. procedure texportlibbeos.generatelib;
  127. var
  128. hp2 : texported_item;
  129. begin
  130. hp2:=texported_item(current_module._exports.first);
  131. while assigned(hp2) do
  132. begin
  133. if (not hp2.is_var) and
  134. (hp2.sym.typ=procsym) then
  135. begin
  136. { the manglednames can already be the same when the procedure
  137. is declared with cdecl }
  138. if tprocsym(hp2.sym).first_procdef.mangledname<>hp2.name^ then
  139. begin
  140. {$ifdef i386}
  141. { place jump in codesegment }
  142. codesegment.concat(Tai_align.Create_op(4,$90));
  143. codeSegment.concat(Tai_symbol.Createname_global(hp2.name^,0));
  144. codeSegment.concat(Taicpu.Op_sym(A_JMP,S_NO,objectlibrary.newasmsymbol(tprocsym(hp2.sym).first_procdef.mangledname)));
  145. codeSegment.concat(Tai_symbol_end.Createname(hp2.name^));
  146. {$endif i386}
  147. end;
  148. end
  149. else
  150. Message1(parser_e_no_export_of_variables_for_target,'beos');
  151. hp2:=texported_item(hp2.next);
  152. end;
  153. end;
  154. {*****************************************************************************
  155. TLINKERBEOS
  156. *****************************************************************************}
  157. Constructor TLinkerBeos.Create;
  158. var
  159. s : string;
  160. i : integer;
  161. begin
  162. Inherited Create;
  163. s:=GetEnv('BELIBRARIES');
  164. { convert to correct format in case under unix system }
  165. for i:=1 to length(s) do
  166. if s[i] = ':' then
  167. s[i] := ';';
  168. { just in case we have a single path : add the ending ; }
  169. { since that is what the compiler expects. }
  170. if pos(';',s) = 0 then
  171. s:=s+';';
  172. LibrarySearchPath.AddPath(s,true); {format:'path1;path2;...'}
  173. end;
  174. procedure TLinkerBeOS.SetDefaultInfo;
  175. begin
  176. with Info do
  177. begin
  178. ExeCmd[1]:='sh $RES $EXE $OPT $STATIC $STRIP -L.';
  179. { ExeCmd[1]:='sh $RES $EXE $OPT $DYNLINK $STATIC $STRIP -L.';}
  180. DllCmd[1]:='sh $RES $EXE $OPT -L.';
  181. { DllCmd[1]:='sh $RES $EXE $OPT -L. -g -nostart -soname=$EXE';
  182. } DllCmd[2]:='strip --strip-unneeded $EXE';
  183. { DynamicLinker:='/lib/ld-beos.so.2';}
  184. end;
  185. end;
  186. function TLinkerBeOS.WriteResponseFile(isdll:boolean;makelib:boolean) : Boolean;
  187. Var
  188. linkres : TLinkRes;
  189. i : integer;
  190. cprtobj,
  191. prtobj : string[80];
  192. HPath : TStringListItem;
  193. s : string;
  194. linklibc : boolean;
  195. begin
  196. WriteResponseFile:=False;
  197. { set special options for some targets }
  198. linklibc:=(SharedLibFiles.Find('root')<>nil);
  199. prtobj:='prt0';
  200. cprtobj:='cprt0';
  201. if (cs_profile in aktmoduleswitches) or
  202. (not SharedLibFiles.Empty) then
  203. begin
  204. AddSharedLibrary('root');
  205. linklibc:=true;
  206. end;
  207. if (not linklibc) and makelib then
  208. begin
  209. linklibc:=true;
  210. cprtobj:='dllprt.o';
  211. end;
  212. if linklibc then
  213. prtobj:=cprtobj;
  214. { Open link.res file }
  215. LinkRes:=TLinkRes.Create(outputexedir+Info.ResName);
  216. if not isdll then
  217. LinkRes.Add('ld -o $1 $2 $3 $4 $5 $6 $7 $8 $9 \')
  218. else
  219. LinkRes.Add('ld -o $1 -e 0 $2 $3 $4 $5 $6 $7 $8 $9\');
  220. LinkRes.Add('-m elf_i386_be -shared -Bsymbolic \');
  221. { Write path to search libraries }
  222. HPath:=TStringListItem(current_module.locallibrarysearchpath.First);
  223. while assigned(HPath) do
  224. begin
  225. LinkRes.Add('-L'+HPath.Str+' \');
  226. HPath:=TStringListItem(HPath.Next);
  227. end;
  228. HPath:=TStringListItem(LibrarySearchPath.First);
  229. while assigned(HPath) do
  230. begin
  231. LinkRes.Add('-L'+HPath.Str+' \');
  232. HPath:=TStringListItem(HPath.Next);
  233. end;
  234. { try to add crti and crtbegin if linking to C }
  235. if linklibc then
  236. begin
  237. if librarysearchpath.FindFile('crti.o',s) then
  238. LinkRes.AddFileName(s+' \');
  239. if librarysearchpath.FindFile('crtbegin.o',s) then
  240. LinkRes.AddFileName(s+' \');
  241. { s:=librarysearchpath.FindFile('start_dyn.o',found)+'start_dyn.o';
  242. if found then LinkRes.AddFileName(s+' \');}
  243. if prtobj<>'' then
  244. LinkRes.AddFileName(FindObjectFile(prtobj,'')+' \');
  245. if isdll then
  246. LinkRes.AddFileName(FindObjectFile('func.o','')+' \');
  247. if librarysearchpath.FindFile('init_term_dyn.o',s) then
  248. LinkRes.AddFileName(s+' \');
  249. end
  250. else
  251. begin
  252. if prtobj<>'' then
  253. LinkRes.AddFileName(FindObjectFile(prtobj,'')+' \');
  254. end;
  255. { main objectfiles }
  256. while not ObjectFiles.Empty do
  257. begin
  258. s:=ObjectFiles.GetFirst;
  259. if s<>'' then
  260. LinkRes.AddFileName(s+' \');
  261. end;
  262. { LinkRes.Add('-lroot \');
  263. LinkRes.Add('/boot/develop/tools/gnupro/lib/gcc-lib/i586-beos/2.9-beos-991026/crtend.o \');
  264. LinkRes.Add('/boot/develop/lib/x86/crtn.o \');}
  265. { Write staticlibraries }
  266. if not StaticLibFiles.Empty then
  267. begin
  268. While not StaticLibFiles.Empty do
  269. begin
  270. S:=StaticLibFiles.GetFirst;
  271. LinkRes.AddFileName(s+' \')
  272. end;
  273. end;
  274. { Write sharedlibraries like -l<lib> }
  275. if not SharedLibFiles.Empty then
  276. begin
  277. While not SharedLibFiles.Empty do
  278. begin
  279. S:=SharedLibFiles.GetFirst;
  280. if s<>'c' then
  281. begin
  282. i:=Pos(target_info.sharedlibext,S);
  283. if i>0 then
  284. Delete(S,i,255);
  285. LinkRes.Add('-l'+s+' \');
  286. end
  287. else
  288. begin
  289. linklibc:=true;
  290. end;
  291. end;
  292. { be sure that libc is the last lib }
  293. { if linklibc then
  294. LinkRes.Add('-lroot');}
  295. { if linkdynamic and (Info.DynamicLinker<>'') then
  296. LinkRes.AddFileName(Info.DynamicLinker);}
  297. end;
  298. if isdll then
  299. LinkRes.Add('-lroot \');
  300. { objects which must be at the end }
  301. if linklibc then
  302. begin
  303. if librarysearchpath.FindFile('crtend.o',s) then
  304. LinkRes.AddFileName(s+' \');
  305. if librarysearchpath.FindFile('crtn.o',s) then
  306. LinkRes.AddFileName(s+' \');
  307. end;
  308. { Write and Close response }
  309. linkres.Add(' ');
  310. linkres.writetodisk;
  311. linkres.free;
  312. WriteResponseFile:=True;
  313. end;
  314. function TLinkerBeOS.MakeExecutable:boolean;
  315. var
  316. binstr,
  317. cmdstr : string;
  318. success : boolean;
  319. { DynLinkStr : string[60];}
  320. StaticStr,
  321. StripStr : string[40];
  322. begin
  323. if not(cs_link_extern in aktglobalswitches) then
  324. Message1(exec_i_linking,current_module.exefilename^);
  325. { Create some replacements }
  326. StaticStr:='';
  327. StripStr:='';
  328. { DynLinkStr:='';}
  329. if (cs_link_staticflag in aktglobalswitches) then
  330. StaticStr:='-static';
  331. if (cs_link_strip in aktglobalswitches) then
  332. StripStr:='-s';
  333. { If (cs_profile in aktmoduleswitches) or
  334. ((Info.DynamicLinker<>'') and (not SharedLibFiles.Empty)) then
  335. DynLinkStr:='-dynamic-linker='+Info.DynamicLinker;}
  336. { Write used files and libraries }
  337. WriteResponseFile(false,false);
  338. { Call linker }
  339. SplitBinCmd(Info.ExeCmd[1],binstr,cmdstr);
  340. Replace(cmdstr,'$EXE',current_module.exefilename^);
  341. Replace(cmdstr,'$OPT',Info.ExtraOptions);
  342. Replace(cmdstr,'$RES',outputexedir+Info.ResName);
  343. Replace(cmdstr,'$STATIC',StaticStr);
  344. Replace(cmdstr,'$STRIP',StripStr);
  345. { Replace(cmdstr,'$DYNLINK',DynLinkStr);}
  346. success:=DoExec(FindUtil(BinStr),CmdStr,true,false);
  347. { Remove ReponseFile }
  348. if (success) and not(cs_link_extern in aktglobalswitches) then
  349. RemoveFile(outputexedir+Info.ResName);
  350. MakeExecutable:=success; { otherwise a recursive call to link method }
  351. end;
  352. Function TLinkerBeOS.MakeSharedLibrary:boolean;
  353. var
  354. binstr,
  355. cmdstr : string;
  356. success : boolean;
  357. begin
  358. MakeSharedLibrary:=false;
  359. if not(cs_link_extern in aktglobalswitches) then
  360. Message1(exec_i_linking,current_module.sharedlibfilename^);
  361. { Write used files and libraries }
  362. WriteResponseFile(true,true);
  363. { Call linker }
  364. SplitBinCmd(Info.DllCmd[1],binstr,cmdstr);
  365. Replace(cmdstr,'$EXE',current_module.sharedlibfilename^);
  366. Replace(cmdstr,'$OPT',Info.ExtraOptions);
  367. Replace(cmdstr,'$RES',outputexedir+Info.ResName);
  368. success:=DoExec(FindUtil(binstr),cmdstr,true,false);
  369. { Strip the library ? }
  370. if success and (cs_link_strip in aktglobalswitches) then
  371. begin
  372. SplitBinCmd(Info.DllCmd[2],binstr,cmdstr);
  373. Replace(cmdstr,'$EXE',current_module.sharedlibfilename^);
  374. success:=DoExec(FindUtil(binstr),cmdstr,true,false);
  375. end;
  376. { Remove ReponseFile }
  377. if (success) and not(cs_link_extern in aktglobalswitches) then
  378. RemoveFile(outputexedir+Info.ResName);
  379. MakeSharedLibrary:=success; { otherwise a recursive call to link method }
  380. end;
  381. {*****************************************************************************
  382. Initialize
  383. *****************************************************************************}
  384. initialization
  385. {$ifdef i386}
  386. RegisterExternalLinker(system_i386_beos_info,TLinkerbeos);
  387. RegisterImport(system_i386_beos,timportlibbeos);
  388. RegisterExport(system_i386_beos,texportlibbeos);
  389. RegisterTarget(system_i386_beos_info);
  390. {$endif i386}
  391. end.
  392. {
  393. $Log$
  394. Revision 1.1 2002-09-06 15:03:51 carl
  395. * moved files to systems directory
  396. Revision 1.24 2002/09/03 16:26:28 daniel
  397. * Make Tprocdef.defs protected
  398. Revision 1.23 2002/08/12 15:08:44 carl
  399. + stab register indexes for powerpc (moved from gdb to cpubase)
  400. + tprocessor enumeration moved to cpuinfo
  401. + linker in target_info is now a class
  402. * many many updates for m68k (will soon start to compile)
  403. - removed some ifdef or correct them for correct cpu
  404. Revision 1.22 2002/08/11 14:32:32 peter
  405. * renamed current_library to objectlibrary
  406. Revision 1.21 2002/08/11 13:24:19 peter
  407. * saving of asmsymbols in ppu supported
  408. * asmsymbollist global is removed and moved into a new class
  409. tasmlibrarydata that will hold the info of a .a file which
  410. corresponds with a single module. Added librarydata to tmodule
  411. to keep the library info stored for the module. In the future the
  412. objectfiles will also be stored to the tasmlibrarydata class
  413. * all getlabel/newasmsymbol and friends are moved to the new class
  414. Revision 1.20 2002/07/26 21:15:45 florian
  415. * rewrote the system handling
  416. Revision 1.19 2002/07/01 18:46:34 peter
  417. * internal linker
  418. * reorganized aasm layer
  419. Revision 1.18 2002/05/18 13:34:26 peter
  420. * readded missing revisions
  421. Revision 1.17 2002/05/16 19:46:53 carl
  422. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  423. + try to fix temp allocation (still in ifdef)
  424. + generic constructor calls
  425. + start of tassembler / tmodulebase class cleanup
  426. Revision 1.15 2002/04/22 18:19:22 carl
  427. - remove use_bound_instruction field
  428. Revision 1.14 2002/04/20 21:43:18 carl
  429. * fix stack size for some targets
  430. + add offset to parameters from frame pointer info.
  431. - remove some unused stuff
  432. Revision 1.13 2002/04/19 15:46:04 peter
  433. * mangledname rewrite, tprocdef.mangledname is now created dynamicly
  434. in most cases and not written to the ppu
  435. * add mangeledname_prefix() routine to generate the prefix of
  436. manglednames depending on the current procedure, object and module
  437. * removed static procprefix since the mangledname is now build only
  438. on demand from tprocdef.mangledname
  439. Revision 1.12 2002/04/15 19:16:57 carl
  440. - remove size_of_pointer field
  441. Revision 1.11 2002/01/29 21:27:34 peter
  442. * default alignment changed to 4 bytes for locals and static const,var
  443. }