#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
+#include "llvm/ADT/StringSet.h"
#include "llvm/Option/OptSpecifier.h"
#include "llvm/Option/Option.h"
-#include <list>
+#include "llvm/Support/Allocator.h"
#include <string>
#include <vector>
/// This is mutable since we treat the ArgList as being the list
/// of Args, and allow routines to add new strings (to have a
/// convenient place to store the memory) via MakeIndex.
- mutable std::list<std::string> SynthesizedStrings;
+ mutable StringSet<BumpPtrAllocator> SynthesizedStrings;
/// The number of original input argument strings.
unsigned NumInputArgStrings;
unsigned InputArgList::MakeIndex(StringRef String0) const {
unsigned Index = ArgStrings.size();
+ // If necessary, make a copy so we can null terminate it.
+ std::string NullTerminated;
+ if (String0.back() != '\0') {
+ NullTerminated.append(String0.data(), String0.size());
+ NullTerminated.push_back('\0');
+ String0 = StringRef(&NullTerminated[0], NullTerminated.size());
+ }
+
// Tuck away so we have a reliable const char *.
- SynthesizedStrings.push_back(String0);
- ArgStrings.push_back(SynthesizedStrings.back().c_str());
+ String0 = SynthesizedStrings.GetOrCreateValue(String0).getKey();
+ assert(String0.back() == '\0');
+ ArgStrings.push_back(String0.data());
return Index;
}