Searched refs:Insert (Results 1 - 25 of 108) sorted by relevance

12345

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyDebugValueManager.cpp26 void WebAssemblyDebugValueManager::move(MachineInstr *Insert) { argument
27 MachineBasicBlock *MBB = Insert->getParent();
29 MBB->splice(Insert, DBI->getParent(), DBI);
37 void WebAssemblyDebugValueManager::clone(MachineInstr *Insert, argument
39 MachineBasicBlock *MBB = Insert->getParent();
44 MBB->insert(Insert, Clone);
H A DWebAssemblyDebugValueManager.h30 void move(MachineInstr *Insert);
32 void clone(MachineInstr *Insert, unsigned NewReg);
H A DWebAssemblyRegStackify.cpp271 static MachineInstr *getVRegDef(unsigned Reg, const MachineInstr *Insert, argument
280 LIS.getInstructionIndex(*Insert)))
313 // Test whether it's safe to move Def to just before Insert.
319 const MachineInstr *Insert, AliasAnalysis &AA,
324 assert(DefI->getParent() == Insert->getParent());
325 assert(UseI->getParent() == Insert->getParent());
359 if (NextI == Insert)
375 // If the register is dead here and at Insert, ignore it.
376 if (MO.isDead() && Insert->definesRegister(Reg) &&
377 !Insert
318 isSafeToMove(const MachineOperand *Def, const MachineOperand *Use, const MachineInstr *Insert, AliasAnalysis &AA, const WebAssemblyFunctionInfo &MFI, const MachineRegisterInfo &MRI) argument
519 moveForSingleUse(unsigned Reg, MachineOperand &Op, MachineInstr *Def, MachineBasicBlock &MBB, MachineInstr *Insert, LiveIntervals &LIS, WebAssemblyFunctionInfo &MFI, MachineRegisterInfo &MRI) argument
564 rematerializeCheapDef( unsigned Reg, MachineOperand &Op, MachineInstr &Def, MachineBasicBlock &MBB, MachineBasicBlock::instr_iterator Insert, LiveIntervals &LIS, WebAssemblyFunctionInfo &MFI, MachineRegisterInfo &MRI, const WebAssemblyInstrInfo *TII, const WebAssemblyRegisterInfo *TRI) argument
632 moveAndTeeForMultiUse( unsigned Reg, MachineOperand &Op, MachineInstr *Def, MachineBasicBlock &MBB, MachineInstr *Insert, LiveIntervals &LIS, WebAssemblyFunctionInfo &MFI, MachineRegisterInfo &MRI, const WebAssemblyInstrInfo *TII) argument
694 TreeWalkerState(MachineInstr *Insert) argument
773 maybeCommute(MachineInstr *Insert, TreeWalkerState &TreeWalker, const WebAssemblyInstrInfo *TII) argument
825 MachineInstr *Insert = &*MII; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveRangeShrink.cpp167 MachineInstr *Insert = nullptr; local
182 Insert = nullptr;
188 Insert = nullptr;
202 Insert = FindDominatedInstruction(DefInstr, Insert, IOM);
204 Insert = nullptr;
210 // after Insert, if yes, then we should not hoist.
211 for (MachineInstr *I = Insert; I && IOM[I] == Barrier;
214 Insert = nullptr;
218 if (DefMO && Insert
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCFGUpdate.h9 // This file defines a CFG Edge Update: Insert or Delete, and two Nodes as the
26 enum class UpdateKind : unsigned char { Insert, Delete }; member in class:llvm::cfg::UpdateKind
45 OS << (getKind() == UpdateKind::Insert ? "Insert " : "Delete ");
80 Operations[{From, To}] += (U.getKind() == UpdateKind::Insert ? 1 : -1);
91 NumInsertions > 0 ? UpdateKind::Insert : UpdateKind::Delete;
H A DCFGDiff.h122 (U.getKind() == cfg::UpdateKind::Insert) == !ReverseApplyUpdates;
139 (U.getKind() == cfg::UpdateKind::Insert) == !UpdatedAreReverseApplied;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h124 /// Insert and return the specified instruction.
126 InstTy *Insert(InstTy *I, const Twine &Name = "") const { function in class:llvm::IRBuilderBase
133 Constant *Insert(Constant *C, const Twine& = "") const { function in class:llvm::IRBuilderBase
137 Value *Insert(Value *V, const Twine &Name = "") const { function in class:llvm::IRBuilderBase
139 return Insert(I, Name);
929 return Insert(ReturnInst::Create(Context));
934 return Insert(ReturnInst::Create(Context, V));
948 return Insert(ReturnInst::Create(Context, V));
953 return Insert(BranchInst::Create(Dest));
961 return Insert(addBranchMetadat
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp245 set.function_fullnames.Insert(ConstString(name), ref);
247 set.objc_class_selectors.Insert(class_name_with_category, ref);
250 set.objc_class_selectors.Insert(class_name_no_category, ref);
252 set.function_selectors.Insert(objc_selector_name, ref);
254 set.function_fullnames.Insert(objc_fullname_no_category_name,
263 set.function_methods.Insert(ConstString(name), ref);
265 set.function_basenames.Insert(ConstString(name), ref);
268 set.function_fullnames.Insert(ConstString(name), ref);
278 set.function_fullnames.Insert(ConstString(mangled_cstr), ref);
296 set.types.Insert(ConstStrin
[all...]
H A DNameToDIE.h29 void Insert(lldb_private::ConstString name, const DIERef &die_ref);
H A DNameToDIE.cpp25 void NameToDIE::Insert(ConstString name, const DIERef &die_ref) { function in class:NameToDIE
H A DUniqueDWARFASTType.h81 void Insert(lldb_private::ConstString name, function in class:UniqueDWARFASTTypeMap
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DThreadSafeDenseSet.h28 void Insert(_ElementType e) { function in class:lldb_private::ThreadSafeDenseSet
H A DThreadSafeDenseMap.h29 void Insert(_KeyType k, _ValueType v) { function in class:lldb_private::ThreadSafeDenseMap
H A DFileSpecList.h167 bool Insert(size_t idx, const FileSpec &file) { function in class:lldb_private::FileSpecList
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MachineFunctionInfo.h201 auto Insert = PreallocatedIds.insert({CS, PreallocatedIds.size()}); local
202 if (Insert.second) {
206 return Insert.first->second;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIAnnotateControlFlow.cpp234 Instruction *Insert; local
236 Insert = Parent->getTerminator();
238 Insert = L->getHeader()->getFirstNonPHIOrDbgOrLifetime();
242 return CallInst::Create(IfBreak, Args, "", Insert);
245 // Insert IfBreak in the loop header TERM for constant COND other than true.
247 Instruction *Insert = Cond == BoolTrue ? local
251 return CallInst::Create(IfBreak, Args, "", Insert);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_memory_profile.cpp41 Insert(id, cv.UsedSize());
85 void Insert(u32 id, uptr size) { function in class:__asan::HeapProfile
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTypeList.h33 void Insert(const lldb::TypeSP &type);
H A DTypeMap.h34 void Insert(const lldb::TypeSP &type);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDomTreeUpdater.cpp42 if (Kind == DominatorTree::Insert && !HasEdge)
263 // existed before. If the first update to an edge is "Insert", it means
266 // For example, if the user submits {{Delete, A, B}, {Insert, A, B}},
275 // edge, so both {Delete, A, B}, {Insert, A, B} actually happened and
278 // actually happened but {Insert, A, B} was an invalid update which never
320 assert(isUpdateValid({DominatorTree::Insert, From, To}) &&
339 PendUpdates.push_back({DominatorTree::Insert, From, To});
349 if (!isUpdateValid({DominatorTree::Insert, From, To}))
360 PendUpdates.push_back({DominatorTree::Insert, From, To});
463 if (U.getKind() == DominatorTree::Insert)
[all...]
H A DBlockFrequencyInfoImpl.cpp768 LoopData *OuterLoop, std::list<LoopData>::iterator Insert,
777 auto Loop = BFI.Loops.emplace(Insert, OuterLoop, Headers.begin(),
791 std::list<LoopData>::iterator Insert) {
792 assert((OuterLoop == nullptr) == (Insert == Loops.begin()));
793 auto Prev = OuterLoop ? std::prev(Insert) : Loops.end();
800 createIrreducibleLoop(*this, G, OuterLoop, Insert, *I);
804 return make_range(std::next(Prev), Insert);
805 return make_range(Loops.begin(), Insert);
766 createIrreducibleLoop( BlockFrequencyInfoImplBase &BFI, const IrreducibleGraph &G, LoopData *OuterLoop, std::list<LoopData>::iterator Insert, const std::vector<const IrreducibleGraph::IrrNode *> &SCC) argument
789 analyzeIrreducible( const IrreducibleGraph &G, LoopData *OuterLoop, std::list<LoopData>::iterator Insert) argument
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DPathMappingList.h52 void Insert(ConstString path, ConstString replacement,
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/ASTDiff/
H A DASTDiff.h31 Insert, // (Src, Dst, Pos): insert Src as child of Dst at offset Pos. enumerator in enum:clang::diff::ChangeKind
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DRegBankSelect.h178 /// Insert \p MI in the just before ::getPoint()
320 Insert, enumerator in enum:llvm::RegBankSelect::RepairingPlacement::RepairingKind
357 RepairingKind Kind = RepairingKind::Insert);
393 /// RepairingKind::Insert. There is no fundamental problem with
396 /// \pre NewKind != RepairingKind::Insert
404 assert(NewKind != RepairingKind::Insert &&
405 "We would need more MI to switch to Insert");
530 /// Insert repairing code for \p Reg as specified by \p ValMapping.
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DTypeMap.cpp27 void TypeMap::Insert(const TypeSP &type_sp) { function in class:TypeMap
44 Insert(type_sp);
69 // types.Insert (pos->second);

Completed in 203 milliseconds

12345