Home
last modified time | relevance | path

Searched refs:Clone (Results 1 – 25 of 99) sorted by relevance

1234

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/deltas/
H A DDelta.cpp143 std::unique_ptr<Module> Clone = CloneModule(*Test.getProgram()); in runDeltaPass() local
145 ExtractChunksFromModule(CurrentChunks, Clone.get()); in runDeltaPass()
148 if (verifyModule(*Clone.get(), &errs())) { in runDeltaPass()
164 if (!isReduced(*Clone, Test, CurrentFilepath)) { in runDeltaPass()
172 ReducedProgram = std::move(Clone); in runDeltaPass()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
H A Decho.cpp64 LLVMTypeRef Clone(LLVMValueRef Src) { in Clone() function
65 return Clone(LLVMTypeOf(Src)); in Clone()
68 LLVMTypeRef Clone(LLVMTypeRef Src) { in Clone() function
99 Params[i] = Clone(Params[i]); in Clone()
102 LLVMTypeRef FunTy = LLVMFunctionType(Clone(LLVMGetReturnType(Src)), in Clone()
124 Elts.push_back(Clone(LLVMStructGetTypeAtIndex(Src, i))); in Clone()
134 Clone(LLVMGetElementType(Src)), in Clone()
139 Clone(LLVMGetElementType(Src)), in Clone()
144 Clone(LLVMGetElementType(Src)), in Clone()
148 return LLVMScalableVectorType(Clone(LLVMGetElementType(Src)), in Clone()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyDebugValueManager.cpp76 MachineInstr *Clone = MF->CloneMachineInstr(DBI); in clone() local
77 for (auto &MO : Clone->getDebugOperandsForReg(CurrentReg)) in clone()
79 MBB->insert(Insert, Clone); in clone()
H A DWebAssemblyRegStackify.cpp571 MachineInstr *Clone = &*std::prev(Insert); in rematerializeCheapDef() local
572 LIS.InsertMachineInstrInMaps(*Clone); in rematerializeCheapDef()
575 imposeStackOrdering(Clone); in rematerializeCheapDef()
577 LLVM_DEBUG(dbgs() << " - Cloned to "; Clone->dump()); in rematerializeCheapDef()
603 return Clone; in rematerializeCheapDef()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUPropagateAttributes.cpp101 class Clone { class in __anon0f7074c60111::AMDGPUPropagateAttributes
103 Clone(const FnProperties &Props, Function *OrigF, Function *NewF) : in Clone() function in __anon0f7074c60111::AMDGPUPropagateAttributes::Clone
120 SmallVector<Clone, 32> Clones;
206 for (Clone &C : Clones) in findFunction()
284 Clones.push_back(Clone(CallerProps, &F, NewF)); in process()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h105 virtual ParamIteratorInterface* Clone() const = 0;
128 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {} in ParamIterator()
131 impl_.reset(other.impl_->Clone());
144 ParamIteratorInterface<T>* clone = impl_->Clone();
234 ParamIteratorInterface<T>* Clone() const override { in Clone() function
321 ParamIteratorInterface<T>* Clone() const override { in Clone() function
797 ParamIteratorInterface<ParamType>* Clone() const override { in Clone() function
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dcomcat.d24 HRESULT Clone(LPENUMGUID*);
72 HRESULT Clone(LPENUMCATEGORYINFO*);
H A Ddocobj.d111 HRESULT Clone(LPOLEINPLACESITE, IOleDocumentView*);
118 HRESULT Clone(IEnumOleDocumentViews*);
H A Docidl.d272 HRESULT Clone(LPENUMCONNECTIONPOINTS*);
289 HRESULT Clone(LPENUMCONNECTIONS*);
355 HRESULT Clone(IFont*);
450 HRESULT Clone(IEnumOleUndoUnits*);
H A Dobjidl.d515 HRESULT Clone(IEnumFORMATETC*);
522 HRESULT Clone(IEnumHLITEM*);
529 HRESULT Clone(IEnumSTATDATA*);
536 HRESULT Clone(IEnumSTATPROPSETSTG*);
543 HRESULT Clone(IEnumSTATPROPSTG*);
550 HRESULT Clone(IEnumSTATSTG*);
557 HRESULT Clone(IEnumString*);
564 HRESULT Clone(IEnumMoniker*);
572 HRESULT Clone(IEnumUnknown*);
589 HRESULT Clone(LPSTREAM*);
H A Doleidl.d96 HRESULT Clone(IEnumOLEVERB*);
/netbsd-src/external/apache2/llvm/dist/llvm/tools/bugpoint/
H A DExtractFunction.cpp87 std::unique_ptr<Module> Clone = CloneModule(*Program); in deleteInstructionFromProgram() local
92 Module::iterator RFI = Clone->begin(); // Get iterator to corresponding fn in deleteInstructionFromProgram()
120 std::unique_ptr<Module> New = runPassesOn(Clone.get(), Passes); in deleteInstructionFromProgram()
H A DMiscompilation.cpp267 std::unique_ptr<Module> Clone = CloneModule(BD.getProgram(), VMap); in TestFuncs() local
268 std::unique_ptr<Module> Orig = BD.swapProgramIn(std::move(Clone)); in TestFuncs()
504 std::unique_ptr<Module> Clone = CloneModule(BD.getProgram(), VMap); in TestFuncs() local
505 std::unique_ptr<Module> Orig = BD.swapProgramIn(std::move(Clone)); in TestFuncs()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp900 if (!RefInfo.Clone) { in cloneDieReferenceAttribute()
904 RefInfo.Clone = DIE::get(DIEAlloc, dwarf::Tag(RefDie.getTag())); in cloneDieReferenceAttribute()
906 NewRefDie = RefInfo.Clone; in cloneDieReferenceAttribute()
979 if (DIE *Clone = Info.Clone) in cloneExpression() local
980 Offset = Clone->getOffset(); in cloneExpression()
1347 assert(!(Die && Info.Clone) && "Can't supply a DIE and a cloned DIE"); in cloneDIE()
1351 if (!Info.Clone) in cloneDIE()
1352 Info.Clone = DIE::get(DIEAlloc, dwarf::Tag(InputDIE.getTag())); in cloneDIE()
1353 Die = Info.Clone; in cloneDIE()
1516 if (DIE *Clone = cloneDIE(Child, File, Unit, StringPool, PCOffset, in cloneDIE() local
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-format-vs/ClangFormat/
H A DClangFormatPackage.cs44 public OptionPageGrid Clone() in Clone() method in LLVM.ClangFormat.OptionPageGrid
279 var optionsWithNoFallbackStyle = GetUserOptions().Clone(); in OnBeforeSave()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DSourceManager.cpp365 auto *Clone = new (ContentCacheAlloc.Allocate<ContentCache>()) ContentCache; in initializeForReplay() local
366 Clone->OrigEntry = Cache->OrigEntry; in initializeForReplay()
367 Clone->ContentsEntry = Cache->ContentsEntry; in initializeForReplay()
368 Clone->BufferOverridden = Cache->BufferOverridden; in initializeForReplay()
369 Clone->IsFileVolatile = Cache->IsFileVolatile; in initializeForReplay()
370 Clone->IsTransient = Cache->IsTransient; in initializeForReplay()
371 Clone->setUnownedBuffer(Cache->getBufferIfLoaded()); in initializeForReplay()
372 return Clone; in initializeForReplay()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.h91 SUnit *Clone(SUnit *Old);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCUDA.cpp885 AttrTy *Clone = Attribute->clone(S.Context); in copyAttrIfPresent() local
886 Clone->setInherited(true); in copyAttrIfPresent()
887 FD->addAttr(Clone); in copyAttrIfPresent()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DMSVCSetupApi.h323 STDMETHOD(Clone)(_Deref_out_opt_ IEnumSetupInstances **ppenum) = 0;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp1614 auto *Clone = Clones[Idx]; in splitAsyncCoroutine() local
1616 CoroCloner(F, "resume." + Twine(Idx), Shape, Clone, Suspend).create(); in splitAsyncCoroutine()
1745 auto Clone = Clones[i]; in splitRetconCoroutine() local
1747 CoroCloner(F, "resume." + Twine(i), Shape, Clone, Suspend).create(); in splitRetconCoroutine()
1840 for (Function *Clone : Clones) in updateCallGraphAfterCoroutineSplit()
1841 CG.addSplitFunction(N.getFunction(), *Clone); in updateCallGraphAfterCoroutineSplit()
/netbsd-src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/
H A DUnitTests.cs72 byte[] arr2 = (byte[])arr.Clone(); in BlockPutGet()
/netbsd-src/external/gpl3/gdb/dist/zlib/contrib/dotzlib/DotZLib/
H A DUnitTests.cs72 byte[] arr2 = (byte[])arr.Clone(); in BlockPutGet()
/netbsd-src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/
H A DUnitTests.cs72 byte[] arr2 = (byte[])arr.Clone(); in BlockPutGet()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerCompileUnit.h61 DIE *Clone; member
/netbsd-src/external/mit/libuv/dist/docs/src/guide/
H A Dintroduction.rst57 Clone or Download libuv_, then build it::

1234