123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- {
- $Id$
- Copyright (c) 1998-2002 by the Free Pascal development team
- Basic Processor information for the PowerPC
- 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.
- **********************************************************************}
- Unit CPUInfo;
- Interface
- uses
- globtype;
- Type
- { Architecture word - Native unsigned type }
- aword = longword;
- PAWord = ^AWord;
- AInt = longint;
- { this must be an ordinal type with the same size as a pointer }
- { to allow some dirty type casts for example when using }
- { tconstsym.value }
- { 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 = longword;
- bestreal = real;
- ts32real = single;
- ts64real = double;
- ts80real = extended;
- ts128real = type extended;
- ts64comp = extended;
- pbestreal=^bestreal;
- { possible supported processors for this target }
- tprocessors =
- (no_processor,
- MC68000,
- MC68020,
- Coldfire
- );
- tfputype =
- (no_fpuprocessor,
- fpu_soft,
- fpu_libgcc,
- fpu_68881
- );
- Const
- {# Size of native extended floating point type }
- extended_size = 8;
- {# Size of a pointer }
- pointer_size = 4;
- {# Size of a multimedia register }
- mmreg_size = 16;
- { size of the buffer used for setjump/longjmp
- the size of this buffer is deduced from the
- jmp_buf structure in setjumph.inc file
- }
- jmp_buf_size = 28;
- { target cpu string (used by compiler options) }
- target_cpu_string = 'm68k';
- { calling conventions supported by the code generator }
- supported_calling_conventions = [
- pocall_internproc,
- pocall_compilerproc,
- pocall_inline,
- pocall_stdcall,
- { the difference to stdcall is only the name mangling }
- pocall_cdecl,
- { the difference to stdcall is only the name mangling }
- pocall_cppdecl,
- { this used by the PalmOS port only }
- pocall_palmossyscall
- ];
- processorsstr : array[tprocessors] of string[5] = ('',
- '68000',
- '68020',
- 'COLDFIRE'
- );
- fputypestr : array[tfputype] of string[6] = ('',
- 'SOFT',
- 'LIBGCC',
- '68881'
- );
- Implementation
- end.
- {
- $Log$
- Revision 1.9 2004-04-18 21:13:59 florian
- * more adaptions for m68k
- Revision 1.8 2004/01/30 12:17:18 florian
- * fixed some m68k compilation problems
- Revision 1.7 2003/11/07 15:58:32 florian
- * Florian's culmutative nr. 1; contains:
- - invalid calling conventions for a certain cpu are rejected
- - arm softfloat calling conventions
- - -Sp for cpu dependend code generation
- - several arm fixes
- - remaining code for value open array paras on heap
- Revision 1.6 2002/12/14 15:02:03 carl
- * maxoperands -> max_operands (for portability in rautils.pas)
- * fix some range-check errors with loadconst
- + add ncgadd unit to m68k
- * some bugfix of a_param_reg with LOC_CREFERENCE
- Revision 1.5 2002/09/07 20:53:28 carl
- * cardinal -> longword
- Revision 1.4 2002/09/07 15:25:13 peter
- * old logs removed and tabs fixed
- Revision 1.3 2002/08/15 15:15:55 carl
- * jmpbuf size allocation for exceptions is now cpu specific (as it should)
- * more generic nodes for maths
- * several fixes for better m68k support
- Revision 1.2 2002/08/12 15:08:44 carl
- + stab register indexes for powerpc (moved from gdb to cpubase)
- + tprocessor enumeration moved to cpuinfo
- + linker in target_info is now a class
- * many many updates for m68k (will soon start to compile)
- - removed some ifdef or correct them for correct cpu
- Revision 1.1 2002/08/11 08:06:09 carl
- + try to commit this ** file again
- Revision 1.7 2002/05/18 13:34:26 peter
- * readded missing revisions
- Revision 1.6 2002/05/16 19:46:53 carl
- + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
- + try to fix temp allocation (still in ifdef)
- + generic constructor calls
- + start of tassembler / tmodulebase class cleanup
- Revision 1.4 2002/05/13 19:52:46 peter
- * a ppcppc can be build again
- Revision 1.3 2002/04/07 13:43:11 carl
- - moved type constant
- }
|