Searched defs:TheInit (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/TableGen/
H A DRecord.cpp434 static UnsetInit TheInit; local
435 return &TheInit;
1363 Init *TheInit = Val->getValue();
1364 assert(TheInit != this && "Infinite loop detected!");
1365 if (Init *I = TheInit->getFieldInit(R, RV, FieldName))
1672 if (!TheInit)
1673 TheInit = new DefInit(this, new RecordRecTy(this));
1674 return TheInit;
/external/llvm/include/llvm/TableGen/
H A DRecord.h1393 DefInit *TheInit; member in class:llvm::Record
1405 TrackedRecords(records), TheInit(0), IsAnonymous(Anonymous) {
1411 TrackedRecords(records), TheInit(0), IsAnonymous(Anonymous) {
1421 TheInit(O.TheInit), IsAnonymous(O.IsAnonymous) { }
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1844 TreePatternNode *TreePattern::ParseTreePattern(Init *TheInit, StringRef OpName){ argument
1845 if (DefInit *DI = dyn_cast<DefInit>(TheInit)) {
1870 if (TheInit == UnsetInit::get()) {
1873 TreePatternNode *Res = new TreePatternNode(TheInit, 1);
1879 if (IntInit *II = dyn_cast<IntInit>(TheInit)) {
1885 if (BitsInit *BI = dyn_cast<BitsInit>(TheInit)) {
1893 DagInit *Dag = dyn_cast<DagInit>(TheInit);
1895 TheInit->dump();

Completed in 110 milliseconds