Don't keep the log files around. Just pipe to a log file instead.
[oota-llvm.git] / utils / TableGen / CodeGenRegisters.h
1 //===- CodeGenRegisters.h - Register and RegisterClass Info -----*- 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 //
10 // This file defines structures to encapsulate information gleaned from the
11 // target register and register class definitions.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef CODEGEN_REGISTERS_H
16 #define CODEGEN_REGISTERS_H
17
18 #include "llvm/CodeGen/ValueTypes.h"
19 #include "llvm/ADT/DenseMap.h"
20 #include <string>
21 #include <vector>
22 #include <set>
23 #include <cstdlib>
24
25 namespace llvm {
26   class Record;
27
28   /// CodeGenRegister - Represents a register definition.
29   struct CodeGenRegister {
30     Record *TheDef;
31     const std::string &getName() const;
32     unsigned DeclaredSpillSize, DeclaredSpillAlignment;
33     CodeGenRegister(Record *R);
34   };
35
36
37   struct CodeGenRegisterClass {
38     Record *TheDef;
39     std::string Namespace;
40     std::vector<Record*> Elements;
41     std::vector<MVT::SimpleValueType> VTs;
42     unsigned SpillSize;
43     unsigned SpillAlignment;
44     int CopyCost;
45     // Map SubRegIndex -> RegisterClass
46     DenseMap<Record*,Record*> SubRegClasses;
47     std::string MethodProtos, MethodBodies;
48
49     const std::string &getName() const;
50     const std::vector<MVT::SimpleValueType> &getValueTypes() const {return VTs;}
51     unsigned getNumValueTypes() const { return VTs.size(); }
52     
53     MVT::SimpleValueType getValueTypeNum(unsigned VTNum) const {
54       if (VTNum < VTs.size())
55         return VTs[VTNum];
56       assert(0 && "VTNum greater than number of ValueTypes in RegClass!");
57       abort();
58     }
59     
60     bool containsRegister(Record *R) const {
61       for (unsigned i = 0, e = Elements.size(); i != e; ++i)
62         if (Elements[i] == R) return true;
63       return false;
64     }
65     
66     // Returns true if RC is a strict subclass.
67     // RC is a sub-class of this class if it is a valid replacement for any
68     // instruction operand where a register of this classis required. It must 
69     // satisfy these conditions:
70     //
71     // 1. All RC registers are also in this.
72     // 2. The RC spill size must not be smaller than our spill size.
73     // 3. RC spill alignment must be compatible with ours.
74     //
75     bool hasSubClass(const CodeGenRegisterClass *RC) const {
76
77       if (RC->Elements.size() > Elements.size() ||
78           (SpillAlignment && RC->SpillAlignment % SpillAlignment) ||
79           SpillSize > RC->SpillSize)
80         return false;
81
82       std::set<Record*> RegSet;
83       for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
84         Record *Reg = Elements[i];
85         RegSet.insert(Reg);
86       }
87
88       for (unsigned i = 0, e = RC->Elements.size(); i != e; ++i) {
89         Record *Reg = RC->Elements[i];
90         if (!RegSet.count(Reg))
91           return false;
92       }
93
94       return true;
95     }
96
97     CodeGenRegisterClass(Record *R);
98   };
99 }
100
101 #endif