Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Name

345 const char *MachineFunction::createExternalSymbolName(StringRef Name) {
346 char *Dest = Allocator.Allocate<char>(Name.size() + 1);
347 std::copy(Name.begin(), Name.end(), Dest);
348 Dest[Name.size()] = 0;
499 SmallString<60> Name;
500 raw_svector_ostream(Name)
502 return Ctx.getOrCreateSymbol(Name);