1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- {
- $Id$
- Copyright (c) 1998-2002 by Florian Klaempfl
- This unit implements the register allocator for m68k
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- 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. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- ****************************************************************************
- }
- {$i fpcdefs.inc}
- unit rgcpu;
- {$i fpcdefs.inc}
- interface
- uses
- aasmbase,aasmtai,
- cpubase,
- rgobj;
- type
- trgcpu = class(trgobj)
- end;
- implementation
- end.
- {
- $Log$
- Revision 1.10 2004-01-30 12:17:18 florian
- * fixed some m68k compilation problems
- Revision 1.9 2003/04/23 13:40:33 peter
- * fix m68k compile
- Revision 1.8 2003/04/22 10:09:35 daniel
- + Implemented the actual register allocator
- + Scratch registers unavailable when new register allocator used
- + maybe_save/maybe_restore unavailable when new register allocator used
- Revision 1.7 2003/02/19 22:00:16 daniel
- * Code generator converted to new register notation
- - Horribily outdated todo.txt removed
- Revision 1.6 2003/02/02 19:25:54 carl
- * Several bugfixes for m68k target (register alloc., opcode emission)
- + VIS target
- + Generic add more complete (still not verified)
- Revision 1.5 2003/01/08 18:43:57 daniel
- * Tregister changed into a record
- Revision 1.4 2002/09/07 15:25:14 peter
- * old logs removed and tabs fixed
- Revision 1.3 2002/08/23 16:14:50 peter
- * tempgen cleanup
- * tt_noreuse temp type added that will be used in genentrycode
- 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/05 17:26:09 carl
- + updated m68k
- }
|