Home
last modified time | relevance | path

Searched refs:BitRecTy (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp50 BitRecTy BitRecTy::Shared;
72 bool BitRecTy::typeIsConvertibleTo(const RecTy *RHS) const{ in typeIsConvertibleTo()
307 if (isa<BitRecTy>(Ty)) in convertInitializerTo()
354 if (isa<BitRecTy>(Ty)) { in convertInitializerTo()
470 if (isa<BitRecTy>(Ty)) { in convertInitializerTo()
686 if (getType() == BitRecTy::get()) in getBit()
1620 if (isa<BitRecTy>(getType()) && isa<BitsRecTy>(Ty) && in convertInitializerTo()
1700 if (getType() == BitRecTy::get()) in getBit()
1765 if (getType() == BitRecTy::get()) in getBit()
1934 if (getType() == BitRecTy::get()) in getBit()
H A DTGParser.cpp817 case tgtok::Bit: Lex.Lex(); return BitRecTy::get(); in ParseType()
1167 Type = BitRecTy::get(); in ParseOperation()
1470 MHSTy = BitRecTy::get(); in ParseOperation()
1477 RHSTy = BitRecTy::get(); in ParseOperation()
2033 VTy = BitRecTy::get(); in ParseOperationCond()
2205 Init *Bit = Vals[i]->getCastTo(BitRecTy::get()); in ParseSimpleValue()
3204 ListInit *EmptyList = ListInit::get({}, BitRecTy::get()); in ParseIf()
3205 ListInit *SingletonList = ListInit::get({BitInit::get(1)}, BitRecTy::get()); in ParseIf()
3206 RecTy *BitListTy = ListRecTy::get(BitRecTy::get()); in ParseIf()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h102 class BitRecTy : public RecTy {
103 static BitRecTy Shared;
105 BitRecTy() : RecTy(BitRecTyKind) {} in BitRecTy() function
112 static BitRecTy *get() { return &Shared; } in get()
473 explicit BitInit(bool V) : TypedInit(IK_BitInit, BitRecTy::get()), Value(V) {} in BitInit()
1114 : TypedInit(IK_VarBitInit, BitRecTy::get()), TI(T), Bit(B) { in VarBitInit()