Home
last modified time | relevance | path

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

123

/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyDebugValueManager.cpp294 MachineInstr *Clone = MF->CloneMachineInstr(DV); in sink() local
295 MBB->insert(Insert, Clone); in sink()
296 NewDbgValues.push_back(Clone); in sink()
365 MachineInstr *Clone = MF->CloneMachineInstr(Def); in cloneSink() local
370 Clone->setDebugLoc(DebugLoc()); in cloneSink()
372 Clone->getOperand(0).setReg(NewReg); in cloneSink()
373 MBB->insert(Insert, Clone); in cloneSink()
382 MachineInstr *Clone = MF->CloneMachineInstr(DV); in cloneSink() local
383 MBB->insert(Insert, Clone); in cloneSink()
384 NewDbgValues.push_back(Clone); in cloneSink()
H A DWebAssemblyRegStackify.cpp585 MachineInstr *Clone = getPrevNonDebugInst(&*Insert); in rematerializeCheapDef() local
586 assert(Clone); in rematerializeCheapDef()
587 LIS.InsertMachineInstrInMaps(*Clone); in rematerializeCheapDef()
590 imposeStackOrdering(Clone); in rematerializeCheapDef()
592 LLVM_DEBUG(dbgs() << " - Cloned to "; Clone->dump()); in rematerializeCheapDef()
612 return Clone; in rematerializeCheapDef()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionSpecialization.cpp731 S.Clone = createSpecialization(S.F, S.Sig); in run()
736 << " to call " << S.Clone->getName() << "\n"); in run()
737 Call->setCalledFunction(S.Clone); in run()
740 Clones.push_back(S.Clone); in run()
803 Function *Clone = CloneFunction(F, Mappings); in cloneCandidateFunction() local
804 Clone->setName(F->getName() + ".specialized." + Twine(NSpecs)); in cloneCandidateFunction()
805 removeSSACopy(*Clone); in cloneCandidateFunction()
806 return Clone; in cloneCandidateFunction()
962 Function *Clone = cloneCandidateFunction(F, Specializations.size() + 1); in createSpecialization() local
966 Clone->setLinkage(GlobalValue::InternalLinkage); in createSpecialization()
[all …]
H A DMemProfContextDisambiguation.cpp345 void addClone(ContextNode *Clone) { in addClone()
347 CloneOf->Clones.push_back(Clone); in addClone()
348 Clone->CloneOf = CloneOf; in addClone()
350 Clones.push_back(Clone); in addClone()
351 assert(!Clone->CloneOf); in addClone()
352 Clone->CloneOf = this; in addClone()
2246 for (auto *Clone : Clones) in print() local
2247 OS << FS << Clone; in print()
2479 ContextNode *Clone = NodeOwner.back().get(); in moveEdgeToNewCalleeClone() local
2480 Node->addClone(Clone); in moveEdgeToNewCalleeClone()
[all …]
/freebsd/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 Linux The Great Unix Clone for 386/486
22 NetBSD Another free Unix Clone for 386/486
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibStdcppUniquePointer.cpp98 m_ptr_obj = ptr_obj->Clone(ConstString("pointer")).get(); in Update()
109 m_del_obj = del_obj->Clone(ConstString("deleter")).get(); in Update()
129 m_obj_obj = obj_obj->Clone(ConstString("object")).get(); in GetChildAtIndex()
H A DLibCxxMap.cpp342 auto potential_child_sp = key_val_sp->Clone(ConstString(name.GetString())); in GetChildAtIndex()
349 potential_child_sp = child0_sp->Clone(ConstString(name.GetString())); in GetChildAtIndex()
358 potential_child_sp = child0_sp->Clone(ConstString(name.GetString())); in GetChildAtIndex()
454 key_value_sp = key_value_sp->Clone(ConstString("pair")); in Update()
459 key_value_sp = child0_sp->Clone(ConstString("pair")); in Update()
H A DLibCxxUnorderedMap.cpp345 auto potential_child_sp = key_value_sp->Clone(ConstString("pair")); in Update()
350 potential_child_sp = child0_sp->Clone(ConstString("pair")); in Update()
H A DLibCxxTuple.cpp82 elem_sp->Clone(ConstString(llvm::formatv("[{0}]", idx).str())).get(); in GetChildAtIndex()
H A DLibCxxAtomic.cpp136 return m_real_child->GetSP()->Clone(ConstString("Value")); in GetChildAtIndex()
H A DLibStdcppTuple.cpp80 m_members.push_back(value_sp->Clone(ConstString(name.GetString())).get()); in Update()
H A DGenericOptional.cpp120 return val_sp->Clone(ConstString("Value")); in GetChildAtIndex()
H A DLibStdcpp.cpp392 m_obj_obj = obj_obj->Clone(ConstString("object")).get(); in GetChildAtIndex()
413 m_ptr_obj = ptr_obj_sp->Clone(ConstString("pointer")).get(); in Update()
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h113 virtual ParamIteratorInterface* Clone() const = 0;
136 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {} in ParamIterator()
138 if (this != &other) impl_.reset(other.impl_->Clone());
151 ParamIteratorInterface<T>* clone = impl_->Clone();
243 ParamIteratorInterface<T>* Clone() const override { in Clone() function
329 ParamIteratorInterface<T>* Clone() const override { in Clone() function
872 ParamIteratorInterface<ParamType>* Clone() const override { in GTEST_DISABLE_MSC_WARNINGS_POP_()
985 ParamIteratorInterface<To>* Clone() const override { in Clone() function
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueFileSpecList.cpp163 OptionValueSP OptionValueFileSpecList::Clone() const { in Clone() function in OptionValueFileSpecList
165 return Cloneable::Clone(); in Clone()
/freebsd/tools/tools/drm/radeon/firmwares/
H A DREADME4 1. Clone the following Git repository:
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DCloneable.h44 std::shared_ptr<typename Base::TopmostBase> Clone() const override { in Clone() function
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueFileSpecList.h66 lldb::OptionValueSP Clone() const override;
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinker.cpp1116 if (!RefInfo.Clone) { in cloneDieReferenceAttribute()
1120 RefInfo.Clone = DIE::get(DIEAlloc, dwarf::Tag(RefDie.getTag())); in cloneDieReferenceAttribute()
1122 NewRefDie = RefInfo.Clone; in cloneDieReferenceAttribute()
1200 if (DIE *Clone = Info.Clone) in cloneExpression() local
1201 Offset = Clone->getOffset(); in cloneExpression()
1693 assert(!(Die && Info.Clone) && "Can't supply a DIE and a cloned DIE"); in cloneDIE()
1697 if (!Info.Clone) in cloneDIE()
1698 Info.Clone = DIE::get(DIEAlloc, dwarf::Tag(InputDIE.getTag())); in cloneDIE()
1699 Die = Info.Clone; in cloneDIE()
1897 if (DIE *Clone = cloneDIE(Child, File, Unit, PCOffset, OutOffset, Flags, in cloneDIE() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.h91 SUnit *Clone(SUnit *Old);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp1767 auto *Clone = Clones[Idx]; in splitAsyncCoroutine() local
1769 CoroCloner(F, "resume." + Twine(Idx), Shape, Clone, Suspend, TTI).create(); in splitAsyncCoroutine()
1896 auto Clone = Clones[i]; in splitRetconCoroutine() local
1898 CoroCloner(F, "resume." + Twine(i), Shape, Clone, Suspend, TTI).create(); in splitRetconCoroutine()
1999 for (Function *Clone : Clones) in updateCallGraphAfterCoroutineSplit()
2000 CG.addSplitFunction(N.getFunction(), *Clone); in updateCallGraphAfterCoroutineSplit()
2133 for (Function *Clone : Clones) in run()
2134 UR.CWorklist.insert(CG.lookupSCC(CG.get(*Clone))); in run()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp373 auto *Clone = new (ContentCacheAlloc.Allocate<ContentCache>()) ContentCache; in initializeForReplay() local
374 Clone->OrigEntry = Cache->OrigEntry; in initializeForReplay()
375 Clone->ContentsEntry = Cache->ContentsEntry; in initializeForReplay()
376 Clone->BufferOverridden = Cache->BufferOverridden; in initializeForReplay()
377 Clone->IsFileVolatile = Cache->IsFileVolatile; in initializeForReplay()
378 Clone->IsTransient = Cache->IsTransient; in initializeForReplay()
379 Clone->setUnownedBuffer(Cache->getBufferIfLoaded()); in initializeForReplay()
380 return Clone; in initializeForReplay()

123