diff --git a/src/share/vm/adlc/archDesc.cpp b/src/share/vm/adlc/archDesc.cpp --- a/src/share/vm/adlc/archDesc.cpp +++ b/src/share/vm/adlc/archDesc.cpp @@ -30,7 +30,7 @@ //--------------------------- utility functions ----------------------------- inline char toUpper(char lower) { - return (('a' <= lower && lower <= 'z') ? (lower + ('A'-'a')) : lower); + return (('a' <= lower && lower <= 'z') ? ((char) (lower + ('A'-'a'))) : lower); } char *toUpper(const char *str) { char *upper = new char[strlen(str)+1]; diff --git a/src/share/vm/adlc/dict2.cpp b/src/share/vm/adlc/dict2.cpp --- a/src/share/vm/adlc/dict2.cpp +++ b/src/share/vm/adlc/dict2.cpp @@ -65,9 +65,9 @@ // Precompute table of null character hashes if( !initflag ) { // Not initializated yet? - xsum[0] = (1<_name; } -const char *InstructForm::unique_opnd_ident(int idx) { +const char *InstructForm::unique_opnd_ident(uint idx) { uint i; for (i = 1; i < num_opnds(); ++i) { if (unique_opnds_idx(i) == idx) { @@ -1315,9 +1315,9 @@ // Seach through operands to determine parameters unique positions. void InstructForm::set_unique_opnds() { uint* uniq_idx = NULL; - int nopnds = num_opnds(); + uint nopnds = num_opnds(); uint num_uniq = nopnds; - int i; + uint i; _uniq_idx_length = 0; if ( nopnds > 0 ) { // Allocate index array. Worst case we're mapping from each @@ -1340,8 +1340,8 @@ _parameters.reset(); while( (name = _parameters.iter()) != NULL ) { count = 0; - int position = 0; - int uniq_position = 0; + uint position = 0; + uint uniq_position = 0; _components.reset(); Component *comp = NULL; if( sets_result() ) { @@ -1376,7 +1376,7 @@ for( i = 1; i < nopnds; i++ ) if( i != uniq_idx[i] ) break; - int j = i; + uint j = i; for( ; i < nopnds; i++ ) if( i == uniq_idx[i] ) uniq_idx[i] = j++; @@ -2222,7 +2222,7 @@ const char * name = ideal_type(globalAD->globalNames()); if (name == NULL) return false; - int size = 0; + uint size = 0; if (strcmp(name,"RegFlags")==0) size = 1; if (strcmp(name,"RegI")==0) size = 1; if (strcmp(name,"RegF")==0) size = 1; diff --git a/src/share/vm/adlc/formssel.hpp b/src/share/vm/adlc/formssel.hpp --- a/src/share/vm/adlc/formssel.hpp +++ b/src/share/vm/adlc/formssel.hpp @@ -106,7 +106,7 @@ const char *_ins_pipe; // Instruction Scheduling description class uint *_uniq_idx; // Indexes of unique operands - int _uniq_idx_length; // Length of _uniq_idx array + uint _uniq_idx_length; // Length of _uniq_idx array uint _num_uniq; // Number of unique operands ComponentList _components; // List of Components matches MachNode's // operand structure @@ -273,13 +273,13 @@ uint num_unique_opnds() { return _num_uniq; } uint unique_opnds_idx(int idx) { if( _uniq_idx != NULL && idx > 0 ) { - assert(idx < _uniq_idx_length, "out of bounds"); + assert((uint)idx < _uniq_idx_length, "out of bounds"); return _uniq_idx[idx]; } else { return idx; } } - const char *unique_opnd_ident(int idx); // Name of operand at unique idx. + const char *unique_opnd_ident(uint idx); // Name of operand at unique idx. // Operands which are only KILLs aren't part of the input array and // require special handling in some cases. Their position in this diff --git a/src/share/vm/adlc/output_c.cpp b/src/share/vm/adlc/output_c.cpp --- a/src/share/vm/adlc/output_c.cpp +++ b/src/share/vm/adlc/output_c.cpp @@ -518,7 +518,7 @@ int cycles = piperesource->_cycles; uint stage = pipeline->_stages.index(piperesource->_stage); - if (NameList::Not_in_list == stage) { + if ((uint)NameList::Not_in_list == stage) { fprintf(stderr, "pipeline_res_mask_initializer: " "semantic error: " @@ -1779,7 +1779,7 @@ // Skip first unique operands. for( i = 1; i < cur_num_opnds; i++ ) { comp = node->_components.iter(); - if( (int)i != node->unique_opnds_idx(i) ) { + if (i != node->unique_opnds_idx(i)) { break; } new_num_opnds++; @@ -1787,7 +1787,7 @@ // Replace not unique operands with next unique operands. for( ; i < cur_num_opnds; i++ ) { comp = node->_components.iter(); - int j = node->unique_opnds_idx(i); + uint j = node->unique_opnds_idx(i); // unique_opnds_idx(i) is unique if unique_opnds_idx(j) is not unique. if( j != node->unique_opnds_idx(j) ) { fprintf(fp," set_opnd_array(%d, opnd_array(%d)->clone(C)); // %s\n",