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

/external/llvm/include/llvm/TableGen/
H A DRecord.h33 class BitsRecTy;
178 /// BitsRecTy - 'bits<n>' - Represent a fixed number of bits
180 class BitsRecTy : public RecTy { class in namespace:llvm
182 explicit BitsRecTy(unsigned Sz) : RecTy(BitsRecTyKind), Size(Sz) {} function in class:llvm::BitsRecTy
188 static BitsRecTy *get(unsigned Sz);
648 /// BitsInit - { a, b, c } - Represents an initializer for a BitsRecTy value.
1099 (isa<BitsRecTy>(T->getType()) &&
1100 cast<BitsRecTy>(T->getType())->getNumBits() > B)) &&

Completed in 68 milliseconds