| /freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyRegStackify.cpp | 480 MBB.splice(Insert, &MBB, Def); in MoveForSingleUse() 481 DefDIs.move(Insert); in MoveForSingleUse() 556 DefDIs.move(&*Insert); in RematerializeCheapDef() 594 MBB.splice(Insert, &MBB, Def); in MoveAndTeeForMultiUse() 602 MachineInstr *Tee = BuildMI(MBB, Insert, Insert->getDebugLoc(), in MoveAndTeeForMultiUse() 611 DefDIs.move(Insert); in MoveAndTeeForMultiUse() 630 DefDIs.clone(Insert, TeeReg); in MoveAndTeeForMultiUse() 833 Insert = MoveForSingleUse(Reg, Op, Def, MBB, Insert, LIS, MFI, MRI); in runOnMachineFunction() 835 Insert = in runOnMachineFunction() 840 Insert = MoveAndTeeForMultiUse(Reg, Op, Def, MBB, Insert, LIS, MFI, in runOnMachineFunction() [all …]
|
| H A D | WebAssemblyDebugValueManager.cpp | 26 void WebAssemblyDebugValueManager::move(MachineInstr *Insert) { in move() argument 27 MachineBasicBlock *MBB = Insert->getParent(); in move() 29 MBB->splice(Insert, DBI->getParent(), DBI); in move() 37 void WebAssemblyDebugValueManager::clone(MachineInstr *Insert, in clone() argument 39 MachineBasicBlock *MBB = Insert->getParent(); in clone() 44 MBB->insert(Insert, Clone); in clone()
|
| H A D | WebAssemblyDebugValueManager.h | 31 void move(MachineInstr *Insert); 33 void clone(MachineInstr *Insert, unsigned NewReg);
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | IRBuilder.h | 871 return Insert(Br); in CreateCondBr() 897 return Insert( 1217 return Insert(I, Name); 1227 return Insert(I, Name); 1234 return Insert(I, Name); 1244 return Insert(I, Name); 1251 return Insert(I, Name); 1261 return Insert(I, Name); 1268 return Insert(I, Name); 1278 return Insert(I, Name); [all …]
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | LiveRangeShrink.cpp | 167 MachineInstr *Insert = nullptr; in runOnMachineFunction() local 182 Insert = nullptr; in runOnMachineFunction() 188 Insert = nullptr; in runOnMachineFunction() 202 Insert = FindDominatedInstruction(DefInstr, Insert, IOM); in runOnMachineFunction() 204 Insert = nullptr; in runOnMachineFunction() 211 for (MachineInstr *I = Insert; I && IOM[I] == Barrier; in runOnMachineFunction() 214 Insert = nullptr; in runOnMachineFunction() 218 if (DefMO && Insert && NumEligibleUse > 1 && Barrier <= IOM[Insert]) { in runOnMachineFunction() 219 MachineBasicBlock::iterator I = std::next(Insert->getIterator()); in runOnMachineFunction()
|
| H A D | ExpandMemCmp.cpp | 303 Builder.Insert(CmpBr); in emitLoadCompareByteBlock() 307 Builder.Insert(CmpBr); in emitLoadCompareByteBlock() 412 Builder.Insert(CmpBr); in emitLoadCompareBlockMultipleLoads() 483 Builder.Insert(CmpBr); in emitLoadCompareBlock() 506 Builder.Insert(NewBr); in emitMemCmpResultBlock() 520 Builder.Insert(NewBr); in emitMemCmpResultBlock()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | ManualDWARFIndex.cpp | 263 set.function_fullnames.Insert(ConstString(name), in IndexUnitImpl() 266 set.objc_class_selectors.Insert( in IndexUnitImpl() 271 set.objc_class_selectors.Insert( in IndexUnitImpl() 275 set.function_selectors.Insert(objc_selector_name, in IndexUnitImpl() 286 set.function_methods.Insert(ConstString(name), in IndexUnitImpl() 289 set.function_basenames.Insert(ConstString(name), in IndexUnitImpl() 293 set.function_fullnames.Insert(ConstString(name), in IndexUnitImpl() 325 set.types.Insert(ConstString(mangled_cstr), in IndexUnitImpl() 331 set.namespaces.Insert(ConstString(name), in IndexUnitImpl() 337 set.globals.Insert(ConstString(name), in IndexUnitImpl() [all …]
|
| H A D | NameToDIE.h | 30 void Insert(const lldb_private::ConstString &name, const DIERef &die_ref);
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | CFGUpdate.h | 27 enum class UpdateKind : unsigned char { Insert, Delete }; enumerator 46 OS << (getKind() == UpdateKind::Insert ? "Insert " : "Delete "); in print() 81 Operations[{From, To}] += (U.getKind() == UpdateKind::Insert ? 1 : -1); in LegalizeUpdates() 92 NumInsertions > 0 ? UpdateKind::Insert : UpdateKind::Delete; in LegalizeUpdates()
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | DomTreeUpdater.cpp | 41 if (Kind == DominatorTree::Insert && !HasEdge) in isUpdateValid() 65 const DominatorTree::UpdateType Invert = {Kind != DominatorTree::Insert in applyLazyUpdate() 66 ? DominatorTree::Insert in applyLazyUpdate() 316 assert(isUpdateValid({DominatorTree::Insert, From, To}) && in insertEdge() 335 applyLazyUpdate(DominatorTree::Insert, From, To); in insertEdge() 345 if (!isUpdateValid({DominatorTree::Insert, From, To})) in insertEdgeRelaxed() 356 applyLazyUpdate(DominatorTree::Insert, From, To); in insertEdgeRelaxed() 459 if (U.getKind() == DominatorTree::Insert) in dump()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | SIAnnotateControlFlow.cpp | 228 Instruction *Insert; in handleLoopCondition() local 230 Insert = Parent->getTerminator(); in handleLoopCondition() 232 Insert = L->getHeader()->getFirstNonPHIOrDbgOrLifetime(); in handleLoopCondition() 236 return CallInst::Create(IfBreak, Args, "", Insert); in handleLoopCondition() 241 Instruction *Insert = Cond == BoolTrue ? in handleLoopCondition() local 245 return CallInst::Create(IfBreak, Args, "", Insert); in handleLoopCondition()
|
| H A D | AMDGPUAtomicOptimizer.cpp | 337 Value *const Insert = in optimizeAtomic() local 339 NewV = B.CreateBitCast(Insert, Ty); in optimizeAtomic() 381 B.Insert(NewI); in optimizeAtomic() 410 Value *const Insert = in optimizeAtomic() local 412 BroadcastI = B.CreateBitCast(Insert, Ty); in optimizeAtomic()
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | BlockFrequencyInfoImpl.cpp | 751 LoopData *OuterLoop, std::list<LoopData>::iterator Insert, in createIrreducibleLoop() argument 760 auto Loop = BFI.Loops.emplace(Insert, OuterLoop, Headers.begin(), in createIrreducibleLoop() 774 std::list<LoopData>::iterator Insert) { in analyzeIrreducible() argument 775 assert((OuterLoop == nullptr) == (Insert == Loops.begin())); in analyzeIrreducible() 776 auto Prev = OuterLoop ? std::prev(Insert) : Loops.end(); in analyzeIrreducible() 783 createIrreducibleLoop(*this, G, OuterLoop, Insert, *I); in analyzeIrreducible() 787 return make_range(std::next(Prev), Insert); in analyzeIrreducible() 788 return make_range(Loops.begin(), Insert); in analyzeIrreducible()
|
| /freebsd-12.1/contrib/compiler-rt/lib/asan/ |
| H A D | asan_memory_profile.cc | 42 Insert(id, cv.UsedSize()); in ProcessChunk() 86 void Insert(u32 id, uptr size) { in Insert() function in __asan::HeapProfile
|
| /freebsd-12.1/usr.bin/mail/misc/ |
| H A D | mail.tildehelp | 16 ~i name Insert the value of the named variable 22 ~r !command Insert the output of the command
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | RegBankSelect.h | 321 Insert, enumerator 358 RepairingKind Kind = RepairingKind::Insert); 405 assert(NewKind != RepairingKind::Insert && in switchTo()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | TypeMap.cpp | 43 void TypeMap::Insert(const TypeSP &type_sp) { in Insert() function in TypeMap 60 Insert(type_sp); in InsertUnique()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | UniqueCStringMap.h | 65 void Insert(ConstString unique_cstr, const T &value) { in Insert() function 70 void Insert(const Entry &e) { in Insert() function
|
| H A D | ThreadSafeDenseSet.h | 29 void Insert(_ElementType e) { in Insert() function
|
| H A D | ThreadSafeDenseMap.h | 30 void Insert(_KeyType k, _ValueType v) { in Insert() function
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | Scalarizer.cpp | 263 InsertElementInst *Insert = dyn_cast<InsertElementInst>(V); in operator []() local 264 if (!Insert) in operator []() 266 ConstantInt *Idx = dyn_cast<ConstantInt>(Insert->getOperand(2)); in operator []() 270 V = Insert->getOperand(0); in operator []() 272 CV[J] = Insert->getOperand(1); in operator []() 278 CV[J] = Insert->getOperand(1); in operator []()
|
| H A D | JumpThreading.cpp | 2019 DTU->applyUpdates({{DominatorTree::Insert, NewBB, SuccBB}, in ThreadEdge() 2020 {DominatorTree::Insert, PredBB, NewBB}, in ThreadEdge() 2104 Updates.push_back({DominatorTree::Insert, NewBB, BB}); in SplitBlockPreds() 2107 Updates.push_back({DominatorTree::Insert, Pred, NewBB}); in SplitBlockPreds() 2286 Updates.push_back({DominatorTree::Insert, PredBB, BB}); in DuplicateCondBranchOnPHIIntoPred() 2424 DTU->applyUpdates({{DominatorTree::Insert, NewBB, BB}, in UnfoldSelectInstr() 2425 {DominatorTree::Insert, Pred, NewBB}}); in UnfoldSelectInstr() 2594 Updates.push_back({DominatorTree::Insert, BB, SplitBB}); in TryToUnfoldSelectInCurrBB() 2595 Updates.push_back({DominatorTree::Insert, BB, NewBB}); in TryToUnfoldSelectInCurrBB() 2596 Updates.push_back({DominatorTree::Insert, NewBB, SplitBB}); in TryToUnfoldSelectInCurrBB() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | Memory.cpp | 287 m_reserved_blocks.Insert(free_block, false); in ReserveBlock() 297 m_reserved_blocks.Insert(reserved_block, false); in ReserveBlock() 318 m_free_blocks.Insert(m_reserved_blocks.GetEntryRef(entry_idx), true); in FreeBlock()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| H A D | TypeList.h | 39 void Insert(const lldb::TypeSP &type);
|
| H A D | TypeMap.h | 36 void Insert(const lldb::TypeSP &type);
|