Skip to content

Commit 9a104b6

Browse files
authored
Make sure that StressLogAnalyzer works with filtering 64 bit addresses (#64594)
1 parent 611d45f commit 9a104b6

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

src/coreclr/tools/StressLogAnalyzer/StressLogPlugin.cpp

+15-7
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ bool IsInCantAllocStressLogRegion()
5050
size_t StressLog::writing_base_address;
5151
size_t StressLog::reading_base_address;
5252

53+
bool s_showAllMessages = false;
5354
BOOL g_bDacBroken;
5455
WCHAR g_mdName[1];
5556
SYMBOLS* g_ExtSymbols;
@@ -608,13 +609,15 @@ void Usage()
608609
printf(" e.g. '-tid:2bc8,GC3,BG14' would print messages from thread 2bc8, the gc thread\n");
609610
printf(" associated with heap 3, and the background GC thread for heap 14\n");
610611
printf("\n");
611-
printf(" -e: printf earliest messages from all threads\n");
612+
printf(" -e: print earliest messages from all threads\n");
612613
printf(" -e:<thread id1>,<thread id2>,...: print earliest messages from the listed\n");
613614
printf(" threads. Thread ids are in hex, given as GC<decimal heap number>,\n");
614615
printf(" or BG<decimal heap number>\n");
615616
printf(" e.g. '-e:2bc8,GC3,BG14' would print the earliest messages from thread 2bc8,\n");
616617
printf(" the gc thread associated with heap 3, and the background GC thread for heap 14\n");
617618
printf("\n");
619+
printf(" -a: print all messages from all threads\n");
620+
printf("\n");
618621
}
619622

620623
// Translate escape sequences like "\n" - only common ones are handled
@@ -665,14 +668,14 @@ bool ParseOptions(int argc, char* argv[])
665668
{
666669
int i = s_valueFilterCount++;
667670
char* end = nullptr;
668-
s_valueFilter[i].start = strtoul(&arg[3], &end, 16);
671+
s_valueFilter[i].start = strtoull(&arg[3], &end, 16);
669672
if (*end == '-')
670673
{
671-
s_valueFilter[i].end = strtoul(end + 1, &end, 16);
674+
s_valueFilter[i].end = strtoull(end + 1, &end, 16);
672675
}
673676
else if (*end == '+')
674677
{
675-
s_valueFilter[i].end = s_valueFilter[i].start + strtoul(end + 1, &end, 16);
678+
s_valueFilter[i].end = s_valueFilter[i].start + strtoull(end + 1, &end, 16);
676679
}
677680
else if (*end != '\0')
678681
{
@@ -749,7 +752,7 @@ bool ParseOptions(int argc, char* argv[])
749752
else
750753
{
751754
int i = s_threadFilterCount++;
752-
s_threadFilter[i] = strtoul(arg, &end, 16);
755+
s_threadFilter[i] = strtoull(arg, &end, 16);
753756
}
754757
if (*end == ',')
755758
{
@@ -848,6 +851,10 @@ bool ParseOptions(int argc, char* argv[])
848851
}
849852
break;
850853

854+
case 'a':
855+
case 'A':
856+
s_showAllMessages = true;
857+
break;
851858
case 'f':
852859
case 'F':
853860
if (arg[2] == '\0')
@@ -961,7 +968,7 @@ bool ParseOptions(int argc, char* argv[])
961968
else
962969
{
963970
int i = s_printEarliestMessageFromThreadCount++;
964-
s_printEarliestMessageFromThread[i] = strtoul(arg, &end, 16);
971+
s_printEarliestMessageFromThread[i] = strtoull(arg, &end, 16);
965972
}
966973
if (*end == ',')
967974
{
@@ -1106,7 +1113,7 @@ DWORD WINAPI ProcessStresslogWorker(LPVOID)
11061113
int numberOfArgs = (msg->numberOfArgsX << 3) + msg->numberOfArgs;
11071114
if (!fIgnoreMessage)
11081115
{
1109-
bool fIncludeMessage = FilterMessage(hdr, tsl, msg->facility, format, deltaTime, numberOfArgs, msg->args);
1116+
bool fIncludeMessage = s_showAllMessages || FilterMessage(hdr, tsl, msg->facility, format, deltaTime, numberOfArgs, msg->args);
11101117
if (!fIncludeMessage && s_valueFilterCount > 0)
11111118
{
11121119
for (int i = 0; i < numberOfArgs; i++)
@@ -1218,6 +1225,7 @@ int ProcessStressLog(void* baseAddress, int argc, char* argv[])
12181225
s_timeFilterEnd = 0;
12191226
s_outputFileName = nullptr;
12201227
s_fPrintFormatStrings = false;
1228+
s_showAllMessages = false;
12211229
memset(&mapImageToStringId, 0, sizeof(mapImageToStringId));
12221230

12231231
if (!ParseOptions(argc, argv))

0 commit comments

Comments
 (0)