LLVM  4.0.0
RegisterUsageInfo.h
Go to the documentation of this file.
1 //==- RegisterUsageInfo.h - Register Usage Informartion Storage -*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 /// \file
10 /// This pass is required to take advantage of the interprocedural register
11 /// allocation infrastructure.
12 ///
13 /// This pass is simple immutable pass which keeps RegMasks (calculated based on
14 /// actual register allocation) for functions in a module and provides simple
15 /// API to query this information.
16 ///
17 //===----------------------------------------------------------------------===//
18 
19 #ifndef LLVM_CODEGEN_PHYSICALREGISTERUSAGEINFO_H
20 #define LLVM_CODEGEN_PHYSICALREGISTERUSAGEINFO_H
21 
22 #include "llvm/ADT/DenseMap.h"
24 #include "llvm/IR/Function.h"
25 #include "llvm/IR/Module.h"
26 #include "llvm/Pass.h"
29 
30 namespace llvm {
31 
33  virtual void anchor();
34 
35 public:
36  static char ID;
37 
41  }
42 
43  void getAnalysisUsage(AnalysisUsage &AU) const override {
44  AU.setPreservesAll();
45  }
46 
47  /// To set TargetMachine *, which is used to print
48  /// analysis when command line option -print-regusage is used.
49  void setTargetMachine(const TargetMachine *TM_) { TM = TM_; }
50 
51  bool doInitialization(Module &M) override;
52 
53  bool doFinalization(Module &M) override;
54 
55  /// To store RegMask for given Function *.
56  void storeUpdateRegUsageInfo(const Function *FP,
57  std::vector<uint32_t> RegMask);
58 
59  /// To query stored RegMask for given Function *, it will return nullptr if
60  /// function is not known.
61  const std::vector<uint32_t> *getRegUsageInfo(const Function *FP);
62 
63  void print(raw_ostream &OS, const Module *M = nullptr) const override;
64 
65 private:
66  /// A Dense map from Function * to RegMask.
67  /// In RegMask 0 means register used (clobbered) by function.
68  /// and 1 means content of register will be preserved around function call.
70 
71  const TargetMachine *TM;
72 };
73 }
74 
75 #endif
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
A Module instance is used to store all the information related to an LLVM module. ...
Definition: Module.h:52
A global registry used in conjunction with static constructors to make pluggable components (like tar...
Definition: Registry.h:45
void storeUpdateRegUsageInfo(const Function *FP, std::vector< uint32_t > RegMask)
To store RegMask for given Function *.
void print(raw_ostream &OS, const Module *M=nullptr) const override
print - Print out the internal state of the pass.
bool doInitialization(Module &M) override
doInitialization - Virtual method overridden by subclasses to do any necessary initialization before ...
bool doFinalization(Module &M) override
doFinalization - Virtual method overriden by subclasses to do any necessary clean up after all passes...
void setTargetMachine(const TargetMachine *TM_)
To set TargetMachine *, which is used to print analysis when command line option -print-regusage is u...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
void initializePhysicalRegisterUsageInfoPass(PassRegistry &)
Represent the analysis usage information of a pass.
ImmutablePass class - This class is used to provide information that does not need to be run...
Definition: Pass.h:266
Module.h This file contains the declarations for the Module class.
void setPreservesAll()
Set by analyses that do not transform their input at all.
const std::vector< uint32_t > * getRegUsageInfo(const Function *FP)
To query stored RegMask for given Function *, it will return nullptr if function is not known...
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:44
Primary interface to the complete machine description for the target machine.
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
Definition: PassRegistry.h:40