systems.pas 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl
  4. This unit contains information about the target systems supported
  5. (these are not processor specific)
  6. This program is free software; you can redistribute it and/or modify
  7. iu under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 3 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 systems;
  20. {$i fpcdefs.inc}
  21. interface
  22. type
  23. tendian = (endian_little,endian_big);
  24. (*
  25. IMPORTANT NOTE:
  26. The value of this enumeration is stored in PPU files.
  27. Therefore adding new CPU targets should not change the
  28. values of the pre-existing targets. (CEC)
  29. FURTHERMORE : Make sure that this branch values, are
  30. consistant with the main branch version always.
  31. *)
  32. tsystemcpu=
  33. (
  34. cpu_no, { 0 }
  35. cpu_i386, { 1 }
  36. cpu_m68k, { 2 }
  37. cpu_alpha, { 3 }
  38. cpu_powerpc, { 4 }
  39. cpu_sparc, { 5 }
  40. cpu_vm, { 6 }
  41. cpu_iA64, { 7 }
  42. cpu_x86_64, { 8 }
  43. cpu_mips, { 9 }
  44. cpu_arm { 10 }
  45. );
  46. tasmmode= (asmmode_none
  47. { standard assembler (cpu dependant) with full parsing }
  48. ,asmmode_standard
  49. ,asmmode_i386_att
  50. ,asmmode_i386_intel
  51. ,asmmode_ppc_gas
  52. ,asmmode_ppc_motorola
  53. ,asmmode_arm_gas
  54. ,asmmode_sparc_gas
  55. ,asmmode_x86_64_gas
  56. ,asmmode_m68k_mot
  57. );
  58. (* IMPORTANT NOTE:
  59. the integer value of this enum is stored in PPU
  60. files to recognize the target, so if you add new targets
  61. allways add them at end PM
  62. FURTHERMORE : Make sure that this branch values are
  63. consistant with the main branch version always. (CEC)
  64. *)
  65. type
  66. tsystem =
  67. (
  68. system_none, { 0 }
  69. obsolete_system_i386_GO32V1,{ 1 }
  70. system_i386_GO32V2, { 2 }
  71. system_i386_linux, { 3 }
  72. system_i386_OS2, { 4 }
  73. system_i386_Win32, { 5 }
  74. system_i386_freebsd, { 6 }
  75. system_m68k_Amiga, { 7 }
  76. system_m68k_Atari, { 8 }
  77. system_m68k_Mac, { 9 }
  78. system_m68k_linux, { 10 }
  79. system_m68k_PalmOS, { 11 }
  80. system_alpha_linux, { 12 }
  81. system_powerpc_linux, { 13 }
  82. system_powerpc_macos, { 14 }
  83. system_i386_solaris, { 15 }
  84. system_i386_beos, { 16 }
  85. system_i386_netbsd, { 17 }
  86. system_m68k_netbsd, { 18 }
  87. system_i386_Netware, { 19 }
  88. system_i386_qnx, { 20 }
  89. system_i386_wdosx, { 21 }
  90. system_sparc_solaris, { 22 }
  91. system_sparc_linux, { 23 }
  92. system_i386_openbsd, { 24 }
  93. system_m68k_openbsd, { 25 }
  94. system_x86_64_linux, { 26 }
  95. system_powerpc_darwin, { 27 }
  96. system_i386_EMX, { 28 }
  97. system_powerpc_netbsd, { 29 }
  98. system_powerpc_openbsd, { 30 }
  99. system_arm_linux, { 31 }
  100. system_i386_watcom, { 32 }
  101. system_powerpc_MorphOS, { 33 }
  102. system_x86_64_freebsd, { 34 }
  103. system_i386_netwlibc { 35 }
  104. );
  105. tasm = (as_none
  106. ,as_gas { standard gnu assembler }
  107. ,as_i386_as_aout
  108. ,as_i386_nasmcoff
  109. ,as_i386_nasmwin32
  110. ,as_i386_nasmwdosx
  111. ,as_i386_nasmelf
  112. ,as_i386_nasmobj
  113. ,as_i386_nasmbeos
  114. ,as_i386_tasm
  115. ,as_i386_masm
  116. ,as_i386_wasm
  117. ,as_i386_coff
  118. ,as_i386_pecoff
  119. ,as_i386_elf32
  120. ,as_i386_pecoffwdosx
  121. ,as_m68k_mit
  122. ,as_powerpc_mpw
  123. ,as_darwin
  124. );
  125. tar = (ar_none
  126. ,ar_gnu_ar,ar_mpw_ar
  127. );
  128. tres = (res_none
  129. ,res_gnu_windres,res_emxbind
  130. ,res_m68k_palmos,res_m68k_mpw
  131. ,res_powerpc_mpw
  132. );
  133. tscripttype = (script_none
  134. ,script_dos,script_unix,script_amiga,
  135. script_mpw
  136. );
  137. tabi = (abi_default
  138. ,abi_powerpc_sysv,abi_powerpc_aix
  139. );
  140. {*****************************************************************************
  141. Structures
  142. *****************************************************************************}
  143. type
  144. { Abstract linker class which is implemented in link module }
  145. TAbstractLinker = class
  146. end;
  147. TAbstractLinkerClass = class of TAbstractLinker;
  148. { Abstract assembler class which is implemented in assemble module }
  149. TAbstractAssembler = class
  150. end;
  151. TAbstractAssemblerClass = class of TAbstractAssembler;
  152. palignmentinfo = ^talignmentinfo;
  153. talignmentinfo = record
  154. procalign,
  155. loopalign,
  156. jumpalign,
  157. constalignmin,
  158. constalignmax,
  159. varalignmin,
  160. varalignmax,
  161. localalignmin,
  162. localalignmax,
  163. recordalignmin,
  164. recordalignmax,
  165. maxCrecordalign : longint;
  166. end;
  167. tasmflags = (af_none,
  168. af_outputbinary,af_allowdirect,
  169. af_needar,af_smartlink_sections,
  170. af_labelprefix_only_inside_procedure,
  171. af_supports_dwarf
  172. );
  173. pasminfo = ^tasminfo;
  174. tasminfo = record
  175. id : tasm;
  176. idtxt : string[9];
  177. asmbin : string[8];
  178. asmcmd : string[50];
  179. supported_target : tsystem;
  180. flags : set of tasmflags;
  181. labelprefix : string[3];
  182. comment : string[3];
  183. end;
  184. parinfo = ^tarinfo;
  185. tarinfo = record
  186. id : tar;
  187. arcmd : string[50];
  188. end;
  189. presinfo = ^tresinfo;
  190. tresinfo = record
  191. id : tres;
  192. resbin : string[8];
  193. rescmd : string[50];
  194. end;
  195. tsystemflags = (tf_none,
  196. tf_under_development,
  197. tf_need_export,tf_needs_isconsole,
  198. tf_code_small,tf_static_reg_based,
  199. tf_needs_symbol_size,
  200. tf_smartlink_sections,
  201. tf_needs_dwarf_cfi,
  202. tf_use_8_3,
  203. tf_pic_uses_got,
  204. tf_library_needs_pic
  205. );
  206. psysteminfo = ^tsysteminfo;
  207. { using packed causes bus errors on processors which require alignment }
  208. tsysteminfo = record
  209. system : tsystem;
  210. name : string[34];
  211. shortname : string[9];
  212. flags : set of tsystemflags;
  213. cpu : tsystemcpu;
  214. unit_env : string[16];
  215. extradefines : string[40];
  216. sourceext,
  217. pasext,
  218. exeext,
  219. defext,
  220. scriptext,
  221. smartext,
  222. unitext,
  223. unitlibext,
  224. asmext,
  225. objext,
  226. resext,
  227. resobjext : string[4];
  228. sharedlibext : string[10];
  229. staticlibext,
  230. staticlibprefix : string[4];
  231. sharedlibprefix : string[4];
  232. sharedClibext : string[10];
  233. staticClibext,
  234. staticClibprefix : string[4];
  235. sharedClibprefix : string[4];
  236. Cprefix : string[2];
  237. newline : string[2];
  238. dirsep : char;
  239. files_case_relevent : boolean;
  240. assem : tasm;
  241. assemextern : tasm; { external assembler, used by -a }
  242. link : tabstractlinkerclass;
  243. linkextern : tabstractlinkerclass; { external linker, used by -s }
  244. ar : tar;
  245. res : tres;
  246. script : tscripttype;
  247. endian : tendian;
  248. alignment : talignmentinfo;
  249. {
  250. Offset from the argument pointer register to the first
  251. argument's address. On some machines it may depend on
  252. the data type of the function.
  253. (see also FIRST_PARM_OFFSET in GCC source)
  254. }
  255. first_parm_offset : longint;
  256. stacksize : longint;
  257. DllScanSupported : boolean;
  258. use_function_relative_addresses : boolean;
  259. abi : tabi;
  260. end;
  261. const
  262. { alias for supported_target field in tasminfo }
  263. system_any = system_none;
  264. cpu2str : array[TSystemCpu] of string =
  265. ('','i386','m68k','alpha','powerpc','sparc','vm','ia64','x86_64',
  266. 'mips','arm');
  267. var
  268. targetinfos : array[tsystem] of psysteminfo;
  269. arinfos : array[tar] of parinfo;
  270. resinfos : array[tres] of presinfo;
  271. asminfos : array[tasm] of pasminfo;
  272. source_info : tsysteminfo;
  273. target_cpu : tsystemcpu;
  274. target_info : tsysteminfo;
  275. target_asm : tasminfo;
  276. target_ar : tarinfo;
  277. target_res : tresinfo;
  278. target_cpu_string,
  279. target_os_string : string[12]; { for rtl/<X>/,fcl/<X>/, etc. }
  280. target_full_string : string[24];
  281. function set_target(t:tsystem):boolean;
  282. function set_target_asm(t:tasm):boolean;
  283. function set_target_ar(t:tar):boolean;
  284. function set_target_res(t:tres):boolean;
  285. function set_target_by_string(const s : string) : boolean;
  286. function set_target_asm_by_string(const s : string) : boolean;
  287. procedure set_source_info(const ti : tsysteminfo);
  288. procedure UpdateAlignment(var d:talignmentinfo;const s:talignmentinfo);
  289. procedure RegisterTarget(const r:tsysteminfo);
  290. procedure RegisterRes(const r:tresinfo);
  291. procedure RegisterAr(const r:tarinfo);
  292. { Register the external linker. This routine is called to setup the
  293. class to use for the linker. It returns the tsysteminfo structure
  294. updated with the correct linker class for external linking.
  295. }
  296. procedure RegisterExternalLinker(var system_info: tsysteminfo; c:TAbstractLinkerClass);
  297. { Register the internal linker. This routine is called to setup the
  298. class to use for the linker. It returns the tsysteminfo structure
  299. updated with the correct linker class for internal linking.
  300. If internal linking is not supported, this class can be set
  301. to nil.
  302. }
  303. procedure RegisterInternalLinker(var system_info : tsysteminfo; c:TAbstractLinkerClass);
  304. procedure InitSystems;
  305. {$ifdef FreeBSD}
  306. function GetOSRelDate:Longint;
  307. {$endif}
  308. implementation
  309. uses
  310. cutils{$ifdef FreeBSD},SysCtl,BaseUnix{$endif};
  311. {****************************************************************************
  312. OS runtime version detection utility routine
  313. ****************************************************************************}
  314. {$ifdef FreeBSD}
  315. function GetOSRelDate:Longint;
  316. var
  317. mib : array[0..1] of cint;
  318. rval : cint;
  319. len : size_t;
  320. i : longint;
  321. v : longint;
  322. oerrno : cint;
  323. S : AnsiString;
  324. Begin
  325. s:='ab';
  326. SetLength(S,50);
  327. mib[0] := CTL_KERN;
  328. mib[1] := KERN_OSRELDATE;
  329. len := 4;
  330. oerrno:= fpgeterrno;
  331. if (FPsysctl(@mib, 2, pchar(@v), @len, NIL, 0) = -1) Then
  332. Begin
  333. if (fpgeterrno = ESysENOMEM) Then
  334. fpseterrno(oerrno);
  335. GetOSRelDate:=0;
  336. End
  337. else
  338. GetOSRelDate:=v;
  339. End;
  340. {$endif}
  341. {****************************************************************************
  342. Target setting
  343. ****************************************************************************}
  344. function set_target(t:tsystem):boolean;
  345. begin
  346. set_target:=false;
  347. if assigned(targetinfos[t]) then
  348. begin
  349. target_info:=targetinfos[t]^;
  350. set_target_asm(target_info.assem);
  351. set_target_ar(target_info.ar);
  352. set_target_res(target_info.res);
  353. target_cpu:=target_info.cpu;
  354. target_os_string:=lower(target_info.shortname);
  355. target_cpu_string:=cpu2str[target_cpu];
  356. target_full_string:=target_cpu_string+'-'+target_os_string;
  357. set_target:=true;
  358. exit;
  359. end;
  360. end;
  361. function set_target_asm(t:tasm):boolean;
  362. begin
  363. set_target_asm:=false;
  364. if assigned(asminfos[t]) and
  365. ((asminfos[t]^.supported_target=target_info.system) or
  366. (asminfos[t]^.supported_target=system_any)) then
  367. begin
  368. target_asm:=asminfos[t]^;
  369. set_target_asm:=true;
  370. exit;
  371. end;
  372. end;
  373. function set_target_ar(t:tar):boolean;
  374. begin
  375. set_target_ar:=false;
  376. if assigned(arinfos[t]) then
  377. begin
  378. target_ar:=arinfos[t]^;
  379. set_target_ar:=true;
  380. exit;
  381. end;
  382. end;
  383. function set_target_res(t:tres):boolean;
  384. begin
  385. set_target_res:=false;
  386. if assigned(resinfos[t]) then
  387. begin
  388. target_res:=resinfos[t]^;
  389. set_target_res:=true;
  390. exit;
  391. end;
  392. end;
  393. function set_target_by_string(const s : string) : boolean;
  394. var
  395. hs : string;
  396. t : tsystem;
  397. begin
  398. set_target_by_string:=false;
  399. { this should be case insensitive !! PM }
  400. hs:=upper(s);
  401. for t:=low(tsystem) to high(tsystem) do
  402. if assigned(targetinfos[t]) and
  403. (upper(targetinfos[t]^.shortname)=hs) then
  404. begin
  405. set_target_by_string:=set_target(t);
  406. exit;
  407. end;
  408. end;
  409. function set_target_asm_by_string(const s : string) : boolean;
  410. var
  411. hs : string;
  412. t : tasm;
  413. begin
  414. set_target_asm_by_string:=false;
  415. { this should be case insensitive !! PM }
  416. hs:=upper(s);
  417. for t:=low(tasm) to high(tasm) do
  418. if assigned(asminfos[t]) and
  419. (asminfos[t]^.idtxt=hs) then
  420. begin
  421. set_target_asm_by_string:=set_target_asm(t);
  422. exit;
  423. end;
  424. end;
  425. procedure UpdateAlignment(var d:talignmentinfo;const s:talignmentinfo);
  426. begin
  427. with d do
  428. begin
  429. { general update rules:
  430. minimum: if higher then update
  431. maximum: if lower then update or if undefined then update }
  432. if s.procalign>procalign then
  433. procalign:=s.procalign;
  434. if s.loopalign>loopalign then
  435. loopalign:=s.loopalign;
  436. if s.jumpalign>jumpalign then
  437. jumpalign:=s.jumpalign;
  438. if s.constalignmin>constalignmin then
  439. constalignmin:=s.constalignmin;
  440. if (constalignmax=0) or
  441. ((s.constalignmax>0) and (s.constalignmax<constalignmax)) then
  442. constalignmax:=s.constalignmax;
  443. if s.varalignmin>varalignmin then
  444. varalignmin:=s.varalignmin;
  445. if (varalignmax=0) or
  446. ((s.varalignmax>0) and (s.varalignmax<varalignmax)) then
  447. varalignmax:=s.varalignmax;
  448. if s.localalignmin>localalignmin then
  449. localalignmin:=s.localalignmin;
  450. if (localalignmax=0) or
  451. ((s.localalignmax>0) and (s.localalignmax<localalignmax)) then
  452. localalignmax:=s.localalignmax;
  453. if s.recordalignmin>recordalignmin then
  454. recordalignmin:=s.recordalignmin;
  455. if (recordalignmax=0) or
  456. ((s.recordalignmax>0) and (s.recordalignmax<recordalignmax)) then
  457. recordalignmax:=s.recordalignmax;
  458. if (maxCrecordalign=0) or
  459. ((s.maxCrecordalign>0) and (s.maxCrecordalign<maxCrecordalign)) then
  460. maxCrecordalign:=s.maxCrecordalign;
  461. end;
  462. end;
  463. {****************************************************************************
  464. Target registration
  465. ****************************************************************************}
  466. procedure RegisterTarget(const r:tsysteminfo);
  467. var
  468. t : tsystem;
  469. begin
  470. t:=r.system;
  471. if assigned(targetinfos[t]) then
  472. writeln('Warning: Target is already registered!')
  473. else
  474. Getmem(targetinfos[t],sizeof(tsysteminfo));
  475. targetinfos[t]^:=r;
  476. end;
  477. procedure RegisterRes(const r:tresinfo);
  478. var
  479. t : tres;
  480. begin
  481. t:=r.id;
  482. if assigned(resinfos[t]) then
  483. writeln('Warning: resourcecompiler is already registered!')
  484. else
  485. Getmem(resinfos[t],sizeof(tresinfo));
  486. resinfos[t]^:=r;
  487. end;
  488. procedure RegisterAr(const r:tarinfo);
  489. var
  490. t : tar;
  491. begin
  492. t:=r.id;
  493. if assigned(arinfos[t]) then
  494. writeln('Warning: ar is already registered!')
  495. else
  496. Getmem(arinfos[t],sizeof(tarinfo));
  497. arinfos[t]^:=r;
  498. end;
  499. procedure RegisterExternalLinker(var system_info: tsysteminfo; c:TAbstractLinkerClass);
  500. begin
  501. system_info.linkextern := c;
  502. end;
  503. procedure RegisterInternalLinker(var system_info : tsysteminfo; c:TAbstractLinkerClass);
  504. begin
  505. system_info.link := c;
  506. end;
  507. procedure DeregisterInfos;
  508. var
  509. assem : tasm;
  510. target : tsystem;
  511. ar : tar;
  512. res : tres;
  513. begin
  514. for target:=low(tsystem) to high(tsystem) do
  515. if assigned(targetinfos[target]) then
  516. begin
  517. freemem(targetinfos[target],sizeof(tsysteminfo));
  518. targetinfos[target]:=nil;
  519. end;
  520. for assem:=low(tasm) to high(tasm) do
  521. if assigned(asminfos[assem]) then
  522. begin
  523. freemem(asminfos[assem],sizeof(tasminfo));
  524. asminfos[assem]:=nil;
  525. end;
  526. for ar:=low(tar) to high(tar) do
  527. if assigned(arinfos[ar]) then
  528. begin
  529. freemem(arinfos[ar],sizeof(tarinfo));
  530. arinfos[ar]:=nil;
  531. end;
  532. for res:=low(tres) to high(tres) do
  533. if assigned(resinfos[res]) then
  534. begin
  535. freemem(resinfos[res],sizeof(tresinfo));
  536. resinfos[res]:=nil;
  537. end;
  538. end;
  539. {****************************************************************************
  540. Initialization of default target
  541. ****************************************************************************}
  542. procedure default_target(t:tsystem);
  543. begin
  544. set_target(t);
  545. if source_info.name='' then
  546. source_info:=target_info;
  547. end;
  548. procedure set_source_info(const ti : tsysteminfo);
  549. begin
  550. { can't use message() here (PFV) }
  551. if source_info.name<>'' then
  552. Writeln('Warning: Source OS Redefined!');
  553. source_info:=ti;
  554. end;
  555. procedure InitSystems;
  556. begin
  557. { Now default target, this is dependent on the target cpu define,
  558. when the define is the same as the source cpu then we use the source
  559. os, else we pick a default }
  560. {$ifdef i386}
  561. {$ifdef cpu86}
  562. default_target(source_info.system);
  563. {$else cpu86}
  564. {$ifdef linux}
  565. default_target(system_i386_linux);
  566. {$endif}
  567. {$ifdef freebsd}
  568. default_target(system_i386_freebsd);
  569. {$endif}
  570. {$endif cpu86}
  571. {$endif i386}
  572. {$ifdef x86_64}
  573. {$ifdef cpux86_64}
  574. default_target(source_info.system);
  575. {$define source_system_set}
  576. {$else cpux86_64}
  577. {$ifdef linux}
  578. default_target(system_x86_64_linux);
  579. {$define source_system_set}
  580. {$endif}
  581. {$ifdef freebsd}
  582. default_target(system_x86_64_freebsd);
  583. {$define source_system_set}
  584. {$endif}
  585. { default is linux }
  586. {$ifndef source_system_set}
  587. default_target(system_x86_64_linux);
  588. {$endif source_system_set}
  589. {$endif cpux86_64}
  590. {$endif x86_64}
  591. {$ifdef m68k}
  592. {$ifdef cpu68}
  593. default_target(source_info.target);
  594. {$else cpu68}
  595. default_target(system_m68k_linux);
  596. {$endif cpu68}
  597. {$endif m68k}
  598. {$ifdef alpha}
  599. {$ifdef cpualpha}
  600. default_target(source_info.system);
  601. {$else cpualpha}
  602. default_target(system_alpha_linux);
  603. {$endif cpualpha}
  604. {$endif alpha}
  605. {$ifdef powerpc}
  606. {$ifdef cpupowerpc}
  607. default_target(source_info.system);
  608. {$else cpupowerpc}
  609. default_target(system_powerpc_linux);
  610. {$endif cpupowerpc}
  611. {$endif powerpc}
  612. {$ifdef sparc}
  613. {$ifdef cpusparc}
  614. default_target(source_info.system);
  615. {$else cpusparc}
  616. default_target(system_sparc_linux);
  617. {$endif cpusparc}
  618. {$endif sparc}
  619. {$ifdef arm}
  620. {$ifdef cpuarm}
  621. default_target(source_info.system);
  622. {$else cpuarm}
  623. default_target(system_arm_linux);
  624. {$endif cpuarm}
  625. {$endif arm}
  626. end;
  627. initialization
  628. source_info.name:='';
  629. finalization
  630. DeregisterInfos;
  631. end.
  632. {
  633. $Log$
  634. Revision 1.103 2005-02-14 17:13:09 peter
  635. * truncate log
  636. Revision 1.102 2005/02/13 20:11:16 peter
  637. * sunos to solaris
  638. Revision 1.101 2005/02/06 00:05:56 florian
  639. + x86_64 pic draft
  640. Revision 1.100 2005/01/25 18:48:15 peter
  641. * tf_pic_uses_got added
  642. }