HomeSort by relevance Sort by last modified time
    Searched refs:BitsRecTy (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/TableGen/
Record.cpp 117 if (isa<BitRecTy>(Ty) || isa<BitsRecTy>(Ty) || isa<IntRecTy>(Ty))
125 if(const BitsRecTy *BitsTy = dyn_cast<BitsRecTy>(RHS))
130 BitsRecTy *BitsRecTy::get(unsigned Sz) {
131 static std::vector<BitsRecTy*> Shared;
134 BitsRecTy *&Ty = Shared[Sz];
136 Ty = new BitsRecTy(Sz);
140 std::string BitsRecTy::getAsString() const {
144 Init *BitsRecTy::convertValue(UnsetInit *UI)
    [all...]
TGParser.cpp 101 // assigning to a field of BitsRecTy, which must have a BitsInit
111 Init *BI = V->convertInitializerTo(BitsRecTy::get(BitList.size()));
709 return BitsRecTy::get(Val);
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 33 class BitsRecTy;
177 /// BitsRecTy - 'bits<n>' - Represent a fixed number of bits
179 class BitsRecTy : public RecTy {
181 explicit BitsRecTy(unsigned Sz) : RecTy(BitsRecTyKind), Size(Sz) {}
188 static BitsRecTy *get(unsigned Sz);
651 /// BitsInit - { a, b, c } - Represents an initializer for a BitsRecTy value.
    [all...]

Completed in 76 milliseconds