comparison src/share/vm/adlc/output_c.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 e626685e9f6c
children d336b3173277
comparison
equal deleted inserted replaced
6847:65d07d9ee446 6848:8e47bac5643a
3642 fprintf(fp, "_leaf->get_int()"); 3642 fprintf(fp, "_leaf->get_int()");
3643 } else if ( (strcmp(optype,"ConP") == 0) ) { 3643 } else if ( (strcmp(optype,"ConP") == 0) ) {
3644 fprintf(fp, "_leaf->bottom_type()->is_ptr()"); 3644 fprintf(fp, "_leaf->bottom_type()->is_ptr()");
3645 } else if ( (strcmp(optype,"ConN") == 0) ) { 3645 } else if ( (strcmp(optype,"ConN") == 0) ) {
3646 fprintf(fp, "_leaf->bottom_type()->is_narrowoop()"); 3646 fprintf(fp, "_leaf->bottom_type()->is_narrowoop()");
3647 } else if ( (strcmp(optype,"ConNKlass") == 0) ) {
3648 fprintf(fp, "_leaf->bottom_type()->is_narrowklass()");
3647 } else if ( (strcmp(optype,"ConF") == 0) ) { 3649 } else if ( (strcmp(optype,"ConF") == 0) ) {
3648 fprintf(fp, "_leaf->getf()"); 3650 fprintf(fp, "_leaf->getf()");
3649 } else if ( (strcmp(optype,"ConD") == 0) ) { 3651 } else if ( (strcmp(optype,"ConD") == 0) ) {
3650 fprintf(fp, "_leaf->getd()"); 3652 fprintf(fp, "_leaf->getd()");
3651 } else if ( (strcmp(optype,"ConL") == 0) ) { 3653 } else if ( (strcmp(optype,"ConL") == 0) ) {