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

/external/swiftshader/third_party/LLVM/include/llvm/TableGen/
H A DRecord.h31 class BitsRecTy;
118 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; }
164 virtual bool baseClassOf(const BitsRecTy *RHS) const;
175 // BitsRecTy - 'bits<n>' - Represent a fixed number of bits
176 /// BitsRecTy - 'bits&lt;n&gt;' - Represent a fixed number of bits
178 class BitsRecTy : public RecTy { class in namespace:llvm
180 explicit BitsRecTy(unsigned Sz) : Size(Sz) {} function in class:llvm::BitsRecTy
182 static BitsRecTy *get(unsigned Sz);
209 virtual bool baseClassOf(const BitsRecTy *RHS) const {
254 virtual bool baseClassOf(const BitsRecTy *RH
[all...]
/external/llvm/include/llvm/TableGen/
H A DRecord.h102 class BitsRecTy : public RecTy { class in namespace:llvm
104 explicit BitsRecTy(unsigned Sz) : RecTy(BitsRecTyKind), Size(Sz) {} function in class:llvm::BitsRecTy
111 static BitsRecTy *get(unsigned Sz);
476 /// '{ a, b, c }' - Represents an initializer for a BitsRecTy value.
484 : TypedInit(IK_BitsInit, BitsRecTy::get(N)), NumBits(N) {}
963 (isa<BitsRecTy>(T->getType()) &&
964 cast<BitsRecTy>(T->getType())->getNumBits() > B)) &&

Completed in 119 milliseconds