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

  /external/llvm/include/llvm/TableGen/
Record.h 30 class BitRecTy;
117 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
133 /// BitRecTy - 'bit' - Represent a single bit
135 class BitRecTy : public RecTy {
136 static BitRecTy Shared;
137 BitRecTy() {}
139 static BitRecTy *get() { return &Shared; }
163 virtual bool baseClassOf(const BitRecTy *RHS) const { return true; }
208 virtual bool baseClassOf(const BitRecTy *RHS) const { return Size == 1; }
253 virtual bool baseClassOf(const BitRecTy *RHS) const { return true;
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 78 BitRecTy BitRecTy::Shared;
92 Init *BitRecTy::convertValue(BitsInit *BI) {
97 bool BitRecTy::baseClassOf(const BitsRecTy *RHS) const {
101 Init *BitRecTy::convertValue(IntInit *II) {
108 Init *BitRecTy::convertValue(TypedInit *VI) {
109 if (dynamic_cast<BitRecTy*>(VI->getType()))
184 if (Size == 1 && dynamic_cast<BitRecTy*>(VI->getType()))
    [all...]
TGParser.cpp 610 case tgtok::Bit: Lex.Lex(); return BitRecTy::get();
855 case tgtok::XEq: Code = BinOpInit::EQ; Type = BitRecTy::get(); break;
975 Type = BitRecTy::get();
982 Type = BitRecTy::get();
    [all...]

Completed in 165 milliseconds