src/hotspot/share/c1/c1_Runtime1.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 50094 2f79462aab9b
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50094
diff changeset
     2
 * Copyright (c) 1999, 2019, 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: 1374
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1374
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: 1374
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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50094
diff changeset
    25
#ifndef SHARE_C1_C1_RUNTIME1_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50094
diff changeset
    26
#define SHARE_C1_C1_RUNTIME1_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    28
#include "c1/c1_FrameMap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "code/stubs.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    30
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    32
#include "runtime/deoptimization.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class StubAssembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// The Runtime1 holds all assembly stubs and VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// runtime routines needed by code code generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// by the Compiler1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
#define RUNTIME1_STUBS(stub, last_entry) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  stub(dtrace_object_alloc)          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  stub(unwind_exception)             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  stub(forward_exception)            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  stub(throw_range_check_failed)       /* throws ArrayIndexOutOfBoundsException */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  stub(throw_index_exception)          /* throws IndexOutOfBoundsException */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  stub(throw_div0_exception)         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  stub(throw_null_pointer_exception) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  stub(register_finalizer)           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  stub(new_instance)                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  stub(fast_new_instance)            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  stub(fast_new_instance_init_check) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  stub(new_type_array)               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  stub(new_object_array)             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  stub(new_multi_array)              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  stub(handle_exception_nofpu)         /* optimized version that does not preserve fpu registers */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  stub(handle_exception)             \
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
    57
  stub(handle_exception_from_callee) \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  stub(throw_array_store_exception)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  stub(throw_class_cast_exception)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  stub(throw_incompatible_class_change_error)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  stub(slow_subtype_check)           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  stub(monitorenter)                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  stub(monitorenter_nofpu)             /* optimized version that does not preserve fpu registers */ \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  stub(monitorexit)                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  stub(monitorexit_nofpu)              /* optimized version that does not preserve fpu registers */ \
10972
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
    66
  stub(deoptimize)                   \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  stub(access_field_patching)        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  stub(load_klass_patching)          \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
    69
  stub(load_mirror_patching)         \
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 16611
diff changeset
    70
  stub(load_appendix_patching)       \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  stub(fpu2long_stub)                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  stub(counter_overflow)             \
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13728
diff changeset
    73
  stub(predicate_failed_trap)        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  last_entry(number_of_ids)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
#define DECLARE_STUB_ID(x)       x ## _id ,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
#define DECLARE_LAST_STUB_ID(x)  x
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
#define STUB_NAME(x)             #x " Runtime1 stub",
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
#define LAST_STUB_NAME(x)        #x " Runtime1 stub"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
49906
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49470
diff changeset
    81
