Searched refs:Clone (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyDebugValueManager.cpp42 MachineInstr *Clone = MF->CloneMachineInstr(DBI); local
43 Clone->getOperand(0).setReg(NewReg);
44 MBB->insert(Insert, Clone);
H A DWebAssemblyRegStackify.cpp541 MachineInstr *Clone = &*std::prev(Insert); local
542 LIS.InsertMachineInstrInMaps(*Clone);
545 imposeStackOrdering(Clone);
547 LLVM_DEBUG(dbgs() << " - Cloned to "; Clone->dump());
573 return Clone;
/freebsd-11-stable/contrib/dialog/samples/
H A Dmenubox1218 Linux:The Great Unix Clone for 386/486
19 NetBSD:Another free Unix Clone for 386/486
H A Deditbox-utf821 ��������������� The Great Unix Clone for 386/486
22 ������������������ Another free Unix Clone for 386/486
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibStdcppUniquePointer.cpp100 m_ptr_obj = ptr_obj->Clone(ConstString("pointer")).get();
104 m_del_obj = del_obj->Clone(ConstString("deleter")).get();
110 m_obj_obj = obj_obj->Clone(ConstString("object")).get();
H A DLibCxxOptional.cpp74 return val_sp->Clone(ConstString(llvm::formatv("Value").str()));
H A DLibStdcppTuple.cpp80 m_members.push_back(value_sp->Clone(ConstString(name.GetString())).get());
H A DLibCxxTuple.cpp80 elem_sp->Clone(ConstString(llvm::formatv("[{0}]", idx).str())).get();
H A DLibCxxVariant.cpp245 return head_value->Clone(ConstString(ConstString("Value").AsCString()));
H A DLibCxxMap.cpp421 potential_child_sp = child0_sp->Clone(ConstString(name.GetString()));
429 potential_child_sp = child0_sp->Clone(ConstString(name.GetString()));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPropagateAttributes.cpp58 class Clone{ class in class:__anon2463::AMDGPUPropagateAttributes
60 Clone(FeatureBitset FeatureMask, Function *OrigF, Function *NewF) : function in class:__anon2463::AMDGPUPropagateAttributes::Clone
70 // Clone functions as needed or just set attributes.
77 SmallVector<Clone, 32> Clones;
83 // Clone function F and set NewFeatures on the clone.
161 for (Clone &C : Clones)
239 Clones.push_back(Clone(CallerBits, &F, NewF));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.h88 /// Clone - Creates a clone of the specified SUnit. It does not copy the
91 SUnit *Clone(SUnit *Old);
H A DScheduleDAGSDNodes.cpp89 SUnit *ScheduleDAGSDNodes::Clone(SUnit *Old) { function in class:ScheduleDAGSDNodes
H A DScheduleDAGFast.cpp208 /// CopyAndMoveSuccessors - Clone the specified node and move its scheduled
349 NewSU = Clone(SU);
H A DScheduleDAGRRList.cpp289 SUnit *NewNode = Clone(N);
1132 /// CopyAndMoveSuccessors - Clone the specified node and move its scheduled
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DExtractFunction.cpp87 std::unique_ptr<Module> Clone = CloneModule(*Program); local
92 Module::iterator RFI = Clone->begin(); // Get iterator to corresponding fn
120 std::unique_ptr<Module> New = runPassesOn(Clone.get(), Passes);
H A DMiscompilation.cpp267 std::unique_ptr<Module> Clone = CloneModule(BD.getProgram(), VMap); local
268 std::unique_ptr<Module> Orig = BD.swapProgramIn(std::move(Clone));
369 // Clone modules, the tester function will free them.
502 std::unique_ptr<Module> Clone = CloneModule(BD.getProgram(), VMap); local
503 std::unique_ptr<Module> Orig = BD.swapProgramIn(std::move(Clone));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMSVCSetupApi.h323 STDMETHOD(Clone)(_Deref_out_opt_ IEnumSetupInstances **ppenum) = 0;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCUDA.cpp781 AttrTy *Clone = Attribute->clone(S.Context);
782 Clone->setInherited(true);
783 FD->addAttr(Clone);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp396 auto *Clone = new (ContentCacheAlloc.Allocate<ContentCache>()) ContentCache;
397 Clone->OrigEntry = Cache->OrigEntry;
398 Clone->ContentsEntry = Cache->ContentsEntry;
399 Clone->BufferOverridden = Cache->BufferOverridden;
400 Clone->IsFileVolatile = Cache->IsFileVolatile;
401 Clone->IsTransient = Cache->IsTransient;
402 Clone->replaceBuffer(Cache->getRawBuffer(), /*DoNotFree*/true);
403 return Clone;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerCompileUnit.h61 DIE *Clone; member in struct:llvm::CompileUnit::DIEInfo
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp545 // Clone `OriginalLoop' and return the result in CLResult. The IR after
1132 BasicBlock *Clone = CloneBasicBlock(BB, Result.Map, Twine(".") + Tag, &F); local
1133 Result.Blocks.push_back(Clone);
1134 Result.Map[BB] = Clone;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp1132 // Clone the call into each predecessor that has a non-null value.
1141 CallInst *Clone = cast<CallInst>( local
1145 Clone->setArgOperand(0, Op);
1146 Clone->insertBefore(InsertPos);
1151 Worklist.push_back(std::make_pair(Clone, Incoming));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp639 /// Clone the body of the original function into a resume function of
1329 auto Clone = Clones[i]; local
1331 CoroCloner(F, "resume." + Twine(i), Shape, Clone, Suspend).create();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObject.h598 virtual lldb::ValueObjectSP Clone(ConstString new_name);

Completed in 156 milliseconds

12