Wrap long lines
[oota-llvm.git] / include / llvm / CodeGen / SSARegMap.h
1 //===-- llvm/CodeGen/SSARegMap.h --------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Map register numbers to register classes that are correctly sized (typed) to
11 // hold the information. Assists register allocation. Contained by
12 // MachineFunction, should be deleted by register allocator when it is no
13 // longer needed.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #ifndef LLVM_CODEGEN_SSAREGMAP_H
18 #define LLVM_CODEGEN_SSAREGMAP_H
19
20 #include "llvm/Target/MRegisterInfo.h"
21 #include "llvm/ADT/DenseMap.h"
22
23 namespace llvm {
24
25 class TargetRegisterClass;
26
27 class SSARegMap {
28   DenseMap<const TargetRegisterClass*, VirtReg2IndexFunctor> RegClassMap;
29   unsigned NextRegNum;
30
31  public:
32   SSARegMap() : NextRegNum(MRegisterInfo::FirstVirtualRegister) { }
33
34   const TargetRegisterClass* getRegClass(unsigned Reg) {
35     return RegClassMap[Reg];
36   }
37
38   /// createVirtualRegister - Create and return a new virtual register in the
39   /// function with the specified register class.
40   ///
41   unsigned createVirtualRegister(const TargetRegisterClass *RegClass) {
42     RegClassMap.grow(NextRegNum);
43     RegClassMap[NextRegNum] = RegClass;
44     return NextRegNum++;
45   }
46
47   unsigned getLastVirtReg() const {
48     return NextRegNum - 1;
49   }
50 };
51
52 } // End llvm namespace
53
54 #endif