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

/external/llvm/lib/Transforms/Utils/
H A DLoopUnroll.cpp99 // OldName will be valid until erased.
100 StringRef OldName = BB->getName(); local
114 if (!OldName.empty() && !OnlyPred->hasName())
115 OnlyPred->setName(OldName);
/external/llvm/lib/TableGen/
H A DRecord.cpp1737 Init *OldName = getNameInit(); local
1739 if (NewName != OldName) {
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp2119 StringRef OldName = OldPtr->getName(); local
2121 size_t LastSROAPrefix = OldName.rfind(".sroa.");
2123 OldName = OldName.substr(LastSROAPrefix + strlen(".sroa."));
2125 size_t IndexEnd = OldName.find_first_not_of("0123456789");
2126 if (IndexEnd != StringRef::npos && OldName[IndexEnd] == '.') {
2128 OldName = OldName.substr(IndexEnd + 1);
2129 size_t OffsetEnd = OldName.find_first_not_of("0123456789");
2130 if (OffsetEnd != StringRef::npos && OldName[OffsetEn
[all...]

Completed in 427 milliseconds