hotspot/src/share/vm/opto/parse3.cpp
author thartmann
Mon, 02 Jun 2014 08:07:29 +0200
changeset 24923 9631f7d691dc
parent 23528 8f1a7f5e8066
child 31035 0f0743952c41
permissions -rw-r--r--
8034812: remove IDX_INIT macro hack in Node class Summary: The IDX_INIT macro used by Node::Node(...) to retrieve the Compile object is removed and replaced by a call to Compile::current(). The Node constructor, new operator and all calls to it are adapted accordingly. Reviewed-by: kvn, jrose, iveresov, goetz
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
15480
a9e84da84519 8006807: C2 crash due to out of bounds array access in Parse::do_multianewarray
drchase
parents: 14835
diff changeset
     2
 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. 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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4893
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4893
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4893
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "compiler/compileLog.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "interpreter/linkResolver.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/universe.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "oops/objArrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "opto/addnode.hpp"
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents: 23190
diff changeset
    31
#include "opto/castnode.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "opto/memnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "opto/parse.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "opto/rootnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "opto/runtime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "opto/subnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "runtime/deoptimization.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "runtime/handles.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// Helper methods for _get* and _put* bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
bool Parse::static_field_ok_in_clinit(ciField *field, ciMethod *method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // Could be the field_holder's <clinit> method, or <clinit> for a subklass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // Better to check now than to Deoptimize as soon as we execute
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  assert( field->is_static(), "Only check if field is static");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  // is_being_initialized() is too generous.  It allows access to statics
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // by threads that are not running the <clinit> before the <clinit> finishes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // return field->holder()->is_being_initialized();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // The following restriction is correct but conservative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // It is also desirable to allow compilation of methods called from <clinit>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // but this generated code will need to be made safe for execution by
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // other threads, or the transition from interpreted to compiled code would
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // need to be guarded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  ciInstanceKlass *field_holder = field->holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  bool access_OK = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  if (method->holder()->is_subclass_of(field_holder)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    if (method->is_static()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
      if (method->name() == ciSymbol::class_initializer_name()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
        // OK to access static fields inside initializer
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
        access_OK = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
      if (method->name() == ciSymbol::object_initializer_name()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
        // It's also OK to access static fields inside a constructor,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
        // because any thread calling the constructor must first have
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
        // synchronized on the class by executing a '_new' bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
        access_OK = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  return access_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
void Parse::do_field_access(bool is_get, bool is_field) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  bool will_link;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  ciField* field = iter().get_field(will_link);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  assert(will_link, "getfield: typeflow responsibility");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  ciInstanceKlass* field_holder = field->holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  if (is_field == field->is_static()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    // Interpreter will throw java_lang_IncompatibleClassChangeError
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    // Check this before allowing <clinit> methods to access static fields
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    uncommon_trap(Deoptimization::Reason_unhandled,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
                  Deoptimization::Action_none);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  if (!is_field && !field_holder->is_initialized()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    if (!static_field_ok_in_clinit(field, method())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
      uncommon_trap(Deoptimization::Reason_uninitialized,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
                    Deoptimization::Action_reinterpret,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                    NULL, "!static_field_ok_in_clinit");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
10510
ab626d1bdf53 7085404: JSR 292: VolatileCallSites should have push notification too
twisti
parents: 10265
diff changeset
   104
  // Deoptimize on putfield writes to call site target field.
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10028
diff changeset
   105
  if (!is_get && field->is_call_site_target()) {
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10028
diff changeset
   106
    uncommon_trap(Deoptimization::Reason_unhandled,
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10028
diff changeset
   107
                  Deoptimization::Action_reinterpret,
10510
ab626d1bdf53 7085404: JSR 292: VolatileCallSites should have push notification too
twisti
parents: 10265
diff changeset
   108
                  NULL, "put to call site target field");
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10028
diff changeset
   109
    return;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10028
diff changeset
   110
  }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 10028
diff changeset
   111
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  assert(field->will_link(method()->holder(), bc()), "getfield: typeflow responsibility");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // Note:  We do not check for an unloaded field type here any more.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // Generate code for the object pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  Node* obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  if (is_field) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    int obj_depth = is_get ? 0 : field->type()->size();
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 13963
diff changeset
   120
    obj = null_check(peek(obj_depth));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    // Compile-time detect of null-exception?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    if (stopped())  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8676
diff changeset
   124
#ifdef ASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    const TypeInstPtr *tjp = TypeInstPtr::make(TypePtr::NotNull, iter().get_declared_field_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    assert(_gvn.type(obj)->higher_equal(tjp), "cast_up is no longer needed");
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8676
diff changeset
   127
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    if (is_get) {
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 13963
diff changeset
   130
      (void) pop();  // pop receiver before getting
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8676
diff changeset
   131
      do_get_xxx(obj, field, is_field);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    } else {
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8676
diff changeset
   133
      do_put_xxx(obj, field, is_field);
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 13963
diff changeset
   134
      (void) pop();  // pop receiver after putting
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  } else {
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8676
diff changeset
   137
    const TypeInstPtr* tip = TypeInstPtr::make(field_holder->java_mirror());
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8676
diff changeset
   138
    obj = _gvn.makecon(tip);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    if (is_get) {
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8676
diff changeset
   140
      do_get_xxx(obj, field, is_field);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    } else {
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8676
diff changeset
   142
      do_put_xxx(obj, field, is_field);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8676
diff changeset
   148
void Parse::do_get_xxx(Node* obj, ciField* field, bool is_field) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // Does this field have a constant value?  If so, just push the value.
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4470
diff changeset
   150
  if (field->is_constant()) {
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   151
    // final or stable field
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   152
    const Type* stable_type = NULL;
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   153
    if (FoldStableValues && field->is_stable()) {
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   154
      stable_type = Type::get_const_type(field->type());
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   155
      if (field->type()->is_array_klass()) {
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   156
        int stable_dimension = field->type()->as_array_klass()->dimension();
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   157
        stable_type = stable_type->is_aryptr()->cast_to_stable(true, stable_dimension);
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   158
      }
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   159
    }
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4470
diff changeset
   160
    if (field->is_static()) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4470
diff changeset
   161
      // final static field
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   162
      if (C->eliminate_boxing()) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   163
        // The pointers in the autobox arrays are always non-null.
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   164
        ciSymbol* klass_name = field->holder()->name();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   165
        if (field->name() == ciSymbol::cache_field_name() &&
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   166
            field->holder()->uses_default_loader() &&
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   167
            (klass_name == ciSymbol::java_lang_Character_CharacterCache() ||
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   168
             klass_name == ciSymbol::java_lang_Byte_ByteCache() ||
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   169
             klass_name == ciSymbol::java_lang_Short_ShortCache() ||
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   170
             klass_name == ciSymbol::java_lang_Integer_IntegerCache() ||
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   171
             klass_name == ciSymbol::java_lang_Long_LongCache())) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   172
          bool require_const = true;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   173
          bool autobox_cache = true;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   174
          if (push_constant(field->constant_value(), require_const, autobox_cache)) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   175
            return;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   176
          }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   177
        }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   178
      }
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   179
      if (push_constant(field->constant_value(), false, false, stable_type))
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4470
diff changeset
   180
        return;
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   181
    } else {
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   182
      // final or stable non-static field
10511
22b3580bd8bb 7071709: JSR 292: switchpoint invalidation should be pushed not pulled
twisti
parents: 10510
diff changeset
   183
      // Treat final non-static fields of trusted classes (classes in
22b3580bd8bb 7071709: JSR 292: switchpoint invalidation should be pushed not pulled
twisti
parents: 10510
diff changeset
   184
      // java.lang.invoke and sun.invoke packages and subpackages) as
22b3580bd8bb 7071709: JSR 292: switchpoint invalidation should be pushed not pulled
twisti
parents: 10510
diff changeset
   185
      // compile time constants.
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4470
diff changeset
   186
      if (obj->is_Con()) {
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4470
diff changeset
   187
        const TypeOopPtr* oop_ptr = obj->bottom_type()->isa_oopptr();
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4470
diff changeset
   188
        ciObject* constant_oop = oop_ptr->const_oop();
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4470
diff changeset
   189
        ciConstant constant = field->constant_value_of(constant_oop);
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   190
        if (FoldStableValues && field->is_stable() && constant.is_null_or_zero()) {
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   191
          // fall through to field load; the field is not yet initialized
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   192
        } else {
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   193
          if (push_constant(constant, true, false, stable_type))
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   194
            return;
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   195
        }
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4470
diff changeset
   196
      }
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4470
diff changeset
   197
    }
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4470
diff changeset
   198
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  ciType* field_klass = field->type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  bool is_vol = field->is_volatile();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // Compute address and memory type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  int offset = field->offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  const TypePtr* adr_type = C->alias_type(field)->adr_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  Node *adr = basic_plus_adr(obj, obj, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  BasicType bt = field->layout_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // Build the resultant type of the load
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  const Type *type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  bool must_assert_null = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  if( bt == T_OBJECT ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    if (!field->type()->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
      type = TypeInstPtr::BOTTOM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
      must_assert_null = true;
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4470
diff changeset
   218
    } else if (field->is_constant() && field->is_static()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
      // This can happen if the constant oop is non-perm.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
      ciObject* con = field->constant_value().as_object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
      // Do not "join" in the previous type; it doesn't add value,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
      // and may yield a vacuous result if the field is of interface type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      type = TypeOopPtr::make_from_constant(con)->isa_oopptr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
      assert(type != NULL, "field singleton type must be consistent");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
      type = TypeOopPtr::make_from_klass(field_klass->as_klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    type = Type::get_const_basic_type(bt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  }
22868
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22845
diff changeset
   231
  if (support_IRIW_for_not_multiple_copy_atomic_cpu && field->is_volatile()) {
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22845
diff changeset
   232
    insert_mem_bar(Op_MemBarVolatile);   // StoreLoad barrier
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22845
diff changeset
   233
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // Build the load.
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   235
  //
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   236
  MemNode::MemOrd mo = is_vol ? MemNode::acquire : MemNode::unordered;
23189
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 22873
diff changeset
   237
  bool needs_atomic_access = is_vol || AlwaysAtomicAccesses;
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 22873
diff changeset
   238
  Node* ld = make_load(NULL, adr, type, bt, adr_type, mo, needs_atomic_access);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // Adjust Java stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  if (type2size[bt] == 1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    push(ld);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    push_pair(ld);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  if (must_assert_null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    // Do not take a trap here.  It's possible that the program
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    // will never load the field's class, and will happily see
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    // null values in this field forever.  Don't stumble into a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    // trap for such a program, or we might get a long series
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    // of useless recompilations.  (Or, we might load a class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    // which should not be loaded.)  If we ever see a non-null
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    // value, we will then trap and recompile.  (The trap will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    // not need to mention the class index, since the class will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    // already have been loaded if we ever see a non-null value.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    // uncommon_trap(iter().get_field_signature_index());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    if (PrintOpto && (Verbose || WizardMode)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      method()->print_name(); tty->print_cr(" asserting nullness of field at bci: %d", bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    if (C->log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
      C->log()->elem("assert_null reason='field' klass='%d'",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
                     C->log()->identify(field->type()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    // If there is going to be a trap, put it at the next bytecode:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    set_bci(iter().next_bci());
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 13963
diff changeset
   268
    null_assert(peek());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    set_bci(iter().cur_bci()); // put it back
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  // If reference is volatile, prevent following memory ops from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  // floating up past the volatile read.  Also prevents commoning
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  // another volatile read.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  if (field->is_volatile()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    // Memory barrier includes bogus read of value to force load BEFORE membar
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    insert_mem_bar(Op_MemBarAcquire, ld);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
8725
8c1e3dd5fe1b 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 8676
diff changeset
   281
void Parse::do_put_xxx(Node* obj, ciField* field, bool is_field) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  bool is_vol = field->is_volatile();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // If reference is volatile, prevent following memory ops from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  // floating down past the volatile write.  Also prevents commoning
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // another volatile read.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  if (is_vol)  insert_mem_bar(Op_MemBarRelease);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // Compute address and memory type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  int offset = field->offset_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  const TypePtr* adr_type = C->alias_type(field)->adr_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  Node* adr = basic_plus_adr(obj, obj, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  BasicType bt = field->layout_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  // Value to be stored
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  Node* val = type2size[bt] == 1 ? pop() : pop_pair();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  // Round doubles before storing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  if (bt == T_DOUBLE)  val = dstore_rounding(val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   298
  // Conservatively release stores of object references.
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   299
  const MemNode::MemOrd mo =
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   300
    is_vol ?
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   301
    // Volatile fields need releasing stores.
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   302
    MemNode::release :
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   303
    // Non-volatile fields also need releasing stores if they hold an
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   304
    // object reference, because the object reference might point to
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   305
    // a freshly created object.
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   306
    StoreNode::release_if_reference(bt);
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   307
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // Store the value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  Node* store;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  if (bt == T_OBJECT) {
3178
596a9ab2a92d 6818666: G1: Type lost in g1 pre-barrier
never
parents: 2574
diff changeset
   311
    const TypeOopPtr* field_type;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    if (!field->type()->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
      field_type = TypeInstPtr::BOTTOM;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
      field_type = TypeOopPtr::make_from_klass(field->type()->as_klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
    }
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   317
    store = store_oop_to_object(control(), obj, adr, adr_type, val, field_type, bt, mo);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  } else {
23189
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 22873
diff changeset
   319
    bool needs_atomic_access = is_vol || AlwaysAtomicAccesses;
27cf1316709b 8033380: Experimental VM flag to enforce access atomicity
shade
parents: 22873
diff changeset
   320
    store = store_to_memory(control(), adr, val, bt, adr_type, mo, needs_atomic_access);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // If reference is volatile, prevent following volatiles ops from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // floating up before the volatile write.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  if (is_vol) {
22868
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22845
diff changeset
   326
    // If not multiple copy atomic, we do the MemBarVolatile before the load.
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22845
diff changeset
   327
    if (!support_IRIW_for_not_multiple_copy_atomic_cpu) {
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22845
diff changeset
   328
      insert_mem_bar(Op_MemBarVolatile); // Use fat membar
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22845
diff changeset
   329
    }
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22845
diff changeset
   330
    // Remember we wrote a volatile field.
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22845
diff changeset
   331
    // For not multiple copy atomic cpu (ppc64) a barrier should be issued
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22845
diff changeset
   332
    // in constructors which have such stores. See do_exits() in parse1.cpp.
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22845
diff changeset
   333
    if (is_field) {
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22845
diff changeset
   334
      set_wrote_volatile(true);
7f6eb436873b 8029101: PPC64 (part 211): ordering of Independent Reads of Independent Writes
goetz
parents: 22845
diff changeset
   335
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
23190
e8bbf9cd711e 8031818: Experimental VM flag for enforcing safe object construction
shade
parents: 23189
diff changeset
   338
  if (is_field) {
e8bbf9cd711e 8031818: Experimental VM flag for enforcing safe object construction
shade
parents: 23189
diff changeset
   339
    set_wrote_fields(true);
e8bbf9cd711e 8031818: Experimental VM flag for enforcing safe object construction
shade
parents: 23189
diff changeset
   340
  }
e8bbf9cd711e 8031818: Experimental VM flag for enforcing safe object construction
shade
parents: 23189
diff changeset
   341
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  // If the field is final, the rules of Java say we are in <init> or <clinit>.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  // Note the presence of writes to final non-static fields, so that we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  // can insert a memory barrier later on to keep the writes from floating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  // out of the constructor.
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   346
  // Any method can write a @Stable field; insert memory barriers after those also.
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   347
  if (is_field && (field->is_final() || field->is_stable())) {
23190
e8bbf9cd711e 8031818: Experimental VM flag for enforcing safe object construction
shade
parents: 23189
diff changeset
   348
    if (field->is_final()) {
e8bbf9cd711e 8031818: Experimental VM flag for enforcing safe object construction
shade
parents: 23189
diff changeset
   349
        set_wrote_final(true);
e8bbf9cd711e 8031818: Experimental VM flag for enforcing safe object construction
shade
parents: 23189
diff changeset
   350
    }
e8bbf9cd711e 8031818: Experimental VM flag for enforcing safe object construction
shade
parents: 23189
diff changeset
   351
    if (field->is_stable()) {
e8bbf9cd711e 8031818: Experimental VM flag for enforcing safe object construction
shade
parents: 23189
diff changeset
   352
        set_wrote_stable(true);
e8bbf9cd711e 8031818: Experimental VM flag for enforcing safe object construction
shade
parents: 23189
diff changeset
   353
    }
e8bbf9cd711e 8031818: Experimental VM flag for enforcing safe object construction
shade
parents: 23189
diff changeset
   354
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   355
    // Preserve allocation ptr to create precedent edge to it in membar
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   356
    // generated on exit from constructor.
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   357
    if (C->eliminate_boxing() &&
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   358
        adr_type->isa_oopptr() && adr_type->is_oopptr()->is_ptr_to_boxed_value() &&
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   359
        AllocateNode::Ideal_allocation(obj, &_gvn) != NULL) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   360
      set_alloc_with_final(obj);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15480
diff changeset
   361
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   366
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   367
bool Parse::push_constant(ciConstant constant, bool require_constant, bool is_autobox_cache, const Type* stable_type) {
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   368
  const Type* con_type = Type::make_from_constant(constant, require_constant, is_autobox_cache);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  switch (constant.basic_type()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  case T_ARRAY:
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   371
  case T_OBJECT:
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3261
diff changeset
   372
    // cases:
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3261
diff changeset
   373
    //   can_be_constant    = (oop not scavengable || ScavengeRootsInCode != 0)
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3261
diff changeset
   374
    //   should_be_constant = (oop not scavengable || ScavengeRootsInCode >= 2)
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3261
diff changeset
   375
    // An oop is not scavengable if it is in the perm gen.
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   376
    if (stable_type != NULL && con_type != NULL && con_type->isa_oopptr())
22799
83e58bac7980 8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents: 19770
diff changeset
   377
      con_type = con_type->join_speculative(stable_type);
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   378
    break;
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   379
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   380
  case T_ILLEGAL:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    // Invalid ciConstant returned due to OutOfMemoryError in the CI
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
    assert(C->env()->failing(), "otherwise should not see this");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    // These always occur because of object types; we are going to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    // bail out anyway, so make the stack depths match up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
    push( zerocon(T_OBJECT) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  }
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   388
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   389
  if (con_type == NULL)
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   390
    // we cannot inline the oop, but we can use it later to narrow a type
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18956
diff changeset
   393
  push_node(constant.basic_type(), makecon(con_type));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
void Parse::do_anewarray() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  bool will_link;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  ciKlass* klass = iter().get_klass(will_link);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  // Uncommon Trap when class that array contains is not loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  // we need the loaded class for the rest of graph; do not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  // initialize the container class (see Java spec)!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  assert(will_link, "anewarray: typeflow responsibility");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  ciObjArrayKlass* array_klass = ciObjArrayKlass::make(klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  // Check that array_klass object is loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  if (!array_klass->is_loaded()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    // Generate uncommon_trap for unloaded array_class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    uncommon_trap(Deoptimization::Reason_unloaded,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
                  Deoptimization::Action_reinterpret,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
                  array_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  kill_dead_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  const TypeKlassPtr* array_klass_type = TypeKlassPtr::make(array_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  Node* count_val = pop();
2574
1d5f85c2d755 6589834: deoptimization problem with -XX:+DeoptimizeALot
cfang
parents: 670
diff changeset
   422
  Node* obj = new_array(makecon(array_klass_type), count_val, 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  push(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
void Parse::do_newarray(BasicType elem_type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  kill_dead_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  Node*   count_val = pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  const TypeKlassPtr* array_klass = TypeKlassPtr::make(ciTypeArrayKlass::make(elem_type));
2574
1d5f85c2d755 6589834: deoptimization problem with -XX:+DeoptimizeALot
cfang
parents: 670
diff changeset
   432
  Node*   obj = new_array(makecon(array_klass), count_val, 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  // Push resultant oop onto stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  push(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
// Expand simple expressions like new int[3][5] and new Object[2][nonConLen].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
// Also handle the degenerate 1-dimensional case of anewarray.
2574
1d5f85c2d755 6589834: deoptimization problem with -XX:+DeoptimizeALot
cfang
parents: 670
diff changeset
   439
Node* Parse::expand_multianewarray(ciArrayKlass* array_klass, Node* *lengths, int ndimensions, int nargs) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  Node* length = lengths[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  assert(length != NULL, "");
2574
1d5f85c2d755 6589834: deoptimization problem with -XX:+DeoptimizeALot
cfang
parents: 670
diff changeset
   442
  Node* array = new_array(makecon(TypeKlassPtr::make(array_klass)), length, nargs);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  if (ndimensions > 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    jint length_con = find_int_con(length, -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    guarantee(length_con >= 0, "non-constant multianewarray");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    ciArrayKlass* array_klass_1 = array_klass->as_obj_array_klass()->element_klass()->as_array_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
    const TypePtr* adr_type = TypeAryPtr::OOPS;
3180
c589129153a4 6856025: assert(_base >= OopPtr && _base <= KlassPtr,"Not a Java pointer")
never
parents: 3178
diff changeset
   448
    const TypeOopPtr*    elemtype = _gvn.type(array)->is_aryptr()->elem()->make_oopptr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    const intptr_t header   = arrayOopDesc::base_offset_in_bytes(T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    for (jint i = 0; i < length_con; i++) {
2574
1d5f85c2d755 6589834: deoptimization problem with -XX:+DeoptimizeALot
cfang
parents: 670
diff changeset
   451
      Node*    elem   = expand_multianewarray(array_klass_1, &lengths[1], ndimensions-1, nargs);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 353
diff changeset
   452
      intptr_t offset = header + ((intptr_t)i << LogBytesPerHeapOop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
      Node*    eaddr  = basic_plus_adr(array, offset);
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   454
      store_oop_to_array(control(), array, eaddr, adr_type, elem, elemtype, T_OBJECT, MemNode::unordered);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  return array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
void Parse::do_multianewarray() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  int ndimensions = iter().get_dimensions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  // the m-dimensional array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  bool will_link;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  ciArrayKlass* array_klass = iter().get_klass(will_link)->as_array_klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  assert(will_link, "multianewarray: typeflow responsibility");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  // Note:  Array classes are always initialized; no is_initialized check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  kill_dead_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  // get the lengths from the stack (first dimension is on top)
10028
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   473
  Node** length = NEW_RESOURCE_ARRAY(Node*, ndimensions + 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  length[ndimensions] = NULL;  // terminating null for make_runtime_call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  int j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  for (j = ndimensions-1; j >= 0 ; j--) length[j] = pop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  // The original expression was of this form: new T[length0][length1]...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  // It is often the case that the lengths are small (except the last).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  // If that happens, use the fast 1-d creator a constant number of times.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  const jint expand_limit = MIN2((juint)MultiArrayExpandLimit, (juint)100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  jint expand_count = 1;        // count of allocations in the expansion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  jint expand_fanout = 1;       // running total fanout
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  for (j = 0; j < ndimensions-1; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    jint dim_con = find_int_con(length[j], -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    expand_fanout *= dim_con;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    expand_count  += expand_fanout; // count the level-J sub-arrays
353
346ac690301f 6663908: NegativeArraySizeException is not thrown
rasbold
parents: 1
diff changeset
   488
    if (dim_con <= 0
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
        || dim_con > expand_limit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
        || expand_count > expand_limit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
      expand_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  // Can use multianewarray instead of [a]newarray if only one dimension,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  // or if all non-final dimensions are small constants.
4893
fedc27b54caa 6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents: 4567
diff changeset
   498
  if (ndimensions == 1 || (1 <= expand_count && expand_count <= expand_limit)) {
fedc27b54caa 6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents: 4567
diff changeset
   499
    Node* obj = NULL;
fedc27b54caa 6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents: 4567
diff changeset
   500
    // Set the original stack and the reexecute bit for the interpreter
fedc27b54caa 6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents: 4567
diff changeset
   501
    // to reexecute the multianewarray bytecode if deoptimization happens.
fedc27b54caa 6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents: 4567
diff changeset
   502
    // Do it unconditionally even for one dimension multianewarray.
fedc27b54caa 6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents: 4567
diff changeset
   503
    // Note: the reexecute bit will be set in GraphKit::add_safepoint_edges()
fedc27b54caa 6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents: 4567
diff changeset
   504
    // when AllocateArray node for newarray is created.
fedc27b54caa 6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents: 4567
diff changeset
   505
    { PreserveReexecuteState preexecs(this);
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 13963
diff changeset
   506
      inc_sp(ndimensions);
4893
fedc27b54caa 6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents: 4567
diff changeset
   507
      // Pass 0 as nargs since uncommon trap code does not need to restore stack.
fedc27b54caa 6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents: 4567
diff changeset
   508
      obj = expand_multianewarray(array_klass, &length[0], ndimensions, 0);
fedc27b54caa 6910605: C2: NullPointerException/ClassCaseException is thrown when C2 with DeoptimizeALot is used
kvn
parents: 4567
diff changeset
   509
    } //original reexecute and sp are set back here
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    push(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  address fun = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  switch (ndimensions) {
10028
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   516
  case 1: ShouldNotReachHere(); break;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  case 2: fun = OptoRuntime::multianewarray2_Java(); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  case 3: fun = OptoRuntime::multianewarray3_Java(); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  case 4: fun = OptoRuntime::multianewarray4_Java(); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  case 5: fun = OptoRuntime::multianewarray5_Java(); break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  };
10028
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   522
  Node* c = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
10028
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   524
  if (fun != NULL) {
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   525
    c = make_runtime_call(RC_NO_LEAF | RC_NO_IO,
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   526
                          OptoRuntime::multianewarray_Type(ndimensions),
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   527
                          fun, NULL, TypeRawPtr::BOTTOM,
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   528
                          makecon(TypeKlassPtr::make(array_klass)),
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   529
                          length[0], length[1], length[2],
15480
a9e84da84519 8006807: C2 crash due to out of bounds array access in Parse::do_multianewarray
drchase
parents: 14835
diff changeset
   530
                          (ndimensions > 2) ? length[3] : NULL,
a9e84da84519 8006807: C2 crash due to out of bounds array access in Parse::do_multianewarray
drchase
parents: 14835
diff changeset
   531
                          (ndimensions > 3) ? length[4] : NULL);
10028
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   532
  } else {
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   533
    // Create a java array for dimension sizes
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   534
    Node* dims = NULL;
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   535
    { PreserveReexecuteState preexecs(this);
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 13963
diff changeset
   536
      inc_sp(ndimensions);
10028
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   537
      Node* dims_array_klass = makecon(TypeKlassPtr::make(ciArrayKlass::make(ciType::make(T_INT))));
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   538
      dims = new_array(dims_array_klass, intcon(ndimensions), 0);
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   539
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   540
      // Fill-in it with values
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   541
      for (j = 0; j < ndimensions; j++) {
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   542
        Node *dims_elem = array_element_address(dims, intcon(j), T_INT);
22845
d8812d0ff387 8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering
goetz
parents: 19770
diff changeset
   543
        store_to_memory(control(), dims_elem, length[j], T_INT, TypeAryPtr::INTS, MemNode::unordered);
10028
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   544
      }
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   545
    }
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   546
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   547
    c = make_runtime_call(RC_NO_LEAF | RC_NO_IO,
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   548
                          OptoRuntime::multianewarrayN_Type(),
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   549
                          OptoRuntime::multianewarrayN_Java(), NULL, TypeRawPtr::BOTTOM,
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   550
                          makecon(TypeKlassPtr::make(array_klass)),
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   551
                          dims);
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   552
  }
14835
70896cb93c35 8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents: 14621
diff changeset
   553
  make_slow_call_ex(c, env()->Throwable_klass(), false);
10028
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   554
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   555
  Node* res = _gvn.transform(new ProjNode(c, TypeFunc::Parms));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  const Type* type = TypeOopPtr::make_from_klass_raw(array_klass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  // Improve the type:  We know it's not null, exact, and of a given length.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  type = type->is_ptr()->cast_to_ptr_type(TypePtr::NotNull);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  type = type->is_aryptr()->cast_to_exactness(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  const TypeInt* ltype = _gvn.find_int_type(length[0]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  if (ltype != NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
    type = type->is_aryptr()->cast_to_size(ltype);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
10028
035159a868a1 7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents: 8725
diff changeset
   567
    // We cannot sharpen the nested sub-arrays, since the top level is mutable.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 23528
diff changeset
   569
  Node* cast = _gvn.transform( new CheckCastPPNode(control(), res, type) );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  push(cast);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  // Possible improvements:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  // - Make a fast path for small multi-arrays.  (W/ implicit init. loops.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  // - Issue CastII against length[*] values, to TypeInt::POS.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
}