[PATCH] D104497: [CSSPGO][llvm-profgen] Fix an issue in findDisjointRanges
Hongtao Yu via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 18 14:39:06 PDT 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGfb19aa0c74fd: [CSSPGO][llvm-profgen] Fix an issue in findDisjointRanges (authored by hoy).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D104497/new/
https://reviews.llvm.org/D104497
Files:
llvm/tools/llvm-profgen/ProfileGenerator.cpp
Index: llvm/tools/llvm-profgen/ProfileGenerator.cpp
===================================================================
--- llvm/tools/llvm-profgen/ProfileGenerator.cpp
+++ llvm/tools/llvm-profgen/ProfileGenerator.cpp
@@ -179,19 +179,20 @@
Boundaries[End].addEndCount(Count);
}
- uint64_t BeginAddress = 0;
+ uint64_t BeginAddress = UINT64_MAX;
int Count = 0;
for (auto Item : Boundaries) {
uint64_t Address = Item.first;
BoundaryPoint &Point = Item.second;
if (Point.BeginCount) {
- if (BeginAddress)
+ if (BeginAddress != UINT64_MAX)
DisjointRanges[{BeginAddress, Address - 1}] = Count;
Count += Point.BeginCount;
BeginAddress = Address;
}
if (Point.EndCount) {
- assert(BeginAddress && "First boundary point cannot be 'end' point");
+ assert((BeginAddress != UINT64_MAX) &&
+ "First boundary point cannot be 'end' point");
DisjointRanges[{BeginAddress, Address}] = Count;
Count -= Point.EndCount;
BeginAddress = Address + 1;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D104497.353100.patch
Type: text/x-patch
Size: 1047 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210618/769d856a/attachment.bin>
More information about the llvm-commits
mailing list