mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	fixes are target-specific lowering of frame indices, fix constants generated for the FSMBI instruction, and fixing SPUTargetLowering::computeMaskedBitsFor- TargetNode(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50462 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			80 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===-- SPUFrameInfo.h - Top-level interface for Cell SPU Target -*- C++ -*-==//
 | |
| //
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| //
 | |
| // This file contains CellSPU frame information that doesn't fit anywhere else
 | |
| // cleanly...
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #if !defined(SPUFRAMEINFO_H)
 | |
| 
 | |
| #include "llvm/Target/TargetFrameInfo.h"
 | |
| #include "llvm/Target/TargetMachine.h"
 | |
| #include "SPURegisterInfo.h"
 | |
| 
 | |
| namespace llvm {
 | |
|   class SPUFrameInfo: public TargetFrameInfo {
 | |
|     const TargetMachine &TM;
 | |
|     std::pair<unsigned, int> LR[1];
 | |
| 
 | |
|   public:
 | |
|     SPUFrameInfo(const TargetMachine &tm);
 | |
| 
 | |
|     //! Return a function's saved spill slots
 | |
|     /*!
 | |
|       For CellSPU, a function's saved spill slots is just the link register.
 | |
|      */
 | |
|     const std::pair<unsigned, int> *
 | |
|     getCalleeSaveSpillSlots(unsigned &NumEntries) const;
 | |
| 
 | |
|     //! Stack slot size (16 bytes)
 | |
|     static int stackSlotSize() {
 | |
|       return 16;
 | |
|     }
 | |
|     //! Maximum frame offset representable by a signed 10-bit integer
 | |
|     /*!
 | |
|       This is the maximum frame offset that can be expressed as a 10-bit
 | |
|       integer, used in D-form addresses.
 | |
|      */
 | |
|     static int maxFrameOffset() {
 | |
|       return ((1 << 9) - 1) * stackSlotSize();
 | |
|     }
 | |
|     //! Minimum frame offset representable by a signed 10-bit integer
 | |
|     static int minFrameOffset() {
 | |
|       return -(1 << 9) * stackSlotSize();
 | |
|     }
 | |
|     //! Minimum frame size (enough to spill LR + SP)
 | |
|     static int minStackSize() {
 | |
|       return (2 * stackSlotSize());
 | |
|     }
 | |
|     //! Frame size required to spill all registers plus frame info
 | |
|     static int fullSpillSize() {
 | |
|       return (SPURegisterInfo::getNumArgRegs() * stackSlotSize());
 | |
|     }
 | |
|     //! Convert frame index to stack offset
 | |
|     static int FItoStackOffset(int frame_index) {
 | |
|       return frame_index * stackSlotSize();
 | |
|     }
 | |
|     //! Number of instructions required to overcome hint-for-branch latency
 | |
|     /*!
 | |
|       HBR (hint-for-branch) instructions can be inserted when, for example,
 | |
|       we know that a given function is going to be called, such as printf(),
 | |
|       in the control flow graph. HBRs are only inserted if a sufficient number
 | |
|       of instructions occurs between the HBR and the target. Currently, HBRs
 | |
|       take 6 cycles, ergo, the magic number 6.
 | |
|      */
 | |
|     static int branchHintPenalty() {
 | |
|       return 6;
 | |
|     }
 | |
|   };
 | |
| }
 | |
| 
 | |
| #define SPUFRAMEINFO_H 1
 | |
| #endif
 |