Home
last modified time | relevance | path

Searched refs:IntRecTy (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/TableGen/
DRecord.cpp85 IntRecTy IntRecTy::Shared;
131 bool IntRecTy::typeIsConvertibleTo(const RecTy *RHS) const { in typeIsConvertibleTo()
246 if (isa<IntRecTy>(Ty)) in convertInitializerTo()
300 if (isa<IntRecTy>(Ty)) { in convertInitializerTo()
415 if (isa<IntRecTy>(Ty)) in convertInitializerTo()
677 if (isa<IntRecTy>(getType())) { in Fold()
679 if (Init *NewInit = BI->convertInitializerTo(IntRecTy::get())) in Fold()
798 dyn_cast_or_null<IntInit>(LHS->convertInitializerTo(IntRecTy::get())); in Fold()
800 dyn_cast_or_null<IntInit>(RHS->convertInitializerTo(IntRecTy::get())); in Fold()
820 dyn_cast_or_null<IntInit>(LHS->convertInitializerTo(IntRecTy::get())); in Fold()
[all …]
DTGParser.cpp670 case tgtok::Int: Lex.Lex(); return IntRecTy::get(); in ParseType()
806 Type = IntRecTy::get(); in ParseOperation()
895 case tgtok::XADD: Code = BinOpInit::ADD; Type = IntRecTy::get(); break; in ParseOperation()
896 case tgtok::XAND: Code = BinOpInit::AND; Type = IntRecTy::get(); break; in ParseOperation()
897 case tgtok::XSRA: Code = BinOpInit::SRA; Type = IntRecTy::get(); break; in ParseOperation()
898 case tgtok::XSRL: Code = BinOpInit::SRL; Type = IntRecTy::get(); break; in ParseOperation()
899 case tgtok::XSHL: Code = BinOpInit::SHL; Type = IntRecTy::get(); break; in ParseOperation()
1807 IterType = IntRecTy::get(); in ParseForeachDeclaration()
/external/llvm/include/llvm/TableGen/
DRecord.h120 class IntRecTy : public RecTy {
121 static IntRecTy Shared;
122 IntRecTy() : RecTy(IntRecTyKind) {} in IntRecTy() function
129 static IntRecTy *get() { return &Shared; } in get()
513 : TypedInit(IK_IntInit, IntRecTy::get()), Value(V) {} in IntInit()
885 (isa<IntRecTy>(T->getType()) || in VarBitInit()
/external/llvm/utils/TableGen/
DCodeGenInstruction.cpp534 dyn_cast_or_null<IntInit>(BI->convertInitializerTo(IntRecTy::get())); in tryAliasOpMatch()
DCodeGenDAGPatterns.cpp2129 Init *II = BI->convertInitializerTo(IntRecTy::get()); in ParseTreePattern()