Home
last modified time | relevance | path

Searched defs:Block (Results 1 – 25 of 179) sorted by relevance

12345678

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/XRay/
H A DBlockIndexer.h28 struct Block { struct
36 using Index = DenseMap<std::pair<uint64_t, int32_t>, std::vector<Block>>; argument
H A DProfile.h62 struct Block { struct
77 /// Appends a fully-formed Block instance into the Profile. argument
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanCFG.h38 BlockPtrTy Block; variable
53 template <typename T1> static T1 deref(T1 Block, unsigned SuccIdx) { in deref()
68 : Block(Block), SuccessorIdx(Idx) {} in Block() function
78 static VPAllSuccessorsIterator end(BlockPtrTy Block) { in end()
H A DVPlan.cpp152 const VPBlockBase *Block = this; in getEntryBasicBlock() local
159 VPBlockBase *Block = this; in getEntryBasicBlock() local
174 const VPBlockBase *Block = this; in getExitingBasicBlock() local
181 VPBlockBase *Block = this; in getExitingBasicBlock() local
895 for (const VPBlockBase *Block : vp_depth_first_shallow(getEntry())) { in print() local
987 Twine VPlanPrinter::getUID(const VPBlockBase *Block) { in getUID()
992 Twine VPlanPrinter::getOrCreateName(const VPBlockBase *Block) { in getOrCreateName()
1025 for (const VPBlockBase *Block : vp_depth_first_shallow(Plan.getEntry())) in dump() local
1031 void VPlanPrinter::dumpBlock(const VPBlockBase *Block) { in dumpBlock()
1057 void VPlanPrinter::dumpEdges(const VPBlockBase *Block) { in dumpEdges()
[all …]
/freebsd-14.2/sbin/dump/
H A Dcache.c35 typedef struct Block { struct
36 struct Block *b_HNext; /* must be first field */ argument
39 } Block; argument
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugLinesSubsection.h107 struct Block { struct
108 Block(uint32_t ChecksumBufferOffset) in Block() argument
124 void createBlock(StringRef FileName); argument
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafetyTIL.cpp169 for (auto *Block : successors()) in topologicalSort() local
262 for (auto *Block : Blocks) in renumberInstrs() local
305 for (auto *Block : Blocks) in computeNormalForm() local
318 for (auto *Block : Blocks.reverse()) { in computeNormalForm() local
324 for (auto *Block : Blocks) { in computeNormalForm() local
329 for (auto *Block : Blocks.reverse()) { in computeNormalForm() local
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSampleProfileInference.cpp626 auto &Block = Func.Blocks[I]; in joinIsolatedComponents() local
874 for (auto *Block : UnknownBlocks) { in canRebalanceSubgraph() local
935 for (auto *Block : UnknownBlocks) { in isAcyclicSubgraph() local
994 for (auto *Block : UnknownBlocks) { in rebalanceUnknownSubgraph() local
1076 auto &Block = Func.Blocks[B]; in initializeNetwork() local
1214 auto &Block = Func.Blocks[B]; in extractWeights() local
1233 for (auto &Block : Func.Blocks) { in verifyInput() local
1241 for (auto &Block : Func.Blocks) { in verifyInput() local
1246 for (auto &Block : Func.Blocks) { in verifyInput() local
1270 auto &Block = Func.Blocks[I]; in verifyOutput() local
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DGenericCycleImpl.h188 void GenericCycleInfo<ContextT>::addBlockToCycle(BlockT *Block, CycleT *Cycle) { in addBlockToCycle()
259 BlockT *Block = Worklist.pop_back_val(); in run() local
323 BlockT *Block = TraverseStack.back(); in dfs() local
441 unsigned GenericCycleInfo<ContextT>::getCycleDepth(const BlockT *Block) const { in getCycleDepth()
503 BlockT *Block = Entry.first; in validateTree() local
H A DGenericCycleInfo.h85 void appendEntry(BlockT *Block) { Entries.push_back(Block); } in appendEntry()
86 void appendBlock(BlockT *Block) { Blocks.insert(Block); } in appendBlock()
106 bool isEntry(const BlockT *Block) const { in isEntry()
111 bool contains(const BlockT *Block) const { return Blocks.contains(Block); } in contains()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.cpp1257 SIScheduleBlock *Block = CurrentBlocks[i]; in topologicalSort() local
1268 SIScheduleBlock *Block = CurrentBlocks[i]; in topologicalSort() local
1281 SIScheduleBlock *Block = CurrentBlocks[i]; in topologicalSort() local
1302 SIScheduleBlock *Block = CurrentBlocks[i]; in scheduleInsideBlocks() local
1349 SIScheduleBlock *Block = CurrentBlocks[i]; in scheduleInsideBlocks() local
1455 SIScheduleBlock *Block = Blocks[i]; in SIScheduleBlockScheduler() local
1462 SIScheduleBlock *Block = Blocks[i]; in SIScheduleBlockScheduler() local
1477 SIScheduleBlock *Block = Blocks[ID]; in SIScheduleBlockScheduler() local
1509 SIScheduleBlock *Block = Blocks[i]; in SIScheduleBlockScheduler() local
1515 while (SIScheduleBlock *Block = pickBlock()) { in SIScheduleBlockScheduler() local
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DHTMLLogger.cpp153 const CFGBlock *Block; member
240 static std::string blockID(unsigned Block) { in blockID()
243 static std::string eltID(unsigned Block, unsigned Element) { in eltID()
246 static std::string iterID(unsigned Block, unsigned Iter) { in iterID()
249 static std::string elementIterID(unsigned Block, unsigned Iter, in elementIterID()
261 unsigned Block = Iters.back().Block->getBlockID(); in recordState() local
411 for (const auto *Block : CFG->getCFG()) { in writeCode() local
491 for (const auto *Block : CFG) { in buildCFGDot() local
H A DControlFlowContext.cpp31 for (const CFGBlock *Block : Cfg) { in buildStmtToBasicBlockMap() local
54 const CFGBlock *Block = BlocksToVisit.back(); in findReachableBlocks() local
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordHelpers.cpp36 BlockSym Block = createRecord<BlockSym>(Sym); in getScopeEndOffset() local
67 BlockSym Block = createRecord<BlockSym>(Sym); in getScopeParentOffset() local
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h50 std::pair<std::nullopt_t, bool> insert(const CFGBlock *Block) { in insert()
67 bool alreadySet(const CFGBlock *Block) { in alreadySet()
H A DCalledOnceCheck.h99 handleBlockThatIsGuaranteedToBeCalledOnce(const BlockDecl *Block) {} in handleBlockThatIsGuaranteedToBeCalledOnce()
105 virtual void handleBlockWithNoGuarantees(const BlockDecl *Block) {} in handleBlockWithNoGuarantees()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_allocator.h166 struct Block { struct
168 static constexpr auto Size = nearest_boundary(N, kCacheLineSize);
169 void *Data;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamWriter.h59 struct Block { struct
63 Block(unsigned PCS, size_t SSW) : PrevCodeSize(PCS), StartSizeWord(SSW) {} in Block() argument
H A DBitstreamReader.h365 struct Block { struct
369 explicit Block(unsigned PCS) : PrevCodeSize(PCS) {} in Block() argument
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_dense_alloc.h120 struct Block { struct
125 Block *MapBlock(IndexT idx) { return reinterpret_cast<Block *>(Map(idx)); } in MapBlock() argument
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZLongBranch.cpp183 MBBInfo &Block) { in skipNonTerminators()
297 MBBInfo &Block = MBBs[I]; in initMBBInfo() local
359 for (auto &Block : MBBs) { in setWorstCaseAddresses() local
460 for (auto &Block : MBBs) { in relaxBranches() local
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/
H A DAnalysisDeclContext.h217 enum ContextKind { StackFrame, Block }; enumerator
306 const CFGBlock *Block; variable
317 const Stmt *S, const CFGBlock *Block, unsigned BlockCount, in StackFrameContext()
339 const CFGBlock *Block, unsigned BlockCount, in Profile()
478 const Stmt *S, const CFGBlock *Block, in getStackFrame()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DDebugInfoSupport.cpp41 for (auto Block : Sec.blocks()) { in preserveDWARFSection() local
60 for (auto *Block : SecBlocks) { in getSectionData() local
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DLexicalScopes.cpp170 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope)) in getOrCreateRegularScope() local
198 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope)) in getOrCreateInlinedScope() local
221 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope)) in getOrCreateAbstractScope() local
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DDescriptor.cpp22 static void ctorTy(Block *, std::byte *Ptr, bool, bool, bool, in ctorTy() argument
28 static void dtorTy(Block *, std::byte *Ptr, const Descriptor *) { in dtorTy() argument
33 static void moveTy(Block *, const std::byte *Src, std::byte *Dst, in moveTy() argument
41 static void ctorArrayTy(Block *, std::byte *Ptr, bool, bool, bool, in ctorArrayTy() argument
52 static void dtorArrayTy(Block *, std::byte *Ptr, const Descriptor *D) { in dtorArrayTy() argument
64 static void moveArrayTy(Block *, const std::byte *Src, std::byte *Dst, in moveArrayTy() argument

12345678