OSDN Git Service

Fast ART x86 interpreter
authorSerguei Katkov <serguei.i.katkov@intel.com>
Thu, 31 Dec 2015 07:05:31 +0000 (13:05 +0600)
committerbuzbee <buzbee@google.com>
Tue, 19 Jan 2016 20:12:45 +0000 (12:12 -0800)
commit99229c71efda9363faa571017c52a215c6e28f83
treea1323c1cdf1b53de8f9039014c92b6869b361faf
parentf74388daf23522dd4e9ebe6640030f4fd52c52ea
Fast ART x86 interpreter

Port of ART Dalvik-style interpreter for x86.
See Bill's patch for details
https://android-review.googlesource.com/#/c/188977/

Included fixes
https://android-review.googlesource.com/#/c/196153/
ART: Mterp read barrier fix + minor cleanup

https://android-review.googlesource.com/#/c/196501/
ART: Mterp - remove redundant null check

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