Assembler.cs 66 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375
  1. using ARMeilleure.IntermediateRepresentation;
  2. using System;
  3. using System.Diagnostics;
  4. using System.IO;
  5. namespace ARMeilleure.CodeGen.X86
  6. {
  7. class Assembler
  8. {
  9. private const int BadOp = 0;
  10. private const int OpModRMBits = 24;
  11. private const byte RexPrefix = 0x40;
  12. private const byte RexWPrefix = 0x48;
  13. private const byte LockPrefix = 0xf0;
  14. private const int MaxRegNumber = 15;
  15. [Flags]
  16. private enum InstructionFlags
  17. {
  18. None = 0,
  19. RegOnly = 1 << 0,
  20. Reg8Src = 1 << 1,
  21. Reg8Dest = 1 << 2,
  22. RexW = 1 << 3,
  23. Vex = 1 << 4,
  24. PrefixBit = 16,
  25. PrefixMask = 3 << PrefixBit,
  26. Prefix66 = 1 << PrefixBit,
  27. PrefixF3 = 2 << PrefixBit,
  28. PrefixF2 = 3 << PrefixBit
  29. }
  30. private struct InstructionInfo
  31. {
  32. public int OpRMR { get; }
  33. public int OpRMImm8 { get; }
  34. public int OpRMImm32 { get; }
  35. public int OpRImm64 { get; }
  36. public int OpRRM { get; }
  37. public InstructionFlags Flags { get; }
  38. public InstructionInfo(
  39. int opRMR,
  40. int opRMImm8,
  41. int opRMImm32,
  42. int opRImm64,
  43. int opRRM,
  44. InstructionFlags flags)
  45. {
  46. OpRMR = opRMR;
  47. OpRMImm8 = opRMImm8;
  48. OpRMImm32 = opRMImm32;
  49. OpRImm64 = opRImm64;
  50. OpRRM = opRRM;
  51. Flags = flags;
  52. }
  53. }
  54. private static InstructionInfo[] _instTable;
  55. private Stream _stream;
  56. static Assembler()
  57. {
  58. _instTable = new InstructionInfo[(int)X86Instruction.Count];
  59. // Name RM/R RM/I8 RM/I32 R/I64 R/RM Flags
  60. Add(X86Instruction.Add, new InstructionInfo(0x00000001, 0x00000083, 0x00000081, BadOp, 0x00000003, InstructionFlags.None));
  61. Add(X86Instruction.Addpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f58, InstructionFlags.Vex | InstructionFlags.Prefix66));
  62. Add(X86Instruction.Addps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f58, InstructionFlags.Vex));
  63. Add(X86Instruction.Addsd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f58, InstructionFlags.Vex | InstructionFlags.PrefixF2));
  64. Add(X86Instruction.Addss, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f58, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  65. Add(X86Instruction.And, new InstructionInfo(0x00000021, 0x04000083, 0x04000081, BadOp, 0x00000023, InstructionFlags.None));
  66. Add(X86Instruction.Andnpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f55, InstructionFlags.Vex | InstructionFlags.Prefix66));
  67. Add(X86Instruction.Andnps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f55, InstructionFlags.Vex));
  68. Add(X86Instruction.Andpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f54, InstructionFlags.Vex | InstructionFlags.Prefix66));
  69. Add(X86Instruction.Andps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f54, InstructionFlags.Vex));
  70. Add(X86Instruction.Blendvpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3815, InstructionFlags.Prefix66));
  71. Add(X86Instruction.Blendvps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3814, InstructionFlags.Prefix66));
  72. Add(X86Instruction.Bsr, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fbd, InstructionFlags.None));
  73. Add(X86Instruction.Bswap, new InstructionInfo(0x00000fc8, BadOp, BadOp, BadOp, BadOp, InstructionFlags.RegOnly));
  74. Add(X86Instruction.Call, new InstructionInfo(0x020000ff, BadOp, BadOp, BadOp, BadOp, InstructionFlags.None));
  75. Add(X86Instruction.Cmovcc, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f40, InstructionFlags.None));
  76. Add(X86Instruction.Cmp, new InstructionInfo(0x00000039, 0x07000083, 0x07000081, BadOp, 0x0000003b, InstructionFlags.None));
  77. Add(X86Instruction.Cmppd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fc2, InstructionFlags.Vex | InstructionFlags.Prefix66));
  78. Add(X86Instruction.Cmpps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fc2, InstructionFlags.Vex));
  79. Add(X86Instruction.Cmpsd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fc2, InstructionFlags.Vex | InstructionFlags.PrefixF2));
  80. Add(X86Instruction.Cmpss, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fc2, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  81. Add(X86Instruction.Cmpxchg16b, new InstructionInfo(0x01000fc7, BadOp, BadOp, BadOp, BadOp, InstructionFlags.RexW));
  82. Add(X86Instruction.Comisd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f2f, InstructionFlags.Vex | InstructionFlags.Prefix66));
  83. Add(X86Instruction.Comiss, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f2f, InstructionFlags.Vex));
  84. Add(X86Instruction.Cpuid, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fa2, InstructionFlags.RegOnly));
  85. Add(X86Instruction.Cvtdq2pd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fe6, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  86. Add(X86Instruction.Cvtdq2ps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5b, InstructionFlags.Vex));
  87. Add(X86Instruction.Cvtpd2dq, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fe6, InstructionFlags.Vex | InstructionFlags.PrefixF2));
  88. Add(X86Instruction.Cvtpd2ps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5a, InstructionFlags.Vex | InstructionFlags.Prefix66));
  89. Add(X86Instruction.Cvtps2dq, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5b, InstructionFlags.Vex | InstructionFlags.Prefix66));
  90. Add(X86Instruction.Cvtps2pd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5a, InstructionFlags.Vex));
  91. Add(X86Instruction.Cvtsd2si, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f2d, InstructionFlags.Vex | InstructionFlags.PrefixF2));
  92. Add(X86Instruction.Cvtsd2ss, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5a, InstructionFlags.Vex | InstructionFlags.PrefixF2));
  93. Add(X86Instruction.Cvtsi2sd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f2a, InstructionFlags.Vex | InstructionFlags.PrefixF2));
  94. Add(X86Instruction.Cvtsi2ss, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f2a, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  95. Add(X86Instruction.Cvtss2sd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5a, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  96. Add(X86Instruction.Cvtss2si, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f2d, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  97. Add(X86Instruction.Div, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x060000f7, InstructionFlags.None));
  98. Add(X86Instruction.Divpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5e, InstructionFlags.Vex | InstructionFlags.Prefix66));
  99. Add(X86Instruction.Divps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5e, InstructionFlags.Vex));
  100. Add(X86Instruction.Divsd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5e, InstructionFlags.Vex | InstructionFlags.PrefixF2));
  101. Add(X86Instruction.Divss, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5e, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  102. Add(X86Instruction.Haddpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f7c, InstructionFlags.Vex | InstructionFlags.Prefix66));
  103. Add(X86Instruction.Haddps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f7c, InstructionFlags.Vex | InstructionFlags.PrefixF2));
  104. Add(X86Instruction.Idiv, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x070000f7, InstructionFlags.None));
  105. Add(X86Instruction.Imul, new InstructionInfo(BadOp, 0x0000006b, 0x00000069, BadOp, 0x00000faf, InstructionFlags.None));
  106. Add(X86Instruction.Imul128, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x050000f7, InstructionFlags.None));
  107. Add(X86Instruction.Insertps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3a21, InstructionFlags.Vex | InstructionFlags.Prefix66));
  108. Add(X86Instruction.Lea, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x0000008d, InstructionFlags.None));
  109. Add(X86Instruction.Maxpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5f, InstructionFlags.Vex | InstructionFlags.Prefix66));
  110. Add(X86Instruction.Maxps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5f, InstructionFlags.Vex));
  111. Add(X86Instruction.Maxsd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5f, InstructionFlags.Vex | InstructionFlags.PrefixF2));
  112. Add(X86Instruction.Maxss, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5f, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  113. Add(X86Instruction.Minpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5d, InstructionFlags.Vex | InstructionFlags.Prefix66));
  114. Add(X86Instruction.Minps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5d, InstructionFlags.Vex));
  115. Add(X86Instruction.Minsd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5d, InstructionFlags.Vex | InstructionFlags.PrefixF2));
  116. Add(X86Instruction.Minss, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5d, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  117. Add(X86Instruction.Mov, new InstructionInfo(0x00000089, BadOp, 0x000000c7, 0x000000b8, 0x0000008b, InstructionFlags.None));
  118. Add(X86Instruction.Mov16, new InstructionInfo(0x00000089, BadOp, 0x000000c7, BadOp, 0x0000008b, InstructionFlags.Prefix66));
  119. Add(X86Instruction.Mov8, new InstructionInfo(0x00000088, 0x000000c6, BadOp, BadOp, 0x0000008a, InstructionFlags.Reg8Src | InstructionFlags.Reg8Dest));
  120. Add(X86Instruction.Movd, new InstructionInfo(0x00000f7e, BadOp, BadOp, BadOp, 0x00000f6e, InstructionFlags.Vex | InstructionFlags.Prefix66));
  121. Add(X86Instruction.Movdqu, new InstructionInfo(0x00000f7f, BadOp, BadOp, BadOp, 0x00000f6f, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  122. Add(X86Instruction.Movhlps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f12, InstructionFlags.Vex));
  123. Add(X86Instruction.Movlhps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f16, InstructionFlags.Vex));
  124. Add(X86Instruction.Movq, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f7e, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  125. Add(X86Instruction.Movsd, new InstructionInfo(0x00000f11, BadOp, BadOp, BadOp, 0x00000f10, InstructionFlags.Vex | InstructionFlags.PrefixF2));
  126. Add(X86Instruction.Movss, new InstructionInfo(0x00000f11, BadOp, BadOp, BadOp, 0x00000f10, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  127. Add(X86Instruction.Movsx16, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fbf, InstructionFlags.None));
  128. Add(X86Instruction.Movsx32, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000063, InstructionFlags.None));
  129. Add(X86Instruction.Movsx8, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fbe, InstructionFlags.Reg8Src));
  130. Add(X86Instruction.Movzx16, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fb7, InstructionFlags.None));
  131. Add(X86Instruction.Movzx8, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fb6, InstructionFlags.Reg8Src));
  132. Add(X86Instruction.Mul128, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x040000f7, InstructionFlags.None));
  133. Add(X86Instruction.Mulpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f59, InstructionFlags.Vex | InstructionFlags.Prefix66));
  134. Add(X86Instruction.Mulps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f59, InstructionFlags.Vex));
  135. Add(X86Instruction.Mulsd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f59, InstructionFlags.Vex | InstructionFlags.PrefixF2));
  136. Add(X86Instruction.Mulss, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f59, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  137. Add(X86Instruction.Neg, new InstructionInfo(0x030000f7, BadOp, BadOp, BadOp, BadOp, InstructionFlags.None));
  138. Add(X86Instruction.Not, new InstructionInfo(0x020000f7, BadOp, BadOp, BadOp, BadOp, InstructionFlags.None));
  139. Add(X86Instruction.Or, new InstructionInfo(0x00000009, 0x01000083, 0x01000081, BadOp, 0x0000000b, InstructionFlags.None));
  140. Add(X86Instruction.Paddb, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000ffc, InstructionFlags.Vex | InstructionFlags.Prefix66));
  141. Add(X86Instruction.Paddd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000ffe, InstructionFlags.Vex | InstructionFlags.Prefix66));
  142. Add(X86Instruction.Paddq, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fd4, InstructionFlags.Vex | InstructionFlags.Prefix66));
  143. Add(X86Instruction.Paddw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000ffd, InstructionFlags.Vex | InstructionFlags.Prefix66));
  144. Add(X86Instruction.Pand, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fdb, InstructionFlags.Vex | InstructionFlags.Prefix66));
  145. Add(X86Instruction.Pandn, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fdf, InstructionFlags.Vex | InstructionFlags.Prefix66));
  146. Add(X86Instruction.Pavgb, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fe0, InstructionFlags.Vex | InstructionFlags.Prefix66));
  147. Add(X86Instruction.Pavgw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fe3, InstructionFlags.Vex | InstructionFlags.Prefix66));
  148. Add(X86Instruction.Pblendvb, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3810, InstructionFlags.Prefix66));
  149. Add(X86Instruction.Pcmpeqb, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f74, InstructionFlags.Vex | InstructionFlags.Prefix66));
  150. Add(X86Instruction.Pcmpeqd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f76, InstructionFlags.Vex | InstructionFlags.Prefix66));
  151. Add(X86Instruction.Pcmpeqq, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3829, InstructionFlags.Vex | InstructionFlags.Prefix66));
  152. Add(X86Instruction.Pcmpeqw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f75, InstructionFlags.Vex | InstructionFlags.Prefix66));
  153. Add(X86Instruction.Pcmpgtb, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f64, InstructionFlags.Vex | InstructionFlags.Prefix66));
  154. Add(X86Instruction.Pcmpgtd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f66, InstructionFlags.Vex | InstructionFlags.Prefix66));
  155. Add(X86Instruction.Pcmpgtq, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3837, InstructionFlags.Vex | InstructionFlags.Prefix66));
  156. Add(X86Instruction.Pcmpgtw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f65, InstructionFlags.Vex | InstructionFlags.Prefix66));
  157. Add(X86Instruction.Pextrb, new InstructionInfo(0x000f3a14, BadOp, BadOp, BadOp, BadOp, InstructionFlags.Vex | InstructionFlags.Prefix66));
  158. Add(X86Instruction.Pextrd, new InstructionInfo(0x000f3a16, BadOp, BadOp, BadOp, BadOp, InstructionFlags.Vex | InstructionFlags.Prefix66));
  159. Add(X86Instruction.Pextrq, new InstructionInfo(0x000f3a16, BadOp, BadOp, BadOp, BadOp, InstructionFlags.Vex | InstructionFlags.RexW | InstructionFlags.Prefix66));
  160. Add(X86Instruction.Pextrw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fc5, InstructionFlags.Vex | InstructionFlags.Prefix66));
  161. Add(X86Instruction.Pinsrb, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3a20, InstructionFlags.Vex | InstructionFlags.Prefix66));
  162. Add(X86Instruction.Pinsrd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3a22, InstructionFlags.Vex | InstructionFlags.Prefix66));
  163. Add(X86Instruction.Pinsrq, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3a22, InstructionFlags.Vex | InstructionFlags.RexW | InstructionFlags.Prefix66));
  164. Add(X86Instruction.Pinsrw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fc4, InstructionFlags.Vex | InstructionFlags.Prefix66));
  165. Add(X86Instruction.Pmaxsb, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f383c, InstructionFlags.Vex | InstructionFlags.Prefix66));
  166. Add(X86Instruction.Pmaxsd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f383d, InstructionFlags.Vex | InstructionFlags.Prefix66));
  167. Add(X86Instruction.Pmaxsw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fee, InstructionFlags.Vex | InstructionFlags.Prefix66));
  168. Add(X86Instruction.Pmaxub, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fde, InstructionFlags.Vex | InstructionFlags.Prefix66));
  169. Add(X86Instruction.Pmaxud, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f383f, InstructionFlags.Vex | InstructionFlags.Prefix66));
  170. Add(X86Instruction.Pmaxuw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f383e, InstructionFlags.Vex | InstructionFlags.Prefix66));
  171. Add(X86Instruction.Pminsb, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3838, InstructionFlags.Vex | InstructionFlags.Prefix66));
  172. Add(X86Instruction.Pminsd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3839, InstructionFlags.Vex | InstructionFlags.Prefix66));
  173. Add(X86Instruction.Pminsw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fea, InstructionFlags.Vex | InstructionFlags.Prefix66));
  174. Add(X86Instruction.Pminub, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fda, InstructionFlags.Vex | InstructionFlags.Prefix66));
  175. Add(X86Instruction.Pminud, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f383b, InstructionFlags.Vex | InstructionFlags.Prefix66));
  176. Add(X86Instruction.Pminuw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f383a, InstructionFlags.Vex | InstructionFlags.Prefix66));
  177. Add(X86Instruction.Pmovsxbw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3820, InstructionFlags.Vex | InstructionFlags.Prefix66));
  178. Add(X86Instruction.Pmovsxdq, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3825, InstructionFlags.Vex | InstructionFlags.Prefix66));
  179. Add(X86Instruction.Pmovsxwd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3823, InstructionFlags.Vex | InstructionFlags.Prefix66));
  180. Add(X86Instruction.Pmovzxbw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3830, InstructionFlags.Vex | InstructionFlags.Prefix66));
  181. Add(X86Instruction.Pmovzxdq, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3835, InstructionFlags.Vex | InstructionFlags.Prefix66));
  182. Add(X86Instruction.Pmovzxwd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3833, InstructionFlags.Vex | InstructionFlags.Prefix66));
  183. Add(X86Instruction.Pmulld, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3840, InstructionFlags.Vex | InstructionFlags.Prefix66));
  184. Add(X86Instruction.Pmullw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fd5, InstructionFlags.Vex | InstructionFlags.Prefix66));
  185. Add(X86Instruction.Pop, new InstructionInfo(0x0000008f, BadOp, BadOp, BadOp, BadOp, InstructionFlags.None));
  186. Add(X86Instruction.Popcnt, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fb8, InstructionFlags.PrefixF3));
  187. Add(X86Instruction.Por, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000feb, InstructionFlags.Vex | InstructionFlags.Prefix66));
  188. Add(X86Instruction.Pshufb, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3800, InstructionFlags.Vex | InstructionFlags.Prefix66));
  189. Add(X86Instruction.Pshufd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f70, InstructionFlags.Vex | InstructionFlags.Prefix66));
  190. Add(X86Instruction.Pslld, new InstructionInfo(BadOp, 0x06000f72, BadOp, BadOp, 0x00000ff2, InstructionFlags.Vex | InstructionFlags.Prefix66));
  191. Add(X86Instruction.Pslldq, new InstructionInfo(BadOp, 0x07000f73, BadOp, BadOp, BadOp, InstructionFlags.Vex | InstructionFlags.Prefix66));
  192. Add(X86Instruction.Psllq, new InstructionInfo(BadOp, 0x06000f73, BadOp, BadOp, 0x00000ff3, InstructionFlags.Vex | InstructionFlags.Prefix66));
  193. Add(X86Instruction.Psllw, new InstructionInfo(BadOp, 0x06000f71, BadOp, BadOp, 0x00000ff1, InstructionFlags.Vex | InstructionFlags.Prefix66));
  194. Add(X86Instruction.Psrad, new InstructionInfo(BadOp, 0x04000f72, BadOp, BadOp, 0x00000fe2, InstructionFlags.Vex | InstructionFlags.Prefix66));
  195. Add(X86Instruction.Psraw, new InstructionInfo(BadOp, 0x04000f71, BadOp, BadOp, 0x00000fe1, InstructionFlags.Vex | InstructionFlags.Prefix66));
  196. Add(X86Instruction.Psrld, new InstructionInfo(BadOp, 0x02000f72, BadOp, BadOp, 0x00000fd2, InstructionFlags.Vex | InstructionFlags.Prefix66));
  197. Add(X86Instruction.Psrlq, new InstructionInfo(BadOp, 0x02000f73, BadOp, BadOp, 0x00000fd3, InstructionFlags.Vex | InstructionFlags.Prefix66));
  198. Add(X86Instruction.Psrldq, new InstructionInfo(BadOp, 0x03000f73, BadOp, BadOp, BadOp, InstructionFlags.Vex | InstructionFlags.Prefix66));
  199. Add(X86Instruction.Psrlw, new InstructionInfo(BadOp, 0x02000f71, BadOp, BadOp, 0x00000fd1, InstructionFlags.Vex | InstructionFlags.Prefix66));
  200. Add(X86Instruction.Psubb, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000ff8, InstructionFlags.Vex | InstructionFlags.Prefix66));
  201. Add(X86Instruction.Psubd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000ffa, InstructionFlags.Vex | InstructionFlags.Prefix66));
  202. Add(X86Instruction.Psubq, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000ffb, InstructionFlags.Vex | InstructionFlags.Prefix66));
  203. Add(X86Instruction.Psubw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000ff9, InstructionFlags.Vex | InstructionFlags.Prefix66));
  204. Add(X86Instruction.Punpckhbw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f68, InstructionFlags.Vex | InstructionFlags.Prefix66));
  205. Add(X86Instruction.Punpckhdq, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f6a, InstructionFlags.Vex | InstructionFlags.Prefix66));
  206. Add(X86Instruction.Punpckhqdq, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f6d, InstructionFlags.Vex | InstructionFlags.Prefix66));
  207. Add(X86Instruction.Punpckhwd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f69, InstructionFlags.Vex | InstructionFlags.Prefix66));
  208. Add(X86Instruction.Punpcklbw, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f60, InstructionFlags.Vex | InstructionFlags.Prefix66));
  209. Add(X86Instruction.Punpckldq, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f62, InstructionFlags.Vex | InstructionFlags.Prefix66));
  210. Add(X86Instruction.Punpcklqdq, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f6c, InstructionFlags.Vex | InstructionFlags.Prefix66));
  211. Add(X86Instruction.Punpcklwd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f61, InstructionFlags.Vex | InstructionFlags.Prefix66));
  212. Add(X86Instruction.Push, new InstructionInfo(BadOp, 0x0000006a, 0x00000068, BadOp, 0x060000ff, InstructionFlags.None));
  213. Add(X86Instruction.Pxor, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fef, InstructionFlags.Vex | InstructionFlags.Prefix66));
  214. Add(X86Instruction.Rcpps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f53, InstructionFlags.Vex));
  215. Add(X86Instruction.Rcpss, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f53, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  216. Add(X86Instruction.Ror, new InstructionInfo(0x010000d3, 0x010000c1, BadOp, BadOp, BadOp, InstructionFlags.None));
  217. Add(X86Instruction.Roundpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3a09, InstructionFlags.Vex | InstructionFlags.Prefix66));
  218. Add(X86Instruction.Roundps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3a08, InstructionFlags.Vex | InstructionFlags.Prefix66));
  219. Add(X86Instruction.Roundsd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3a0b, InstructionFlags.Vex | InstructionFlags.Prefix66));
  220. Add(X86Instruction.Roundss, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3a0a, InstructionFlags.Vex | InstructionFlags.Prefix66));
  221. Add(X86Instruction.Rsqrtps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f52, InstructionFlags.Vex));
  222. Add(X86Instruction.Rsqrtss, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f52, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  223. Add(X86Instruction.Sar, new InstructionInfo(0x070000d3, 0x070000c1, BadOp, BadOp, BadOp, InstructionFlags.None));
  224. Add(X86Instruction.Setcc, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f90, InstructionFlags.Reg8Dest));
  225. Add(X86Instruction.Shl, new InstructionInfo(0x040000d3, 0x040000c1, BadOp, BadOp, BadOp, InstructionFlags.None));
  226. Add(X86Instruction.Shr, new InstructionInfo(0x050000d3, 0x050000c1, BadOp, BadOp, BadOp, InstructionFlags.None));
  227. Add(X86Instruction.Shufpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fc6, InstructionFlags.Vex | InstructionFlags.Prefix66));
  228. Add(X86Instruction.Shufps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000fc6, InstructionFlags.Vex));
  229. Add(X86Instruction.Sqrtpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f51, InstructionFlags.Vex | InstructionFlags.Prefix66));
  230. Add(X86Instruction.Sqrtps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f51, InstructionFlags.Vex));
  231. Add(X86Instruction.Sqrtsd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f51, InstructionFlags.Vex | InstructionFlags.PrefixF2));
  232. Add(X86Instruction.Sqrtss, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f51, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  233. Add(X86Instruction.Sub, new InstructionInfo(0x00000029, 0x05000083, 0x05000081, BadOp, 0x0000002b, InstructionFlags.None));
  234. Add(X86Instruction.Subpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5c, InstructionFlags.Vex | InstructionFlags.Prefix66));
  235. Add(X86Instruction.Subps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5c, InstructionFlags.Vex));
  236. Add(X86Instruction.Subsd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5c, InstructionFlags.Vex | InstructionFlags.PrefixF2));
  237. Add(X86Instruction.Subss, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f5c, InstructionFlags.Vex | InstructionFlags.PrefixF3));
  238. Add(X86Instruction.Test, new InstructionInfo(0x00000085, BadOp, 0x000000f7, BadOp, BadOp, InstructionFlags.None));
  239. Add(X86Instruction.Unpckhpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f15, InstructionFlags.Vex | InstructionFlags.Prefix66));
  240. Add(X86Instruction.Unpckhps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f15, InstructionFlags.Vex));
  241. Add(X86Instruction.Unpcklpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f14, InstructionFlags.Vex | InstructionFlags.Prefix66));
  242. Add(X86Instruction.Unpcklps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f14, InstructionFlags.Vex));
  243. Add(X86Instruction.Vblendvpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3a4b, InstructionFlags.Vex | InstructionFlags.Prefix66));
  244. Add(X86Instruction.Vblendvps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3a4a, InstructionFlags.Vex | InstructionFlags.Prefix66));
  245. Add(X86Instruction.Vpblendvb, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x000f3a4c, InstructionFlags.Vex | InstructionFlags.Prefix66));
  246. Add(X86Instruction.Xor, new InstructionInfo(0x00000031, 0x06000083, 0x06000081, BadOp, 0x00000033, InstructionFlags.None));
  247. Add(X86Instruction.Xorpd, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f57, InstructionFlags.Vex | InstructionFlags.Prefix66));
  248. Add(X86Instruction.Xorps, new InstructionInfo(BadOp, BadOp, BadOp, BadOp, 0x00000f57, InstructionFlags.Vex));
  249. }
  250. private static void Add(X86Instruction inst, InstructionInfo info)
  251. {
  252. _instTable[(int)inst] = info;
  253. }
  254. public Assembler(Stream stream)
  255. {
  256. _stream = stream;
  257. }
  258. public void Add(Operand dest, Operand source, OperandType type)
  259. {
  260. WriteInstruction(dest, source, type, X86Instruction.Add);
  261. }
  262. public void Addsd(Operand dest, Operand src1, Operand src2)
  263. {
  264. WriteInstruction(dest, src1, src2, X86Instruction.Addsd);
  265. }
  266. public void Addss(Operand dest, Operand src1, Operand src2)
  267. {
  268. WriteInstruction(dest, src1, src2, X86Instruction.Addss);
  269. }
  270. public void And(Operand dest, Operand source, OperandType type)
  271. {
  272. WriteInstruction(dest, source, type, X86Instruction.And);
  273. }
  274. public void Bsr(Operand dest, Operand source, OperandType type)
  275. {
  276. WriteInstruction(dest, source, type, X86Instruction.Bsr);
  277. }
  278. public void Bswap(Operand dest)
  279. {
  280. WriteInstruction(dest, null, dest.Type, X86Instruction.Bswap);
  281. }
  282. public void Call(Operand dest)
  283. {
  284. WriteInstruction(dest, null, OperandType.None, X86Instruction.Call);
  285. }
  286. public void Cdq()
  287. {
  288. WriteByte(0x99);
  289. }
  290. public void Cmovcc(Operand dest, Operand source, OperandType type, X86Condition condition)
  291. {
  292. InstructionInfo info = _instTable[(int)X86Instruction.Cmovcc];
  293. WriteOpCode(dest, null, source, type, info.Flags, info.OpRRM | (int)condition, rrm: true);
  294. }
  295. public void Cmp(Operand src1, Operand src2, OperandType type)
  296. {
  297. WriteInstruction(src1, src2, type, X86Instruction.Cmp);
  298. }
  299. public void Cqo()
  300. {
  301. WriteByte(0x48);
  302. WriteByte(0x99);
  303. }
  304. public void Cmpxchg16b(MemoryOperand memOp)
  305. {
  306. WriteByte(LockPrefix);
  307. WriteInstruction(memOp, null, OperandType.None, X86Instruction.Cmpxchg16b);
  308. }
  309. public void Comisd(Operand src1, Operand src2)
  310. {
  311. WriteInstruction(src1, null, src2, X86Instruction.Comisd);
  312. }
  313. public void Comiss(Operand src1, Operand src2)
  314. {
  315. WriteInstruction(src1, null, src2, X86Instruction.Comiss);
  316. }
  317. public void Cpuid()
  318. {
  319. WriteInstruction(null, null, OperandType.None, X86Instruction.Cpuid);
  320. }
  321. public void Cvtsd2ss(Operand dest, Operand src1, Operand src2)
  322. {
  323. WriteInstruction(dest, src1, src2, X86Instruction.Cvtsd2ss);
  324. }
  325. public void Cvtsi2sd(Operand dest, Operand src1, Operand src2, OperandType type)
  326. {
  327. WriteInstruction(dest, src1, src2, X86Instruction.Cvtsi2sd, type);
  328. }
  329. public void Cvtsi2ss(Operand dest, Operand src1, Operand src2, OperandType type)
  330. {
  331. WriteInstruction(dest, src1, src2, X86Instruction.Cvtsi2ss, type);
  332. }
  333. public void Cvtss2sd(Operand dest, Operand src1, Operand src2)
  334. {
  335. WriteInstruction(dest, src1, src2, X86Instruction.Cvtss2sd);
  336. }
  337. public void Div(Operand source)
  338. {
  339. WriteInstruction(null, source, source.Type, X86Instruction.Div);
  340. }
  341. public void Divsd(Operand dest, Operand src1, Operand src2)
  342. {
  343. WriteInstruction(dest, src1, src2, X86Instruction.Divsd);
  344. }
  345. public void Divss(Operand dest, Operand src1, Operand src2)
  346. {
  347. WriteInstruction(dest, src1, src2, X86Instruction.Divss);
  348. }
  349. public void Idiv(Operand source)
  350. {
  351. WriteInstruction(null, source, source.Type, X86Instruction.Idiv);
  352. }
  353. public void Imul(Operand source)
  354. {
  355. WriteInstruction(null, source, source.Type, X86Instruction.Imul128);
  356. }
  357. public void Imul(Operand dest, Operand source, OperandType type)
  358. {
  359. if (source.Kind != OperandKind.Register)
  360. {
  361. throw new ArgumentException($"Invalid source operand kind \"{source.Kind}\".");
  362. }
  363. WriteInstruction(dest, source, type, X86Instruction.Imul);
  364. }
  365. public void Imul(Operand dest, Operand src1, Operand src2, OperandType type)
  366. {
  367. InstructionInfo info = _instTable[(int)X86Instruction.Imul];
  368. if (src2.Kind != OperandKind.Constant)
  369. {
  370. throw new ArgumentException($"Invalid source 2 operand kind \"{src2.Kind}\".");
  371. }
  372. if (IsImm8(src2.Value, src2.Type) && info.OpRMImm8 != BadOp)
  373. {
  374. WriteOpCode(dest, null, src1, type, info.Flags, info.OpRMImm8, rrm: true);
  375. WriteByte(src2.AsByte());
  376. }
  377. else if (IsImm32(src2.Value, src2.Type) && info.OpRMImm32 != BadOp)
  378. {
  379. WriteOpCode(dest, null, src1, type, info.Flags, info.OpRMImm32, rrm: true);
  380. WriteInt32(src2.AsInt32());
  381. }
  382. else
  383. {
  384. throw new ArgumentException($"Failed to encode constant 0x{src2.Value:X}.");
  385. }
  386. }
  387. public void Insertps(Operand dest, Operand src1, Operand src2, byte imm)
  388. {
  389. WriteInstruction(dest, src1, src2, X86Instruction.Insertps);
  390. WriteByte(imm);
  391. }
  392. public void Jcc(X86Condition condition, long offset)
  393. {
  394. if (ConstFitsOnS8(offset))
  395. {
  396. WriteByte((byte)(0x70 | (int)condition));
  397. WriteByte((byte)offset);
  398. }
  399. else if (ConstFitsOnS32(offset))
  400. {
  401. WriteByte(0x0f);
  402. WriteByte((byte)(0x80 | (int)condition));
  403. WriteInt32((int)offset);
  404. }
  405. else
  406. {
  407. throw new ArgumentOutOfRangeException(nameof(offset));
  408. }
  409. }
  410. public void Jmp(long offset)
  411. {
  412. if (ConstFitsOnS8(offset))
  413. {
  414. WriteByte(0xeb);
  415. WriteByte((byte)offset);
  416. }
  417. else if (ConstFitsOnS32(offset))
  418. {
  419. WriteByte(0xe9);
  420. WriteInt32((int)offset);
  421. }
  422. else
  423. {
  424. throw new ArgumentOutOfRangeException(nameof(offset));
  425. }
  426. }
  427. public void Lea(Operand dest, Operand source, OperandType type)
  428. {
  429. WriteInstruction(dest, source, type, X86Instruction.Lea);
  430. }
  431. public void Mov(Operand dest, Operand source, OperandType type)
  432. {
  433. WriteInstruction(dest, source, type, X86Instruction.Mov);
  434. }
  435. public void Mov16(Operand dest, Operand source)
  436. {
  437. WriteInstruction(dest, source, OperandType.None, X86Instruction.Mov16);
  438. }
  439. public void Mov8(Operand dest, Operand source)
  440. {
  441. WriteInstruction(dest, source, OperandType.None, X86Instruction.Mov8);
  442. }
  443. public void Movd(Operand dest, Operand source)
  444. {
  445. InstructionInfo info = _instTable[(int)X86Instruction.Movd];
  446. if (source.Type.IsInteger() || source.Kind == OperandKind.Memory)
  447. {
  448. WriteOpCode(dest, null, source, OperandType.None, info.Flags, info.OpRRM, rrm: true);
  449. }
  450. else
  451. {
  452. WriteOpCode(dest, null, source, OperandType.None, info.Flags, info.OpRMR);
  453. }
  454. }
  455. public void Movdqu(Operand dest, Operand source)
  456. {
  457. WriteInstruction(dest, null, source, X86Instruction.Movdqu);
  458. }
  459. public void Movhlps(Operand dest, Operand src1, Operand src2)
  460. {
  461. WriteInstruction(dest, src1, src2, X86Instruction.Movhlps);
  462. }
  463. public void Movlhps(Operand dest, Operand src1, Operand src2)
  464. {
  465. WriteInstruction(dest, src1, src2, X86Instruction.Movlhps);
  466. }
  467. public void Movq(Operand dest, Operand source)
  468. {
  469. InstructionInfo info = _instTable[(int)X86Instruction.Movd];
  470. InstructionFlags flags = info.Flags | InstructionFlags.RexW;
  471. if (source.Type.IsInteger() || source.Kind == OperandKind.Memory)
  472. {
  473. WriteOpCode(dest, null, source, OperandType.None, flags, info.OpRRM, rrm: true);
  474. }
  475. else if (dest.Type.IsInteger() || dest.Kind == OperandKind.Memory)
  476. {
  477. WriteOpCode(dest, null, source, OperandType.None, flags, info.OpRMR);
  478. }
  479. else
  480. {
  481. WriteInstruction(dest, source, OperandType.None, X86Instruction.Movq);
  482. }
  483. }
  484. public void Movsd(Operand dest, Operand src1, Operand src2)
  485. {
  486. WriteInstruction(dest, src1, src2, X86Instruction.Movsd);
  487. }
  488. public void Movss(Operand dest, Operand src1, Operand src2)
  489. {
  490. WriteInstruction(dest, src1, src2, X86Instruction.Movss);
  491. }
  492. public void Movsx16(Operand dest, Operand source, OperandType type)
  493. {
  494. WriteInstruction(dest, source, type, X86Instruction.Movsx16);
  495. }
  496. public void Movsx32(Operand dest, Operand source, OperandType type)
  497. {
  498. WriteInstruction(dest, source, type, X86Instruction.Movsx32);
  499. }
  500. public void Movsx8(Operand dest, Operand source, OperandType type)
  501. {
  502. WriteInstruction(dest, source, type, X86Instruction.Movsx8);
  503. }
  504. public void Movzx16(Operand dest, Operand source, OperandType type)
  505. {
  506. WriteInstruction(dest, source, type, X86Instruction.Movzx16);
  507. }
  508. public void Movzx8(Operand dest, Operand source, OperandType type)
  509. {
  510. WriteInstruction(dest, source, type, X86Instruction.Movzx8);
  511. }
  512. public void Mul(Operand source)
  513. {
  514. WriteInstruction(null, source, source.Type, X86Instruction.Mul128);
  515. }
  516. public void Mulsd(Operand dest, Operand src1, Operand src2)
  517. {
  518. WriteInstruction(dest, src1, src2, X86Instruction.Mulsd);
  519. }
  520. public void Mulss(Operand dest, Operand src1, Operand src2)
  521. {
  522. WriteInstruction(dest, src1, src2, X86Instruction.Mulss);
  523. }
  524. public void Neg(Operand dest)
  525. {
  526. WriteInstruction(dest, null, dest.Type, X86Instruction.Neg);
  527. }
  528. public void Not(Operand dest)
  529. {
  530. WriteInstruction(dest, null, dest.Type, X86Instruction.Not);
  531. }
  532. public void Or(Operand dest, Operand source, OperandType type)
  533. {
  534. WriteInstruction(dest, source, type, X86Instruction.Or);
  535. }
  536. public void Pcmpeqw(Operand dest, Operand src1, Operand src2)
  537. {
  538. WriteInstruction(dest, src1, src2, X86Instruction.Pcmpeqw);
  539. }
  540. public void Pextrb(Operand dest, Operand source, byte imm)
  541. {
  542. WriteInstruction(dest, null, source, X86Instruction.Pextrb);
  543. WriteByte(imm);
  544. }
  545. public void Pextrd(Operand dest, Operand source, byte imm)
  546. {
  547. WriteInstruction(dest, null, source, X86Instruction.Pextrd);
  548. WriteByte(imm);
  549. }
  550. public void Pextrq(Operand dest, Operand source, byte imm)
  551. {
  552. WriteInstruction(dest, null, source, X86Instruction.Pextrq);
  553. WriteByte(imm);
  554. }
  555. public void Pextrw(Operand dest, Operand source, byte imm)
  556. {
  557. WriteInstruction(dest, null, source, X86Instruction.Pextrw);
  558. WriteByte(imm);
  559. }
  560. public void Pinsrb(Operand dest, Operand src1, Operand src2, byte imm)
  561. {
  562. WriteInstruction(dest, src1, src2, X86Instruction.Pinsrb);
  563. WriteByte(imm);
  564. }
  565. public void Pinsrd(Operand dest, Operand src1, Operand src2, byte imm)
  566. {
  567. WriteInstruction(dest, src1, src2, X86Instruction.Pinsrd);
  568. WriteByte(imm);
  569. }
  570. public void Pinsrq(Operand dest, Operand src1, Operand src2, byte imm)
  571. {
  572. WriteInstruction(dest, src1, src2, X86Instruction.Pinsrq);
  573. WriteByte(imm);
  574. }
  575. public void Pinsrw(Operand dest, Operand src1, Operand src2, byte imm)
  576. {
  577. WriteInstruction(dest, src1, src2, X86Instruction.Pinsrw);
  578. WriteByte(imm);
  579. }
  580. public void Pop(Operand dest)
  581. {
  582. if (dest.Kind == OperandKind.Register)
  583. {
  584. WriteCompactInst(dest, 0x58);
  585. }
  586. else
  587. {
  588. WriteInstruction(dest, null, dest.Type, X86Instruction.Pop);
  589. }
  590. }
  591. public void Popcnt(Operand dest, Operand source, OperandType type)
  592. {
  593. WriteInstruction(dest, source, type, X86Instruction.Popcnt);
  594. }
  595. public void Pshufd(Operand dest, Operand source, byte imm)
  596. {
  597. WriteInstruction(dest, null, source, X86Instruction.Pshufd);
  598. WriteByte(imm);
  599. }
  600. public void Push(Operand source)
  601. {
  602. if (source.Kind == OperandKind.Register)
  603. {
  604. WriteCompactInst(source, 0x50);
  605. }
  606. else
  607. {
  608. WriteInstruction(null, source, source.Type, X86Instruction.Push);
  609. }
  610. }
  611. public void Return()
  612. {
  613. WriteByte(0xc3);
  614. }
  615. public void Ror(Operand dest, Operand source, OperandType type)
  616. {
  617. WriteShiftInst(dest, source, type, X86Instruction.Ror);
  618. }
  619. public void Sar(Operand dest, Operand source, OperandType type)
  620. {
  621. WriteShiftInst(dest, source, type, X86Instruction.Sar);
  622. }
  623. public void Shl(Operand dest, Operand source, OperandType type)
  624. {
  625. WriteShiftInst(dest, source, type, X86Instruction.Shl);
  626. }
  627. public void Shr(Operand dest, Operand source, OperandType type)
  628. {
  629. WriteShiftInst(dest, source, type, X86Instruction.Shr);
  630. }
  631. public void Setcc(Operand dest, X86Condition condition)
  632. {
  633. InstructionInfo info = _instTable[(int)X86Instruction.Setcc];
  634. WriteOpCode(dest, null, null, OperandType.None, info.Flags, info.OpRRM | (int)condition);
  635. }
  636. public void Sub(Operand dest, Operand source, OperandType type)
  637. {
  638. WriteInstruction(dest, source, type, X86Instruction.Sub);
  639. }
  640. public void Subsd(Operand dest, Operand src1, Operand src2)
  641. {
  642. WriteInstruction(dest, src1, src2, X86Instruction.Subsd);
  643. }
  644. public void Subss(Operand dest, Operand src1, Operand src2)
  645. {
  646. WriteInstruction(dest, src1, src2, X86Instruction.Subss);
  647. }
  648. public void Test(Operand src1, Operand src2, OperandType type)
  649. {
  650. WriteInstruction(src1, src2, type, X86Instruction.Test);
  651. }
  652. public void Xor(Operand dest, Operand source, OperandType type)
  653. {
  654. WriteInstruction(dest, source, type, X86Instruction.Xor);
  655. }
  656. public void Xorps(Operand dest, Operand src1, Operand src2)
  657. {
  658. WriteInstruction(dest, src1, src2, X86Instruction.Xorps);
  659. }
  660. public void WriteInstruction(
  661. X86Instruction inst,
  662. Operand dest,
  663. Operand source,
  664. OperandType type = OperandType.None)
  665. {
  666. WriteInstruction(dest, null, source, inst, type);
  667. }
  668. public void WriteInstruction(X86Instruction inst, Operand dest, Operand src1, Operand src2)
  669. {
  670. if (src2.Kind == OperandKind.Constant)
  671. {
  672. WriteInstruction(src1, dest, src2, inst);
  673. }
  674. else
  675. {
  676. WriteInstruction(dest, src1, src2, inst);
  677. }
  678. }
  679. public void WriteInstruction(
  680. X86Instruction inst,
  681. Operand dest,
  682. Operand src1,
  683. Operand src2,
  684. OperandType type)
  685. {
  686. WriteInstruction(dest, src1, src2, inst, type);
  687. }
  688. public void WriteInstruction(X86Instruction inst, Operand dest, Operand source, byte imm)
  689. {
  690. WriteInstruction(dest, null, source, inst);
  691. WriteByte(imm);
  692. }
  693. public void WriteInstruction(
  694. X86Instruction inst,
  695. Operand dest,
  696. Operand src1,
  697. Operand src2,
  698. Operand src3)
  699. {
  700. // 3+ operands can only be encoded with the VEX encoding scheme.
  701. Debug.Assert(HardwareCapabilities.SupportsVexEncoding);
  702. WriteInstruction(dest, src1, src2, inst);
  703. WriteByte((byte)(src3.AsByte() << 4));
  704. }
  705. public void WriteInstruction(
  706. X86Instruction inst,
  707. Operand dest,
  708. Operand src1,
  709. Operand src2,
  710. byte imm)
  711. {
  712. WriteInstruction(dest, src1, src2, inst);
  713. WriteByte(imm);
  714. }
  715. private void WriteShiftInst(Operand dest, Operand source, OperandType type, X86Instruction inst)
  716. {
  717. if (source.Kind == OperandKind.Register)
  718. {
  719. X86Register shiftReg = (X86Register)source.GetRegister().Index;
  720. Debug.Assert(shiftReg == X86Register.Rcx, $"Invalid shift register \"{shiftReg}\".");
  721. source = null;
  722. }
  723. WriteInstruction(dest, source, type, inst);
  724. }
  725. private void WriteInstruction(Operand dest, Operand source, OperandType type, X86Instruction inst)
  726. {
  727. InstructionInfo info = _instTable[(int)inst];
  728. if (source != null)
  729. {
  730. if (source.Kind == OperandKind.Constant)
  731. {
  732. ulong imm = source.Value;
  733. if (inst == X86Instruction.Mov8)
  734. {
  735. WriteOpCode(dest, null, null, type, info.Flags, info.OpRMImm8);
  736. WriteByte((byte)imm);
  737. }
  738. else if (inst == X86Instruction.Mov16)
  739. {
  740. WriteOpCode(dest, null, null, type, info.Flags, info.OpRMImm32);
  741. WriteInt16((short)imm);
  742. }
  743. else if (IsImm8(imm, type) && info.OpRMImm8 != BadOp)
  744. {
  745. WriteOpCode(dest, null, null, type, info.Flags, info.OpRMImm8);
  746. WriteByte((byte)imm);
  747. }
  748. else if (IsImm32(imm, type) && info.OpRMImm32 != BadOp)
  749. {
  750. WriteOpCode(dest, null, null, type, info.Flags, info.OpRMImm32);
  751. WriteInt32((int)imm);
  752. }
  753. else if (dest != null && dest.Kind == OperandKind.Register && info.OpRImm64 != BadOp)
  754. {
  755. int rexPrefix = GetRexPrefix(dest, source, type, rrm: false);
  756. if (rexPrefix != 0)
  757. {
  758. WriteByte((byte)rexPrefix);
  759. }
  760. WriteByte((byte)(info.OpRImm64 + (dest.GetRegister().Index & 0b111)));
  761. WriteUInt64(imm);
  762. }
  763. else
  764. {
  765. throw new ArgumentException($"Failed to encode constant 0x{imm:X}.");
  766. }
  767. }
  768. else if (source.Kind == OperandKind.Register && info.OpRMR != BadOp)
  769. {
  770. WriteOpCode(dest, null, source, type, info.Flags, info.OpRMR);
  771. }
  772. else if (info.OpRRM != BadOp)
  773. {
  774. WriteOpCode(dest, null, source, type, info.Flags, info.OpRRM, rrm: true);
  775. }
  776. else
  777. {
  778. throw new ArgumentException($"Invalid source operand kind \"{source.Kind}\".");
  779. }
  780. }
  781. else if (info.OpRRM != BadOp)
  782. {
  783. WriteOpCode(dest, null, source, type, info.Flags, info.OpRRM, rrm: true);
  784. }
  785. else if (info.OpRMR != BadOp)
  786. {
  787. WriteOpCode(dest, null, source, type, info.Flags, info.OpRMR);
  788. }
  789. else
  790. {
  791. throw new ArgumentNullException(nameof(source));
  792. }
  793. }
  794. private void WriteInstruction(
  795. Operand dest,
  796. Operand src1,
  797. Operand src2,
  798. X86Instruction inst,
  799. OperandType type = OperandType.None)
  800. {
  801. InstructionInfo info = _instTable[(int)inst];
  802. if (src2 != null)
  803. {
  804. if (src2.Kind == OperandKind.Constant)
  805. {
  806. ulong imm = src2.Value;
  807. if ((byte)imm == imm && info.OpRMImm8 != BadOp)
  808. {
  809. WriteOpCode(dest, src1, null, type, info.Flags, info.OpRMImm8);
  810. WriteByte((byte)imm);
  811. }
  812. else
  813. {
  814. throw new ArgumentException($"Failed to encode constant 0x{imm:X}.");
  815. }
  816. }
  817. else if (src2.Kind == OperandKind.Register && info.OpRMR != BadOp)
  818. {
  819. WriteOpCode(dest, src1, src2, type, info.Flags, info.OpRMR);
  820. }
  821. else if (info.OpRRM != BadOp)
  822. {
  823. WriteOpCode(dest, src1, src2, type, info.Flags, info.OpRRM, rrm: true);
  824. }
  825. else
  826. {
  827. throw new ArgumentException($"Invalid source operand kind \"{src2.Kind}\".");
  828. }
  829. }
  830. else if (info.OpRRM != BadOp)
  831. {
  832. WriteOpCode(dest, src1, src2, type, info.Flags, info.OpRRM, rrm: true);
  833. }
  834. else if (info.OpRMR != BadOp)
  835. {
  836. WriteOpCode(dest, src1, src2, type, info.Flags, info.OpRMR);
  837. }
  838. else
  839. {
  840. throw new ArgumentNullException(nameof(src2));
  841. }
  842. }
  843. private void WriteOpCode(
  844. Operand dest,
  845. Operand src1,
  846. Operand src2,
  847. OperandType type,
  848. InstructionFlags flags,
  849. int opCode,
  850. bool rrm = false)
  851. {
  852. int rexPrefix = GetRexPrefix(dest, src2, type, rrm);
  853. if ((flags & InstructionFlags.RexW) != 0)
  854. {
  855. rexPrefix |= RexWPrefix;
  856. }
  857. int modRM = (opCode >> OpModRMBits) << 3;
  858. MemoryOperand memOp = null;
  859. if (dest != null)
  860. {
  861. if (dest.Kind == OperandKind.Register)
  862. {
  863. int regIndex = dest.GetRegister().Index;
  864. modRM |= (regIndex & 0b111) << (rrm ? 3 : 0);
  865. if ((flags & InstructionFlags.Reg8Dest) != 0 && regIndex >= 4)
  866. {
  867. rexPrefix |= RexPrefix;
  868. }
  869. }
  870. else if (dest.Kind == OperandKind.Memory)
  871. {
  872. memOp = dest as MemoryOperand;
  873. }
  874. else
  875. {
  876. throw new ArgumentException("Invalid destination operand kind \"" + dest.Kind + "\".");
  877. }
  878. }
  879. if (src2 != null)
  880. {
  881. if (src2.Kind == OperandKind.Register)
  882. {
  883. int regIndex = src2.GetRegister().Index;
  884. modRM |= (regIndex & 0b111) << (rrm ? 0 : 3);
  885. if ((flags & InstructionFlags.Reg8Src) != 0 && regIndex >= 4)
  886. {
  887. rexPrefix |= RexPrefix;
  888. }
  889. }
  890. else if (src2.Kind == OperandKind.Memory && memOp == null)
  891. {
  892. memOp = src2 as MemoryOperand;
  893. }
  894. else
  895. {
  896. throw new ArgumentException("Invalid source operand kind \"" + src2.Kind + "\".");
  897. }
  898. }
  899. bool needsSibByte = false;
  900. bool needsDisplacement = false;
  901. int sib = 0;
  902. if (memOp != null)
  903. {
  904. // Either source or destination is a memory operand.
  905. Register baseReg = memOp.BaseAddress.GetRegister();
  906. X86Register baseRegLow = (X86Register)(baseReg.Index & 0b111);
  907. needsSibByte = memOp.Index != null || baseRegLow == X86Register.Rsp;
  908. needsDisplacement = memOp.Displacement != 0 || baseRegLow == X86Register.Rbp;
  909. if (needsDisplacement)
  910. {
  911. if (ConstFitsOnS8(memOp.Displacement))
  912. {
  913. modRM |= 0x40;
  914. }
  915. else /* if (ConstFitsOnS32(memOp.Displacement)) */
  916. {
  917. modRM |= 0x80;
  918. }
  919. }
  920. if (baseReg.Index >= 8)
  921. {
  922. Debug.Assert((uint)baseReg.Index <= MaxRegNumber);
  923. rexPrefix |= RexPrefix | (baseReg.Index >> 3);
  924. }
  925. if (needsSibByte)
  926. {
  927. sib = (int)baseRegLow;
  928. if (memOp.Index != null)
  929. {
  930. int indexReg = memOp.Index.GetRegister().Index;
  931. Debug.Assert(indexReg != (int)X86Register.Rsp, "Using RSP as index register on the memory operand is not allowed.");
  932. if (indexReg >= 8)
  933. {
  934. Debug.Assert((uint)indexReg <= MaxRegNumber);
  935. rexPrefix |= RexPrefix | (indexReg >> 3) << 1;
  936. }
  937. sib |= (indexReg & 0b111) << 3;
  938. }
  939. else
  940. {
  941. sib |= 0b100 << 3;
  942. }
  943. sib |= (int)memOp.Scale << 6;
  944. modRM |= 0b100;
  945. }
  946. else
  947. {
  948. modRM |= (int)baseRegLow;
  949. }
  950. }
  951. else
  952. {
  953. // Source and destination are registers.
  954. modRM |= 0xc0;
  955. }
  956. Debug.Assert(opCode != BadOp, "Invalid opcode value.");
  957. if ((flags & InstructionFlags.Vex) != 0 && HardwareCapabilities.SupportsVexEncoding)
  958. {
  959. int vexByte2 = (int)(flags & InstructionFlags.PrefixMask) >> (int)InstructionFlags.PrefixBit;
  960. if (src1 != null)
  961. {
  962. vexByte2 |= (src1.GetRegister().Index ^ 0xf) << 3;
  963. }
  964. else
  965. {
  966. vexByte2 |= 0b1111 << 3;
  967. }
  968. ushort opCodeHigh = (ushort)(opCode >> 8);
  969. if ((rexPrefix & 0b1011) == 0 && opCodeHigh == 0xf)
  970. {
  971. // Two-byte form.
  972. WriteByte(0xc5);
  973. vexByte2 |= (~rexPrefix & 4) << 5;
  974. WriteByte((byte)vexByte2);
  975. }
  976. else
  977. {
  978. // Three-byte form.
  979. WriteByte(0xc4);
  980. int vexByte1 = (~rexPrefix & 7) << 5;
  981. switch (opCodeHigh)
  982. {
  983. case 0xf: vexByte1 |= 1; break;
  984. case 0xf38: vexByte1 |= 2; break;
  985. case 0xf3a: vexByte1 |= 3; break;
  986. default: Debug.Assert(false, $"Failed to VEX encode opcode 0x{opCode:X}."); break;
  987. }
  988. vexByte2 |= (rexPrefix & 8) << 4;
  989. WriteByte((byte)vexByte1);
  990. WriteByte((byte)vexByte2);
  991. }
  992. opCode &= 0xff;
  993. }
  994. else
  995. {
  996. switch (flags & InstructionFlags.PrefixMask)
  997. {
  998. case InstructionFlags.Prefix66: WriteByte(0x66); break;
  999. case InstructionFlags.PrefixF2: WriteByte(0xf2); break;
  1000. case InstructionFlags.PrefixF3: WriteByte(0xf3); break;
  1001. }
  1002. if (rexPrefix != 0)
  1003. {
  1004. WriteByte((byte)rexPrefix);
  1005. }
  1006. }
  1007. if (dest != null && (flags & InstructionFlags.RegOnly) != 0)
  1008. {
  1009. opCode += dest.GetRegister().Index & 7;
  1010. }
  1011. if ((opCode & 0xff0000) != 0)
  1012. {
  1013. WriteByte((byte)(opCode >> 16));
  1014. }
  1015. if ((opCode & 0xff00) != 0)
  1016. {
  1017. WriteByte((byte)(opCode >> 8));
  1018. }
  1019. WriteByte((byte)opCode);
  1020. if ((flags & InstructionFlags.RegOnly) == 0)
  1021. {
  1022. WriteByte((byte)modRM);
  1023. if (needsSibByte)
  1024. {
  1025. WriteByte((byte)sib);
  1026. }
  1027. if (needsDisplacement)
  1028. {
  1029. if (ConstFitsOnS8(memOp.Displacement))
  1030. {
  1031. WriteByte((byte)memOp.Displacement);
  1032. }
  1033. else /* if (ConstFitsOnS32(memOp.Displacement)) */
  1034. {
  1035. WriteInt32(memOp.Displacement);
  1036. }
  1037. }
  1038. }
  1039. }
  1040. private void WriteCompactInst(Operand operand, int opCode)
  1041. {
  1042. int regIndex = operand.GetRegister().Index;
  1043. if (regIndex >= 8)
  1044. {
  1045. WriteByte(0x41);
  1046. }
  1047. WriteByte((byte)(opCode + (regIndex & 0b111)));
  1048. }
  1049. private static int GetRexPrefix(Operand dest, Operand source, OperandType type, bool rrm)
  1050. {
  1051. int rexPrefix = 0;
  1052. if (Is64Bits(type))
  1053. {
  1054. rexPrefix = RexWPrefix;
  1055. }
  1056. void SetRegisterHighBit(Register reg, int bit)
  1057. {
  1058. if (reg.Index >= 8)
  1059. {
  1060. rexPrefix |= RexPrefix | (reg.Index >> 3) << bit;
  1061. }
  1062. }
  1063. if (dest != null && dest.Kind == OperandKind.Register)
  1064. {
  1065. SetRegisterHighBit(dest.GetRegister(), rrm ? 2 : 0);
  1066. }
  1067. if (source != null && source.Kind == OperandKind.Register)
  1068. {
  1069. SetRegisterHighBit(source.GetRegister(), rrm ? 0 : 2);
  1070. }
  1071. return rexPrefix;
  1072. }
  1073. private static bool Is64Bits(OperandType type)
  1074. {
  1075. return type == OperandType.I64 || type == OperandType.FP64;
  1076. }
  1077. private static bool IsImm8(ulong immediate, OperandType type)
  1078. {
  1079. long value = type == OperandType.I32 ? (int)immediate : (long)immediate;
  1080. return ConstFitsOnS8(value);
  1081. }
  1082. private static bool IsImm32(ulong immediate, OperandType type)
  1083. {
  1084. long value = type == OperandType.I32 ? (int)immediate : (long)immediate;
  1085. return ConstFitsOnS32(value);
  1086. }
  1087. public static int GetJccLength(long offset)
  1088. {
  1089. if (ConstFitsOnS8(offset < 0 ? offset - 2 : offset))
  1090. {
  1091. return 2;
  1092. }
  1093. else if (ConstFitsOnS32(offset < 0 ? offset - 6 : offset))
  1094. {
  1095. return 6;
  1096. }
  1097. else
  1098. {
  1099. throw new ArgumentOutOfRangeException(nameof(offset));
  1100. }
  1101. }
  1102. public static int GetJmpLength(long offset)
  1103. {
  1104. if (ConstFitsOnS8(offset < 0 ? offset - 2 : offset))
  1105. {
  1106. return 2;
  1107. }
  1108. else if (ConstFitsOnS32(offset < 0 ? offset - 5 : offset))
  1109. {
  1110. return 5;
  1111. }
  1112. else
  1113. {
  1114. throw new ArgumentOutOfRangeException(nameof(offset));
  1115. }
  1116. }
  1117. private static bool ConstFitsOnS8(long value)
  1118. {
  1119. return value == (sbyte)value;
  1120. }
  1121. private static bool ConstFitsOnS32(long value)
  1122. {
  1123. return value == (int)value;
  1124. }
  1125. private void WriteInt16(short value)
  1126. {
  1127. WriteUInt16((ushort)value);
  1128. }
  1129. private void WriteInt32(int value)
  1130. {
  1131. WriteUInt32((uint)value);
  1132. }
  1133. private void WriteByte(byte value)
  1134. {
  1135. _stream.WriteByte(value);
  1136. }
  1137. private void WriteUInt16(ushort value)
  1138. {
  1139. _stream.WriteByte((byte)(value >> 0));
  1140. _stream.WriteByte((byte)(value >> 8));
  1141. }
  1142. private void WriteUInt32(uint value)
  1143. {
  1144. _stream.WriteByte((byte)(value >> 0));
  1145. _stream.WriteByte((byte)(value >> 8));
  1146. _stream.WriteByte((byte)(value >> 16));
  1147. _stream.WriteByte((byte)(value >> 24));
  1148. }
  1149. private void WriteUInt64(ulong value)
  1150. {
  1151. _stream.WriteByte((byte)(value >> 0));
  1152. _stream.WriteByte((byte)(value >> 8));
  1153. _stream.WriteByte((byte)(value >> 16));
  1154. _stream.WriteByte((byte)(value >> 24));
  1155. _stream.WriteByte((byte)(value >> 32));
  1156. _stream.WriteByte((byte)(value >> 40));
  1157. _stream.WriteByte((byte)(value >> 48));
  1158. _stream.WriteByte((byte)(value >> 56));
  1159. }
  1160. }
  1161. }