Lines Matching refs:make_unique

138         std::make_unique<GenericLLVMIRPlatform>(*this));  in GenericLLVMIRPlatformSupport()
168 auto Ctx = std::make_unique<LLVMContext>(); in setupJITDylib()
169 auto M = std::make_unique<Module>("__standard_lib", *Ctx); in setupJITDylib()
455 auto Ctx = std::make_unique<LLVMContext>(); in createPlatformRuntimeModule()
456 auto M = std::make_unique<Module>("__standard_lib", *Ctx); in createPlatformRuntimeModule()
751 D = std::make_unique<DynamicThreadPoolTaskDispatcher>(NumThreads); in prepareForConstruction()
753 D = std::make_unique<InPlaceTaskDispatcher>(); in prepareForConstruction()
810 auto ObjLinkingLayer = std::make_unique<ObjectLinkingLayer>(ES); in prepareForConstruction()
813 std::make_unique<EHFrameRegistrationPlugin>( in prepareForConstruction()
938 auto GetMemMgr = []() { return std::make_unique<SectionMemoryManager>(); }; in createObjectLinkingLayer()
940 std::make_unique<RTDyldObjectLinkingLayer>(ES, std::move(GetMemMgr)); in createObjectLinkingLayer()
968 return std::make_unique<ConcurrentIRCompiler>(std::move(JTMB)); in createCompileFunction()
974 return std::make_unique<TMOwningSimpleCompiler>(std::move(*TM)); in createCompileFunction()
985 ES = std::make_unique<ExecutionSession>(std::move(S.EPC)); in LLJIT()
990 ES = std::make_unique<ExecutionSession>(std::move(*EPC)); in LLJIT()
1004 std::make_unique<ObjectTransformLayer>(*ES, *ObjLinkingLayer); in LLJIT()
1012 CompileLayer = std::make_unique<IRCompileLayer>( in LLJIT()
1014 TransformLayer = std::make_unique<IRTransformLayer>(*ES, *CompileLayer); in LLJIT()
1016 std::make_unique<IRTransformLayer>(*ES, *TransformLayer); in LLJIT()
1088 J.setPlatformSupport(std::make_unique<ORCPlatformSupport>(J)); in setUpOrcPlatformManually()
1140 J.setPlatformSupport(std::make_unique<ORCPlatformSupport>(J)); in operator ()()
1206 std::make_unique<GenericLLVMIRPlatformSupport>(J, PlatformJD)); in setUpGenericLLVMIRPlatform()
1214 J.setPlatformSupport(std::make_unique<InactivePlatformSupport>()); in setUpInactivePlatform()
1273 CODLayer = std::make_unique<CompileOnDemandLayer>( in LLLazyJIT()