mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	There are several optional (off-by-default) features in CodeGen that can make use of alias analysis. These features are important for generating code for some kinds of cores (for example the (in-order) PPC A2 core). This adds a useAA() function to TargetSubtargetInfo to allow these features to be enabled by default on a per-subtarget basis. Here is the first use of this function: To control the default of the -enable-aa-sched-mi feature. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189563 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===-- TargetSubtargetInfo.cpp - General Target Information ---------------==//
 | |
| //
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| //
 | |
| // This file describes the general parts of a Subtarget.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #include "llvm/Target/TargetSubtargetInfo.h"
 | |
| #include "llvm/ADT/SmallVector.h"
 | |
| using namespace llvm;
 | |
| 
 | |
| //---------------------------------------------------------------------------
 | |
| // TargetSubtargetInfo Class
 | |
| //
 | |
| TargetSubtargetInfo::TargetSubtargetInfo() {}
 | |
| 
 | |
| TargetSubtargetInfo::~TargetSubtargetInfo() {}
 | |
| 
 | |
| bool TargetSubtargetInfo::enableMachineScheduler() const {
 | |
|   return false;
 | |
| }
 | |
| 
 | |
| bool TargetSubtargetInfo::enablePostRAScheduler(
 | |
|           CodeGenOpt::Level OptLevel,
 | |
|           AntiDepBreakMode& Mode,
 | |
|           RegClassVector& CriticalPathRCs) const {
 | |
|   Mode = ANTIDEP_NONE;
 | |
|   CriticalPathRCs.clear();
 | |
|   return false;
 | |
| }
 | |
| 
 | |
| bool TargetSubtargetInfo::useAA() const {
 | |
|   return false;
 | |
| }
 | |
| 
 |