~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to fpcsrc/compiler/x86_64/cpunode.pas

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
    Copyright (c) 2000 by Florian Klaempfl
 
3
 
 
4
    Includes the x86-64 code generator
 
5
 
 
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
 
 
11
    This program is distributed in the hope that it will be useful,
 
12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
    GNU General Public License for more details.
 
15
 
 
16
    You should have received a copy of the GNU General Public License
 
17
    along with this program; if not, write to the Free Software
 
18
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
19
 
 
20
 ****************************************************************************
 
21
}
 
22
{ This is a helper unit to include the necessary code generator units
 
23
  for the x86-64 processor.
 
24
}
 
25
unit cpunode;
 
26
 
 
27
{$i fpcdefs.inc}
 
28
 
 
29
  interface
 
30
 
 
31
  implementation
 
32
 
 
33
    uses
 
34
       { generic nodes }
 
35
       ncgbas,
 
36
       ncgld,
 
37
       ncgflw,
 
38
       ncgcnv,
 
39
       ncgmem,
 
40
       ncgmat,
 
41
       ncgcon,
 
42
       ncgcal,
 
43
       ncgset,
 
44
       ncgopt,
 
45
       // n386con,n386flw,n386mat,n386mem,
 
46
       // n386set,n386inl,n386opt,
 
47
       { the cpu specific node units must be used after the generic ones to
 
48
         get the correct class pointer }
 
49
       nx86set,
 
50
       nx86con,
 
51
       nx64add,
 
52
       nx64cal,
 
53
       nx64cnv,
 
54
       nx64mat,
 
55
       nx64inl
 
56
       ;
 
57
 
 
58
end.