HomeSort by: relevance | last modified time | path
    Searched refs:BitRecTy (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
Record.cpp 50 BitRecTy BitRecTy::Shared;
72 bool BitRecTy::typeIsConvertibleTo(const RecTy *RHS) const{
307 if (isa<BitRecTy>(Ty))
354 if (isa<BitRecTy>(Ty)) {
470 if (isa<BitRecTy>(Ty)) {
686 if (getType() == BitRecTy::get())
1621 if (isa<BitRecTy>(getType()) && isa<BitsRecTy>(Ty) &&
1701 if (getType() == BitRecTy::get())
1766 if (getType() == BitRecTy::get()
    [all...]
TGParser.cpp 817 case tgtok::Bit: Lex.Lex(); return BitRecTy::get();
1167 Type = BitRecTy::get();
1470 MHSTy = BitRecTy::get();
1477 RHSTy = BitRecTy::get();
2033 VTy = BitRecTy::get();
2205 Init *Bit = Vals[i]->getCastTo(BitRecTy::get());
3207 ListInit *EmptyList = ListInit::get({}, BitRecTy::get());
3208 ListInit *SingletonList = ListInit::get({BitInit::get(1)}, BitRecTy::get());
3209 RecTy *BitListTy = ListRecTy::get(BitRecTy::get());
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h 102 class BitRecTy : public RecTy {
103 static BitRecTy Shared;
105 BitRecTy() : RecTy(BitRecTyKind) {}
112 static BitRecTy *get() { return &Shared; }
473 explicit BitInit(bool V) : TypedInit(IK_BitInit, BitRecTy::get()), Value(V) {}
1114 : TypedInit(IK_VarBitInit, BitRecTy::get()), TI(T), Bit(B) {

Completed in 29 milliseconds