comparison src/share/vm/adlc/archDesc.cpp @ 18041:52b4284cb496

Merge with jdk8u20-b26
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 16:02:50 +0200
parents 89152779163c 62c54fcc0a35
children
comparison
equal deleted inserted replaced
17606:45d7b2c7029d 18041:52b4284cb496
170 _preproc_table(cmpstr,hashstr, Form::arena), 170 _preproc_table(cmpstr,hashstr, Form::arena),
171 _idealIndex(cmpstr,hashstr, Form::arena), 171 _idealIndex(cmpstr,hashstr, Form::arena),
172 _internalOps(cmpstr,hashstr, Form::arena), 172 _internalOps(cmpstr,hashstr, Form::arena),
173 _internalMatch(cmpstr,hashstr, Form::arena), 173 _internalMatch(cmpstr,hashstr, Form::arena),
174 _chainRules(cmpstr,hashstr, Form::arena), 174 _chainRules(cmpstr,hashstr, Form::arena),
175 _cisc_spill_operand(NULL) { 175 _cisc_spill_operand(NULL),
176 _needs_clone_jvms(false) {
176 177
177 // Initialize the opcode to MatchList table with NULLs 178 // Initialize the opcode to MatchList table with NULLs
178 for( int i=0; i<_last_opcode; ++i ) { 179 for( int i=0; i<_last_opcode; ++i ) {
179 _mlistab[i] = NULL; 180 _mlistab[i] = NULL;
180 } 181 }
1190 || strcmp(idealName,"CmpL") == 0 1191 || strcmp(idealName,"CmpL") == 0
1191 || strcmp(idealName,"CmpD") == 0 1192 || strcmp(idealName,"CmpD") == 0
1192 || strcmp(idealName,"CmpF") == 0 1193 || strcmp(idealName,"CmpF") == 0
1193 || strcmp(idealName,"FastLock") == 0 1194 || strcmp(idealName,"FastLock") == 0
1194 || strcmp(idealName,"FastUnlock") == 0 1195 || strcmp(idealName,"FastUnlock") == 0
1195 || strcmp(idealName,"AddExactI") == 0 1196 || strcmp(idealName,"OverflowAddI") == 0
1196 || strcmp(idealName,"AddExactL") == 0 1197 || strcmp(idealName,"OverflowAddL") == 0
1197 || strcmp(idealName,"SubExactI") == 0 1198 || strcmp(idealName,"OverflowSubI") == 0
1198 || strcmp(idealName,"SubExactL") == 0 1199 || strcmp(idealName,"OverflowSubL") == 0
1199 || strcmp(idealName,"MulExactI") == 0 1200 || strcmp(idealName,"OverflowMulI") == 0
1200 || strcmp(idealName,"MulExactL") == 0 1201 || strcmp(idealName,"OverflowMulL") == 0
1201 || strcmp(idealName,"NegExactI") == 0
1202 || strcmp(idealName,"NegExactL") == 0
1203 || strcmp(idealName,"FlagsProj") == 0
1204 || strcmp(idealName,"Bool") == 0 1202 || strcmp(idealName,"Bool") == 0
1205 || strcmp(idealName,"Binary") == 0 ) { 1203 || strcmp(idealName,"Binary") == 0 ) {
1206 // Removed ConI from the must_clone list. CPUs that cannot use 1204 // Removed ConI from the must_clone list. CPUs that cannot use
1207 // large constants as immediates manifest the constant as an 1205 // large constants as immediates manifest the constant as an
1208 // instruction. The must_clone flag prevents the constant from 1206 // instruction. The must_clone flag prevents the constant from