mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	Add header guards to files that were missing guards. Remove #endif comments as they don't seem common in LLVM (we can easily add them back if we decide they're useful) Changes made by clang-tidy with minor tweaks. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215558 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			65 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===--- StackMapLivenessAnalysis - StackMap Liveness Analysis --*- C++ -*-===//
 | |
| //
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| //
 | |
| // This pass calculates the liveness for each basic block in a function and
 | |
| // attaches the register live-out information to a patchpoint intrinsic (if
 | |
| // present).
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #ifndef LLVM_CODEGEN_STACKMAPLIVENESSANALYSIS_H
 | |
| #define LLVM_CODEGEN_STACKMAPLIVENESSANALYSIS_H
 | |
| 
 | |
| #include "llvm/CodeGen/LivePhysRegs.h"
 | |
| #include "llvm/CodeGen/MachineFunctionPass.h"
 | |
| 
 | |
| 
 | |
| namespace llvm {
 | |
| 
 | |
| /// \brief This pass calculates the liveness information for each basic block in
 | |
| /// a function and attaches the register live-out information to a patchpoint
 | |
| /// intrinsic if present.
 | |
| ///
 | |
| /// This pass can be disabled via the -enable-patchpoint-liveness=false flag.
 | |
| /// The pass skips functions that don't have any patchpoint intrinsics. The
 | |
| /// information provided by this pass is optional and not required by the
 | |
| /// aformentioned intrinsic to function.
 | |
| class StackMapLiveness : public MachineFunctionPass {
 | |
|   MachineFunction *MF;
 | |
|   const TargetRegisterInfo *TRI;
 | |
|   LivePhysRegs LiveRegs;
 | |
| public:
 | |
|   static char ID;
 | |
| 
 | |
|   /// \brief Default construct and initialize the pass.
 | |
|   StackMapLiveness();
 | |
| 
 | |
|   /// \brief Tell the pass manager which passes we depend on and what
 | |
|   /// information we preserve.
 | |
|   void getAnalysisUsage(AnalysisUsage &AU) const override;
 | |
| 
 | |
|   /// \brief Calculate the liveness information for the given machine function.
 | |
|   bool runOnMachineFunction(MachineFunction &MF) override;
 | |
| 
 | |
| private:
 | |
|   /// \brief Performs the actual liveness calculation for the function.
 | |
|   bool calculateLiveness();
 | |
| 
 | |
|   /// \brief Add the current register live set to the instruction.
 | |
|   void addLiveOutSetToMI(MachineInstr &MI);
 | |
| 
 | |
|   /// \brief Create a register mask and initialize it with the registers from
 | |
|   /// the register live set.
 | |
|   uint32_t *createRegisterMask() const;
 | |
| };
 | |
| 
 | |
| } // llvm namespace
 | |
| 
 | |
| #endif
 |