mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	64-bit sparc codegen. Patch by Nathan Keynes! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95293 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			35 lines
		
	
	
		
			997 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			997 B
		
	
	
	
		
			C++
		
	
	
	
	
	
//===- SparcSubtarget.cpp - SPARC Subtarget Information -------------------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
// This file implements the SPARC specific subclass of TargetSubtarget.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "SparcSubtarget.h"
 | 
						|
#include "SparcGenSubtarget.inc"
 | 
						|
using namespace llvm;
 | 
						|
 | 
						|
SparcSubtarget::SparcSubtarget(const std::string &TT, const std::string &FS, 
 | 
						|
                               bool is64Bit) :
 | 
						|
  IsV9(false),
 | 
						|
  V8DeprecatedInsts(false),
 | 
						|
  IsVIS(false),
 | 
						|
  Is64Bit(is64Bit) {
 | 
						|
  
 | 
						|
  // Determine default and user specified characteristics
 | 
						|
  const char *CPU = "v8";
 | 
						|
  if (is64Bit) {
 | 
						|
    CPU = "v9";
 | 
						|
    IsV9 = true;
 | 
						|
  }
 | 
						|
 | 
						|
  // Parse features string.
 | 
						|
  ParseSubtargetFeatures(FS, CPU);
 | 
						|
}
 |