src/share/vm/c1/c1_Runtime1.hpp

Tue, 05 Jun 2012 10:15:27 +0200

author
roland
date
Tue, 05 Jun 2012 10:15:27 +0200
changeset 3838
8f37087fc13f
parent 3244
cec1757a0134
child 4037
da91efe96a93
permissions
-rw-r--r--

7171890: C1: add Class.isInstance intrinsic
Summary: Class.cast which calls Class.isInstance is heavily used by the new JSR 292 implementation
Reviewed-by: roland
Contributed-by: Krystal Mok <rednaxelafx@gmail.com>

     1 /*
     2  * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 #ifndef SHARE_VM_C1_C1_RUNTIME1_HPP
    26 #define SHARE_VM_C1_C1_RUNTIME1_HPP
    28 #include "c1/c1_FrameMap.hpp"
    29 #include "code/stubs.hpp"
    30 #include "interpreter/interpreter.hpp"
    31 #include "memory/allocation.hpp"
    32 #include "runtime/deoptimization.hpp"
    34 class StubAssembler;
    36 // The Runtime1 holds all assembly stubs and VM
    37 // runtime routines needed by code code generated
    38 // by the Compiler1.
    40 #define RUNTIME1_STUBS(stub, last_entry) \
    41   stub(dtrace_object_alloc)          \
    42   stub(unwind_exception)             \
    43   stub(forward_exception)            \
    44   stub(throw_range_check_failed)       /* throws ArrayIndexOutOfBoundsException */ \
    45   stub(throw_index_exception)          /* throws IndexOutOfBoundsException */ \
    46   stub(throw_div0_exception)         \
    47   stub(throw_null_pointer_exception) \
    48   stub(register_finalizer)           \
    49   stub(new_instance)                 \
    50   stub(fast_new_instance)            \
    51   stub(fast_new_instance_init_check) \
    52   stub(new_type_array)               \
    53   stub(new_object_array)             \
    54   stub(new_multi_array)              \
    55   stub(handle_exception_nofpu)         /* optimized version that does not preserve fpu registers */ \
    56   stub(handle_exception)             \
    57   stub(handle_exception_from_callee) \
    58   stub(throw_array_store_exception)  \
    59   stub(throw_class_cast_exception)   \
    60   stub(throw_incompatible_class_change_error)   \
    61   stub(slow_subtype_check)           \
    62   stub(monitorenter)                 \
    63   stub(monitorenter_nofpu)             /* optimized version that does not preserve fpu registers */ \
    64   stub(monitorexit)                  \
    65   stub(monitorexit_nofpu)              /* optimized version that does not preserve fpu registers */ \
    66   stub(deoptimize)                   \
    67   stub(access_field_patching)        \
    68   stub(load_klass_patching)          \
    69   stub(g1_pre_barrier_slow)          \
    70   stub(g1_post_barrier_slow)         \
    71   stub(fpu2long_stub)                \
    72   stub(counter_overflow)             \
    73   last_entry(number_of_ids)
    75 #define DECLARE_STUB_ID(x)       x ## _id ,
    76 #define DECLARE_LAST_STUB_ID(x)  x
    77 #define STUB_NAME(x)             #x " Runtime1 stub",
    78 #define LAST_STUB_NAME(x)        #x " Runtime1 stub"
    80 class Runtime1: public AllStatic {
    81   friend class VMStructs;
    82   friend class ArrayCopyStub;
    84  public:
    85   enum StubID {
    86     RUNTIME1_STUBS(DECLARE_STUB_ID, DECLARE_LAST_STUB_ID)
    87   };
    89   // statistics
    90 #ifndef PRODUCT
    91   static int _resolve_invoke_cnt;
    92   static int _handle_wrong_method_cnt;
    93   static int _ic_miss_cnt;
    94   static int _generic_arraycopy_cnt;
    95   static int _primitive_arraycopy_cnt;
    96   static int _oop_arraycopy_cnt;
    97   static int _generic_arraycopystub_cnt;
    98   static int _arraycopy_slowcase_cnt;
    99   static int _arraycopy_checkcast_cnt;
   100   static int _arraycopy_checkcast_attempt_cnt;
   101   static int _new_type_array_slowcase_cnt;
   102   static int _new_object_array_slowcase_cnt;
   103   static int _new_instance_slowcase_cnt;
   104   static int _new_multi_array_slowcase_cnt;
   105   static int _monitorenter_slowcase_cnt;
   106   static int _monitorexit_slowcase_cnt;
   107   static int _patch_code_slowcase_cnt;
   108   static int _throw_range_check_exception_count;
   109   static int _throw_index_exception_count;
   110   static int _throw_div0_exception_count;
   111   static int _throw_null_pointer_exception_count;
   112   static int _throw_class_cast_exception_count;
   113   static int _throw_incompatible_class_change_error_count;
   114   static int _throw_array_store_exception_count;
   115   static int _throw_count;
   116 #endif
   118  private:
   119   static CodeBlob* _blobs[number_of_ids];
   120   static const char* _blob_names[];
   122   // stub generation
   123   static void       generate_blob_for(BufferBlob* blob, StubID id);
   124   static OopMapSet* generate_code_for(StubID id, StubAssembler* sasm);
   125   static OopMapSet* generate_exception_throw(StubAssembler* sasm, address target, bool has_argument);
   126   static OopMapSet* generate_handle_exception(StubID id, StubAssembler* sasm);
   127   static void       generate_unwind_exception(StubAssembler *sasm);
   128   static OopMapSet* generate_patching(StubAssembler* sasm, address target);
   130   static OopMapSet* generate_stub_call(StubAssembler* sasm, Register result, address entry,
   131                                        Register arg1 = noreg, Register arg2 = noreg, Register arg3 = noreg);
   133   // runtime entry points
   134   static void new_instance    (JavaThread* thread, klassOopDesc* klass);
   135   static void new_type_array  (JavaThread* thread, klassOopDesc* klass, jint length);
   136   static void new_object_array(JavaThread* thread, klassOopDesc* klass, jint length);
   137   static void new_multi_array (JavaThread* thread, klassOopDesc* klass, int rank, jint* dims);
   139   static address counter_overflow(JavaThread* thread, int bci, methodOopDesc* method);
   141   static void unimplemented_entry   (JavaThread* thread, StubID id);
   143   static address exception_handler_for_pc(JavaThread* thread);
   145   static void throw_range_check_exception(JavaThread* thread, int index);
   146   static void throw_index_exception(JavaThread* thread, int index);
   147   static void throw_div0_exception(JavaThread* thread);
   148   static void throw_null_pointer_exception(JavaThread* thread);
   149   static void throw_class_cast_exception(JavaThread* thread, oopDesc* object);
   150   static void throw_incompatible_class_change_error(JavaThread* thread);
   151   static void throw_array_store_exception(JavaThread* thread, oopDesc* object);
   153   static void monitorenter(JavaThread* thread, oopDesc* obj, BasicObjectLock* lock);
   154   static void monitorexit (JavaThread* thread, BasicObjectLock* lock);
   156   static void deoptimize(JavaThread* thread);
   158   static int access_field_patching(JavaThread* thread);
   159   static int move_klass_patching(JavaThread* thread);
   161   static void patch_code(JavaThread* thread, StubID stub_id);
   163  public:
   164   // initialization
   165   static void initialize(BufferBlob* blob);
   166   static void initialize_pd();
   168   // stubs
   169   static CodeBlob* blob_for (StubID id);
   170   static address   entry_for(StubID id)          { return blob_for(id)->code_begin(); }
   171   static const char* name_for (StubID id);
   172   static const char* name_for_address(address entry);
   174   // platform might add runtime names.
   175   static const char* pd_name_for_address(address entry);
   177   // method tracing
   178   static void trace_block_entry(jint block_id);
   180 #ifndef PRODUCT
   181   static address throw_count_address()               { return (address)&_throw_count;             }
   182   static address arraycopy_count_address(BasicType type);
   183 #endif
   185   // directly accessible leaf routine
   186   static int  arraycopy(oopDesc* src, int src_pos, oopDesc* dst, int dst_pos, int length);
   187   static void primitive_arraycopy(HeapWord* src, HeapWord* dst, int length);
   188   static void oop_arraycopy(HeapWord* src, HeapWord* dst, int length);
   189   static int  is_instance_of(oopDesc* mirror, oopDesc* obj);
   191   static void print_statistics()                 PRODUCT_RETURN;
   192 };
   194 #endif // SHARE_VM_C1_C1_RUNTIME1_HPP

mercurial