mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	This is still a work in progress but I believe it is currently good enough to fix PR13122 "Need unit test driver for codegen IR passes". For example, you can run llc with -stop-after=loop-reduce to have it dump out the IR after running LSR. Serializing machine-level IR is not yet supported but we have some patches in progress for that. The plan is to serialize the IR to a YAML file, containing separate sections for the LLVM IR, machine-level IR, and whatever other info is needed. Chad suggested that we stash the stop-after pass in the YAML file and use that instead of the start-after option to figure out where to restart the compilation. I think that's a great idea, but since it's not implemented yet I put the -start-after option into this patch for testing purposes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159570 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===-- CPPTargetMachine.h - TargetMachine for the C++ backend --*- C++ -*-===//
 | |
| //
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| //
 | |
| // This file declares the TargetMachine that is used by the C++ backend.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #ifndef CPPTARGETMACHINE_H
 | |
| #define CPPTARGETMACHINE_H
 | |
| 
 | |
| #include "llvm/Target/TargetMachine.h"
 | |
| #include "llvm/Target/TargetData.h"
 | |
| 
 | |
| namespace llvm {
 | |
| 
 | |
| class formatted_raw_ostream;
 | |
| 
 | |
| struct CPPTargetMachine : public TargetMachine {
 | |
|   CPPTargetMachine(const Target &T, StringRef TT,
 | |
|                    StringRef CPU, StringRef FS, const TargetOptions &Options,
 | |
|                    Reloc::Model RM, CodeModel::Model CM,
 | |
|                    CodeGenOpt::Level OL)
 | |
|     : TargetMachine(T, TT, CPU, FS, Options) {}
 | |
| 
 | |
|   virtual bool addPassesToEmitFile(PassManagerBase &PM,
 | |
|                                    formatted_raw_ostream &Out,
 | |
|                                    CodeGenFileType FileType,
 | |
|                                    bool DisableVerify,
 | |
|                                    AnalysisID StartAfter,
 | |
|                                    AnalysisID StopAfter);
 | |
| 
 | |
|   virtual const TargetData *getTargetData() const { return 0; }
 | |
| };
 | |
| 
 | |
| extern Target TheCppBackendTarget;
 | |
| 
 | |
| } // End llvm namespace
 | |
| 
 | |
| 
 | |
| #endif
 |