~ubuntu-branches/ubuntu/lucid/mono/lucid

« back to all changes in this revision

Viewing changes to mono/mini/mini-ops.h

  • Committer: Bazaar Package Importer
  • Author(s): Mirco Bauer
  • Date: 2009-07-30 19:35:10 UTC
  • mto: (5.2.2 squeeze)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20090730193510-cdttfvqokq2kmdvh
Tags: upstream-2.4.2.3+dfsg
ImportĀ upstreamĀ versionĀ 2.4.2.3+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
836
836
MINI_OP(OP_CMOV_LLT_UN, "cmov_llt_un", IREG, IREG, IREG)
837
837
 
838
838
/* Arch specific opcodes */
839
 
#if defined(__i386__) || defined(__x86_64__)
 
839
#if defined(TARGET_X86) || defined(TARGET_AMD64)
840
840
MINI_OP(OP_X86_TEST_NULL,          "x86_test_null", NONE, NONE, NONE)
841
841
MINI_OP(OP_X86_COMPARE_MEMBASE_REG,"x86_compare_membase_reg", NONE, IREG, IREG)
842
842
MINI_OP(OP_X86_COMPARE_MEMBASE_IMM,"x86_compare_membase_imm", NONE, IREG, NONE)
882
882
MINI_OP(OP_X86_FXCH,               "x86_fxch", NONE, NONE, NONE)
883
883
#endif
884
884
 
885
 
#if defined(__x86_64__)
 
885
#if defined(TARGET_AMD64)
886
886
MINI_OP(OP_AMD64_TEST_NULL,              "amd64_test_null", NONE, NONE, NONE)
887
887
MINI_OP(OP_AMD64_SET_XMMREG_R4,          "amd64_set_xmmreg_r4", FREG, FREG, NONE)
888
888
MINI_OP(OP_AMD64_SET_XMMREG_R8,          "amd64_set_xmmreg_r8", FREG, FREG, NONE)
924
924
MINI_OP(OP_CHECK_FINITE,           "ppc_check_finite", NONE, IREG, NONE)
925
925
#endif
926
926
 
927
 
#if defined(__arm__)
 
927
#if defined(TARGET_ARM)
928
928
MINI_OP(OP_ARM_RSBS_IMM,            "arm_rsbs_imm", IREG, IREG, NONE)
929
929
MINI_OP(OP_ARM_RSC_IMM,             "arm_rsc_imm", IREG, IREG, NONE)
930
930
#endif