Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/TableGen/
H A DRecord.cpp46 BitRecTy BitRecTy::Shared;
69 bool BitRecTy::typeIsConvertibleTo(const RecTy *RHS) const{ in typeIsConvertibleTo()
312 if (isa<BitRecTy>(Ty)) in convertInitializerTo()
359 if (isa<BitRecTy>(Ty)) { in convertInitializerTo()
475 if (isa<BitRecTy>(Ty)) { in convertInitializerTo()
667 if (getType() == BitRecTy::get()) in getBit()
1360 if (isa<BitRecTy>(getType()) && isa<BitsRecTy>(Ty) && in convertInitializerTo()
1440 if (getType() == BitRecTy::get()) in getBit()
1505 if (getType() == BitRecTy::get()) in getBit()
1670 if (getType() == BitRecTy::get()) in getBit()
H A DTGParser.cpp785 case tgtok::Bit: Lex.Lex(); return BitRecTy::get(); in ParseType()
1084 Type = BitRecTy::get(); in ParseOperation()
1091 Type = BitRecTy::get(); in ParseOperation()
1407 MHSTy = BitRecTy::get(); in ParseOperation()
1414 RHSTy = BitRecTy::get(); in ParseOperation()
1771 Init *Bit = Vals[i]->getCastTo(BitRecTy::get()); in ParseSimpleValue()
/freebsd-12.1/contrib/llvm/include/llvm/TableGen/
H A DRecord.h101 class BitRecTy : public RecTy {
102 static BitRecTy Shared;
104 BitRecTy() : RecTy(BitRecTyKind) {} in BitRecTy() function
111 static BitRecTy *get() { return &Shared; } in get()
486 explicit BitInit(bool V) : TypedInit(IK_BitInit, BitRecTy::get()), Value(V) {} in BitInit()
1028 : TypedInit(IK_VarBitInit, BitRecTy::get()), TI(T), Bit(B) { in VarBitInit()