comparison src/share/vm/adlc/archDesc.cpp @ 6848:8e47bac5643a

7054512: Compress class pointers after perm gen removal Summary: support of compress class pointers in the compilers. Reviewed-by: kvn, twisti
author roland
date Tue, 09 Oct 2012 10:11:38 +0200
parents 8c92982cbbc4
children d336b3173277
comparison
equal deleted inserted replaced
6847:65d07d9ee446 6848:8e47bac5643a
966 constructOperand(ident, true); 966 constructOperand(ident, true);
967 } 967 }
968 // Create InstructForm and assign type for each ideal instruction. 968 // Create InstructForm and assign type for each ideal instruction.
969 for ( int j = _last_machine_leaf+1; j < _last_opcode; ++j) { 969 for ( int j = _last_machine_leaf+1; j < _last_opcode; ++j) {
970 char *ident = (char *)NodeClassNames[j]; 970 char *ident = (char *)NodeClassNames[j];
971 if(!strcmp(ident, "ConI") || !strcmp(ident, "ConP") || !strcmp(ident, "ConN") || 971 if(!strcmp(ident, "ConI") || !strcmp(ident, "ConP") ||
972 !strcmp(ident, "ConN") || !strcmp(ident, "ConNKlass") ||
972 !strcmp(ident, "ConF") || !strcmp(ident, "ConD") || 973 !strcmp(ident, "ConF") || !strcmp(ident, "ConD") ||
973 !strcmp(ident, "ConL") || !strcmp(ident, "Con" ) || 974 !strcmp(ident, "ConL") || !strcmp(ident, "Con" ) ||
974 !strcmp(ident, "Bool") ) { 975 !strcmp(ident, "Bool") ) {
975 constructOperand(ident, true); 976 constructOperand(ident, true);
976 } 977 }