Home
last modified time | relevance | path

Searched refs:NextID (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/
H A DProfile.h91 NextID(O.NextID) {} in Profile()
98 NextID = O.NextID;
111 swap(L.NextID, R.NextID); in swap()
137 PathID NextID = 1; variable
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DCommentCommandTraits.cpp20 : NextID(std::size(Commands)), Allocator(Allocator) { in CommandTraits()
94 assert((NextID < (1 << CommandInfo::NumCommandIDBits)) in createCommandInfoWithName()
96 Info->ID = NextID++; in createCommandInfoWithName()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSectionCOFF.h81 unsigned getOrAssignWinCFISectionID(unsigned *NextID) const { in getOrAssignWinCFISectionID() argument
83 WinCFISectionID = (*NextID)++; in getOrAssignWinCFISectionID()
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DRemarkStringTable.cpp32 size_t NextID = StrTab.size(); in add() local
33 auto KV = StrTab.insert({Str, NextID}); in add()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp238 auto NextID = NextIDs[ID][C]; in TVIdxBuilder() local
239 Nodes[ID].NextIDs[C] = NextID; in TVIdxBuilder()
240 if (NextID >= 0) in TVIdxBuilder()
241 ++Nodes[NextID].InCount; in TVIdxBuilder()
268 auto NextID = Node.NextIDs[I]; in TVIdxBuilder() local
269 assert(NextID != 0 && "NextID should not point to the top"); in TVIdxBuilder()
270 if (NextID < 0) { in TVIdxBuilder()
278 auto &NextNode = Nodes[NextID]; in TVIdxBuilder()
294 Q.push_back(NextID); in TVIdxBuilder()
411 auto NextID = NextIDs[ID][MCDCCond]; in buildTestVector() local
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCommentCommandTraits.h198 unsigned NextID; variable
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp760 mcdc::ConditionID NextID = 0; member
780 bool isIdle() const { return (NextID == 0 && !NotMapped); } in isIdle()
785 bool isBuilding() const { return (NextID > 0); } in isBuilding()
821 if (NextID == 0) { in pushAndAssignIDs()
834 setCondID(E->getLHS(), NextID++); in pushAndAssignIDs()
837 mcdc::ConditionID RHSid = NextID++; in pushAndAssignIDs()
868 assert(NextID == 0); in getTotalConditionsAndReset()
873 unsigned TotalConds = NextID; in getTotalConditionsAndReset()
876 NextID = 0; in getTotalConditionsAndReset()
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesWriter.cpp1337 unsigned NextID = Implementation->Contexts.size() + 1; in addContext() local
1342 Key, std::make_pair(NextID, EmptyVersionedInfo))) in addContext()
1345 Implementation->ContextNames[NextID] = NameID; in addContext()
1346 Implementation->ParentContexts[NextID] = RawParentCtxID; in addContext()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DGIMatchTableExecutorImpl.h1427 uint64_t NextID = readULEB(); in executeMatchTable() local
1429 dbgs() << ", MIs[" << NextID << "]"); in executeMatchTable()
1430 for (const auto &MMO : State.MIs[NextID]->memoperands()) in executeMatchTable()
/freebsd/contrib/llvm-project/llvm/lib/XRay/
H A DProfile.cpp187 Node->ID = NextID++; in internPath()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSA.cpp1528 nullptr, &StartingPoint, NextID++)); in buildMemorySSA()
1718 MemoryPhi *Phi = new MemoryPhi(BB->getContext(), BB, NextID++); in createMemoryPhi()
1826 MUD = new MemoryDef(I->getContext(), nullptr, I, I->getParent(), NextID++); in createNewAccess()
/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h214 unsigned NextID, unsigned ID) const;
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemorySSA.h904 unsigned NextID = 0;
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp2913 unsigned NextID = SwitchCaseIDs.size(); in RecordSwitchCaseID() local
2914 SwitchCaseIDs[S] = NextID; in RecordSwitchCaseID()
2915 return NextID; in RecordSwitchCaseID()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp3223 unsigned NextID, unsigned ID) const { in checkValueID() argument
3224 if (ID < NextID) in checkValueID()
3226 Twine(NextID) + "' or greater"); in checkValueID()