Skip to content

Commit

Permalink
[C++11] Replace OwningPtr with std::unique_ptr.
Browse files Browse the repository at this point in the history
This removes all references to OwningPtr, which should be fairly
undisruptive to out-of-tree projects since they are unlikely to use
clang-tools-extra as a library instead of a set of tools.

git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@203382 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
ahmedcharles committed Mar 9, 2014
1 parent 7a14b6d commit c1d88b9
Show file tree
Hide file tree
Showing 24 changed files with 36 additions and 44 deletions.
2 changes: 1 addition & 1 deletion clang-apply-replacements/lib/Tooling/ApplyReplacements.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ collectReplacementsFromDirectory(const llvm::StringRef Directory,

TURFiles.push_back(I->path());

OwningPtr<MemoryBuffer> Out;
std::unique_ptr<MemoryBuffer> Out;
error_code BufferError = MemoryBuffer::getFile(I->path(), Out);
if (BufferError) {
errs() << "Error reading " << I->path() << ": " << BufferError.message()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ int main(int argc, char **argv) {

// Remove the TUReplacementFiles (triggered by "remove-change-desc-files"
// command line option) when exiting main().
OwningPtr<ScopedFileRemover> Remover;
std::unique_ptr<ScopedFileRemover> Remover;
if (RemoveTUReplacementFiles)
Remover.reset(new ScopedFileRemover(TURFiles, Diagnostics));

Expand Down
5 changes: 2 additions & 3 deletions clang-modernize/Core/IncludeExcludeInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
//===----------------------------------------------------------------------===//

#include "IncludeExcludeInfo.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/MemoryBuffer.h"
Expand Down Expand Up @@ -122,7 +121,7 @@ error_code IncludeExcludeInfo::readListFromString(StringRef IncludeString,
error_code IncludeExcludeInfo::readListFromFile(StringRef IncludeListFile,
StringRef ExcludeListFile) {
if (!IncludeListFile.empty()) {
OwningPtr<MemoryBuffer> FileBuf;
std::unique_ptr<MemoryBuffer> FileBuf;
if (error_code Err = MemoryBuffer::getFile(IncludeListFile, FileBuf)) {
errs() << "Unable to read from include file.\n";
return Err;
Expand All @@ -132,7 +131,7 @@ error_code IncludeExcludeInfo::readListFromFile(StringRef IncludeListFile,
return Err;
}
if (!ExcludeListFile.empty()) {
OwningPtr<MemoryBuffer> FileBuf;
std::unique_ptr<MemoryBuffer> FileBuf;
if (error_code Err = MemoryBuffer::getFile(ExcludeListFile, FileBuf)) {
errs() << "Unable to read from exclude file.\n";
return Err;
Expand Down
1 change: 0 additions & 1 deletion clang-modernize/Core/Transform.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

#include "Core/IncludeExcludeInfo.h"
#include "Core/Refactoring.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Registry.h"
#include "llvm/Support/Timer.h"
Expand Down
2 changes: 1 addition & 1 deletion clang-modernize/Core/Transforms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Transforms::createSelectedTransforms(const TransformOptions &GlobalOptions,
if (!OptionEnabled)
continue;

llvm::OwningPtr<TransformFactory> Factory(I->instantiate());
std::unique_ptr<TransformFactory> Factory(I->instantiate());
if (Factory->supportsCompilers(RequiredVersions))
ChosenTransforms.push_back(Factory->createTransform(GlobalOptions));
else if (ExplicitlyEnabled)
Expand Down
2 changes: 1 addition & 1 deletion clang-modernize/LoopConvert/LoopActions.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ struct TUTrackingInfo {
/// \}

private:
llvm::OwningPtr<StmtAncestorASTVisitor> ParentFinder;
std::unique_ptr<StmtAncestorASTVisitor> ParentFinder;
StmtGeneratedVarNameMap GeneratedDecls;
ReplacedVarsMap ReplacedVars;
};
Expand Down
2 changes: 1 addition & 1 deletion clang-modernize/LoopConvert/LoopConvert.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class LoopConvertTransform : public Transform {
virtual bool handleBeginSource(clang::CompilerInstance &CI,
llvm::StringRef Filename) override;
private:
llvm::OwningPtr<TUTrackingInfo> TUInfo;
std::unique_ptr<TUTrackingInfo> TUInfo;
};

#endif // CLANG_MODERNIZE_LOOP_CONVERT_H
2 changes: 1 addition & 1 deletion clang-modernize/PassByValue/PassByValue.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class PassByValueTransform : public Transform {
virtual bool handleBeginSource(clang::CompilerInstance &CI,
llvm::StringRef Filename) override;

llvm::OwningPtr<IncludeDirectives> IncludeManager;
std::unique_ptr<IncludeDirectives> IncludeManager;
ConstructorParamReplacer *Replacer;
};

Expand Down
2 changes: 1 addition & 1 deletion clang-modernize/tool/ClangModernize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ int main(int argc, const char **argv) {
cl::SetVersionPrinter(&printVersion);

// Parse options and generate compilations.
OwningPtr<CompilationDatabase> Compilations(
std::unique_ptr<CompilationDatabase> Compilations(
FixedCompilationDatabase::loadFromCommandLine(argc, argv));
cl::ParseCommandLineOptions(argc, argv);

Expand Down
5 changes: 2 additions & 3 deletions clang-query/tool/ClangQuery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
#include "clang/Frontend/ASTUnit.h"
#include "clang/Tooling/CompilationDatabase.h"
#include "clang/Tooling/Tooling.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/LineEditor/LineEditor.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/MemoryBuffer.h"
Expand Down Expand Up @@ -70,8 +69,8 @@ int main(int argc, const char **argv) {
return 1;
}

llvm::OwningPtr<CompilationDatabase> Compilations(
FixedCompilationDatabase::loadFromCommandLine(argc, argv));
std::unique_ptr<CompilationDatabase> Compilations(
FixedCompilationDatabase::loadFromCommandLine(argc, argv));
if (!Compilations) { // Couldn't find a compilation DB from the command line
std::string ErrorMessage;
Compilations.reset(
Expand Down
2 changes: 1 addition & 1 deletion clang-tidy/ClangTidy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ ClangTidyASTConsumerFactory::ClangTidyASTConsumerFactory(
for (ClangTidyModuleRegistry::iterator I = ClangTidyModuleRegistry::begin(),
E = ClangTidyModuleRegistry::end();
I != E; ++I) {
OwningPtr<ClangTidyModule> Module(I->instantiate());
std::unique_ptr<ClangTidyModule> Module(I->instantiate());
Module->addCheckFactories(*CheckFactories);
}

Expand Down
2 changes: 1 addition & 1 deletion clang-tidy/ClangTidy.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class ClangTidyASTConsumerFactory {
SmallVector<ClangTidyCheck *, 8> Checks;
ClangTidyContext &Context;
ast_matchers::MatchFinder Finder;
OwningPtr<ClangTidyCheckFactories> CheckFactories;
std::unique_ptr<ClangTidyCheckFactories> CheckFactories;
};

/// \brief Fills the list of check names that are enabled when the provided
Expand Down
2 changes: 1 addition & 1 deletion clang-tidy/ClangTidyDiagnosticConsumer.h
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class ClangTidyDiagnosticConsumer : public DiagnosticConsumer {
void finalizeLastError();

ClangTidyContext &Context;
OwningPtr<DiagnosticsEngine> Diags;
std::unique_ptr<DiagnosticsEngine> Diags;
SmallVector<ClangTidyError, 8> Errors;
bool LastErrorRelatesToUserCode;
};
Expand Down
11 changes: 5 additions & 6 deletions modularize/Modularize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@
#include "clang/Lex/Preprocessor.h"
#include "clang/Tooling/CompilationDatabase.h"
#include "clang/Tooling/Tooling.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/Config/config.h"
#include "llvm/Option/Arg.h"
#include "llvm/Option/ArgList.h"
Expand Down Expand Up @@ -231,7 +230,7 @@ error_code getHeaderFileNames(SmallVectorImpl<std::string> &HeaderFileNames,
HeaderDirectory = HeaderPrefix;

// Read the header list file into a buffer.
OwningPtr<MemoryBuffer> listBuffer;
std::unique_ptr<MemoryBuffer> listBuffer;
if (error_code ec = MemoryBuffer::getFile(ListFileName, listBuffer)) {
return ec;
}
Expand Down Expand Up @@ -290,15 +289,15 @@ error_code getHeaderFileNames(SmallVectorImpl<std::string> &HeaderFileNames,

// Helper function for finding the input file in an arguments list.
std::string findInputFile(const CommandLineArguments &CLArgs) {
OwningPtr<OptTable> Opts(createDriverOptTable());
std::unique_ptr<OptTable> Opts(createDriverOptTable());
const unsigned IncludedFlagsBitmask = options::CC1Option;
unsigned MissingArgIndex, MissingArgCount;
SmallVector<const char *, 256> Argv;
for (CommandLineArguments::const_iterator I = CLArgs.begin(),
E = CLArgs.end();
I != E; ++I)
Argv.push_back(I->c_str());
OwningPtr<InputArgList> Args(
std::unique_ptr<InputArgList> Args(
Opts->ParseArgs(Argv.data(), Argv.data() + Argv.size(), MissingArgIndex,
MissingArgCount, IncludedFlagsBitmask));
std::vector<std::string> Inputs = Args->getAllArgValues(OPT_INPUT);
Expand Down Expand Up @@ -725,12 +724,12 @@ int main(int Argc, const char **Argv) {
// Create the compilation database.
SmallString<256> PathBuf;
sys::fs::current_path(PathBuf);
OwningPtr<CompilationDatabase> Compilations;
std::unique_ptr<CompilationDatabase> Compilations;
Compilations.reset(
new FixedCompilationDatabase(Twine(PathBuf), CC1Arguments));

// Create preprocessor tracker, to watch for macro and conditional problems.
OwningPtr<PreprocessorTracker> PPTracker(PreprocessorTracker::create());
std::unique_ptr<PreprocessorTracker> PPTracker(PreprocessorTracker::create());

// Parse all of the headers, detecting duplicates.
EntityMap Entities;
Expand Down
3 changes: 1 addition & 2 deletions modularize/ModuleAssistant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
//===---------------------------------------------------------------------===//

#include "Modularize.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Path.h"
Expand Down Expand Up @@ -281,7 +280,7 @@ bool createModuleMap(llvm::StringRef ModuleMapPath,
DependencyMap &Dependencies, llvm::StringRef HeaderPrefix,
llvm::StringRef RootModuleName) {
// Load internal representation of modules.
llvm::OwningPtr<Module> RootModule(loadModuleDescriptions(
std::unique_ptr<Module> RootModule(loadModuleDescriptions(
RootModuleName, HeaderFileNames, Dependencies, HeaderPrefix));
if (!RootModule.get())
return false;
Expand Down
7 changes: 4 additions & 3 deletions module-map-checker/ModuleMapChecker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,9 @@ int main(int Argc, const char **Argv) {
cl::ParseCommandLineOptions(Argc, Argv, "module-map-checker.\n");

// Create checker object.
OwningPtr<ModuleMapChecker> Checker(ModuleMapChecker::createModuleMapChecker(
ModuleMapPath, IncludePaths, DumpModuleMap, CC1Arguments));
std::unique_ptr<ModuleMapChecker> Checker(
ModuleMapChecker::createModuleMapChecker(ModuleMapPath, IncludePaths,
DumpModuleMap, CC1Arguments));

// Do the checks. The return value is the program return code,
// 0 for okay, 1 for module map warnings produced, 2 for any other error.
Expand Down Expand Up @@ -394,7 +395,7 @@ ModuleMapChecker::collectUmbrellaHeaderHeaders(StringRef UmbrellaHeaderName) {
sys::fs::current_path(PathBuf);

// Create the compilation database.
OwningPtr<CompilationDatabase> Compilations;
std::unique_ptr<CompilationDatabase> Compilations;
Compilations.reset(new FixedCompilationDatabase(Twine(PathBuf), CommandLine));

std::vector<std::string> HeaderPath;
Expand Down
5 changes: 2 additions & 3 deletions module-map-checker/ModuleMapChecker.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
#include "clang/Lex/HeaderSearchOptions.h"
#include "clang/Lex/ModuleMap.h"
#include "clang/Lex/Preprocessor.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/ADT/StringSet.h"
#include "llvm/Support/Host.h"
#include <string>
Expand Down Expand Up @@ -82,9 +81,9 @@ class ModuleMapChecker {
/// Options controlling the \#include directive.
llvm::IntrusiveRefCntPtr<clang::HeaderSearchOptions> HeaderSearchOpts;
/// Header search manager.
llvm::OwningPtr<clang::HeaderSearch> HeaderInfo;
std::unique_ptr<clang::HeaderSearch> HeaderInfo;
/// The module map.
llvm::OwningPtr<clang::ModuleMap> ModMap;
std::unique_ptr<clang::ModuleMap> ModMap;

// Internal data.

Expand Down
3 changes: 1 addition & 2 deletions pp-trace/PPTrace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@
#include "clang/Lex/Preprocessor.h"
#include "clang/Tooling/CompilationDatabase.h"
#include "clang/Tooling/Tooling.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/Config/config.h"
#include "llvm/Option/Arg.h"
#include "llvm/Option/ArgList.h"
Expand Down Expand Up @@ -192,7 +191,7 @@ int main(int Argc, const char **Argv) {
// Create the compilation database.
SmallString<256> PathBuf;
sys::fs::current_path(PathBuf);
OwningPtr<CompilationDatabase> Compilations;
std::unique_ptr<CompilationDatabase> Compilations;
Compilations.reset(
new FixedCompilationDatabase(Twine(PathBuf), CC1Arguments));

Expand Down
5 changes: 2 additions & 3 deletions remove-cstr-calls/RemoveCStrCalls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
#include "clang/Tooling/CompilationDatabase.h"
#include "clang/Tooling/Refactoring.h"
#include "clang/Tooling/Tooling.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/ADT/Twine.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/MemoryBuffer.h"
Expand Down Expand Up @@ -179,8 +178,8 @@ cl::list<std::string> SourcePaths(

int main(int argc, const char **argv) {
llvm::sys::PrintStackTraceOnErrorSignal();
llvm::OwningPtr<CompilationDatabase> Compilations(
tooling::FixedCompilationDatabase::loadFromCommandLine(argc, argv));
std::unique_ptr<CompilationDatabase> Compilations(
tooling::FixedCompilationDatabase::loadFromCommandLine(argc, argv));
cl::ParseCommandLineOptions(argc, argv);
if (!Compilations) {
std::string ErrorMessage;
Expand Down
5 changes: 2 additions & 3 deletions tool-template/ToolTemplate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
#include "clang/Tooling/CompilationDatabase.h"
#include "clang/Tooling/Refactoring.h"
#include "clang/Tooling/Tooling.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/Signals.h"
Expand Down Expand Up @@ -81,8 +80,8 @@ cl::list<std::string> SourcePaths(

int main(int argc, const char **argv) {
llvm::sys::PrintStackTraceOnErrorSignal();
llvm::OwningPtr<CompilationDatabase> Compilations(
FixedCompilationDatabase::loadFromCommandLine(argc, argv));
std::unique_ptr<CompilationDatabase> Compilations(
FixedCompilationDatabase::loadFromCommandLine(argc, argv));
cl::ParseCommandLineOptions(argc, argv);
if (!Compilations) { // Couldn't find a compilation DB from the command line
std::string ErrorMessage;
Expand Down
2 changes: 1 addition & 1 deletion unittests/clang-modernize/IncludeDirectivesTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class TestAddIncludeAction : public PreprocessOnlyAction {
StringRef Include;
VirtualFileHelper VFHelper;
tooling::Replacements &Replaces;
OwningPtr<IncludeDirectives> FileIncludes;
std::unique_ptr<IncludeDirectives> FileIncludes;
std::string FileToModify;
// if non-null, add the include directives in this file instead of the main
// file.
Expand Down
4 changes: 2 additions & 2 deletions unittests/clang-query/QueryEngineTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ using namespace clang::query;
using namespace clang::tooling;

TEST(Query, Basic) {
OwningPtr<ASTUnit> FooAST(
std::unique_ptr<ASTUnit> FooAST(
buildASTFromCode("void foo1(void) {}\nvoid foo2(void) {}", "foo.cc"));
ASSERT_TRUE(FooAST.get());
OwningPtr<ASTUnit> BarAST(
std::unique_ptr<ASTUnit> BarAST(
buildASTFromCode("void bar1(void) {}\nvoid bar2(void) {}", "bar.cc"));
ASSERT_TRUE(BarAST.get());

Expand Down
2 changes: 1 addition & 1 deletion unittests/clang-tidy/ClangTidyTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ template <typename T> std::string runCheckOnCode(StringRef Code) {
return "";
ast_matchers::MatchFinder Finder;
Check.registerMatchers(&Finder);
OwningPtr<tooling::FrontendActionFactory> Factory(
std::unique_ptr<tooling::FrontendActionFactory> Factory(
tooling::newFrontendActionFactory(&Finder));
if (!tooling::runToolOnCode(Factory->create(), Code))
return "";
Expand Down
2 changes: 1 addition & 1 deletion unittests/include/common/VirtualFileHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class VirtualFileHelper {
FileManager Files;
// most tests don't need more than one file
llvm::SmallVector<VirtualFile, 1> VirtualFiles;
llvm::OwningPtr<SourceManager> Sources;
std::unique_ptr<SourceManager> Sources;
};

} // end namespace clang
Expand Down

0 comments on commit c1d88b9

Please sign in to comment.