hotspot/src/share/vm/adlc/forms.cpp
author coleenp
Sun, 13 Apr 2008 17:43:42 -0400
changeset 360 21d113ecbf6a
parent 1 489c9b5090e2
child 590 2954744d7bba
permissions -rw-r--r--
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// FORMS.CPP - Definitions for ADL Parser Generic & Utility Forms Classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "adlc.hpp"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
//------------------------------Static Initializers----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// allocate arena used by forms
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
Arena  *Form::arena = Form::generate_arena(); //  = Form::generate_arena();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
Arena *Form::generate_arena() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  return (new Arena);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//------------------------------NameList---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// reserved user-defined string
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
const char  *NameList::_signal   = "$$SIGNAL$$";
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// Constructor and Destructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
NameList::NameList() : _cur(0), _max(4), _iter(0), _justReset(true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  _names = (const char**)malloc(_max*sizeof(char*));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
NameList::~NameList() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // The following free is a double-free, and crashes the program:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  //free(_names);                   // not owner of strings
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
void   NameList::addName(const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  if (_cur == _max) _names =(const char**)realloc(_names,(_max *=2)*sizeof(char*));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  _names[_cur++] = name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
void   NameList::add_signal() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  addName( _signal );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
void   NameList::clear() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  _cur   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  _iter  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  _justReset = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // _max   = 4; Already allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
int    NameList::count()  const { return _cur; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
void   NameList::reset()   { _iter = 0; _justReset = true;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
const char  *NameList::iter()    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  if (_justReset) {_justReset=false; return (_iter < _cur ? _names[_iter] : NULL);}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  else return (_iter <_cur-1 ? _names[++_iter] : NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
const char  *NameList::current() { return (_iter < _cur ? _names[_iter] : NULL); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// Return 'true' if current entry is signal
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
bool  NameList::current_is_signal() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  const char *entry = current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  return is_signal(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
// Return true if entry is a signal
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
bool  NameList::is_signal(const char *entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  return ( (strcmp(entry,NameList::_signal) == 0) ? true : false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
// Search for a name in the list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
bool   NameList::search(const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  const char *entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  for(reset(); (entry = iter()) != NULL; ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    if(!strcmp(entry,name)) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
// Return index of name in list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
int    NameList::index(const char *name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  int         cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  const char *entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  for(reset(); (entry = iter()) != NULL; ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    if(!strcmp(entry,name)) return cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    cnt++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  return Not_in_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
// Return name at index in list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
const char  *NameList::name(intptr_t  index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  return ( index < _cur ? _names[index] : NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
void   NameList::dump() { output(stderr); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
void   NameList::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  fprintf(fp, "\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // Run iteration over all entries, independent of position of iterator.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  const char *name       = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  int         iter       = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  bool        justReset  = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  while( ( name  = (justReset ?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
                    (justReset=false, (iter < _cur ? _names[iter] : NULL)) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
                    (iter < _cur-1 ? _names[++iter] : NULL)) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
         != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    fprintf( fp, "  %s,\n", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  fprintf(fp, "\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
//------------------------------NameAndList------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
// Storage for a name and an associated list of names
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
NameAndList::NameAndList(char *name) : _name(name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
NameAndList::~NameAndList() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
// Add to entries in list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
void NameAndList::add_entry(const char *entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  _list.addName(entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
// Access the name and its associated list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
const char *NameAndList::name()  const {  return _name;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
void        NameAndList::reset()       { _list.reset();  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
const char *NameAndList::iter()        { return _list.iter(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
// Return the "index" entry in the list, zero-based
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
const char *NameAndList::operator[](int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  assert( index >= 0, "Internal Error(): index less than 0.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  _list.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  const char *entry = _list.iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // Iterate further if it isn't at index 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  for ( int position = 0; position != index; ++position ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    entry = _list.iter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
void   NameAndList::dump() { output(stderr); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
void   NameAndList::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  fprintf(fp, "\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // Output the Name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  fprintf(fp, "Name == %s", (_name ? _name : "") );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // Output the associated list of names
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  const char *name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  fprintf(fp, " (");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  for (reset(); (name = iter()) != NULL;) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    fprintf(fp, "  %s,\n", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  fprintf(fp, ")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  fprintf(fp, "\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
//------------------------------Form-------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
OpClassForm   *Form::is_opclass()     const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
OperandForm   *Form::is_operand()     const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
InstructForm  *Form::is_instruction() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
MachNodeForm  *Form::is_machnode() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
AttributeForm *Form::is_attribute() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
Effect        *Form::is_effect() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
ResourceForm  *Form::is_resource() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
PipeClassForm *Form::is_pipeclass() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
Form::DataType Form::ideal_to_const_type(const char *name) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  if( name == NULL ) { return Form::none; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  if (strcmp(name,"ConI")==0) return Form::idealI;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  if (strcmp(name,"ConP")==0) return Form::idealP;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   214
  if (strcmp(name,"ConN")==0) return Form::idealN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  if (strcmp(name,"ConL")==0) return Form::idealL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  if (strcmp(name,"ConF")==0) return Form::idealF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  if (strcmp(name,"ConD")==0) return Form::idealD;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  if (strcmp(name,"Bool")==0) return Form::idealI;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  return Form::none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
Form::DataType Form::ideal_to_sReg_type(const char *name) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  if( name == NULL ) { return Form::none; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  if (strcmp(name,"sRegI")==0) return Form::idealI;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  if (strcmp(name,"sRegP")==0) return Form::idealP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  if (strcmp(name,"sRegF")==0) return Form::idealF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  if (strcmp(name,"sRegD")==0) return Form::idealD;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  if (strcmp(name,"sRegL")==0) return Form::idealL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  return Form::none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
Form::DataType Form::ideal_to_Reg_type(const char *name) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  if( name == NULL ) { return Form::none; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  if (strcmp(name,"RegI")==0) return Form::idealI;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  if (strcmp(name,"RegP")==0) return Form::idealP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  if (strcmp(name,"RegF")==0) return Form::idealF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  if (strcmp(name,"RegD")==0) return Form::idealD;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  if (strcmp(name,"RegL")==0) return Form::idealL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  return Form::none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
// True if 'opType', an ideal name, loads or stores.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
Form::DataType Form::is_load_from_memory(const char *opType) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  if( strcmp(opType,"LoadB")==0 )  return Form::idealB;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  if( strcmp(opType,"LoadC")==0 )  return Form::idealC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  if( strcmp(opType,"LoadD")==0 )  return Form::idealD;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  if( strcmp(opType,"LoadD_unaligned")==0 )  return Form::idealD;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  if( strcmp(opType,"LoadF")==0 )  return Form::idealF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  if( strcmp(opType,"LoadI")==0 )  return Form::idealI;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  if( strcmp(opType,"LoadKlass")==0 )  return Form::idealP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  if( strcmp(opType,"LoadL")==0 )  return Form::idealL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  if( strcmp(opType,"LoadL_unaligned")==0 )  return Form::idealL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  if( strcmp(opType,"LoadPLocked")==0 )  return Form::idealP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  if( strcmp(opType,"LoadLLocked")==0 )  return Form::idealL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  if( strcmp(opType,"LoadP")==0 )  return Form::idealP;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   260
  if( strcmp(opType,"LoadN")==0 )  return Form::idealN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  if( strcmp(opType,"LoadRange")==0 )  return Form::idealI;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  if( strcmp(opType,"LoadS")==0 )  return Form::idealS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  if( strcmp(opType,"Load16B")==0 )  return Form::idealB;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  if( strcmp(opType,"Load8B")==0 )  return Form::idealB;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  if( strcmp(opType,"Load4B")==0 )  return Form::idealB;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  if( strcmp(opType,"Load8C")==0 )  return Form::idealC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  if( strcmp(opType,"Load4C")==0 )  return Form::idealC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  if( strcmp(opType,"Load2C")==0 )  return Form::idealC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  if( strcmp(opType,"Load8S")==0 )  return Form::idealS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  if( strcmp(opType,"Load4S")==0 )  return Form::idealS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  if( strcmp(opType,"Load2S")==0 )  return Form::idealS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  if( strcmp(opType,"Load2D")==0 )  return Form::idealD;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  if( strcmp(opType,"Load4F")==0 )  return Form::idealF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  if( strcmp(opType,"Load2F")==0 )  return Form::idealF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  if( strcmp(opType,"Load4I")==0 )  return Form::idealI;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  if( strcmp(opType,"Load2I")==0 )  return Form::idealI;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  if( strcmp(opType,"Load2L")==0 )  return Form::idealL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  assert( strcmp(opType,"Load") != 0, "Must type Loads" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  return Form::none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
Form::DataType Form::is_store_to_memory(const char *opType) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  if( strcmp(opType,"StoreB")==0)  return Form::idealB;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  if( strcmp(opType,"StoreCM")==0)  return Form::idealB;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  if( strcmp(opType,"StoreC")==0)  return Form::idealC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  if( strcmp(opType,"StoreD")==0)  return Form::idealD;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  if( strcmp(opType,"StoreF")==0)  return Form::idealF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  if( strcmp(opType,"StoreI")==0)  return Form::idealI;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  if( strcmp(opType,"StoreL")==0)  return Form::idealL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  if( strcmp(opType,"StoreP")==0)  return Form::idealP;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   291
  if( strcmp(opType,"StoreN")==0) return Form::idealN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  if( strcmp(opType,"Store16B")==0)  return Form::idealB;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  if( strcmp(opType,"Store8B")==0)  return Form::idealB;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  if( strcmp(opType,"Store4B")==0)  return Form::idealB;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  if( strcmp(opType,"Store8C")==0)  return Form::idealC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  if( strcmp(opType,"Store4C")==0)  return Form::idealC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  if( strcmp(opType,"Store2C")==0)  return Form::idealC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  if( strcmp(opType,"Store2D")==0)  return Form::idealD;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  if( strcmp(opType,"Store4F")==0)  return Form::idealF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  if( strcmp(opType,"Store2F")==0)  return Form::idealF;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  if( strcmp(opType,"Store4I")==0)  return Form::idealI;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  if( strcmp(opType,"Store2I")==0)  return Form::idealI;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  if( strcmp(opType,"Store2L")==0)  return Form::idealL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  assert( strcmp(opType,"Store") != 0, "Must type Stores" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  return Form::none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
Form::InterfaceType Form::interface_type(FormDict &globals) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  return Form::no_interface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
//------------------------------FormList---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
// Destructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
FormList::~FormList()  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  // // This list may not own its elements
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  // Form *cur  = _root;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  // Form *next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  // for( ; (cur = next) != NULL; ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  //   next = (Form *)cur->_next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  //   delete cur;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
//------------------------------FormDict---------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
// Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
FormDict::FormDict( CmpKey cmp, Hash hash, Arena *arena )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  : _form(cmp, hash, arena) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
FormDict::~FormDict() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
// Return # of name-Form pairs in dict
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
int FormDict::Size(void) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  return _form.Size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
// Insert inserts the given key-value pair into the dictionary.  The prior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
// value of the key is returned; NULL if the key was not previously defined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
const Form  *FormDict::Insert(const char *name, Form *form) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  return (Form*)_form.Insert((void*)name, (void*)form);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
// Finds the value of a given key; or NULL if not found.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
// The dictionary is NOT changed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
const Form  *FormDict::operator [](const char *name) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  return (Form*)_form[name];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
//------------------------------FormDict::private------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
// Disable public use of constructor, copy-ctor, operator =, operator ==
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
FormDict::FormDict( ) : _form(cmpkey,hashkey) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  assert( false, "NotImplemented");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
FormDict::FormDict( const FormDict & fd) : _form(fd._form) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
FormDict &FormDict::operator =( const FormDict &rhs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  assert( false, "NotImplemented");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  _form = rhs._form;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  return *this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
// == compares two dictionaries; they must have the same keys (their keys
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
// must match using CmpKey) and they must have the same values (pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
// comparison).  If so 1 is returned, if not 0 is returned.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
bool FormDict::operator ==(const FormDict &d) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  assert( false, "NotImplemented");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
// Print out the dictionary contents as key-value pairs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
static void dumpkey (const void* key)  { fprintf(stdout, "%s", key); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
static void dumpform(const void* form) { fflush(stdout); ((Form*)form)->dump(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
void FormDict::dump() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  _form.print(dumpkey, dumpform);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
//------------------------------SourceForm-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
SourceForm::SourceForm(char* code) : _code(code) { }; // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
SourceForm::~SourceForm() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
void SourceForm::dump() {                    // Debug printer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  output(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
void SourceForm::output(FILE *fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  fprintf(fp,"\n//%s\n%s\n",classname(),(_code?_code:""));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
}