Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit 6f42b62

Browse files
committed
Basic: import OwningPtr<> into clang namespace
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@149798 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 7af19b8 commit 6f42b62

File tree

97 files changed

+219
-215
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+219
-215
lines changed

include/clang/ARCMigrate/FileRemapper.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace arcmt {
3030

3131
class FileRemapper {
3232
// FIXME: Reuse the same FileManager for multiple ASTContexts.
33-
llvm::OwningPtr<FileManager> FileMgr;
33+
OwningPtr<FileManager> FileMgr;
3434

3535
typedef llvm::PointerUnion<const FileEntry *, llvm::MemoryBuffer *> Target;
3636
typedef llvm::DenseMap<const FileEntry *, Target> MappingsTy;

include/clang/AST/ASTContext.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ class ASTContext : public llvm::RefCountedBase<ASTContext> {
349349
PartialDiagnosticStorageAllocator *DiagAllocator;
350350

351351
/// \brief The current C++ ABI.
352-
llvm::OwningPtr<CXXABI> ABI;
352+
OwningPtr<CXXABI> ABI;
353353
CXXABI *createCXXABI(const TargetInfo &T);
354354

355355
/// \brief The logical -> physical address space map.
@@ -367,7 +367,7 @@ class ASTContext : public llvm::RefCountedBase<ASTContext> {
367367
SelectorTable &Selectors;
368368
Builtin::Context &BuiltinInfo;
369369
mutable DeclarationNameTable DeclarationNames;
370-
llvm::OwningPtr<ExternalASTSource> ExternalSource;
370+
OwningPtr<ExternalASTSource> ExternalSource;
371371
ASTMutationListener *Listener;
372372

373373
clang::PrintingPolicy getPrintingPolicy() const { return PrintingPolicy; }
@@ -573,7 +573,7 @@ class ASTContext : public llvm::RefCountedBase<ASTContext> {
573573
/// The external AST source provides the ability to load parts of
574574
/// the abstract syntax tree as needed from some external storage,
575575
/// e.g., a precompiled header.
576-
void setExternalSource(llvm::OwningPtr<ExternalASTSource> &Source);
576+
void setExternalSource(OwningPtr<ExternalASTSource> &Source);
577577

578578
/// \brief Retrieve a pointer to the external AST source associated
579579
/// with this AST context, if any.

include/clang/Analysis/AnalysisContext.h

+7-7
Original file line numberDiff line numberDiff line change
@@ -76,19 +76,19 @@ class AnalysisDeclContext {
7676
// TranslationUnit is NULL if we don't have multiple translation units.
7777
idx::TranslationUnit *TU;
7878

79-
llvm::OwningPtr<CFG> cfg, completeCFG;
80-
llvm::OwningPtr<CFGStmtMap> cfgStmtMap;
79+
OwningPtr<CFG> cfg, completeCFG;
80+
OwningPtr<CFGStmtMap> cfgStmtMap;
8181

8282
CFG::BuildOptions cfgBuildOptions;
8383
CFG::BuildOptions::ForcedBlkExprs *forcedBlkExprs;
8484

8585
bool builtCFG, builtCompleteCFG;
8686

87-
llvm::OwningPtr<LiveVariables> liveness;
88-
llvm::OwningPtr<LiveVariables> relaxedLiveness;
89-
llvm::OwningPtr<ParentMap> PM;
90-
llvm::OwningPtr<PseudoConstantAnalysis> PCA;
91-
llvm::OwningPtr<CFGReverseBlockReachabilityAnalysis> CFA;
87+
OwningPtr<LiveVariables> liveness;
88+
OwningPtr<LiveVariables> relaxedLiveness;
89+
OwningPtr<ParentMap> PM;
90+
OwningPtr<PseudoConstantAnalysis> PCA;
91+
OwningPtr<CFGReverseBlockReachabilityAnalysis> CFA;
9292

9393
llvm::BumpPtrAllocator A;
9494

include/clang/Basic/FileManager.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ class FileManager : public llvm::RefCountedBase<FileManager> {
148148
unsigned NumDirCacheMisses, NumFileCacheMisses;
149149

150150
// Caching.
151-
llvm::OwningPtr<FileSystemStatCache> StatCache;
151+
OwningPtr<FileSystemStatCache> StatCache;
152152

153153
bool getStatValue(const char *Path, struct stat &StatBuf,
154154
int *FileDescriptor);

include/clang/Basic/FileSystemStatCache.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#ifndef LLVM_CLANG_FILESYSTEMSTATCACHE_H
1515
#define LLVM_CLANG_FILESYSTEMSTATCACHE_H
1616

17+
#include "clang/Basic/LLVM.h"
1718
#include "llvm/ADT/OwningPtr.h"
1819
#include "llvm/ADT/StringMap.h"
1920
#include <sys/types.h>
@@ -27,7 +28,7 @@ namespace clang {
2728
class FileSystemStatCache {
2829
virtual void anchor();
2930
protected:
30-
llvm::OwningPtr<FileSystemStatCache> NextStatCache;
31+
OwningPtr<FileSystemStatCache> NextStatCache;
3132

3233
public:
3334
virtual ~FileSystemStatCache() {}

include/clang/Basic/LLVM.h

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace llvm {
2424
class StringRef;
2525
class Twine;
2626
template<typename T> class ArrayRef;
27+
template<class T> class OwningPtr;
2728
template<typename T, unsigned N> class SmallVector;
2829
template<typename T> class SmallVectorImpl;
2930

@@ -44,6 +45,7 @@ namespace clang {
4445
using llvm::StringRef;
4546
using llvm::Twine;
4647
using llvm::ArrayRef;
48+
using llvm::OwningPtr;
4749
using llvm::SmallVector;
4850
using llvm::SmallVectorImpl;
4951

include/clang/CodeGen/CodeGenAction.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class BackendConsumer;
2424
class CodeGenAction : public ASTFrontendAction {
2525
private:
2626
unsigned Act;
27-
llvm::OwningPtr<llvm::Module> TheModule;
27+
OwningPtr<llvm::Module> TheModule;
2828
llvm::Module *LinkModule;
2929
llvm::LLVMContext *VMContext;
3030
bool OwnsVMContext;

include/clang/Frontend/ASTUnit.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class ASTUnit : public ModuleLoader {
7474
llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics;
7575
llvm::IntrusiveRefCntPtr<FileManager> FileMgr;
7676
llvm::IntrusiveRefCntPtr<SourceManager> SourceMgr;
77-
llvm::OwningPtr<HeaderSearch> HeaderInfo;
77+
OwningPtr<HeaderSearch> HeaderInfo;
7878
llvm::IntrusiveRefCntPtr<TargetInfo> Target;
7979
llvm::IntrusiveRefCntPtr<Preprocessor> PP;
8080
llvm::IntrusiveRefCntPtr<ASTContext> Ctx;
@@ -84,11 +84,11 @@ class ASTUnit : public ModuleLoader {
8484

8585
/// \brief The AST consumer that received information about the translation
8686
/// unit as it was parsed or loaded.
87-
llvm::OwningPtr<ASTConsumer> Consumer;
87+
OwningPtr<ASTConsumer> Consumer;
8888

8989
/// \brief The semantic analysis object used to type-check the translation
9090
/// unit.
91-
llvm::OwningPtr<Sema> TheSema;
91+
OwningPtr<Sema> TheSema;
9292

9393
/// Optional owned invocation, just used to make the invocation used in
9494
/// LoadFromCommandLine available.

include/clang/Frontend/ChainedDiagnosticConsumer.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ class LangOptions;
2222
/// diagnostics should be included in counts.
2323
class ChainedDiagnosticConsumer : public DiagnosticConsumer {
2424
virtual void anchor();
25-
llvm::OwningPtr<DiagnosticConsumer> Primary;
26-
llvm::OwningPtr<DiagnosticConsumer> Secondary;
25+
OwningPtr<DiagnosticConsumer> Primary;
26+
OwningPtr<DiagnosticConsumer> Secondary;
2727

2828
public:
2929
ChainedDiagnosticConsumer(DiagnosticConsumer *_Primary,

include/clang/Frontend/ChainedIncludesSource.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class ChainedIncludesSource : public ExternalSemaSource {
3030
ExternalSemaSource &getFinalReader() const { return *FinalReader; }
3131

3232
std::vector<CompilerInstance *> CIs;
33-
llvm::OwningPtr<ExternalSemaSource> FinalReader;
33+
OwningPtr<ExternalSemaSource> FinalReader;
3434

3535

3636
protected:

include/clang/Frontend/CompilerInstance.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,16 @@ class CompilerInstance : public ModuleLoader {
8686
llvm::IntrusiveRefCntPtr<ASTContext> Context;
8787

8888
/// The AST consumer.
89-
llvm::OwningPtr<ASTConsumer> Consumer;
89+
OwningPtr<ASTConsumer> Consumer;
9090

9191
/// The code completion consumer.
92-
llvm::OwningPtr<CodeCompleteConsumer> CompletionConsumer;
92+
OwningPtr<CodeCompleteConsumer> CompletionConsumer;
9393

9494
/// \brief The semantic analysis object.
95-
llvm::OwningPtr<Sema> TheSema;
95+
OwningPtr<Sema> TheSema;
9696

9797
/// \brief The frontend timer
98-
llvm::OwningPtr<llvm::Timer> FrontendTimer;
98+
OwningPtr<llvm::Timer> FrontendTimer;
9999

100100
/// \brief Non-owning reference to the ASTReader, if one exists.
101101
ASTReader *ModuleManager;

include/clang/Frontend/FrontendAction.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class CompilerInstance;
2828
/// the frontend.
2929
class FrontendAction {
3030
FrontendInputFile CurrentInput;
31-
llvm::OwningPtr<ASTUnit> CurrentASTUnit;
31+
OwningPtr<ASTUnit> CurrentASTUnit;
3232
CompilerInstance *Instance;
3333
friend class ASTMergeAction;
3434
friend class WrapperFrontendAction;
@@ -248,7 +248,7 @@ class PreprocessorFrontendAction : public FrontendAction {
248248
/// implements every virtual method in the FrontendAction interface by
249249
/// forwarding to the wrapped action.
250250
class WrapperFrontendAction : public FrontendAction {
251-
llvm::OwningPtr<FrontendAction> WrappedAction;
251+
OwningPtr<FrontendAction> WrappedAction;
252252

253253
protected:
254254
virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,

include/clang/Frontend/MultiplexConsumer.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
#include "clang/Basic/LLVM.h"
1919
#include "clang/Sema/SemaConsumer.h"
20+
#include "clang/Basic/LLVM.h"
2021
#include "llvm/ADT/OwningPtr.h"
2122
#include <vector>
2223

@@ -52,8 +53,8 @@ class MultiplexConsumer : public SemaConsumer {
5253
static bool classof(const MultiplexConsumer *) { return true; }
5354
private:
5455
std::vector<ASTConsumer*> Consumers; // Owns these.
55-
llvm::OwningPtr<MultiplexASTMutationListener> MutationListener;
56-
llvm::OwningPtr<MultiplexASTDeserializationListener> DeserializationListener;
56+
OwningPtr<MultiplexASTMutationListener> MutationListener;
57+
OwningPtr<MultiplexASTDeserializationListener> DeserializationListener;
5758
};
5859

5960
} // end namespace clang

include/clang/Frontend/TextDiagnosticPrinter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class TextDiagnosticPrinter : public DiagnosticConsumer {
3131
const SourceManager *SM;
3232

3333
/// \brief Handle to the currently active text diagnostic emitter.
34-
llvm::OwningPtr<TextDiagnostic> TextDiag;
34+
OwningPtr<TextDiagnostic> TextDiag;
3535

3636
/// A string to prefix to error messages.
3737
std::string Prefix;

include/clang/Frontend/VerifyDiagnosticConsumer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class VerifyDiagnosticConsumer: public DiagnosticConsumer {
6767
DiagnosticsEngine &Diags;
6868
DiagnosticConsumer *PrimaryClient;
6969
bool OwnsPrimaryClient;
70-
llvm::OwningPtr<TextDiagnosticBuffer> Buffer;
70+
OwningPtr<TextDiagnosticBuffer> Buffer;
7171
Preprocessor *CurrentPreprocessor;
7272

7373
private:

include/clang/Lex/Preprocessor.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class Preprocessor : public llvm::RefCountedBase<Preprocessor> {
7575

7676
/// PTH - An optional PTHManager object used for getting tokens from
7777
/// a token cache rather than lexing the original source file.
78-
llvm::OwningPtr<PTHManager> PTH;
78+
OwningPtr<PTHManager> PTH;
7979

8080
/// BP - A BumpPtrAllocator object used to quickly allocate and release
8181
/// objects internal to the Preprocessor.
@@ -193,12 +193,12 @@ class Preprocessor : public llvm::RefCountedBase<Preprocessor> {
193193
/// CurLexer - This is the current top of the stack that we're lexing from if
194194
/// not expanding a macro and we are lexing directly from source code.
195195
/// Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
196-
llvm::OwningPtr<Lexer> CurLexer;
196+
OwningPtr<Lexer> CurLexer;
197197

198198
/// CurPTHLexer - This is the current top of stack that we're lexing from if
199199
/// not expanding from a macro and we are lexing from a PTH cache.
200200
/// Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
201-
llvm::OwningPtr<PTHLexer> CurPTHLexer;
201+
OwningPtr<PTHLexer> CurPTHLexer;
202202

203203
/// CurPPLexer - This is the current top of the stack what we're lexing from
204204
/// if not expanding a macro. This is an alias for either CurLexer or
@@ -212,7 +212,7 @@ class Preprocessor : public llvm::RefCountedBase<Preprocessor> {
212212

213213
/// CurTokenLexer - This is the current macro we are expanding, if we are
214214
/// expanding a macro. One of CurLexer and CurTokenLexer must be null.
215-
llvm::OwningPtr<TokenLexer> CurTokenLexer;
215+
OwningPtr<TokenLexer> CurTokenLexer;
216216

217217
/// \brief The kind of lexer we're currently working with.
218218
enum CurLexerKind {

include/clang/Parse/Parser.h

+9-9
Original file line numberDiff line numberDiff line change
@@ -155,15 +155,15 @@ class Parser : public CodeCompletionHandler {
155155
mutable IdentifierInfo *Ident_final;
156156
mutable IdentifierInfo *Ident_override;
157157

158-
llvm::OwningPtr<PragmaHandler> AlignHandler;
159-
llvm::OwningPtr<PragmaHandler> GCCVisibilityHandler;
160-
llvm::OwningPtr<PragmaHandler> OptionsHandler;
161-
llvm::OwningPtr<PragmaHandler> PackHandler;
162-
llvm::OwningPtr<PragmaHandler> MSStructHandler;
163-
llvm::OwningPtr<PragmaHandler> UnusedHandler;
164-
llvm::OwningPtr<PragmaHandler> WeakHandler;
165-
llvm::OwningPtr<PragmaHandler> FPContractHandler;
166-
llvm::OwningPtr<PragmaHandler> OpenCLExtensionHandler;
158+
OwningPtr<PragmaHandler> AlignHandler;
159+
OwningPtr<PragmaHandler> GCCVisibilityHandler;
160+
OwningPtr<PragmaHandler> OptionsHandler;
161+
OwningPtr<PragmaHandler> PackHandler;
162+
OwningPtr<PragmaHandler> MSStructHandler;
163+
OwningPtr<PragmaHandler> UnusedHandler;
164+
OwningPtr<PragmaHandler> WeakHandler;
165+
OwningPtr<PragmaHandler> FPContractHandler;
166+
OwningPtr<PragmaHandler> OpenCLExtensionHandler;
167167

168168
/// Whether the '>' token acts as an operator or not. This will be
169169
/// true except when we are parsing an expression within a C++

include/clang/Rewrite/FrontendActions.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ class HTMLPrintAction : public ASTFrontendAction {
2828

2929
class FixItAction : public ASTFrontendAction {
3030
protected:
31-
llvm::OwningPtr<FixItRewriter> Rewriter;
32-
llvm::OwningPtr<FixItOptions> FixItOpts;
31+
OwningPtr<FixItRewriter> Rewriter;
32+
OwningPtr<FixItOptions> FixItOpts;
3333

3434
virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
3535
StringRef InFile);

include/clang/Rewrite/TokenRewriter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ namespace clang {
4141

4242
/// ScratchBuf - This is the buffer that we create scratch tokens from.
4343
///
44-
llvm::OwningPtr<ScratchBuffer> ScratchBuf;
44+
OwningPtr<ScratchBuffer> ScratchBuf;
4545

4646
TokenRewriter(const TokenRewriter&); // DO NOT IMPLEMENT
4747
void operator=(const TokenRewriter&); // DO NOT IMPLEMENT.

include/clang/Sema/Sema.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -260,14 +260,14 @@ class Sema {
260260
llvm::SmallPtrSet<NamedDecl *, 4> HiddenDefinitions;
261261

262262
/// FieldCollector - Collects CXXFieldDecls during parsing of C++ classes.
263-
llvm::OwningPtr<CXXFieldCollector> FieldCollector;
263+
OwningPtr<CXXFieldCollector> FieldCollector;
264264

265265
typedef llvm::SmallPtrSet<const CXXRecordDecl*, 8> RecordDeclSetTy;
266266

267267
/// PureVirtualClassDiagSet - a set of class declarations which we have
268268
/// emitted a list of pure virtual functions. Used to prevent emitting the
269269
/// same list more than once.
270-
llvm::OwningPtr<RecordDeclSetTy> PureVirtualClassDiagSet;
270+
OwningPtr<RecordDeclSetTy> PureVirtualClassDiagSet;
271271

272272
/// ParsingInitForAutoVars - a set of declarations with auto types for which
273273
/// we are currently parsing the initializer.

include/clang/Serialization/ASTReader.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ class ASTReader
218218

219219
private:
220220
/// \brief The receiver of some callbacks invoked by ASTReader.
221-
llvm::OwningPtr<ASTReaderListener> Listener;
221+
OwningPtr<ASTReaderListener> Listener;
222222

223223
/// \brief The receiver of deserialization events.
224224
ASTDeserializationListener *DeserializationListener;

include/clang/Serialization/Module.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class ModuleFile {
7777

7878
/// \brief The memory buffer that stores the data associated with
7979
/// this AST file.
80-
llvm::OwningPtr<llvm::MemoryBuffer> Buffer;
80+
OwningPtr<llvm::MemoryBuffer> Buffer;
8181

8282
/// \brief The size of this file, in bits.
8383
uint64_t SizeInBits;

include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class AnalysisManager : public BugReporterData {
3838
DiagnosticsEngine &Diags;
3939
const LangOptions &LangInfo;
4040

41-
llvm::OwningPtr<PathDiagnosticConsumer> PD;
41+
OwningPtr<PathDiagnosticConsumer> PD;
4242

4343
// Configurable components creators.
4444
StoreManagerCreator CreateStoreMgr;

include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class CoreEngine {
5858
SubEngine& SubEng;
5959

6060
/// G - The simulation graph. Each node is a (location,state) pair.
61-
llvm::OwningPtr<ExplodedGraph> G;
61+
OwningPtr<ExplodedGraph> G;
6262

6363
/// WList - A set of queued nodes that need to be processed by the
6464
/// worklist algorithm. It is up to the implementation of WList to decide

include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -394,8 +394,8 @@ class ProgramStateManager {
394394
SubEngine *Eng; /* Can be null. */
395395

396396
EnvironmentManager EnvMgr;
397-
llvm::OwningPtr<StoreManager> StoreMgr;
398-
llvm::OwningPtr<ConstraintManager> ConstraintMgr;
397+
OwningPtr<StoreManager> StoreMgr;
398+
OwningPtr<ConstraintManager> ConstraintMgr;
399399

400400
ProgramState::GenericDataMap::Factory GDMFactory;
401401

@@ -407,7 +407,7 @@ class ProgramStateManager {
407407
llvm::FoldingSet<ProgramState> StateSet;
408408

409409
/// Object that manages the data for all created SVals.
410-
llvm::OwningPtr<SValBuilder> svalBuilder;
410+
OwningPtr<SValBuilder> svalBuilder;
411411

412412
/// A BumpPtrAllocator to allocate states.
413413
llvm::BumpPtrAllocator &Alloc;
@@ -773,7 +773,7 @@ class ScanReachableSymbols : public SubRegionMap::Visitor {
773773
VisitedItems visited;
774774
ProgramStateRef state;
775775
SymbolVisitor &visitor;
776-
llvm::OwningPtr<SubRegionMap> SRM;
776+
OwningPtr<SubRegionMap> SRM;
777777
public:
778778

779779
ScanReachableSymbols(ProgramStateRef st, SymbolVisitor& v)

0 commit comments

Comments
 (0)