| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblySortRegion.cpp | 18 const auto *ML = MLI.getLoopFor(MBB); in getRegionFor() local 20 if (!ML && !WE) in getRegionFor() 29 if ((ML && !WE) || (ML && WE && WE->contains(ML->getHeader()))) { in getRegionFor() 31 if (LoopMap.count(ML)) in getRegionFor() 32 return LoopMap[ML].get(); in getRegionFor() 33 LoopMap[ML] = std::make_unique<ConcreteSortRegion<MachineLoop>>(ML); in getRegionFor() 34 return LoopMap[ML].get(); in getRegionFor() 52 MachineBasicBlock *SortRegionInfo::getBottom(const MachineLoop *ML) { in getBottom() argument 53 MachineBasicBlock *Bottom = ML->getHeader(); in getBottom() 54 for (MachineBasicBlock *MBB : ML->blocks()) { in getBottom()
|
| H A D | WebAssemblySortRegion.h | 83 MachineBasicBlock *getBottom(const MachineLoop *ML);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCCTRLoops.cpp | 77 bool processLoop(MachineLoop *ML); 102 for (auto *ML : MLI) { in runOnMachineFunction() local 103 if (ML->isOutermost()) in runOnMachineFunction() 104 Changed |= processLoop(ML); in runOnMachineFunction() 147 for (MachineLoop *I : *ML) in processLoop() 231 expandCTRLoops(ML, Start, Dec); in processLoop() 261 auto PHIMIB = BuildMI(*ML->getHeader(), ML->getHeader()->getFirstNonPHI(), in expandNormalLoops() 274 if (ML->isLoopLatch(Exiting)) { in expandNormalLoops() 288 if (ML->contains(P)) { in expandNormalLoops() 289 assert(ML->isLoopLatch(P) && in expandNormalLoops() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | MoveAutoInit.cpp | 46 MemoryLocation ML; in writeToAlloca() local 48 ML = MemoryLocation::getForDest(MI); in writeToAlloca() 50 ML = MemoryLocation::get(SI); in writeToAlloca() 54 if (isa<AllocaInst>(getUnderlyingObject(ML.Ptr))) in writeToAlloca() 55 return ML; in writeToAlloca() 63 static BasicBlock *usersDominator(const MemoryLocation &ML, Instruction *I, in usersDominator() argument 89 if (AA.getModRefInfo(MI, ML) != ModRefInfo::NoModRef && in usersDominator() 117 std::optional<MemoryLocation> ML = writeToAlloca(I); in runMoveAutoInit() local 118 if (!ML) in runMoveAutoInit() 124 BasicBlock *UsersDominator = usersDominator(ML.value(), &I, DT, MSSA); in runMoveAutoInit()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMBlockPlacement.cpp | 45 bool fixBackwardsWLS(MachineLoop *ML); 46 bool processPostOrderLoops(MachineLoop *ML); 76 static MachineInstr *findWLS(MachineLoop *ML) { in findWLS() argument 77 MachineBasicBlock *Predecessor = ML->getLoopPredecessor(); in findWLS() 154 bool ARMBlockPlacement::fixBackwardsWLS(MachineLoop *ML) { in fixBackwardsWLS() argument 155 MachineInstr *WlsInstr = findWLS(ML); in fixBackwardsWLS() 206 bool ARMBlockPlacement::processPostOrderLoops(MachineLoop *ML) { in processPostOrderLoops() argument 208 for (auto *InnerML : *ML) in processPostOrderLoops() 210 return Changed | fixBackwardsWLS(ML); in processPostOrderLoops() 230 for (auto *ML : *MLI) in runOnMachineFunction() [all …]
|
| H A D | MVETPAndVPTOptimisationsPass.cpp | 72 bool LowerWhileLoopStart(MachineLoop *ML); 73 bool MergeLoopEnd(MachineLoop *ML); 114 MachineBasicBlock *Header = ML->getHeader(); in findLoopComponents() 115 MachineBasicBlock *Latch = ML->getLoopLatch(); in findLoopComponents() 230 << ML->getHeader()->getName() << "\n"); in LowerWhileLoopStart() 334 auto *PreHeader = ML->getLoopPreheader(); in MergeLoopEnd() 338 for (MachineBasicBlock *MBB : ML->blocks()) { in MergeLoopEnd() 454 for (MachineBasicBlock *BB : ML->blocks()) { in ConvertTailPredLoop() 1071 Modified |= LowerWhileLoopStart(ML); in runOnMachineFunction() 1072 Modified |= MergeLoopEnd(ML); in runOnMachineFunction() [all …]
|
| H A D | ARMLowOverheadLoops.cpp | 123 MachineLoop &ML; member in __anon67cf66980111::PostOrderLoopTraversal 130 : ML(ML), MLI(MLI) { } in PostOrderLoopTraversal() 146 if (!ML.contains(Succ)) in ProcessLoop() 159 Search(ML.getHeader()); in ProcessLoop() 366 MachineLoop &ML; member 390 : ML(ML), MLI(MLI), RDA(RDA), TRI(TRI), TII(TII), in LowOverheadLoop() 1029 ML.getExitBlocks(ExitBlocks); in ValidateLiveOuts() 1181 ML->getExitBlocks(Frontier); in ValidateMVEStore() 1321 for (auto *ML : *MLI) { in runOnMachineFunction() 1322 if (ML->isOutermost()) in runOnMachineFunction() [all …]
|
| /freebsd-14.2/contrib/file/magic/Magdir/ |
| H A D | polyml | 16 # Type: Poly/ML saved data 19 0 string POLYSAVE Poly/ML saved state 22 0 string POLYMODU Poly/ML saved module
|
| /freebsd-14.2/usr.bin/tabs/ |
| H A D | tabs.c | 82 const char *cr, *ct, *st, *ML; in main() local 149 ML = tgetstr("ML", &ap); in main() 160 if (ML != NULL) { in main() 162 putp(ML); in main()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/arm/stm32/ |
| H A D | st,mlahb.yaml | 7 title: STMicroelectronics STM32 ML-AHB interconnect 14 These bindings describe the STM32 SoCs ML-AHB interconnect bus which connects
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/ |
| H A D | VarLocBasedImpl.cpp | 430 MachineLoc ML = GetLocForOp(Op); in VarLoc() local 431 auto It = find(Locs, ML); in VarLoc() 433 Locs.push_back(ML); in VarLoc() 520 for (MachineLoc &ML : VL.Locs) in CreateCopyLoc() 521 if (ML == OldML) { in CreateCopyLoc() 522 ML.Kind = MachineLocKind::RegisterKind; in CreateCopyLoc() 523 ML.Value.RegNo = NewReg; in CreateCopyLoc() 534 for (MachineLoc &ML : VL.Locs) in CreateSpillLoc() 535 if (ML == OldML) { in CreateSpillLoc() 536 ML.Kind = MachineLocKind::SpillLocKind; in CreateSpillLoc() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | InlineOrder.cpp | 25 enum class InlinePriorityMode : int { Size, Cost, CostBenefit, ML }; enumerator 36 clEnumValN(InlinePriorityMode::ML, "ml", "Use ML."))); 303 case InlinePriorityMode::ML: in getDefaultInlineOrder()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonGenMux.cpp | 230 MuxInfoList ML; in genMuxInBlock() local 322 ML.push_back(MuxInfo(At, DR, PR, SrcT, SrcF, Def1, Def2)); in genMuxInBlock() 325 for (MuxInfo &MX : ML) { in genMuxInBlock()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | MicrosoftCXXABI.cpp | 265 MethodVFTableLocation ML = in getThisArgumentTypeForMethod() local 274 if (ML.VBase || !ML.VFPtrOffset.isZero()) in getThisArgumentTypeForMethod() 1434 MethodVFTableLocation ML = in getVirtualFunctionPrologueThisAdjustment() local 1436 CharUnits Adjustment = ML.VFPtrOffset; in getVirtualFunctionPrologueThisAdjustment() 1445 if (ML.VBase) { in getVirtualFunctionPrologueThisAdjustment() 1482 MethodVFTableLocation ML = in adjustThisArgumentForVirtualFunctionCall() local 1494 if (ML.VBase) { in adjustThisArgumentForVirtualFunctionCall() 1510 if (ML.VBase) { in adjustThisArgumentForVirtualFunctionCall() 1964 ML.VBase ? ML.VBase : MethodDecl->getParent()), in getVirtualFunctionPointer() 1976 ML.Index * in getVirtualFunctionPointer() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86PreTileConfig.cpp | 136 auto *ML = MLI->getLoopFor(Header); in isLoopBackEdge() local 137 if (ML->contains(Bottom) && ML->isLoopLatch(Bottom)) in isLoopBackEdge()
|
| /freebsd-14.2/contrib/libfido2/.actions/ |
| H A D | llvm.gpg | 41 pbaEdNWxF5Vr1CSjuO5siIlgDjmT655voXo67xVpEN4HhMrxugDJfCa6z97P0+ML
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineLICM.cpp | 536 const MachineLoop *ML = MLI->getLoopFor(BB); in HoistRegionPostRA() local 537 if (ML && ML->getHeader()->isEHPad()) continue; in HoistRegionPostRA() 751 const MachineLoop *ML = MLI->getLoopFor(BB); in HoistOutOfLoop() local 752 if (ML && ML->getHeader()->isEHPad()) in HoistOutOfLoop()
|
| H A D | BranchFolding.cpp | 416 if (MachineLoop *ML = MLI->getLoopFor(&CurMBB)) in SplitMBBAt() local 417 ML->addBasicBlockToLoop(NewMBB, MLI->getBase()); in SplitMBBAt() 1055 MachineLoop *ML; in TailMergeBlocks() local 1068 ML = MLI->getLoopFor(IBB); in TailMergeBlocks() 1069 if (ML && IBB == ML->getHeader()) in TailMergeBlocks() 1097 if (ML != MLI->getLoopFor(PBB)) in TailMergeBlocks()
|
| H A D | MachineCombiner.cpp | 582 const MachineLoop *ML = MLI->getLoopFor(MBB); in combineInstructions() local 681 if (ML && TII->isThroughputPattern(P)) { in combineInstructions()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | MicrosoftMangle.cpp | 159 const MethodVFTableLocation &ML, 767 MethodVFTableLocation ML = in mangleMemberFunctionPointer() local 769 mangleVirtualMemPtrThunk(MD, ML); in mangleMemberFunctionPointer() 770 NVOffset = ML.VFPtrOffset.getQuantity(); in mangleMemberFunctionPointer() 771 VBTableOffset = ML.VBTableIndex * 4; in mangleMemberFunctionPointer() 772 if (ML.VBase) { in mangleMemberFunctionPointer() 821 MethodVFTableLocation ML = in mangleMemberFunctionPointerInClassNTTP() local 823 mangleVirtualMemPtrThunk(MD, ML); in mangleMemberFunctionPointerInClassNTTP() 831 const CXXMethodDecl *MD, const MethodVFTableLocation &ML) { in mangleVirtualMemPtrThunk() argument 3635 const CXXMethodDecl *MD, const MethodVFTableLocation &ML, in mangleVirtualMemPtrThunk() argument [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64SchedA510.td | 449 def : InstRW<[CortexA510Write<4, CortexA510UnitVALU>], (instregex "ML[AS]v(2i32|4i16|8i8)$")>; 450 def : InstRW<[CortexA510Write<4, CortexA510UnitVALU>], (instregex "ML[AS]v(16i8|4i32|8i16)$")>; 451 def : InstRW<[CortexA510Write<4, CortexA510UnitVALU>], (instregex "ML[AS]v(2i32|4i16|4i32|8i16)_ind… 455 def : InstRW<[CortexA510Write<4, CortexA510UnitVALU>], (instregex "[SU]ML[AS]Lv")>; 892 def : InstRW<[CortexA510Write<4, CortexA510UnitVMAC>], (instregex "^ML[AS]_(ZZZI|ZPZZZ)_[BHS]", 893 "^(ML[AS]|MAD|MSB)_ZPmZZ_[BHS]")>; 896 def : InstRW<[CortexA510Write<4, CortexA510UnitVMAC>], (instregex "^ML[AS]_(ZZZI|ZPZZZ)_D", 897 "^(ML[AS]|MAD|MSB)_ZPmZZ_D")>; 900 def : InstRW<[CortexA510Write<4, CortexA510UnitVMAC>], (instregex "^[SU]ML[AS]L[BT]_ZZZ_[HSD]", 901 "^[SU]ML[AS]L[BT]_ZZZI_[SD]")>;
|
| H A D | AArch64SchedA55.td | 439 def : InstRW<[CortexA55WriteMlaVd_4], (instregex "ML[AS]v(2i32|4i16|8i8)$")>; 440 def : InstRW<[CortexA55WriteMlaVq_4], (instregex "ML[AS]v(16i8|4i32|8i16)$")>; 441 def : InstRW<[CortexA55WriteMlaIxVq_4], (instregex "ML[AS]v(2i32|4i16|4i32|8i16)_indexed$")>; 445 def : InstRW<[CortexA55WriteMlaLVq_4], (instregex "[SU]ML[AS]Lv")>;
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
| H A D | JITLink.h | 726 orc::MemLifetime getMemLifetime() const { return ML; } in getMemLifetime() 729 void setMemLifetime(orc::MemLifetime ML) { this->ML = ML; } in setMemLifetime() argument 797 orc::MemLifetime ML = orc::MemLifetime::Standard; variable
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | MemCpyOptimizer.cpp | 553 NeedLift = llvm::any_of(MemLocs, [C, this](const MemoryLocation &ML) { in moveUp() argument 554 return isModOrRefSet(AA->getModRefInfo(C, ML)); in moveUp() 579 auto ML = MemoryLocation::get(C); in moveUp() local 580 if (isModOrRefSet(AA->getModRefInfo(P, ML))) in moveUp() 583 MemLocs.push_back(ML); in moveUp()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ |
| H A D | GVNExpression.h | 298 void setMemoryLeader(const MemoryAccess *ML) { MemoryLeader = ML; } in setMemoryLeader() argument
|