class StubAssemblerCodeGenClosure: public Closure {
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49470
diff changeset
    82
 public:
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49470
diff changeset
    83
  virtual OopMapSet* generate_code(StubAssembler* sasm) = 0;
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49470
diff changeset
    84
};
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49470
diff changeset
    85
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
class Runtime1: public AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  friend class ArrayCopyStub;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  enum StubID {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    RUNTIME1_STUBS(DECLARE_STUB_ID, DECLARE_LAST_STUB_ID)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static int _resolve_invoke_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  static int _handle_wrong_method_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  static int _ic_miss_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  static int _generic_arraycopy_cnt;
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8495
diff changeset
   101
  static int _generic_arraycopystub_cnt;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  static int _arraycopy_slowcase_cnt;
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8495
diff changeset
   103
  static int _arraycopy_checkcast_cnt;
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8495
diff changeset
   104
  static int _arraycopy_checkcast_attempt_cnt;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  static int _new_type_array_slowcase_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  static int _new_object_array_slowcase_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  static int _new_instance_slowcase_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  static int _new_multi_array_slowcase_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  static int _monitorenter_slowcase_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  static int _monitorexit_slowcase_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  static int _patch_code_slowcase_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  static int _throw_range_check_exception_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  static int _throw_index_exception_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  static int _throw_div0_exception_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  static int _throw_null_pointer_exception_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  static int _throw_class_cast_exception_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  static int _throw_incompatible_class_change_error_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  static int _throw_array_store_exception_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  static int _throw_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  static CodeBlob* _blobs[number_of_ids];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  static const char* _blob_names[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // stub generation
49906
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49470
diff changeset
   127
 public:
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49470
diff changeset
   128
  static CodeBlob*  generate_blob(BufferBlob* buffer_blob, int stub_id, const char* name, bool expect_oop_map, StubAssemblerCodeGenClosure *cl);
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   129
  static void       generate_blob_for(BufferBlob* blob, StubID id);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   130
  static OopMapSet* generate_code_for(StubID id, StubAssembler* sasm);
49906
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents: 49470
diff changeset
   131
 private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  static OopMapSet* generate_exception_throw(StubAssembler* sasm, address target, bool has_argument);
8495
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   133
  static OopMapSet* generate_handle_exception(StubID id, StubAssembler* sasm);
a4959965eaa3 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 8067
diff changeset
   134
  static void       generate_unwind_exception(StubAssembler *sasm);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  static OopMapSet* generate_patching(StubAssembler* sasm, address target);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  static OopMapSet* generate_stub_call(StubAssembler* sasm, Register result, address entry,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
                                       Register arg1 = noreg, Register arg2 = noreg, Register arg3 = noreg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // runtime entry points
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   141
  static void new_instance    (JavaThread* thread, Klass* klass);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   142
  static void new_type_array  (JavaThread* thread, Klass* klass, jint length);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   143
  static void new_object_array(JavaThread* thread, Klass* klass, jint length);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   144
  static void new_multi_array (JavaThread* thread, Klass* klass, int rank, jint* dims);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   146
  static address counter_overflow(JavaThread* thread, int bci, Method* method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  static void unimplemented_entry   (JavaThread* thread, StubID id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  static address exception_handler_for_pc(JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
50094
2f79462aab9b 8201593: Print array length in ArrayIndexOutOfBoundsException.
goetz
parents: 49906
diff changeset
   152
  static void throw_range_check_exception(JavaThread* thread, int index, arrayOopDesc* a);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  static void throw_index_exception(JavaThread* thread, int index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  static void throw_div0_exception(JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  static void throw_null_pointer_exception(JavaThread* thread);
8067
f5f4eac4c48f 7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents: 7397
diff changeset
   156
  static void throw_class_cast_exception(JavaThread* thread, oopDesc* object);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  static void throw_incompatible_class_change_error(JavaThread* thread);
8067
f5f4eac4c48f 7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents: 7397
diff changeset
   158
  static void throw_array_store_exception(JavaThread* thread, oopDesc* object);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  static void monitorenter(JavaThread* thread, oopDesc* obj, BasicObjectLock* lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  static void monitorexit (JavaThread* thread, BasicObjectLock* lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
24442
4d4ae31dea26 8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents: 22234
diff changeset
   163
  static void deoptimize(JavaThread* thread, jint trap_request);
10972
ef164805934c 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 10508
diff changeset
   164
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  static int access_field_patching(JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  static int move_klass_patching(JavaThread* thread);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12949
diff changeset
   167
  static int move_mirror_patching(JavaThread* thread);
19710
2f8ca425504e 7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents: 16611
diff changeset
   168
  static int move_appendix_patching(JavaThread* thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  static void patch_code(JavaThread* thread, StubID stub_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // initialization
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
   174
  static void initialize(BufferBlob* blob);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  static void initialize_pd();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // stubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  static CodeBlob* blob_for (StubID id);
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   179
  static address   entry_for(StubID id)          { return blob_for(id)->code_begin(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  static const char* name_for (StubID id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  static const char* name_for_address(address entry);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   183
  // platform might add runtime names.
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   184
  static const char* pd_name_for_address(address entry);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   185
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // method tracing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  static void trace_block_entry(jint block_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
#ifndef PRODUCT
9102
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8495
diff changeset
   190
  static address throw_count_address()               { return (address)&_throw_count;             }
4708a4aefb33 7033154: Improve C1 arraycopy performance
roland
parents: 8495
diff changeset
   191
  static address arraycopy_count_address(BasicType type);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // directly accessible leaf routine
12949
e125ba4c16bd 7171890: C1: add Class.isInstance intrinsic
roland
parents: 10972
diff changeset
   195
  static int  is_instance_of(oopDesc* mirror, oopDesc* obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
16611
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13728
diff changeset
   197
  static void predicate_failed_trap(JavaThread* thread);
6807a703dd6b 7153771: array bound check elimination for c1
roland
parents: 13728
diff changeset
   198
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  static void print_statistics()                 PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
   201
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50094
diff changeset
   202
#endif // SHARE_C1_C1_RUNTIME1_HPP