Searched defs:DefName (Results 1 - 2 of 2) sorted by relevance

/external/llvm/utils/TableGen/
H A DCodeGenTarget.cpp385 std::string DefName = R->getName(); local
391 if (DefName.size() <= 4 ||
392 std::string(DefName.begin(), DefName.begin() + 4) != "int_")
393 throw "Intrinsic '" + DefName + "' does not start with 'int_'!";
395 EnumName = std::string(DefName.begin()+4, DefName.end());
404 // If an explicit name isn't specified, derive one from the DefName.
413 throw "Intrinsic '" + DefName + "'s name does not start with 'llvm.'!";
422 throw "Intrinsic '" + DefName
[all...]
/external/llvm/lib/TableGen/
H A DTGParser.cpp2260 Init *DefName = DefProto->getNameInit(); local
2262 StringInit *DefNameString = dynamic_cast<StringInit *>(DefName);
2267 DefName =
2271 DefName, StringRecTy::get())->Fold(DefProto, &MC);
2274 Record *CurRec = new Record(DefName, DefmPrefixLoc, Records);

Completed in 389 milliseconds