8213745: Don't use memset to initialize array of RegMask in matcher.cpp
Reviewed-by: kvn, shade
--- a/src/hotspot/share/opto/matcher.cpp Mon Nov 12 08:33:59 2018 -0800
+++ b/src/hotspot/share/opto/matcher.cpp Mon Nov 12 22:00:07 2018 +0100
@@ -1209,7 +1209,9 @@
// Allocate a private array of RegMasks. These RegMasks are not shared.
msfpt->_in_rms = NEW_RESOURCE_ARRAY( RegMask, cnt );
// Empty them all.
- memset( msfpt->_in_rms, 0, sizeof(RegMask)*cnt );
+ for (uint i = 0; i < cnt; i++) {
+ msfpt->_in_rms[i] = RegMask();
+ }
// Do all the pre-defined non-Empty register masks
msfpt->_in_rms[TypeFunc::ReturnAdr] = _return_addr_mask;