Skip to content

Commit

Permalink
Merge pull request eclipse-omr#7126 from kangyining/softmxVGC
Browse files Browse the repository at this point in the history
Add VGC output for softmax
  • Loading branch information
babsingh authored Sep 27, 2023
2 parents a25bcb0 + ff66cfb commit c9cc0fe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gc/verbose/VerboseHandlerOutput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,9 @@ MM_VerboseHandlerOutput::outputInitializedStanza(MM_EnvironmentBase *env, MM_Ver
#endif /* OMR_GC_CONCURRENT_SCAVENGER */

buffer->formatAndOutput(env, 1, "<attribute name=\"maxHeapSize\" value=\"0x%zx\" />", _extensions->memoryMax);
if (0 < _extensions->softMx) {
buffer->formatAndOutput(env, 1, "<attribute name=\"softMx\" value=\"0x%zx\" />", _extensions->softMx);
}
buffer->formatAndOutput(env, 1, "<attribute name=\"initialHeapSize\" value=\"0x%zx\" />", _extensions->initialMemorySize);

#if defined(OMR_GC_COMPRESSED_POINTERS)
Expand Down

0 comments on commit c9cc0fe

Please sign in to comment.