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 31 class BitRecTy;
116 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
131 /// BitRecTy - 'bit' - Represent a single bit
133 class BitRecTy : public RecTy {
134 static BitRecTy Shared;
135 BitRecTy() {}
137 static BitRecTy *get() { return &Shared; }
160 virtual bool baseClassOf(const BitRecTy *RHS) const { return true; }
203 virtual bool baseClassOf(const BitRecTy *RHS) const { return Size == 1; }
246 virtual bool baseClassOf(const BitRecTy *RHS) const { return true;
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 84 BitRecTy BitRecTy::Shared;
98 Init *BitRecTy::convertValue(BitsInit *BI) {
103 bool BitRecTy::baseClassOf(const BitsRecTy *RHS) const {
107 Init *BitRecTy::convertValue(IntInit *II) {
114 Init *BitRecTy::convertValue(TypedInit *VI) {
115 if (dynamic_cast<BitRecTy*>(VI->getType()))
190 if (Size == 1 && dynamic_cast<BitRecTy*>(VI->getType()))
    [all...]
TGParser.cpp 718 case tgtok::Bit: Lex.Lex(); return BitRecTy::get();
970 case tgtok::XEq: Code = BinOpInit::EQ; Type = BitRecTy::get(); break;
    [all...]

Completed in 22 milliseconds