mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-18 01:54:47 +02:00
8224974: Implement JEP 352
Non-Volatile Mapped Byte Buffers Reviewed-by: alanb, kvn, bpb, gromero, darcy, shade, bulasevich, dchuyko
This commit is contained in:
parent
db359f11b5
commit
047b8bfeb7
53 changed files with 1400 additions and 69 deletions
|
@ -3518,6 +3518,12 @@ int MatchNode::needs_ideal_memory_edge(FormDict &globals) const {
|
|||
int cnt = sizeof(needs_ideal_memory_list)/sizeof(char*);
|
||||
if( strcmp(_opType,"PrefetchAllocation")==0 )
|
||||
return 1;
|
||||
if( strcmp(_opType,"CacheWB")==0 )
|
||||
return 1;
|
||||
if( strcmp(_opType,"CacheWBPreSync")==0 )
|
||||
return 1;
|
||||
if( strcmp(_opType,"CacheWBPostSync")==0 )
|
||||
return 1;
|
||||
if( _lChild ) {
|
||||
const char *opType = _lChild->_opType;
|
||||
for( int i=0; i<cnt; i++ )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue