mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21424 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			35 lines
		
	
	
		
			983 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			983 B
		
	
	
	
		
			C++
		
	
	
	
	
	
//===-- IA64MachineFunctionInfo.h - IA64-specific information ---*- C++ -*-===//
 | 
						|
//===--                   for MachineFunction                 ---*- C++ -*-===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
// This file declares IA64-specific per-machine-function information.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#ifndef IA64MACHINEFUNCTIONINFO_H
 | 
						|
#define IA64MACHINEFUNCTIONINFO_H
 | 
						|
 | 
						|
#include "llvm/CodeGen/MachineFunction.h"
 | 
						|
//#include "IA64JITInfo.h"
 | 
						|
 | 
						|
namespace llvm {
 | 
						|
 | 
						|
class IA64FunctionInfo : public MachineFunctionInfo {
 | 
						|
 | 
						|
public:
 | 
						|
  unsigned outRegsUsed; // how many 'out' registers are used
 | 
						|
  // by this machinefunction? (used to compute the appropriate
 | 
						|
  // entry in the 'alloc' instruction at the top of the
 | 
						|
  // machinefunction)
 | 
						|
  IA64FunctionInfo(MachineFunction& MF) { outRegsUsed=0; };
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
} // End llvm namespace
 | 
						|
 | 
						|
#endif
 | 
						|
 |