comparison src/share/vm/c1/c1_Runtime1.hpp @ 1434:72cfb36c6bb2

* enabled all jtt tests * added proxy that counts jni calls * honor hotspot stackshadowpages * constant pool caching * monitor enter/exit * arithmetic stubs (frem, drem, ...) * create stack values for debug info * some doc
author Lukas Stadler <lukas.stadler@oracle.com>
date Thu, 30 Sep 2010 17:19:48 -0700
parents abc670a709dc
children 8cfe3537a0d3
comparison
equal deleted inserted replaced
1433:efba53f86c4f 1434:72cfb36c6bb2
63 stub(c1x_unwind_exception_call) \ 63 stub(c1x_unwind_exception_call) \
64 stub(c1x_handle_exception) \ 64 stub(c1x_handle_exception) \
65 stub(c1x_global_implicit_null) \ 65 stub(c1x_global_implicit_null) \
66 stub(c1x_throw_div0_exception) \ 66 stub(c1x_throw_div0_exception) \
67 stub(c1x_slow_subtype_check) \ 67 stub(c1x_slow_subtype_check) \
68 stub(c1x_arithmetic_frem) \
69 stub(c1x_arithmetic_drem) \
70 stub(c1x_monitorenter) \
71 stub(c1x_monitorexit) \
68 last_entry(number_of_ids) 72 last_entry(number_of_ids)
69 73
70 #define DECLARE_STUB_ID(x) x ## _id , 74 #define DECLARE_STUB_ID(x) x ## _id ,
71 #define DECLARE_LAST_STUB_ID(x) x 75 #define DECLARE_LAST_STUB_ID(x) x
72 #define STUB_NAME(x) #x " Runtime1 stub", 76 #define STUB_NAME(x) #x " Runtime1 stub",