Searched refs:BitsRecTy (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/TableGen/
H A DRecord.h32 class BitsRecTy;
117 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; }
161 virtual bool baseClassOf(const BitsRecTy *RHS) const;
171 // BitsRecTy - 'bits<n>' - Represent a fixed number of bits
172 /// BitsRecTy - 'bits&lt;n&gt;' - Represent a fixed number of bits
174 class BitsRecTy : public RecTy { class in namespace:llvm
176 explicit BitsRecTy(unsigned Sz) : Size(Sz) {} function in class:llvm::BitsRecTy
178 static BitsRecTy *get(unsigned Sz);
204 virtual bool baseClassOf(const BitsRecTy *RHS) const {
247 virtual bool baseClassOf(const BitsRecTy *RH
[all...]
/external/llvm/lib/TableGen/
H A DRecord.cpp103 bool BitRecTy::baseClassOf(const BitsRecTy *RHS) const {
117 dynamic_cast<BitsRecTy*>(Ty) ||
123 BitsRecTy *BitsRecTy::get(unsigned Sz) {
124 static std::vector<BitsRecTy*> Shared;
127 BitsRecTy *&Ty = Shared[Sz];
129 Ty = new BitsRecTy(Sz);
133 std::string BitsRecTy::getAsString() const {
137 Init *BitsRecTy::convertValue(UnsetInit *UI) {
146 Init *BitsRecTy
[all...]
H A DTGParser.cpp101 // assigning to a field of BitsRecTy, which must have a BitsInit
111 Init *BI = V->convertInitializerTo(BitsRecTy::get(BitList.size()));
113 V->convertInitializerTo(BitsRecTy::get(BitList.size()));
710 return BitsRecTy::get(Val);
1053 MHSTy = BitsRecTy::get(MHSbits->getNumBits());
1060 RHSTy = BitsRecTy::get(RHSbits->getNumBits());

Completed in 102 milliseconds