Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
DBlockCounter.cpp25 unsigned BlockID; member in __anon46be99520111::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()
DWorkList.cpp139 using BlockID = unsigned; typedef in __anon7b6a4fc60311::UnexploredFirstStack
140 using LocIdentifier = std::pair<BlockID, const StackFrameContext *>;
194 using BlockID = unsigned; typedef in __anon7b6a4fc60411::UnexploredFirstPriorityQueue
195 using LocIdentifier = std::pair<BlockID, const StackFrameContext *>;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/
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()
DUninitializedValues.cpp635 unsigned BlockID = Block->getBlockID(); in getUninitUse() local
637 if (SuccsVisited[BlockID] && SuccsVisited[BlockID] < Block->succ_size() && in getUninitUse()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/
DBitstreamWriter.h72 unsigned BlockID; member
271 BlockInfo *getBlockInfo(unsigned BlockID) { in getBlockInfo() argument
273 if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID) in getBlockInfo()
278 if (BlockInfoRecords[i].BlockID == BlockID) in getBlockInfo()
283 void EnterSubblock(unsigned BlockID, unsigned CodeLen) { in EnterSubblock() argument
287 EmitVBR(BlockID, bitc::BlockIDWidth); in EnterSubblock()
306 if (BlockInfo *Info = getBlockInfo(BlockID)) in EnterSubblock()
592 void SwitchToBlockID(unsigned BlockID) { in SwitchToBlockID() argument
593 if (BlockInfoCurBID == BlockID) return; in SwitchToBlockID()
595 V.push_back(BlockID); in SwitchToBlockID()
[all …]
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);
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DTestAfterDivZeroChecker.cpp29 unsigned BlockID; member in __anondc2d8eb00111::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()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
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 …]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DBlockCounter.h38 unsigned BlockID) const;
49 unsigned BlockID);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Remarks/
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()
DBitstreamRemarkSerializer.cpp35 static void initBlock(unsigned BlockID, BitstreamWriter &Bitstream, in initBlock() argument
38 R.push_back(BlockID); in initBlock()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/
DBitcodeAnalyzer.h94 Error parseBlock(unsigned BlockID, unsigned IndentLevel,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
DELF.cpp651 for (uint32_t BlockID = 0; !ULEBSizeErr && Cur && (BlockID < NumBlocks); in decodeBBAddrMap() local
652 ++BlockID) { in decodeBBAddrMap()
/freebsd-12-stable/contrib/llvm-project/clang/lib/APINotes/
DAPINotesFormat.h38 enum BlockID { enum
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitstream/Reader/
DBitstreamReader.cpp21 Error BitstreamCursor::EnterSubBlock(unsigned BlockID, unsigned *NumWordsP) { in EnterSubBlock() argument
29 BlockInfo->getBlockInfo(BlockID)) { in EnterSubBlock()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Analysis/
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()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
DVPlan.h2222 SmallDenseMap<const VPBlockBase *, unsigned> BlockID;
2244 return BlockID.count(Block) ? BlockID[Block] : BlockID[Block] = BID++;
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
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
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Serialization/
DASTReader.h1907 static bool ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor, unsigned BlockID,
/freebsd-12-stable/contrib/file/magic/Magdir/
Dwindows557 # bidNextB; next BlockID (ANSI 4 bytes)
559 # bidNextP; Next available back BlockID pointer
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTReader.cpp1635 bool ASTReader::ReadBlockAbbrevs(BitstreamCursor &Cursor, unsigned BlockID, in ReadBlockAbbrevs() argument
1637 if (llvm::Error Err = Cursor.EnterSubBlock(BlockID)) { in ReadBlockAbbrevs()
4179 static bool SkipCursorToBlock(BitstreamCursor &Cursor, unsigned BlockID) { in SkipCursorToBlock() argument
4205 if (Entry.ID == BlockID) { in SkipCursorToBlock()
4206 if (llvm::Error Err = Cursor.EnterSubBlock(BlockID)) { in SkipCursorToBlock()