hotspot/src/share/vm/opto/parse3.cpp
author xdono
Wed, 02 Jul 2008 12:55:16 -0700
changeset 670 ddf3e9583f2f
parent 360 21d113ecbf6a
child 2574 1d5f85c2d755
permissions -rw-r--r--
6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
670
ddf3e9583f2f 6719955: Update copyright year
xdono
parents: 360
diff changeset
     2
 * Copyright 1998-2008 Sun Microsystems, Inc.  All Rights Reserved.
1
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
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_parse3.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// Helper methods for _get* and _put* bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
bool Parse::static_field_ok_in_clinit(ciField *field, ciMethod *method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  // Could be the field_holder's <clinit> method, or <clinit> for a subklass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  // Better to check now than to Deoptimize as soon as we execute
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  assert( field->is_static(), "Only check if field is static");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  // is_being_initialized() is too generous.  It allows access to statics
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  // by threads that are not running the <clinit> before the <clinit> finishes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  // return field->holder()->is_being_initialized();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  // The following restriction is correct but conservative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  // It is also desirable to allow compilation of methods called from <clinit>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  // but this generated code will need to be made safe for execution by
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  // other threads, or the transition from interpreted to compiled code would
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  // need to be guarded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  ciInstanceKlass *field_holder = field->holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  bool access_OK = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  if (method->holder()->is_subclass_of(field_holder)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    if (method->is_static()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
      if (method->name() == ciSymbol::class_initializer_name()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
        // OK to access static fields inside initializer
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
        access_OK = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
      if (method->name() == ciSymbol::object_initializer_name()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
        // It's also OK to access static fields inside a constructor,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
        // because any thread calling the constructor must first have
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
        // synchronized on the class by executing a '_new' bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
        access_OK = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  return access_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
void Parse::do_field_access(bool is_get, bool is_field) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  bool will_link;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  ciField* field = iter().get_field(will_link);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  assert(will_link, "getfield: typeflow responsibility");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  ciInstanceKlass* field_holder = field->holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  if (is_field == field->is_static()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    // Interpreter will throw java_lang_IncompatibleClassChangeError
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    // Check this before allowing <clinit> methods to access static fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    uncommon_trap(Deoptimization::Reason_unhandled,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
                  Deoptimization::Action_none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  if (!is_field && !field_holder->is_initialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    if (!static_field_ok_in_clinit(field, method())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
      uncommon_trap(Deoptimization::Reason_uninitialized,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
                    Deoptimization::Action_reinterpret,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
                    NULL, "!static_field_ok_in_clinit");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  assert(field->will_link(method()->holder(), bc()), "getfield: typeflow responsibility");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // Note:  We do not check for an unloaded field type here any more.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Generate code for the object pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  Node* obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  if (is_field) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    int obj_depth = is_get ? 0 : field->type()->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    obj = do_null_check(peek(obj_depth), T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    // Compile-time detect of null-exception?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    if (stopped())  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    const TypeInstPtr *tjp = TypeInstPtr::make(TypePtr::NotNull, iter().get_declared_field_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    assert(_gvn.type(obj)->higher_equal(tjp), "cast_up is no longer needed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    if (is_get) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
      --_sp;  // pop receiver before getting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
      do_get_xxx(tjp, obj, field, is_field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
      do_put_xxx(tjp, obj, field, is_field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
      --_sp;  // pop receiver after putting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    const TypeKlassPtr* tkp = TypeKlassPtr::make(field_holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    obj = _gvn.makecon(tkp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    if (is_get) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      do_get_xxx(tkp, obj, field, is_field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      do_put_xxx(tkp, obj, field, is_field);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
void Parse::do_get_xxx(const TypePtr* obj_type, Node* obj, ciField* field, bool is_field) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // Does this field have a constant value?  If so, just push the value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  if (field->is_constant() && push_constant(field->constant_value()))  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  ciType* field_klass = field->type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  bool is_vol = field->is_volatile();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // Compute address and memory type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  int offset = field->offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  const TypePtr* adr_type = C->alias_type(field)->adr_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  Node *adr = basic_plus_adr(obj, obj, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  BasicType bt = field->layout_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // Build the resultant type of the load
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  const Type *type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  bool must_assert_null = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  if( bt == T_OBJECT ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    if (!field->type()->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
      type = TypeInstPtr::BOTTOM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
      must_assert_null = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    } else if (field->is_constant()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
      // This can happen if the constant oop is non-perm.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
      ciObject* con = field->constant_value().as_object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
      // Do not "join" in the previous type; it doesn't add value,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
      // and may yield a vacuous result if the field is of interface type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
      type = TypeOopPtr::make_from_constant(con)->isa_oopptr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      assert(type != NULL, "field singleton type must be consistent");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
      type = TypeOopPtr::make_from_klass(field_klass->as_klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    type = Type::get_const_basic_type(bt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // Build the load.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  Node* ld = make_load(NULL, adr, type, bt, adr_type, is_vol);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // Adjust Java stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  if (type2size[bt] == 1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    push(ld);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    push_pair(ld);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  if (must_assert_null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    // Do not take a trap here.  It's possible that the program
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    // will never load the field's class, and will happily see
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    // null values in this field forever.  Don't stumble into a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    // trap for such a program, or we might get a long series
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    // of useless recompilations.  (Or, we might load a class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    // which should not be loaded.)  If we ever see a non-null
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    // value, we will then trap and recompile.  (The trap will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    // not need to mention the class index, since the class will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    // already have been loaded if we ever see a non-null value.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    // uncommon_trap(iter().get_field_signature_index());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    if (PrintOpto && (Verbose || WizardMode)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      method()->print_name(); tty->print_cr(" asserting nullness of field at bci: %d", bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    if (C->log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
      C->log()->elem("assert_null reason='field' klass='%d'",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
                     C->log()->identify(field->type()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    // If there is going to be a trap, put it at the next bytecode:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    set_bci(iter().next_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    do_null_assert(peek(), T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    set_bci(iter().cur_bci()); // put it back
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // If reference is volatile, prevent following memory ops from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // floating up past the volatile read.  Also prevents commoning
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // another volatile read.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  if (field->is_volatile()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    // Memory barrier includes bogus read of value to force load BEFORE membar
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    insert_mem_bar(Op_MemBarAcquire, ld);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
void Parse::do_put_xxx(const TypePtr* obj_type, Node* obj, ciField* field, bool is_field) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  bool is_vol = field->is_volatile();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // If reference is volatile, prevent following memory ops from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // floating down past the volatile write.  Also prevents commoning
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // another volatile read.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  if (is_vol)  insert_mem_bar(Op_MemBarRelease);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // Compute address and memory type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  int offset = field->offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  const TypePtr* adr_type = C->alias_type(field)->adr_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  Node* adr = basic_plus_adr(obj, obj, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  BasicType bt = field->layout_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // Value to be stored
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  Node* val = type2size[bt] == 1 ? pop() : pop_pair();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // Round doubles before storing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  if (bt == T_DOUBLE)  val = dstore_rounding(val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // Store the value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  Node* store;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  if (bt == T_OBJECT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    const TypePtr* field_type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    if (!field->type()->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
      field_type = TypeInstPtr::BOTTOM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
      field_type = TypeOopPtr::make_from_klass(field->type()->as_klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    store = store_oop_to_object( control(), obj, adr, adr_type, val, field_type, bt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    store = store_to_memory( control(), adr, val, bt, adr_type, is_vol );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // If reference is volatile, prevent following volatiles ops from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // floating up before the volatile write.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  if (is_vol) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    // First place the specific membar for THIS volatile index. This first
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    // membar is dependent on the store, keeping any other membars generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    // below from floating up past the store.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    int adr_idx = C->get_alias_index(adr_type);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    insert_mem_bar_volatile(Op_MemBarVolatile, adr_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    // Now place a membar for AliasIdxBot for the unknown yet-to-be-parsed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    // volatile alias indices. Skip this if the membar is redundant.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    if (adr_idx != Compile::AliasIdxBot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
      insert_mem_bar_volatile(Op_MemBarVolatile, Compile::AliasIdxBot);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    // Finally, place alias-index-specific membars for each volatile index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    // that isn't the adr_idx membar. Typically there's only 1 or 2.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    for( int i = Compile::AliasIdxRaw; i < C->num_alias_types(); i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
      if (i != adr_idx && C->alias_type(i)->is_volatile()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
        insert_mem_bar_volatile(Op_MemBarVolatile, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // If the field is final, the rules of Java say we are in <init> or <clinit>.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // Note the presence of writes to final non-static fields, so that we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // can insert a memory barrier later on to keep the writes from floating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  // out of the constructor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  if (is_field && field->is_final()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    set_wrote_final(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
bool Parse::push_constant(ciConstant constant) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  switch (constant.basic_type()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  case T_BOOLEAN:  push( intcon(constant.as_boolean()) ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  case T_INT:      push( intcon(constant.as_int())     ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  case T_CHAR:     push( intcon(constant.as_char())    ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  case T_BYTE:     push( intcon(constant.as_byte())    ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  case T_SHORT:    push( intcon(constant.as_short())   ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  case T_FLOAT:    push( makecon(TypeF::make(constant.as_float())) );  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  case T_DOUBLE:   push_pair( makecon(TypeD::make(constant.as_double())) );  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  case T_LONG:     push_pair( longcon(constant.as_long()) ); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  case T_ARRAY:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  case T_OBJECT: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    // the oop is in perm space if the ciObject "has_encoding"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    ciObject* oop_constant = constant.as_object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    if (oop_constant->is_null_object()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
      push( zerocon(T_OBJECT) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    } else if (oop_constant->has_encoding()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
      push( makecon(TypeOopPtr::make_from_constant(oop_constant)) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
      // we cannot inline the oop, but we can use it later to narrow a type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  case T_ILLEGAL: {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    // Invalid ciConstant returned due to OutOfMemoryError in the CI
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    assert(C->env()->failing(), "otherwise should not see this");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    // These always occur because of object types; we are going to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    // bail out anyway, so make the stack depths match up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    push( zerocon(T_OBJECT) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // success
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
void Parse::do_anewarray() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  bool will_link;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  ciKlass* klass = iter().get_klass(will_link);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  // Uncommon Trap when class that array contains is not loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  // we need the loaded class for the rest of graph; do not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // initialize the container class (see Java spec)!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  assert(will_link, "anewarray: typeflow responsibility");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  ciObjArrayKlass* array_klass = ciObjArrayKlass::make(klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // Check that array_klass object is loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  if (!array_klass->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    // Generate uncommon_trap for unloaded array_class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    uncommon_trap(Deoptimization::Reason_unloaded,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
                  Deoptimization::Action_reinterpret,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
                  array_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  kill_dead_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  const TypeKlassPtr* array_klass_type = TypeKlassPtr::make(array_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  Node* count_val = pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  Node* obj = new_array(makecon(array_klass_type), count_val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  push(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
void Parse::do_newarray(BasicType elem_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  kill_dead_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  Node*   count_val = pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  const TypeKlassPtr* array_klass = TypeKlassPtr::make(ciTypeArrayKlass::make(elem_type));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  Node*   obj = new_array(makecon(array_klass), count_val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  // Push resultant oop onto stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  push(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
// Expand simple expressions like new int[3][5] and new Object[2][nonConLen].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
// Also handle the degenerate 1-dimensional case of anewarray.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
Node* Parse::expand_multianewarray(ciArrayKlass* array_klass, Node* *lengths, int ndimensions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  Node* length = lengths[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  assert(length != NULL, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  Node* array = new_array(makecon(TypeKlassPtr::make(array_klass)), length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  if (ndimensions > 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    jint length_con = find_int_con(length, -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    guarantee(length_con >= 0, "non-constant multianewarray");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    ciArrayKlass* array_klass_1 = array_klass->as_obj_array_klass()->element_klass()->as_array_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    const TypePtr* adr_type = TypeAryPtr::OOPS;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    const Type*    elemtype = _gvn.type(array)->is_aryptr()->elem();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    const intptr_t header   = arrayOopDesc::base_offset_in_bytes(T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    for (jint i = 0; i < length_con; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
      Node*    elem   = expand_multianewarray(array_klass_1, &lengths[1], ndimensions-1);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 353
diff changeset
   368
      intptr_t offset = header + ((intptr_t)i << LogBytesPerHeapOop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
      Node*    eaddr  = basic_plus_adr(array, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
      store_oop_to_array(control(), array, eaddr, adr_type, elem, elemtype, T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  return array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
void Parse::do_multianewarray() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  int ndimensions = iter().get_dimensions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // the m-dimensional array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  bool will_link;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  ciArrayKlass* array_klass = iter().get_klass(will_link)->as_array_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  assert(will_link, "multianewarray: typeflow responsibility");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  // Note:  Array classes are always initialized; no is_initialized check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  enum { MAX_DIMENSION = 5 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  if (ndimensions > MAX_DIMENSION || ndimensions <= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    uncommon_trap(Deoptimization::Reason_unhandled,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
                  Deoptimization::Action_none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  kill_dead_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  // get the lengths from the stack (first dimension is on top)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  Node* length[MAX_DIMENSION+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  length[ndimensions] = NULL;  // terminating null for make_runtime_call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  int j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  for (j = ndimensions-1; j >= 0 ; j--) length[j] = pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  // The original expression was of this form: new T[length0][length1]...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // It is often the case that the lengths are small (except the last).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  // If that happens, use the fast 1-d creator a constant number of times.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  const jint expand_limit = MIN2((juint)MultiArrayExpandLimit, (juint)100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  jint expand_count = 1;        // count of allocations in the expansion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  jint expand_fanout = 1;       // running total fanout
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  for (j = 0; j < ndimensions-1; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    jint dim_con = find_int_con(length[j], -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    expand_fanout *= dim_con;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    expand_count  += expand_fanout; // count the level-J sub-arrays
353
346ac690301f 6663908: NegativeArraySizeException is not thrown
rasbold
parents: 1
diff changeset
   411
    if (dim_con <= 0
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
        || dim_con > expand_limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
        || expand_count > expand_limit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
      expand_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  // Can use multianewarray instead of [a]newarray if only one dimension,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  // or if all non-final dimensions are small constants.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  if (expand_count == 1 || (1 <= expand_count && expand_count <= expand_limit)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    Node* obj = expand_multianewarray(array_klass, &length[0], ndimensions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    push(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  address fun = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  switch (ndimensions) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  //case 1: Actually, there is no case 1.  It's handled by new_array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  case 2: fun = OptoRuntime::multianewarray2_Java(); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  case 3: fun = OptoRuntime::multianewarray3_Java(); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  case 4: fun = OptoRuntime::multianewarray4_Java(); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  case 5: fun = OptoRuntime::multianewarray5_Java(); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  default: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  Node* c = make_runtime_call(RC_NO_LEAF | RC_NO_IO,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
                              OptoRuntime::multianewarray_Type(ndimensions),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
                              fun, NULL, TypeRawPtr::BOTTOM,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
                              makecon(TypeKlassPtr::make(array_klass)),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
                              length[0], length[1], length[2],
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
                              length[3], length[4]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  Node* res = _gvn.transform(new (C, 1) ProjNode(c, TypeFunc::Parms));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  const Type* type = TypeOopPtr::make_from_klass_raw(array_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  // Improve the type:  We know it's not null, exact, and of a given length.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  type = type->is_ptr()->cast_to_ptr_type(TypePtr::NotNull);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  type = type->is_aryptr()->cast_to_exactness(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  const TypeInt* ltype = _gvn.find_int_type(length[0]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  if (ltype != NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    type = type->is_aryptr()->cast_to_size(ltype);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  // We cannot sharpen the nested sub-arrays, since the top level is mutable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  Node* cast = _gvn.transform( new (C, 2) CheckCastPPNode(control(), res, type) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  push(cast);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  // Possible improvements:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  // - Make a fast path for small multi-arrays.  (W/ implicit init. loops.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  // - Issue CastII against length[*] values, to TypeInt::POS.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
}