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

  /external/llvm/utils/TableGen/
Record.h 27 class BitRecTy;
114 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; }
130 /// BitRecTy - 'bit' - Represent a single bit
132 class BitRecTy : public RecTy {
133 static BitRecTy Shared;
134 BitRecTy() {}
136 static BitRecTy *get() { return &Shared; }
160 virtual bool baseClassOf(const BitRecTy *RHS) const { return true; }
205 virtual bool baseClassOf(const BitRecTy *RHS) const { return Size == 1; }
250 virtual bool baseClassOf(const BitRecTy *RHS) const { return true;
    [all...]
Record.cpp 26 BitRecTy BitRecTy::Shared;
40 Init *BitRecTy::convertValue(BitsInit *BI) {
45 bool BitRecTy::baseClassOf(const BitsRecTy *RHS) const {
49 Init *BitRecTy::convertValue(IntInit *II) {
56 Init *BitRecTy::convertValue(TypedInit *VI) {
57 if (dynamic_cast<BitRecTy*>(VI->getType()))
131 if (Size == 1 && dynamic_cast<BitRecTy*>(VI->getType())) {
    [all...]
TGParser.cpp 585 case tgtok::Bit: Lex.Lex(); return BitRecTy::get();
815 case tgtok::XEq: Code = BinOpInit::EQ; Type = BitRecTy::get(); break;
935 Type = BitRecTy::get();
942 Type = BitRecTy::get();
    [all...]

Completed in 42 milliseconds