Searched refs:IntRecTy (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/TableGen/
H A DRecord.cpp85 IntRecTy IntRecTy::Shared;
117 if (isa<BitRecTy>(Ty) || isa<BitsRecTy>(Ty) || isa<IntRecTy>(Ty))
212 Init *IntRecTy::convertValue(BitInit *BI) {
216 Init *IntRecTy::convertValue(BitsInit *BI) {
227 Init *IntRecTy::convertValue(TypedInit *TI) {
233 bool IntRecTy::baseClassOf(const RecTy *RHS) const{
938 dyn_cast_or_null<IntInit>(LHS->convertInitializerTo(IntRecTy::get()));
940 dyn_cast_or_null<IntInit>(RHS->convertInitializerTo(IntRecTy::get()));
1206 if (Init *I = LHS->convertInitializerTo(IntRecTy
[all...]
H A DTGParser.cpp689 case tgtok::Int: Lex.Lex(); return IntRecTy::get();
827 Type = IntRecTy::get();
923 case tgtok::XADD: Code = BinOpInit::ADD; Type = IntRecTy::get(); break;
924 case tgtok::XSRA: Code = BinOpInit::SRA; Type = IntRecTy::get(); break;
925 case tgtok::XSRL: Code = BinOpInit::SRL; Type = IntRecTy::get(); break;
926 case tgtok::XSHL: Code = BinOpInit::SHL; Type = IntRecTy::get(); break;
1802 IterType = IntRecTy::get();
/external/llvm/include/llvm/TableGen/
H A DRecord.h34 class IntRecTy;
216 /// IntRecTy - 'int' - Represent an integer value of no particular size
218 class IntRecTy : public RecTy { class in namespace:llvm
219 static IntRecTy Shared;
220 IntRecTy() : RecTy(IntRecTyKind) {} function in class:llvm::IntRecTy
227 static IntRecTy *get() { return &Shared; }
705 : TypedInit(IK_IntInit, IntRecTy::get()), Value(V) {}
1099 (isa<IntRecTy>(T->getType()) ||
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1939 Init *II = BI->convertInitializerTo(IntRecTy::get());

Completed in 113 milliseconds