mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 09:02:22 +01:00 
			
		
		
		
	http://svn.freepascal.org/svn/fpc/branches/avr ........ r5891 | florian | 2007-01-11 17:30:12 +0100 (Do, 11 Jan 2007) | 2 lines + some initial work ........ r10170 | florian | 2008-02-03 11:02:04 +0100 (So, 03 Feb 2008) | 2 lines * continued to work on avr port ........ r10180 | florian | 2008-02-03 15:29:30 +0100 (So, 03 Feb 2008) | 2 lines + a lot of skeleton code for avr added ........ git-svn-id: trunk@10186 -
		
			
				
	
	
		
			81 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{
 | 
						|
    Copyright (c) 1998-2008 by Florian Klaempfl
 | 
						|
 | 
						|
    This unit implements the avr specific class for the register
 | 
						|
    allocator
 | 
						|
 | 
						|
    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.
 | 
						|
 | 
						|
 ****************************************************************************
 | 
						|
}
 | 
						|
 | 
						|
unit rgcpu;
 | 
						|
 | 
						|
{$i fpcdefs.inc}
 | 
						|
 | 
						|
  interface
 | 
						|
 | 
						|
     uses
 | 
						|
       aasmbase,aasmtai,aasmdata,aasmcpu,
 | 
						|
       cgbase,cgutils,
 | 
						|
       cpubase,
 | 
						|
       rgobj;
 | 
						|
 | 
						|
     type
 | 
						|
       trgcpu = class(trgobj)
 | 
						|
         procedure do_spill_read(list:TAsmList;pos:tai;const spilltemp:treference;tempreg:tregister);override;
 | 
						|
         procedure do_spill_written(list:TAsmList;pos:tai;const spilltemp:treference;tempreg:tregister);override;
 | 
						|
       end;
 | 
						|
 | 
						|
       trgintcpu = class(trgcpu)
 | 
						|
         procedure add_cpu_interferences(p : tai);override;
 | 
						|
       end;
 | 
						|
 | 
						|
  implementation
 | 
						|
 | 
						|
    uses
 | 
						|
      verbose, cutils,
 | 
						|
      cgobj,
 | 
						|
      procinfo;
 | 
						|
 | 
						|
 | 
						|
    procedure trgcpu.do_spill_read(list:TAsmList;pos:tai;const spilltemp:treference;tempreg:tregister);
 | 
						|
      begin
 | 
						|
        inherited do_spill_read(list,pos,spilltemp,tempreg);
 | 
						|
      end;
 | 
						|
 | 
						|
 | 
						|
    procedure trgcpu.do_spill_written(list:TAsmList;pos:tai;const spilltemp:treference;tempreg:tregister);
 | 
						|
      begin
 | 
						|
        inherited do_spill_written(list,pos,spilltemp,tempreg);
 | 
						|
      end;
 | 
						|
 | 
						|
 | 
						|
    procedure trgintcpu.add_cpu_interferences(p : tai);
 | 
						|
      var
 | 
						|
        r : tregister;
 | 
						|
      begin
 | 
						|
        if p.typ=ait_instruction then
 | 
						|
          begin
 | 
						|
            case taicpu(p).opcode of
 | 
						|
              A_LD:
 | 
						|
                ;
 | 
						|
            end;
 | 
						|
          end;
 | 
						|
      end;
 | 
						|
 | 
						|
 | 
						|
end.
 |