| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/ |
| H A D | MSFCommon.h | 43 support::ulittle32_t NumBlocks; member 156 inline uint32_t getNumFpmIntervals(uint32_t BlockSize, uint32_t NumBlocks, in getNumFpmIntervals() argument 164 return divideCeil(NumBlocks - FpmNumber, BlockSize); in getNumFpmIntervals() 169 return divideCeil(NumBlocks, 8 * BlockSize); in getNumFpmIntervals() 175 return getNumFpmIntervals(L.SB->BlockSize, L.SB->NumBlocks,
|
| H A D | MSFBuilder.h | 128 Error allocateBlocks(uint32_t NumBlocks, MutableArrayRef<uint32_t> Blocks);
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SampleProfileInference.cpp | 621 auto Visited = BitVector(NumBlocks(), false); in joinIsolatedComponents() 625 for (uint64_t I = 0; I < NumBlocks(); I++) { in joinIsolatedComponents() 691 auto Distance = std::vector<int64_t>(NumBlocks(), INF); in findShortestPath() 692 auto Parent = std::vector<FlowJump *>(NumBlocks(), nullptr); in findShortestPath() 721 for (uint64_t I = 0; I < NumBlocks(); I++) { in findShortestPath() 759 Params.CostUnlikely / (2 * (NumBlocks() + 1)))); in jumpDistance() 762 return 2 * BaseDistance * (NumBlocks() + 1); in jumpDistance() 765 uint64_t NumBlocks() const { return Func.Blocks.size(); } in NumBlocks() function in __anon5aecd1f00111::FlowAdjuster 828 auto Visited = BitVector(NumBlocks(), false); in findUnknownSubgraph() 926 auto LocalInDegree = std::vector<uint64_t>(NumBlocks(), 0); in isAcyclicSubgraph() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/MSF/ |
| H A D | MSFBuilder.cpp | 103 Error MSFBuilder::allocateBlocks(uint32_t NumBlocks, in allocateBlocks() argument 105 if (NumBlocks == 0) in allocateBlocks() 109 if (NumFreeBlocks < NumBlocks) { in allocateBlocks() 113 uint32_t AllocBlocks = NumBlocks - NumFreeBlocks; in allocateBlocks() 142 } while (--NumBlocks > 0); in allocateBlocks() 286 SB->NumBlocks = FreeBlocks.size(); in generateLayout() 324 while (BI < Layout.SB->NumBlocks) { in commitFpm() 328 (BI < Layout.SB->NumBlocks) ? Layout.FreePageMap.test(BI) : true; in commitFpm() 348 uint64_t FileSize = uint64_t(Layout.SB->BlockSize) * Layout.SB->NumBlocks; in commit()
|
| H A D | MSFCommon.cpp | 50 if (SB.BlockMapAddr >= SB.NumBlocks) in validateSuperBlock() 79 FL.Length = divideCeil(Msf.SB->NumBlocks, 8); in getFpmStreamLayout()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | CompactUnwindSupport.cpp | 45 unsigned NumBlocks = B->getSize() / RecordSize; in splitCompactUnwindBlocks() local 49 << " into " << NumBlocks << " compact unwind record(s)\n"; in splitCompactUnwindBlocks() 61 G.splitBlock(*B, map_range(seq(1U, NumBlocks), [=](Edge::OffsetT Idx) { in splitCompactUnwindBlocks()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
| H A D | Consumed.h | 217 ConsumedBlockInfo(unsigned int NumBlocks, PostOrderCFGView *SortedGraph) in ConsumedBlockInfo() argument 218 : StateMapsArray(NumBlocks), VisitOrder(NumBlocks, 0) { in ConsumedBlockInfo()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerDataFlowTrace.cpp | 64 uint32_t NumBlocks = CoveredBlocks.back(); in AppendCoverage() local 67 if (BB >= NumBlocks) return false; in AppendCoverage() 71 ? Functions.insert({FunctionId, std::vector<uint32_t>(NumBlocks)}) in AppendCoverage() 75 if (Counters.size() != NumBlocks) return false; // wrong number of blocks. in AppendCoverage()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyExceptionInfo.cpp | 285 unsigned NumBlocks = 0; in discoverAndMapException() local 303 NumBlocks += SubE->getBlocksVector().capacity(); in discoverAndMapException() 316 ++NumBlocks; in discoverAndMapException() 325 WE->reserveBlocks(NumBlocks); in discoverAndMapException()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | AnalyzerStatsChecker.cpp | 29 STAT_COUNTER(NumBlocks, "The # of blocks in top level functions"); 101 NumBlocks += total; in checkEndAnalysis()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZLongBranch.cpp | 287 unsigned NumBlocks = MF->size(); in initMBBInfo() local 290 MBBs.resize(NumBlocks); in initMBBInfo() 293 Terminators.reserve(NumBlocks); in initMBBInfo() 296 for (unsigned I = 0; I < NumBlocks; ++I) { in initMBBInfo()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | ThreadSafetyTIL.cpp | 308 unsigned NumBlocks = Exit->topologicalFinalSort(Blocks, 0); in computeNormalForm() local 309 assert(static_cast<size_t>(NumBlocks) == Blocks.size()); in computeNormalForm() 310 (void) NumBlocks; in computeNormalForm()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | GVNSink.cpp | 107 unsigned NumBlocks; member 116 unsigned SplitEdgeCost = (NumOrigBlocks > NumBlocks) ? 2 : 0; in calculateCost() 117 Cost = (NumInstructions * (NumBlocks - 1)) - in calculateCost() 130 OS << "<Candidate Cost=" << C.Cost << " #Blocks=" << C.NumBlocks in operator <<() 716 Cand.NumBlocks = ActivePreds.size(); in analyzeInstructionForSinking()
|
| H A D | ADCE.cpp | 221 auto NumBlocks = F.size(); in initialize() local 225 BlockInfo.reserve(NumBlocks); in initialize()
|
| H A D | MergeICmps.cpp | 747 int NumBlocks) { in getOrderedBlocks() argument 749 std::vector<BasicBlock *> Blocks(NumBlocks); in getOrderedBlocks() 752 for (int BlockIndex = NumBlocks - 1; BlockIndex > 0; --BlockIndex) { in getOrderedBlocks()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | CodeMetrics.h | 58 unsigned NumBlocks = false; member
|
| H A D | BlockFrequencyInfoImpl.h | 1558 const size_t NumBlocks = Blocks.size(); 1559 auto Succs = std::vector<std::vector<std::pair<size_t, Scaled64>>>(NumBlocks); 1560 auto SumProb = std::vector<Scaled64>(NumBlocks); 1563 for (size_t Src = 0; Src < NumBlocks; Src++) { 1588 ProbMatrix = ProbMatrixType(NumBlocks); 1589 for (size_t Src = 0; Src < NumBlocks; Src++) { 1604 for (size_t Src = 0; Src < NumBlocks; Src++) {
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | LiveRangeCalc.cpp | 41 unsigned NumBlocks = MF->getNumBlockIDs(); in resetLiveOutMap() local 43 Seen.resize(NumBlocks); in resetLiveOutMap() 45 Map.resize(NumBlocks); in resetLiveOutMap()
|
| /freebsd/sys/contrib/edk2/Include/Pi/ |
| H A D | PiFirmwareVolume.h | 89 UINT32 NumBlocks; member
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | InstructionSelect.cpp | 186 const size_t NumBlocks = MF.size(); in selectMachineFunction() local 297 if (MF.size() != NumBlocks) { in selectMachineFunction()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | GenericLoopInfoImpl.h | 464 unsigned NumBlocks = 0; in discoverAndMapSubloop() local 480 ++NumBlocks; in discoverAndMapSubloop() 498 NumBlocks += Subloop->getBlocksVector().capacity(); in discoverAndMapSubloop() 511 L->reserveBlocks(NumBlocks); in discoverAndMapSubloop()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
| H A D | Memory.inc | 119 size_t NumBlocks = (NumBytes + Granularity - 1) / Granularity; 132 size_t AllocSize = NumBlocks * Granularity;
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | BlockCoverageInference.cpp | 46 STATISTIC(NumBlocks, "Number of total basic blocks that BCI has processed"); 58 ++NumBlocks; in BlockCoverageInference()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | LinkGraphLinkingLayer.cpp | 325 size_t NumBlocks = 0; in registerDependencies() local 327 NumBlocks += Sec.blocks_size(); in registerDependencies() 328 BlockInfos.reserve(NumBlocks); in registerDependencies()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | PDBFile.cpp | 61 return ContainerLayout.SB->NumBlocks; in getBlockCount() 139 ContainerLayout.FreePageMap.resize(SB->NumBlocks); in parseFileHeaders()
|