| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyDebugValueManager.cpp | 64 MachineInstr *Insert) const { in getSinkableDebugValues() 70 if (Def->getParent() == Insert->getParent()) { in getSinkableDebugValues() 77 if (&*MI == Insert) { in getSinkableDebugValues() 221 MachineInstr *Insert) const { in isInsertSamePlace() 268 if (isInsertSamePlace(Insert)) in sink() 277 getSinkableDebugValues(Insert); in sink() 286 MBB->splice(Insert, Def->getParent(), Def); in sink() 295 MBB->insert(Insert, Clone); in sink() 361 getSinkableDebugValues(Insert); in cloneSink() 373 MBB->insert(Insert, Clone); in cloneSink() [all …]
|
| H A D | WebAssemblyRegStackify.cpp | 358 if (NextI == Insert) in isSafeToMove() 375 !Insert->readsRegister(Reg)) in isSafeToMove() 528 DefDIs.sink(Insert); in moveForSingleUse() 644 DefDIs.sink(Insert); in moveAndTeeForMultiUse() 649 MachineInstr *Tee = BuildMI(MBB, Insert, Insert->getDebugLoc(), in moveAndTeeForMultiUse() 827 if (Insert->isInlineAsm()) in runOnMachineFunction() 831 if (Insert->isDebugValue()) in runOnMachineFunction() 880 Insert = moveForSingleUse(Reg, Use, DefI, MBB, Insert, LIS, MFI, MRI); in runOnMachineFunction() 888 Insert = in runOnMachineFunction() 893 Insert = moveAndTeeForMultiUse(Reg, Use, DefI, MBB, Insert, LIS, MFI, in runOnMachineFunction() [all …]
|
| H A D | WebAssemblyDebugValueManager.h | 33 getSinkableDebugValues(MachineInstr *Insert) const; 34 bool isInsertSamePlace(MachineInstr *Insert) const; 41 void sink(MachineInstr *Insert); 44 void cloneSink(MachineInstr *Insert, Register NewReg = Register(),
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/REPL/Clang/ |
| H A D | ClangREPL.cpp | 30 languages.Insert(lldb::LanguageType::eLanguageTypeC); in Initialize() 31 languages.Insert(lldb::LanguageType::eLanguageTypeC89); in Initialize() 32 languages.Insert(lldb::LanguageType::eLanguageTypeC99); in Initialize() 33 languages.Insert(lldb::LanguageType::eLanguageTypeC11); in Initialize() 34 languages.Insert(lldb::LanguageType::eLanguageTypeC_plus_plus); in Initialize() 35 languages.Insert(lldb::LanguageType::eLanguageTypeC_plus_plus_03); in Initialize() 36 languages.Insert(lldb::LanguageType::eLanguageTypeC_plus_plus_11); in Initialize() 37 languages.Insert(lldb::LanguageType::eLanguageTypeC_plus_plus_14); in Initialize() 38 languages.Insert(lldb::LanguageType::eLanguageTypeObjC); in Initialize() 39 languages.Insert(lldb::LanguageType::eLanguageTypeObjC_plus_plus); in Initialize()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | LiveRangeShrink.cpp | 169 MachineInstr *Insert = nullptr; in runOnMachineFunction() local 184 Insert = nullptr; in runOnMachineFunction() 190 Insert = nullptr; in runOnMachineFunction() 204 Insert = FindDominatedInstruction(DefInstr, Insert, IOM); in runOnMachineFunction() 206 Insert = nullptr; in runOnMachineFunction() 213 for (MachineInstr *I = Insert; I && IOM[I] == Barrier; in runOnMachineFunction() 216 Insert = nullptr; in runOnMachineFunction() 220 if (DefMO && Insert && NumEligibleUse > 1 && Barrier <= IOM[Insert]) { in runOnMachineFunction() 221 MachineBasicBlock::iterator I = std::next(Insert->getIterator()); in runOnMachineFunction()
|
| H A D | ExpandMemCmp.cpp | 394 Builder.Insert(CmpBr); in emitLoadCompareByteBlock() 397 {{DominatorTree::Insert, BB, EndBlock}, in emitLoadCompareByteBlock() 402 Builder.Insert(CmpBr); in emitLoadCompareByteBlock() 404 DTU->applyUpdates({{DominatorTree::Insert, BB, EndBlock}}); in emitLoadCompareByteBlock() 491 Builder.Insert(CmpBr); in emitLoadCompareBlockMultipleLoads() 493 DTU->applyUpdates({{DominatorTree::Insert, BB, ResBlock.BB}, in emitLoadCompareBlockMultipleLoads() 494 {DominatorTree::Insert, BB, NextBB}}); in emitLoadCompareBlockMultipleLoads() 555 Builder.Insert(CmpBr); in emitLoadCompareBlock() 557 DTU->applyUpdates({{DominatorTree::Insert, BB, NextBB}, in emitLoadCompareBlock() 581 Builder.Insert(NewBr); in emitMemCmpResultBlock() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64LoopIdiomTransform.cpp | 492 Builder.Insert(MinItCheckBr); in expandFindMismatch() 538 Builder.Insert(CombinedPageCmpCmpBr); in expandFindMismatch() 568 Builder.Insert(JumpToSVELoop); in expandFindMismatch() 600 Builder.Insert(SVEEarlyExit); in expandFindMismatch() 622 Builder.Insert(SVELoopBranchBack); in expandFindMismatch() 648 Builder.Insert(BranchInst::Create(EndBlock)); in expandFindMismatch() 654 Builder.Insert(BranchInst::Create(LoopStartBlock)); in expandFindMismatch() 680 Builder.Insert(MatchCmpBr); in expandFindMismatch() 693 Builder.Insert(IVCmpBr); in expandFindMismatch() 774 DTU.applyUpdates({{DominatorTree::Insert, CmpBB, FoundBB}, in transformByteCompare() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | IRBuilder.h | 158 return Insert(I, Name); 1131 return Insert(Br); in CreateCondBr() 1205 return Insert( 1536 return Insert(I, Name); 1551 return Insert(I, Name); 1563 return Insert(I, Name); 1578 return Insert(I, Name); 1590 return Insert(I, Name); 1605 return Insert(I, Name); 1617 return Insert(I, Name); [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | ManualDWARFIndex.cpp | 300 set.function_fullnames.Insert(ConstString(name), ref); in IndexUnitImpl() 307 set.function_selectors.Insert(objc_selector_name, ref); in IndexUnitImpl() 318 set.function_methods.Insert(ConstString(name), ref); in IndexUnitImpl() 320 set.function_basenames.Insert(ConstString(name), ref); in IndexUnitImpl() 323 set.function_fullnames.Insert(ConstString(name), ref); in IndexUnitImpl() 333 set.function_fullnames.Insert(ConstString(mangled_cstr), ref); in IndexUnitImpl() 351 set.types.Insert(ConstString(name), ref); in IndexUnitImpl() 353 set.types.Insert(ConstString(mangled_cstr), ref); in IndexUnitImpl() 359 set.namespaces.Insert(ConstString(name), ref); in IndexUnitImpl() 364 set.globals.Insert(ConstString(name), ref); in IndexUnitImpl() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | MatrixUtils.cpp | 53 {DominatorTree::Insert, Header, Body}, in CreateLoop() 54 {DominatorTree::Insert, Body, Latch}, in CreateLoop() 55 {DominatorTree::Insert, Latch, Header}, in CreateLoop() 56 {DominatorTree::Insert, Latch, Exit}, in CreateLoop() 57 {DominatorTree::Insert, Preheader, Header}, in CreateLoop()
|
| H A D | BasicBlockUtils.cpp | 267 Updates.push_back({DominatorTree::Insert, PredBB, SuccOfBB}); in MergeBlockIntoPredecessor() 905 Updates.push_back({DominatorTree::Insert, BB, NewBB}); in ehAwareSplitEdge() 906 Updates.push_back({DominatorTree::Insert, NewBB, Succ}); in ehAwareSplitEdge() 1045 Updates.push_back({DominatorTree::Insert, Old, New}); in SplitBlockImpl() 1111 DTUpdates.push_back({DominatorTree::Insert, New, Old}); in splitBlockBefore() 1151 Updates.push_back({DominatorTree::Insert, NewBB, OldBB}); in UpdateAnalysisInformation() 1155 Updates.push_back({DominatorTree::Insert, Pred, NewBB}); in UpdateAnalysisInformation() 1694 Updates.emplace_back(DominatorTree::Insert, Head, TrueBlock); in SplitBlockAndInsertIfThenElse() 1695 Updates.emplace_back(DominatorTree::Insert, Head, FalseBlock); in SplitBlockAndInsertIfThenElse() 1697 Updates.emplace_back(DominatorTree::Insert, TrueBlock, Tail); in SplitBlockAndInsertIfThenElse() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | CFGUpdate.h | 26 enum class UpdateKind : unsigned char { Insert, Delete }; enumerator 45 OS << (getKind() == UpdateKind::Insert ? "Insert " : "Delete "); in print() 80 Operations[{From, To}] += (U.getKind() == UpdateKind::Insert ? 1 : -1); 91 NumInsertions > 0 ? UpdateKind::Insert : UpdateKind::Delete;
|
| H A D | CFGDiff.h | 100 (U.getKind() == cfg::UpdateKind::Insert) == !ReverseApplyUpdates; 117 (U.getKind() == cfg::UpdateKind::Insert) == !UpdatedAreReverseApplied; in popUpdateForIncrementalUpdates()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIAnnotateControlFlow.cpp | 244 Instruction *Insert; in handleLoopCondition() local 246 Insert = Parent->getTerminator(); in handleLoopCondition() 248 Insert = L->getHeader()->getFirstNonPHIOrDbgOrLifetime(); in handleLoopCondition() 251 return CreateBreak(Insert); in handleLoopCondition() 256 Instruction *Insert = Cond == BoolTrue ? in handleLoopCondition() local 259 return CreateBreak(Insert); in handleLoopCondition() 263 Instruction *Insert = L->getHeader()->getFirstNonPHIOrDbgOrLifetime(); in handleLoopCondition() local 264 return CreateBreak(Insert); in handleLoopCondition()
|
| H A D | AMDGPUUnifyDivergentExitNodes.cpp | 172 Updates.push_back({DominatorTree::Insert, BB, NewRetBlock}); in unifyReturnBlockSet() 242 Updates.push_back({DominatorTree::Insert, BB, DummyReturnBB}); in run() 253 Updates.push_back({DominatorTree::Insert, BB, TransitionBB}); in run() 255 Updates.push_back({DominatorTree::Insert, TransitionBB, Successor}); in run() 263 Updates.push_back({DominatorTree::Insert, BB, DummyReturnBB}); in run() 284 Updates.push_back({DominatorTree::Insert, BB, UnreachableBlock}); in run()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86MachineFunctionInfo.h | 269 auto Insert = PreallocatedIds.insert({CS, PreallocatedIds.size()}); in getPreallocatedIdForCallSite() local 270 if (Insert.second) { in getPreallocatedIdForCallSite() 274 return Insert.first->second; in getPreallocatedIdForCallSite()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_memory_profile.cpp | 40 Insert(id, cv.UsedSize()); in ProcessChunk() 84 void Insert(u32 id, uptr size) { in Insert() function in __asan::HeapProfile
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | MergeICmps.cpp | 620 Lhs = Builder.Insert(FirstCmp.Lhs().GEP->clone()); in mergeComparisons() 624 Rhs = Builder.Insert(FirstCmp.Rhs().GEP->clone()); in mergeComparisons() 645 Instruction *const LhsLoad = Builder.Insert(FirstCmp.Lhs().LoadI->clone()); in mergeComparisons() 646 Instruction *const RhsLoad = Builder.Insert(FirstCmp.Rhs().LoadI->clone()); in mergeComparisons() 676 DTU.applyUpdates({{DominatorTree::Insert, BB, PhiBB}}); in mergeComparisons() 681 DTU.applyUpdates({{DominatorTree::Insert, BB, NextCmpBlock}, in mergeComparisons() 682 {DominatorTree::Insert, BB, PhiBB}}); in mergeComparisons() 711 {DominatorTree::Insert, Pred, NextCmpBlock}}); in simplify()
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | BlockFrequencyInfoImpl.cpp | 775 LoopData *OuterLoop, std::list<LoopData>::iterator Insert, in createIrreducibleLoop() argument 784 auto Loop = BFI.Loops.emplace(Insert, OuterLoop, Headers.begin(), in createIrreducibleLoop() 798 std::list<LoopData>::iterator Insert) { in analyzeIrreducible() argument 799 assert((OuterLoop == nullptr) == (Insert == Loops.begin())); in analyzeIrreducible() 800 auto Prev = OuterLoop ? std::prev(Insert) : Loops.end(); in analyzeIrreducible() 807 createIrreducibleLoop(*this, G, OuterLoop, Insert, *I); in analyzeIrreducible() 811 return make_range(std::next(Prev), Insert); in analyzeIrreducible() 812 return make_range(Loops.begin(), Insert); in analyzeIrreducible()
|
| /freebsd-14.2/contrib/llvm-project/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-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | TypeMap.cpp | 27 void TypeMap::Insert(const TypeSP &type_sp) { in Insert() function in TypeMap 44 Insert(type_sp); in InsertUnique()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang-c/ |
| H A D | Rewrite.h | 31 const char *Insert);
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | ThreadSafeDenseSet.h | 28 void Insert(_ElementType e) { in Insert() function
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | UnicodeNameToCodepoint.cpp | 428 auto Insert = [&](const Node &Node, uint32_t Distance, in nearestMatchesForCodepointName() local 509 const int Insert = Get(I, Row - 1) + 1; in nearestMatchesForCodepointName() local 514 Get(I, Row) = std::min(Insert, std::min(Delete, Replace)); in nearestMatchesForCodepointName() 522 Insert(N, Cost, N.Value); in nearestMatchesForCodepointName()
|