fpc/compiler/alpha/cpuinfo.pas
florian 5c67fcc43f + change always floating point divisions into multiplications if they are a power of two,
this is an exact operation so it is always allowed
* change only divisions by normal numbers into multiplications

git-svn-id: trunk@29085 -
2014-11-16 20:47:38 +00:00

92 lines
2.3 KiB
ObjectPascal

{
This file is part of the Free Pascal run time library.
Copyright (c) 1998-2000 by the Free Pascal development team
Basic Processor information about the Alpha
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{
Basic Processor information about the Alpha
}
Unit CPUInfo;
{$i fpcdefs.inc}
Interface
uses
globtype;
Type
{ Natural integer register type and size for the target machine }
{$ifdef FPC}
AWord = Qword;
{$else FPC}
AWord = Longint;
{$endif FPC}
PAWord = ^AWord;
{ This must be an ordinal type with the same size as a pointer
Note: Must be unsigned! Otherwise, ugly code like
pointer(-1) will result in a pointer with the value
$fffffffffffffff on a 32bit machine if the compiler uses
int64 constants internally (JM) }
TConstPtrUInt = qword;
bestreal = extended;
{$if FPC_FULLVERSION>20700}
bestrealrec = TExtended80Rec;
{$endif FPC_FULLVERSION>20700}
ts32real = single;
ts64real = double;
ts80real = extended;
ts64comp = extended;
pbestreal=^bestreal;
{ possible supported processors for this target }
tcputype =
(cpu_none,
ClassEV7,
ClassEV8
);
tcontrollertype =
(ct_none
);
Const
{ Is there support for dealing with multiple microcontrollers available }
{ for this platform? }
ControllerSupport = false;
{ Size of native extended type }
extended_size = 16;
{# Size of a pointer }
aint_size = 8;
{# Size of a multimedia register }
mmreg_size = 8;
{ We know that there are fields after sramsize
but we don't care about this warning }
{$PUSH}
{$WARN 3177 OFF}
embedded_controllers : array [tcontrollertype] of tcontrollerdatatype =
(
(controllertypestr:''; controllerunitstr:''; flashbase:0; flashsize:0; srambase:0; sramsize:0));
{$POP}
{ target cpu string (used by compiler options) }
target_cpu_string = 'alpha';
Implementation
end.