OSDN Git Service

Fast ART x86_64 interpretator
authorSerguei Katkov <serguei.i.katkov@intel.com>
Thu, 14 Jan 2016 04:30:21 +0000 (10:30 +0600)
committerSerguei Katkov <serguei.i.katkov@intel.com>
Thu, 18 Feb 2016 06:10:29 +0000 (12:10 +0600)
commitc669beb798e273dd3d44cfa6a7a95ff90eba7209
tree4eb5ea171ee9e55284058b7c331d2cc79a18490a
parentff8579efb24457bb2f2b451a4e735b8bc4d0200c
Fast ART x86_64 interpretator

Introduce the ART x86_64 fast interpreter.

Change-Id: I3649698eb251ac8acc98851969f9445f60d17b02
Signed-off-by: Serguei Katkov <serguei.i.katkov@intel.com>
282 files changed:
runtime/Android.mk
runtime/interpreter/interpreter.cc
runtime/interpreter/mterp/config_x86_64
runtime/interpreter/mterp/out/mterp_x86_64.S [new file with mode: 0644]
runtime/interpreter/mterp/rebuild.sh
runtime/interpreter/mterp/x86_64/alt_stub.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/bincmp.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/bindiv.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/bindiv2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/bindivLit16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/bindivLit8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/binop.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/binop1.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/binop2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/binopLit16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/binopLit8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/binopWide.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/binopWide2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/cvtfp_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/entry.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/fallback.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/footer.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/fpcmp.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/fpcvt.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/header.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/invoke.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_add_double.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_add_double_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_add_float.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_add_float_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_add_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_add_int_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_add_int_lit16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_add_int_lit8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_add_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_add_long_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_aget.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_aget_boolean.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_aget_byte.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_aget_char.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_aget_object.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_aget_short.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_aget_wide.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_and_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_and_int_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_and_int_lit16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_and_int_lit8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_and_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_and_long_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_aput.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_aput_boolean.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_aput_byte.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_aput_char.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_aput_object.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_aput_short.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_aput_wide.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_array_length.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_check_cast.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_cmp_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_cmpg_double.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_cmpg_float.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_cmpl_double.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_cmpl_float.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_const.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_const_16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_const_4.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_const_class.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_const_high16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_const_string.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_const_string_jumbo.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_const_wide.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_const_wide_16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_const_wide_32.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_const_wide_high16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_div_double.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_div_double_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_div_float.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_div_float_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_div_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_div_int_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_div_int_lit16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_div_int_lit8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_div_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_div_long_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_double_to_float.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_double_to_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_double_to_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_fill_array_data.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_filled_new_array.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_filled_new_array_range.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_float_to_double.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_float_to_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_float_to_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_goto.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_goto_16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_goto_32.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_if_eq.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_if_eqz.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_if_ge.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_if_gez.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_if_gt.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_if_gtz.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_if_le.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_if_lez.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_if_lt.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_if_ltz.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_if_ne.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_if_nez.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iget.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iget_boolean.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iget_boolean_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iget_byte.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iget_byte_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iget_char.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iget_char_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iget_object.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iget_object_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iget_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iget_short.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iget_short_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iget_wide.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iget_wide_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_instance_of.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_int_to_byte.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_int_to_char.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_int_to_double.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_int_to_float.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_int_to_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_int_to_short.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_invoke_direct.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_invoke_direct_range.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_invoke_interface.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_invoke_interface_range.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_invoke_static.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_invoke_static_range.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_invoke_super.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_invoke_super_range.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_invoke_virtual.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_invoke_virtual_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_invoke_virtual_range.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_invoke_virtual_range_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iput.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iput_boolean.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iput_boolean_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iput_byte.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iput_byte_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iput_char.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iput_char_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iput_object.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iput_object_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iput_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iput_short.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iput_short_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iput_wide.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_iput_wide_quick.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_long_to_double.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_long_to_float.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_long_to_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_monitor_enter.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_monitor_exit.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_move.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_move_16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_move_exception.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_move_from16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_move_object.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_move_object_16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_move_object_from16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_move_result.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_move_result_object.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_move_result_wide.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_move_wide.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_move_wide_16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_move_wide_from16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_mul_double.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_mul_double_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_mul_float.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_mul_float_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_mul_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_mul_int_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_mul_int_lit16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_mul_int_lit8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_mul_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_mul_long_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_neg_double.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_neg_float.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_neg_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_neg_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_new_array.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_new_instance.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_nop.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_not_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_not_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_or_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_or_int_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_or_int_lit16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_or_int_lit8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_or_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_or_long_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_packed_switch.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_rem_double.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_rem_double_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_rem_float.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_rem_float_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_rem_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_rem_int_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_rem_int_lit16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_rem_int_lit8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_rem_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_rem_long_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_return.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_return_object.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_return_void.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_return_void_no_barrier.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_return_wide.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_rsub_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_rsub_int_lit8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sget.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sget_boolean.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sget_byte.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sget_char.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sget_object.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sget_short.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sget_wide.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_shl_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_shl_int_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_shl_int_lit8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_shl_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_shl_long_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_shr_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_shr_int_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_shr_int_lit8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_shr_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_shr_long_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sparse_switch.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sput.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sput_boolean.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sput_byte.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sput_char.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sput_object.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sput_short.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sput_wide.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sub_double.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sub_double_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sub_float.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sub_float_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sub_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sub_int_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sub_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_sub_long_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_throw.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_3e.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_3f.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_40.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_41.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_42.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_43.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_79.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_7a.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_f4.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_fa.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_fb.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_fc.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_fd.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_fe.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_unused_ff.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_ushr_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_ushr_int_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_ushr_int_lit8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_ushr_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_ushr_long_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_xor_int.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_xor_int_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_xor_int_lit16.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_xor_int_lit8.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_xor_long.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/op_xor_long_2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/shop2addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/sseBinop.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/sseBinop2Addr.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/unop.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/unused.S [new file with mode: 0644]
runtime/interpreter/mterp/x86_64/zcmp.S [new file with mode: 0644]