OSDN Git Service

Dalvik fast interpreter support and JIT implementation
authorRaghu Gandham <raghu@mips.com>
Wed, 2 May 2012 21:27:16 +0000 (14:27 -0700)
committerChih-Wei Huang <cwhuang@linux.org.tw>
Tue, 19 Jun 2012 05:44:33 +0000 (13:44 +0800)
commit00a109de7c0728ea207767530f28f33e00c3abc4
treed66b0bd1d21612869ab07501ad2d94dd02cd94e0
parente567c6820afee8cebc502c5c8c4f4a7ca33a5c93
Dalvik fast interpreter support and JIT implementation

Change-Id: I9bb4f6875b7061d3ffaee73f204026cb8ba3ed39
Signed-off-by: Raghu Gandham <raghu@mips.com>
Signed-off-by: Chris Dearman <chris@mips.com>
Signed-off-by: Douglas Leung <douglas@mips.com>
Signed-off-by: Don Padgett <don@mips.com>
662 files changed:
vm/Android.mk
vm/Dvm.mk
vm/Thread.cpp
vm/arch/generic/Call.cpp
vm/arch/mips/CallO32.S [new file with mode: 0644]
vm/arch/mips/HintsO32.cpp [new file with mode: 0644]
vm/compiler/Compiler.cpp
vm/compiler/Compiler.h
vm/compiler/CompilerUtility.h
vm/compiler/codegen/arm/ArchUtility.cpp
vm/compiler/codegen/mips/ArchUtility.cpp [new file with mode: 0644]
vm/compiler/codegen/mips/Assemble.cpp [new file with mode: 0644]
vm/compiler/codegen/mips/CalloutHelper.h [new file with mode: 0644]
vm/compiler/codegen/mips/Codegen.h [new file with mode: 0644]
vm/compiler/codegen/mips/CodegenCommon.cpp [new file with mode: 0644]
vm/compiler/codegen/mips/CodegenDriver.cpp [new file with mode: 0644]
vm/compiler/codegen/mips/CodegenFactory.cpp [new file with mode: 0644]
vm/compiler/codegen/mips/FP/MipsFP.cpp [new file with mode: 0644]
vm/compiler/codegen/mips/GlobalOptimizations.cpp [new file with mode: 0644]
vm/compiler/codegen/mips/LocalOptimizations.cpp [new file with mode: 0644]
vm/compiler/codegen/mips/Mips32/Factory.cpp [new file with mode: 0644]
vm/compiler/codegen/mips/Mips32/Gen.cpp [new file with mode: 0644]
vm/compiler/codegen/mips/Mips32/Ralloc.cpp [new file with mode: 0644]
vm/compiler/codegen/mips/MipsLIR.h [new file with mode: 0644]
vm/compiler/codegen/mips/Ralloc.h [new file with mode: 0644]
vm/compiler/codegen/mips/RallocUtil.cpp [new file with mode: 0644]
vm/compiler/codegen/mips/mips/ArchVariant.cpp [new file with mode: 0644]
vm/compiler/codegen/mips/mips/ArchVariant.h [new file with mode: 0644]
vm/compiler/codegen/mips/mips/CallingConvention.S [new file with mode: 0644]
vm/compiler/codegen/mips/mips/Codegen.cpp [new file with mode: 0644]
vm/compiler/codegen/mips/mips/MethodCodegenDriver.cpp [new file with mode: 0644]
vm/compiler/codegen/x86/ArchUtility.cpp
vm/compiler/template/config-mips [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_ADD_DOUBLE_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_ADD_FLOAT_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_CMPG_DOUBLE_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_CMPG_FLOAT_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_CMPL_DOUBLE_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_CMPL_FLOAT_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_CMP_LONG.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_DIV_DOUBLE_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_DIV_FLOAT_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_DOUBLE_TO_FLOAT_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_DOUBLE_TO_INT_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_FLOAT_TO_DOUBLE_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_FLOAT_TO_INT_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_INTERPRET.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_INT_TO_DOUBLE_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_INT_TO_FLOAT_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_INVOKE_METHOD_CHAIN.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_INVOKE_METHOD_CHAIN_PROF.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_INVOKE_METHOD_NATIVE.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_INVOKE_METHOD_NATIVE_PROF.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_INVOKE_METHOD_NO_OPT.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_INVOKE_METHOD_NO_OPT_PROF.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_INVOKE_METHOD_PREDICTED_CHAIN.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_INVOKE_METHOD_PREDICTED_CHAIN_PROF.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_MEM_OP_DECODE.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_MONITOR_ENTER.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_MONITOR_ENTER_DEBUG.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_MUL_DOUBLE_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_MUL_FLOAT_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_MUL_LONG.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_PERIODIC_PROFILING.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_RESTORE_STATE.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_RETURN.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_RETURN_PROF.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_SAVE_STATE.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_SHL_LONG.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_SHR_LONG.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_SQRT_DOUBLE_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_STRING_COMPARETO.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_STRING_INDEXOF.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_SUB_DOUBLE_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_SUB_FLOAT_VFP.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_THROW_EXCEPTION_COMMON.S [new file with mode: 0644]
vm/compiler/template/mips/TEMPLATE_USHR_LONG.S [new file with mode: 0644]
vm/compiler/template/mips/TemplateOpList.h [new file with mode: 0644]
vm/compiler/template/mips/fbinop.S [new file with mode: 0644]
vm/compiler/template/mips/fbinopWide.S [new file with mode: 0644]
vm/compiler/template/mips/footer.S [new file with mode: 0644]
vm/compiler/template/mips/funop.S [new file with mode: 0644]
vm/compiler/template/mips/funopNarrower.S [new file with mode: 0644]
vm/compiler/template/mips/funopWider.S [new file with mode: 0644]
vm/compiler/template/mips/header.S [new file with mode: 0644]
vm/compiler/template/mips/platform.S [new file with mode: 0644]
vm/compiler/template/out/CompilerTemplateAsm-mips.S [new file with mode: 0644]
vm/compiler/template/rebuild.sh
vm/mterp/Mterp.cpp
vm/mterp/c/header.cpp
vm/mterp/common/asm-constants.h
vm/mterp/common/mips-defines.h [new file with mode: 0644]
vm/mterp/config-mips [new file with mode: 0644]
vm/mterp/gen-mterp.py
vm/mterp/mips/ALT_OP_DISPATCH_FF.S [new file with mode: 0644]
vm/mterp/mips/OP_ADD_DOUBLE.S [new file with mode: 0644]
vm/mterp/mips/OP_ADD_DOUBLE_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_ADD_FLOAT.S [new file with mode: 0644]
vm/mterp/mips/OP_ADD_FLOAT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_ADD_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_ADD_INT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_ADD_INT_LIT16.S [new file with mode: 0644]
vm/mterp/mips/OP_ADD_INT_LIT8.S [new file with mode: 0644]
vm/mterp/mips/OP_ADD_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_ADD_LONG_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_AGET.S [new file with mode: 0644]
vm/mterp/mips/OP_AGET_BOOLEAN.S [new file with mode: 0644]
vm/mterp/mips/OP_AGET_BYTE.S [new file with mode: 0644]
vm/mterp/mips/OP_AGET_CHAR.S [new file with mode: 0644]
vm/mterp/mips/OP_AGET_OBJECT.S [new file with mode: 0644]
vm/mterp/mips/OP_AGET_SHORT.S [new file with mode: 0644]
vm/mterp/mips/OP_AGET_WIDE.S [new file with mode: 0644]
vm/mterp/mips/OP_AND_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_AND_INT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_AND_INT_LIT16.S [new file with mode: 0644]
vm/mterp/mips/OP_AND_INT_LIT8.S [new file with mode: 0644]
vm/mterp/mips/OP_AND_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_AND_LONG_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_APUT.S [new file with mode: 0644]
vm/mterp/mips/OP_APUT_BOOLEAN.S [new file with mode: 0644]
vm/mterp/mips/OP_APUT_BYTE.S [new file with mode: 0644]
vm/mterp/mips/OP_APUT_CHAR.S [new file with mode: 0644]
vm/mterp/mips/OP_APUT_OBJECT.S [new file with mode: 0644]
vm/mterp/mips/OP_APUT_SHORT.S [new file with mode: 0644]
vm/mterp/mips/OP_APUT_WIDE.S [new file with mode: 0644]
vm/mterp/mips/OP_ARRAY_LENGTH.S [new file with mode: 0644]
vm/mterp/mips/OP_BREAKPOINT.S [new file with mode: 0644]
vm/mterp/mips/OP_CHECK_CAST.S [new file with mode: 0644]
vm/mterp/mips/OP_CHECK_CAST_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_CMPG_DOUBLE.S [new file with mode: 0644]
vm/mterp/mips/OP_CMPG_FLOAT.S [new file with mode: 0644]
vm/mterp/mips/OP_CMPL_DOUBLE.S [new file with mode: 0644]
vm/mterp/mips/OP_CMPL_FLOAT.S [new file with mode: 0644]
vm/mterp/mips/OP_CMP_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_CONST.S [new file with mode: 0644]
vm/mterp/mips/OP_CONST_16.S [new file with mode: 0644]
vm/mterp/mips/OP_CONST_4.S [new file with mode: 0644]
vm/mterp/mips/OP_CONST_CLASS.S [new file with mode: 0644]
vm/mterp/mips/OP_CONST_CLASS_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_CONST_HIGH16.S [new file with mode: 0644]
vm/mterp/mips/OP_CONST_STRING.S [new file with mode: 0644]
vm/mterp/mips/OP_CONST_STRING_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_CONST_WIDE.S [new file with mode: 0644]
vm/mterp/mips/OP_CONST_WIDE_16.S [new file with mode: 0644]
vm/mterp/mips/OP_CONST_WIDE_32.S [new file with mode: 0644]
vm/mterp/mips/OP_CONST_WIDE_HIGH16.S [new file with mode: 0644]
vm/mterp/mips/OP_DISPATCH_FF.S [new file with mode: 0644]
vm/mterp/mips/OP_DIV_DOUBLE.S [new file with mode: 0644]
vm/mterp/mips/OP_DIV_DOUBLE_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_DIV_FLOAT.S [new file with mode: 0644]
vm/mterp/mips/OP_DIV_FLOAT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_DIV_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_DIV_INT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_DIV_INT_LIT16.S [new file with mode: 0644]
vm/mterp/mips/OP_DIV_INT_LIT8.S [new file with mode: 0644]
vm/mterp/mips/OP_DIV_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_DIV_LONG_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_DOUBLE_TO_FLOAT.S [new file with mode: 0644]
vm/mterp/mips/OP_DOUBLE_TO_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_DOUBLE_TO_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_EXECUTE_INLINE.S [new file with mode: 0644]
vm/mterp/mips/OP_EXECUTE_INLINE_RANGE.S [new file with mode: 0644]
vm/mterp/mips/OP_FILLED_NEW_ARRAY.S [new file with mode: 0644]
vm/mterp/mips/OP_FILLED_NEW_ARRAY_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_FILLED_NEW_ARRAY_RANGE.S [new file with mode: 0644]
vm/mterp/mips/OP_FILL_ARRAY_DATA.S [new file with mode: 0644]
vm/mterp/mips/OP_FLOAT_TO_DOUBLE.S [new file with mode: 0644]
vm/mterp/mips/OP_FLOAT_TO_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_FLOAT_TO_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_GOTO.S [new file with mode: 0644]
vm/mterp/mips/OP_GOTO_16.S [new file with mode: 0644]
vm/mterp/mips/OP_GOTO_32.S [new file with mode: 0644]
vm/mterp/mips/OP_IF_EQ.S [new file with mode: 0644]
vm/mterp/mips/OP_IF_EQZ.S [new file with mode: 0644]
vm/mterp/mips/OP_IF_GE.S [new file with mode: 0644]
vm/mterp/mips/OP_IF_GEZ.S [new file with mode: 0644]
vm/mterp/mips/OP_IF_GT.S [new file with mode: 0644]
vm/mterp/mips/OP_IF_GTZ.S [new file with mode: 0644]
vm/mterp/mips/OP_IF_LE.S [new file with mode: 0644]
vm/mterp/mips/OP_IF_LEZ.S [new file with mode: 0644]
vm/mterp/mips/OP_IF_LT.S [new file with mode: 0644]
vm/mterp/mips/OP_IF_LTZ.S [new file with mode: 0644]
vm/mterp/mips/OP_IF_NE.S [new file with mode: 0644]
vm/mterp/mips/OP_IF_NEZ.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_BOOLEAN.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_BOOLEAN_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_BYTE.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_BYTE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_CHAR.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_CHAR_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_OBJECT.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_OBJECT_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_OBJECT_QUICK.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_OBJECT_VOLATILE.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_OBJECT_VOLATILE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_QUICK.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_SHORT.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_SHORT_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_VOLATILE.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_VOLATILE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_WIDE.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_WIDE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_WIDE_QUICK.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_WIDE_VOLATILE.S [new file with mode: 0644]
vm/mterp/mips/OP_IGET_WIDE_VOLATILE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_INSTANCE_OF.S [new file with mode: 0644]
vm/mterp/mips/OP_INSTANCE_OF_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_INT_TO_BYTE.S [new file with mode: 0644]
vm/mterp/mips/OP_INT_TO_CHAR.S [new file with mode: 0644]
vm/mterp/mips/OP_INT_TO_DOUBLE.S [new file with mode: 0644]
vm/mterp/mips/OP_INT_TO_FLOAT.S [new file with mode: 0644]
vm/mterp/mips/OP_INT_TO_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_INT_TO_SHORT.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_DIRECT.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_DIRECT_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_DIRECT_RANGE.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_INTERFACE.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_INTERFACE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_INTERFACE_RANGE.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_OBJECT_INIT_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_OBJECT_INIT_RANGE.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_STATIC.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_STATIC_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_STATIC_RANGE.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_SUPER.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_SUPER_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_SUPER_QUICK.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_SUPER_QUICK_RANGE.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_SUPER_RANGE.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_VIRTUAL.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_VIRTUAL_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_VIRTUAL_QUICK.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_VIRTUAL_QUICK_RANGE.S [new file with mode: 0644]
vm/mterp/mips/OP_INVOKE_VIRTUAL_RANGE.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_BOOLEAN.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_BOOLEAN_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_BYTE.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_BYTE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_CHAR.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_CHAR_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_OBJECT.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_OBJECT_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_OBJECT_QUICK.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_OBJECT_VOLATILE.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_OBJECT_VOLATILE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_QUICK.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_SHORT.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_SHORT_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_VOLATILE.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_VOLATILE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_WIDE.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_WIDE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_WIDE_QUICK.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_WIDE_VOLATILE.S [new file with mode: 0644]
vm/mterp/mips/OP_IPUT_WIDE_VOLATILE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_LONG_TO_DOUBLE.S [new file with mode: 0644]
vm/mterp/mips/OP_LONG_TO_FLOAT.S [new file with mode: 0644]
vm/mterp/mips/OP_LONG_TO_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_MONITOR_ENTER.S [new file with mode: 0644]
vm/mterp/mips/OP_MONITOR_EXIT.S [new file with mode: 0644]
vm/mterp/mips/OP_MOVE.S [new file with mode: 0644]
vm/mterp/mips/OP_MOVE_16.S [new file with mode: 0644]
vm/mterp/mips/OP_MOVE_EXCEPTION.S [new file with mode: 0644]
vm/mterp/mips/OP_MOVE_FROM16.S [new file with mode: 0644]
vm/mterp/mips/OP_MOVE_OBJECT.S [new file with mode: 0644]
vm/mterp/mips/OP_MOVE_OBJECT_16.S [new file with mode: 0644]
vm/mterp/mips/OP_MOVE_OBJECT_FROM16.S [new file with mode: 0644]
vm/mterp/mips/OP_MOVE_RESULT.S [new file with mode: 0644]
vm/mterp/mips/OP_MOVE_RESULT_OBJECT.S [new file with mode: 0644]
vm/mterp/mips/OP_MOVE_RESULT_WIDE.S [new file with mode: 0644]
vm/mterp/mips/OP_MOVE_WIDE.S [new file with mode: 0644]
vm/mterp/mips/OP_MOVE_WIDE_16.S [new file with mode: 0644]
vm/mterp/mips/OP_MOVE_WIDE_FROM16.S [new file with mode: 0644]
vm/mterp/mips/OP_MUL_DOUBLE.S [new file with mode: 0644]
vm/mterp/mips/OP_MUL_DOUBLE_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_MUL_FLOAT.S [new file with mode: 0644]
vm/mterp/mips/OP_MUL_FLOAT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_MUL_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_MUL_INT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_MUL_INT_LIT16.S [new file with mode: 0644]
vm/mterp/mips/OP_MUL_INT_LIT8.S [new file with mode: 0644]
vm/mterp/mips/OP_MUL_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_MUL_LONG_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_NEG_DOUBLE.S [new file with mode: 0644]
vm/mterp/mips/OP_NEG_FLOAT.S [new file with mode: 0644]
vm/mterp/mips/OP_NEG_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_NEG_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_NEW_ARRAY.S [new file with mode: 0644]
vm/mterp/mips/OP_NEW_ARRAY_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_NEW_INSTANCE.S [new file with mode: 0644]
vm/mterp/mips/OP_NEW_INSTANCE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_NOP.S [new file with mode: 0644]
vm/mterp/mips/OP_NOT_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_NOT_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_OR_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_OR_INT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_OR_INT_LIT16.S [new file with mode: 0644]
vm/mterp/mips/OP_OR_INT_LIT8.S [new file with mode: 0644]
vm/mterp/mips/OP_OR_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_OR_LONG_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_PACKED_SWITCH.S [new file with mode: 0644]
vm/mterp/mips/OP_REM_DOUBLE.S [new file with mode: 0644]
vm/mterp/mips/OP_REM_DOUBLE_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_REM_FLOAT.S [new file with mode: 0644]
vm/mterp/mips/OP_REM_FLOAT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_REM_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_REM_INT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_REM_INT_LIT16.S [new file with mode: 0644]
vm/mterp/mips/OP_REM_INT_LIT8.S [new file with mode: 0644]
vm/mterp/mips/OP_REM_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_REM_LONG_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_RETURN.S [new file with mode: 0644]
vm/mterp/mips/OP_RETURN_OBJECT.S [new file with mode: 0644]
vm/mterp/mips/OP_RETURN_VOID.S [new file with mode: 0644]
vm/mterp/mips/OP_RETURN_VOID_BARRIER.S [new file with mode: 0644]
vm/mterp/mips/OP_RETURN_WIDE.S [new file with mode: 0644]
vm/mterp/mips/OP_RSUB_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_RSUB_INT_LIT8.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_BOOLEAN.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_BOOLEAN_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_BYTE.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_BYTE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_CHAR.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_CHAR_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_OBJECT.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_OBJECT_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_OBJECT_VOLATILE.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_OBJECT_VOLATILE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_SHORT.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_SHORT_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_VOLATILE.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_VOLATILE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_WIDE.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_WIDE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_WIDE_VOLATILE.S [new file with mode: 0644]
vm/mterp/mips/OP_SGET_WIDE_VOLATILE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SHL_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_SHL_INT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_SHL_INT_LIT8.S [new file with mode: 0644]
vm/mterp/mips/OP_SHL_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_SHL_LONG_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_SHR_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_SHR_INT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_SHR_INT_LIT8.S [new file with mode: 0644]
vm/mterp/mips/OP_SHR_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_SHR_LONG_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_SPARSE_SWITCH.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_BOOLEAN.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_BOOLEAN_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_BYTE.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_BYTE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_CHAR.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_CHAR_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_OBJECT.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_OBJECT_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_OBJECT_VOLATILE.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_OBJECT_VOLATILE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_SHORT.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_SHORT_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_VOLATILE.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_VOLATILE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_WIDE.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_WIDE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_WIDE_VOLATILE.S [new file with mode: 0644]
vm/mterp/mips/OP_SPUT_WIDE_VOLATILE_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_SUB_DOUBLE.S [new file with mode: 0644]
vm/mterp/mips/OP_SUB_DOUBLE_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_SUB_FLOAT.S [new file with mode: 0644]
vm/mterp/mips/OP_SUB_FLOAT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_SUB_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_SUB_INT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_SUB_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_SUB_LONG_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_THROW.S [new file with mode: 0644]
vm/mterp/mips/OP_THROW_VERIFICATION_ERROR.S [new file with mode: 0644]
vm/mterp/mips/OP_THROW_VERIFICATION_ERROR_JUMBO.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_27FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_28FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_29FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_2AFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_2BFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_2CFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_2DFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_2EFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_2FFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_30FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_31FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_32FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_33FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_34FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_35FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_36FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_37FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_38FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_39FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_3AFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_3BFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_3CFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_3DFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_3E.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_3EFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_3F.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_3FFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_40.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_40FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_41.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_41FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_42.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_42FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_43.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_43FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_44FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_45FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_46FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_47FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_48FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_49FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_4AFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_4BFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_4CFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_4DFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_4EFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_4FFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_50FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_51FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_52FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_53FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_54FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_55FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_56FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_57FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_58FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_59FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_5AFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_5BFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_5CFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_5DFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_5EFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_5FFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_60FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_61FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_62FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_63FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_64FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_65FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_66FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_67FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_68FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_69FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_6AFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_6BFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_6CFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_6DFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_6EFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_6FFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_70FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_71FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_72FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_73.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_73FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_74FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_75FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_76FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_77FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_78FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_79.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_79FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_7A.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_7AFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_7BFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_7CFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_7DFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_7EFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_7FFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_80FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_81FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_82FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_83FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_84FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_85FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_86FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_87FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_88FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_89FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_8AFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_8BFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_8CFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_8DFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_8EFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_8FFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_90FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_91FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_92FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_93FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_94FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_95FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_96FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_97FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_98FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_99FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_9AFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_9BFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_9CFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_9DFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_9EFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_9FFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_A0FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_A1FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_A2FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_A3FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_A4FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_A5FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_A6FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_A7FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_A8FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_A9FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_AAFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_ABFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_ACFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_ADFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_AEFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_AFFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_B0FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_B1FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_B2FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_B3FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_B4FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_B5FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_B6FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_B7FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_B8FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_B9FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_BAFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_BBFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_BCFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_BDFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_BEFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_BFFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_C0FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_C1FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_C2FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_C3FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_C4FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_C5FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_C6FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_C7FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_C8FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_C9FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_CAFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_CBFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_CCFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_CDFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_CEFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_CFFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_D0FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_D1FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_D2FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_D3FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_D4FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_D5FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_D6FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_D7FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_D8FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_D9FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_DAFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_DBFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_DCFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_DDFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_DEFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_DFFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E0FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E1FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E2FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E3.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E3FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E4.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E4FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E5.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E5FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E6.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E6FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E7.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E7FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E8.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E8FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E9.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_E9FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_EA.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_EAFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_EB.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_EBFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_EC.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_ECFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_ED.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_EDFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_EEFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_EF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_EFFF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_F0FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_F1.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_F1FF.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_FC.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_FD.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_FE.S [new file with mode: 0644]
vm/mterp/mips/OP_UNUSED_FF.S [new file with mode: 0644]
vm/mterp/mips/OP_USHR_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_USHR_INT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_USHR_INT_LIT8.S [new file with mode: 0644]
vm/mterp/mips/OP_USHR_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_USHR_LONG_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_XOR_INT.S [new file with mode: 0644]
vm/mterp/mips/OP_XOR_INT_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/OP_XOR_INT_LIT16.S [new file with mode: 0644]
vm/mterp/mips/OP_XOR_INT_LIT8.S [new file with mode: 0644]
vm/mterp/mips/OP_XOR_LONG.S [new file with mode: 0644]
vm/mterp/mips/OP_XOR_LONG_2ADDR.S [new file with mode: 0644]
vm/mterp/mips/alt_stub.S [new file with mode: 0644]
vm/mterp/mips/bincmp.S [new file with mode: 0644]
vm/mterp/mips/binflop.S [new file with mode: 0644]
vm/mterp/mips/binflop2addr.S [new file with mode: 0644]
vm/mterp/mips/binflopWide.S [new file with mode: 0644]
vm/mterp/mips/binflopWide2addr.S [new file with mode: 0644]
vm/mterp/mips/binop.S [new file with mode: 0644]
vm/mterp/mips/binop2addr.S [new file with mode: 0644]
vm/mterp/mips/binopLit16.S [new file with mode: 0644]
vm/mterp/mips/binopLit8.S [new file with mode: 0644]
vm/mterp/mips/binopWide.S [new file with mode: 0644]
vm/mterp/mips/binopWide2addr.S [new file with mode: 0644]
vm/mterp/mips/debug.cpp [new file with mode: 0644]
vm/mterp/mips/entry.S [new file with mode: 0644]
vm/mterp/mips/footer.S [new file with mode: 0644]
vm/mterp/mips/header.S [new file with mode: 0644]
vm/mterp/mips/platform.S [new file with mode: 0644]
vm/mterp/mips/stub.S [new file with mode: 0644]
vm/mterp/mips/unflop.S [new file with mode: 0644]
vm/mterp/mips/unflopWide.S [new file with mode: 0644]
vm/mterp/mips/unflopWider.S [new file with mode: 0644]
vm/mterp/mips/unop.S [new file with mode: 0644]
vm/mterp/mips/unopNarrower.S [new file with mode: 0644]
vm/mterp/mips/unopWide.S [new file with mode: 0644]
vm/mterp/mips/unopWider.S [new file with mode: 0644]
vm/mterp/mips/unused.S [new file with mode: 0644]
vm/mterp/mips/zcmp.S [new file with mode: 0644]
vm/mterp/out/InterpAsm-mips.S [new file with mode: 0644]
vm/mterp/out/InterpC-allstubs.cpp
vm/mterp/out/InterpC-armv5te-vfp.cpp
vm/mterp/out/InterpC-armv5te.cpp
vm/mterp/out/InterpC-armv7-a-neon.cpp
vm/mterp/out/InterpC-armv7-a.cpp
vm/mterp/out/InterpC-mips.cpp [new file with mode: 0644]
vm/mterp/out/InterpC-portable.cpp
vm/mterp/out/InterpC-x86-atom.cpp
vm/mterp/out/InterpC-x86.cpp
vm/mterp/rebuild.sh