12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {
- $Id$
- Copyright (c) 1998-2002 by the Free Pascal development team
- Basic Processor information for the virtual instruction set
- 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
- Type
- { Architecture word - Native unsigned type }
- AWord = Longword;
- PAWord = ^AWord;
- { 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 = double;
- ts32real = single;
- ts64real = double;
- ts80real = extended;
- ts64comp = comp;
- pbestreal=^bestreal;
- { possible supported processors for this target }
- tprocessors = (no_processor);
- Const
- {# Size of native extended floating point type }
- extended_size = 8;
- {# Size of a pointer }
- sizeof(aint) = 4;
- {# Size of a multimedia register }
- mmreg_size = 8;
- { target cpu string (used by compiler options) }
- target_cpu_string = 'vis';
- Implementation
- end.
- {
- $Log$
- Revision 1.4 2005-01-20 16:38:45 peter
- * load jmp_buf_size from system unit
- Revision 1.3 2004/06/20 08:55:32 florian
- * logs truncated
- Revision 1.2 2004/06/16 20:07:11 florian
- * dwarf branch merged
- Revision 1.1.2.1 2004/05/01 16:02:10 peter
- * POINTER_SIZE replaced with sizeof(aint)
- * aint,aword,tconst*int moved to globtype
- }
|