Home
last modified time | relevance | path

Searched refs:BlockID (Results 1 – 25 of 26) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBlockCounter.cpp25 unsigned BlockID; member in __anonad3bade50111::CountKey
29 : CallSite(CS), BlockID(ID) {} in CountKey()
32 return (CallSite == RHS.CallSite) && (BlockID == RHS.BlockID); in operator ==()
36 return std::tie(CallSite, BlockID) < std::tie(RHS.CallSite, RHS.BlockID); in operator <()
41 ID.AddInteger(BlockID); in Profile()
58 unsigned BlockID) const { in getNumVisited()
60 CountMap::data_type* T = M.lookup(CountKey(CallSite, BlockID)); in getNumVisited()
75 unsigned BlockID) { in IncrementCount() argument
77 CountKey(CallSite, BlockID), in IncrementCount()
78 BC.getNumVisited(CallSite, BlockID)+1).getRoot()); in IncrementCount()
H A DWorkList.cpp139 using BlockID = unsigned; typedef in __anon126612d90311::UnexploredFirstStack
140 using LocIdentifier = std::pair<BlockID, const StackFrameContext *>;
194 using BlockID = unsigned; typedef in __anon126612d90411::UnexploredFirstPriorityQueue
195 using LocIdentifier = std::pair<BlockID, const StackFrameContext *>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DThreadSafetyTIL.cpp174 BlockID = --ID; in topologicalSort()
175 Blocks[BlockID] = this; in topologicalSort()
200 BlockID = ID++; in topologicalFinalSort()
201 Blocks[BlockID] = this; in topologicalFinalSort()
213 if (Pred->BlockID >= BlockID) continue; in computeDominator()
222 if (Candidate->BlockID > Alternate->BlockID) in computeDominator()
240 if (Succ->BlockID <= BlockID) continue; in computePostDominator()
249 if (Candidate->BlockID < Alternate->BlockID) in computePostDominator()
298 Blocks[NI]->BlockID = NI; in computeNormalForm()
H A DUninitializedValues.cpp635 unsigned BlockID = Block->getBlockID(); in getUninitUse() local
637 if (SuccsVisited[BlockID] && SuccsVisited[BlockID] < Block->succ_size() && in getUninitUse()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
H A DBitstreamWriter.h71 unsigned BlockID; member
270 BlockInfo *getBlockInfo(unsigned BlockID) { in getBlockInfo() argument
272 if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID) in getBlockInfo()
277 if (BlockInfoRecords[i].BlockID == BlockID) in getBlockInfo()
282 void EnterSubblock(unsigned BlockID, unsigned CodeLen) { in EnterSubblock() argument
286 EmitVBR(BlockID, bitc::BlockIDWidth); in EnterSubblock()
305 if (BlockInfo *Info = getBlockInfo(BlockID)) in EnterSubblock()
591 void SwitchToBlockID(unsigned BlockID) { in SwitchToBlockID() argument
592 if (BlockInfoCurBID == BlockID) return; in SwitchToBlockID()
594 V.push_back(BlockID); in SwitchToBlockID()
[all …]
H A DBitstreamReader.h43 unsigned BlockID = 0; member
55 const BlockInfo *getBlockInfo(unsigned BlockID) const { in getBlockInfo() argument
57 if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID) in getBlockInfo()
62 if (BlockInfoRecords[i].BlockID == BlockID) in getBlockInfo()
67 BlockInfo &getOrCreateBlockInfo(unsigned BlockID) { in getOrCreateBlockInfo() argument
68 if (const BlockInfo *BI = getBlockInfo(BlockID)) in getOrCreateBlockInfo()
73 BlockInfoRecords.back().BlockID = BlockID; in getOrCreateBlockInfo()
498 Error EnterSubBlock(unsigned BlockID, unsigned *NumWordsP = nullptr);
/netbsd-src/sys/dev/raidframe/
H A Drf_declusterPQ.c285 RF_StripeNum_t BlockID, BlockOffset, RepIndex; in rf_MapSectorDeclusteredPQ() local
303 BlockID = TableOffset / info->PUsPerBlock; in rf_MapSectorDeclusteredPQ()
304 BlockOffset = TableOffset - BlockID * info->PUsPerBlock; in rf_MapSectorDeclusteredPQ()
305 BlockID %= info->BlocksPerTable; in rf_MapSectorDeclusteredPQ()
321 *col = info->LayoutTable[BlockID][BlockOffset]; in rf_MapSectorDeclusteredPQ()
325 …rf_remap_to_spare_space(layoutPtr, info, FullTableID, TableID, BlockID, (base_suid) ? 1 : 0, Spare… in rf_MapSectorDeclusteredPQ()
332 outSU += info->OffsetTable[BlockID][BlockOffset] * layoutPtr->SUsPerPU; /* offs to the PU */ in rf_MapSectorDeclusteredPQ()
352 RF_StripeNum_t BlockID, RepIndex; in rf_MapParityDeclusteredPQ() local
371 BlockID = TableOffset / info->PUsPerBlock; in rf_MapParityDeclusteredPQ()
372 BlockID %= info->BlocksPerTable; in rf_MapParityDeclusteredPQ()
[all …]
H A Drf_decluster.c325 RF_StripeNum_t BlockID, BlockOffset, RepIndex; in rf_MapSectorDeclustered() local
342 BlockID = TableOffset / info->PUsPerBlock; in rf_MapSectorDeclustered()
343 BlockOffset = TableOffset - BlockID * info->PUsPerBlock; in rf_MapSectorDeclustered()
344 BlockID %= info->BlocksPerTable; in rf_MapSectorDeclustered()
348 *col = info->LayoutTable[BlockID][BlockOffset]; in rf_MapSectorDeclustered()
353 …rf_remap_to_spare_space(layoutPtr, info, FullTableID, TableID, BlockID, (base_suid) ? 1 : 0, Spare… in rf_MapSectorDeclustered()
360 outSU += info->OffsetTable[BlockID][BlockOffset] * layoutPtr->SUsPerPU; /* offs to the PU */ in rf_MapSectorDeclustered()
383 RF_StripeNum_t BlockID, RepIndex; in rf_MapParityDeclustered() local
404 BlockID = TableOffset / info->PUsPerBlock; in rf_MapParityDeclustered()
405 BlockID %= info->BlocksPerTable; in rf_MapParityDeclustered()
[all …]
H A Drf_decluster.h129 RF_StripeNum_t TableID, RF_SectorNum_t BlockID, RF_StripeNum_t base_suid,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp24 static Optional<const char *> GetBlockName(unsigned BlockID, in GetBlockName() argument
28 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) { in GetBlockName()
29 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) in GetBlockName()
36 BlockInfo.getBlockInfo(BlockID)) { in GetBlockName()
44 switch (BlockID) { in GetBlockName()
87 static Optional<const char *> GetCodeName(unsigned CodeID, unsigned BlockID, in GetCodeName() argument
91 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) { in GetCodeName()
92 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) { in GetCodeName()
109 BlockInfo.getBlockInfo(BlockID)) { in GetCodeName()
121 switch (BlockID) { in GetCodeName()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DTestAfterDivZeroChecker.cpp29 unsigned BlockID; member in __anon2a84e2e30111::ZeroState
34 : ZeroSymbol(S), BlockID(B), SFC(SFC) {} in ZeroState()
39 return BlockID == X.BlockID && SFC == X.SFC && ZeroSymbol == X.ZeroSymbol; in operator ==()
43 if (BlockID != X.BlockID) in operator <()
44 return BlockID < X.BlockID; in operator <()
51 ID.AddInteger(BlockID); in Profile()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBlockCounter.h38 unsigned BlockID) const;
49 unsigned BlockID);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Remarks/
H A DBitstreamRemarkParser.cpp157 static Error parseBlock(T &ParserHelper, unsigned BlockID, in parseBlock() argument
163 if (Next->Kind != BitstreamEntry::SubBlock || Next->ID != BlockID) in parseBlock()
168 if (Stream.EnterSubBlock(BlockID)) in parseBlock()
248 static Expected<bool> isBlock(BitstreamCursor &Stream, unsigned BlockID) { in isBlock() argument
257 Result = Next->ID == BlockID; in isBlock()
H A DBitstreamRemarkSerializer.cpp35 static void initBlock(unsigned BlockID, BitstreamWriter &Bitstream, in initBlock() argument
38 R.push_back(BlockID); in initBlock()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
H A DBitcodeAnalyzer.h94 Error parseBlock(unsigned BlockID, unsigned IndentLevel,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DELF.cpp651 for (uint32_t BlockID = 0; !ULEBSizeErr && Cur && (BlockID < NumBlocks); in decodeBBAddrMap() local
652 ++BlockID) { in decodeBBAddrMap()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DRemarks.rst469 <Meta BlockID=8 NumWords=13 BlockCodeSize=3>
480 <Meta BlockID=8 NumWords=3 BlockCodeSize=3>
484 <Remark BlockID=9 NumWords=8 BlockCodeSize=4>
496 <Meta BlockID=8 NumWords=15 BlockCodeSize=3>
501 <Remark BlockID=9 NumWords=8 BlockCodeSize=4>
/netbsd-src/external/apache2/llvm/dist/clang/lib/APINotes/
H A DAPINotesFormat.h38 enum BlockID { enum
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitstream/Reader/
H A DBitstreamReader.cpp21 Error BitstreamCursor::EnterSubBlock(unsigned BlockID, unsigned *NumWordsP) { in EnterSubBlock() argument
29 BlockInfo->getBlockInfo(BlockID)) { in EnterSubBlock()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DVPlan.h2110 SmallDenseMap<const VPBlockBase *, unsigned> BlockID;
2132 return BlockID.count(Block) ? BlockID[Block] : BlockID[Block] = BID++;
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DCFG.h783 unsigned BlockID; variable
861 : Elements(C), Terminator(nullptr), BlockID(blockid), Preds(C, 1), in CFGBlock()
1074 unsigned getBlockID() const { return BlockID; } in getBlockID()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h1533 : SExpr(COP_BasicBlock), Arena(A), BlockID(0), Visited(false) {} in BasicBlock()
1536 : SExpr(COP_BasicBlock), Arena(A), BlockID(0), Visited(false), in BasicBlock()
1542 int blockID() const { return BlockID; } in blockID()
1661 unsigned BlockID : 31; variable
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Delf2yaml.cpp858 for (uint64_t BlockID = 0; Cur && BlockID < NumBlocks; ++BlockID) { in dumpBBAddrMapSection() local
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Serialization/
H A DASTReader.h1904 static bool ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor, unsigned BlockID,
/netbsd-src/external/bsd/file/dist/magic/magdir/
H A Dwindows914 # bidNextB; next BlockID (ANSI 4 bytes)
916 # bidNextP; Next available back BlockID pointer

12