Lines Matching refs:make_unique
41 case ASTDeclList: return llvm::make_unique<ASTDeclListAction>(); in CreateFrontendBaseAction()
42 case ASTDump: return llvm::make_unique<ASTDumpAction>(); in CreateFrontendBaseAction()
43 case ASTPrint: return llvm::make_unique<ASTPrintAction>(); in CreateFrontendBaseAction()
44 case ASTView: return llvm::make_unique<ASTViewAction>(); in CreateFrontendBaseAction()
45 case DumpRawTokens: return llvm::make_unique<DumpRawTokensAction>(); in CreateFrontendBaseAction()
46 case DumpTokens: return llvm::make_unique<DumpTokensAction>(); in CreateFrontendBaseAction()
47 case EmitAssembly: return llvm::make_unique<EmitAssemblyAction>(); in CreateFrontendBaseAction()
48 case EmitBC: return llvm::make_unique<EmitBCAction>(); in CreateFrontendBaseAction()
49 case EmitHTML: return llvm::make_unique<HTMLPrintAction>(); in CreateFrontendBaseAction()
50 case EmitLLVM: return llvm::make_unique<EmitLLVMAction>(); in CreateFrontendBaseAction()
51 case EmitLLVMOnly: return llvm::make_unique<EmitLLVMOnlyAction>(); in CreateFrontendBaseAction()
52 case EmitCodeGenOnly: return llvm::make_unique<EmitCodeGenOnlyAction>(); in CreateFrontendBaseAction()
53 case EmitObj: return llvm::make_unique<EmitObjAction>(); in CreateFrontendBaseAction()
54 case FixIt: return llvm::make_unique<FixItAction>(); in CreateFrontendBaseAction()
55 case GenerateModule: return llvm::make_unique<GenerateModuleAction>(); in CreateFrontendBaseAction()
56 case GeneratePCH: return llvm::make_unique<GeneratePCHAction>(); in CreateFrontendBaseAction()
57 case GeneratePTH: return llvm::make_unique<GeneratePTHAction>(); in CreateFrontendBaseAction()
58 case InitOnly: return llvm::make_unique<InitOnlyAction>(); in CreateFrontendBaseAction()
59 case ParseSyntaxOnly: return llvm::make_unique<SyntaxOnlyAction>(); in CreateFrontendBaseAction()
60 case ModuleFileInfo: return llvm::make_unique<DumpModuleInfoAction>(); in CreateFrontendBaseAction()
61 case VerifyPCH: return llvm::make_unique<VerifyPCHAction>(); in CreateFrontendBaseAction()
82 case PrintDeclContext: return llvm::make_unique<DeclContextPrintAction>(); in CreateFrontendBaseAction()
83 case PrintPreamble: return llvm::make_unique<PrintPreambleAction>(); in CreateFrontendBaseAction()
86 return llvm::make_unique<RewriteIncludesAction>(); in CreateFrontendBaseAction()
87 return llvm::make_unique<PrintPreprocessedAction>(); in CreateFrontendBaseAction()
90 case RewriteMacros: return llvm::make_unique<RewriteMacrosAction>(); in CreateFrontendBaseAction()
91 case RewriteTest: return llvm::make_unique<RewriteTestAction>(); in CreateFrontendBaseAction()
93 case RewriteObjC: return llvm::make_unique<RewriteObjCAction>(); in CreateFrontendBaseAction()
99 return llvm::make_unique<arcmt::MigrateSourceAction>(); in CreateFrontendBaseAction()
104 case RunAnalysis: return llvm::make_unique<ento::AnalysisAction>(); in CreateFrontendBaseAction()
108 case RunPreprocessorOnly: return llvm::make_unique<PreprocessOnlyAction>(); in CreateFrontendBaseAction()
130 Act = llvm::make_unique<FixItRecompile>(std::move(Act)); in CreateFrontendAction()
141 Act = llvm::make_unique<arcmt::CheckAction>(std::move(Act)); in CreateFrontendAction()
144 Act = llvm::make_unique<arcmt::ModifyAction>(std::move(Act)); in CreateFrontendAction()
147 Act = llvm::make_unique<arcmt::MigrateAction>(std::move(Act), in CreateFrontendAction()
155 Act = llvm::make_unique<arcmt::ObjCMigrateAction>(std::move(Act), in CreateFrontendAction()
165 Act = llvm::make_unique<ASTMergeAction>(std::move(Act), in CreateFrontendAction()
217 auto Args = llvm::make_unique<const char*[]>(NumArgs + 2); in ExecuteCompilerInvocation()