Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NEON_ctor.cs 101KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349
  1. using System;
  2. using System.Diagnostics;
  3. namespace Unity.Burst.Intrinsics
  4. {
  5. public unsafe static partial class Arm
  6. {
  7. /// <summary>
  8. /// Neon intrinsics
  9. /// </summary>
  10. public unsafe partial class Neon
  11. {
  12. /// <summary>Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&amp;FP register to the specified vector element of the destination SIMD&amp;FP register.This instruction can insert data into individual elements within a SIMD&amp;FP register without clearing the remaining bits to zero.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  13. /// <br/>Equivalent instruction: <c>INS Vd.D[0],Xn</c></summary>
  14. /// <param name="a0">UInt64 a0</param>
  15. /// <returns>64-bit vector</returns>
  16. [DebuggerStepThrough]
  17. public static v64 vcreate_s8(UInt64 a0)
  18. {
  19. return new v64(a0);
  20. }
  21. /// <summary>Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&amp;FP register to the specified vector element of the destination SIMD&amp;FP register.This instruction can insert data into individual elements within a SIMD&amp;FP register without clearing the remaining bits to zero.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  22. /// <br/>Equivalent instruction: <c>INS Vd.D[0],Xn</c></summary>
  23. /// <param name="a0">UInt64 a0</param>
  24. /// <returns>64-bit vector</returns>
  25. [DebuggerStepThrough]
  26. public static v64 vcreate_s16(UInt64 a0)
  27. {
  28. return new v64(a0);
  29. }
  30. /// <summary>Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&amp;FP register to the specified vector element of the destination SIMD&amp;FP register.This instruction can insert data into individual elements within a SIMD&amp;FP register without clearing the remaining bits to zero.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  31. /// <br/>Equivalent instruction: <c>INS Vd.D[0],Xn</c></summary>
  32. /// <param name="a0">UInt64 a0</param>
  33. /// <returns>64-bit vector</returns>
  34. [DebuggerStepThrough]
  35. public static v64 vcreate_s32(UInt64 a0)
  36. {
  37. return new v64(a0);
  38. }
  39. /// <summary>Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&amp;FP register to the specified vector element of the destination SIMD&amp;FP register.This instruction can insert data into individual elements within a SIMD&amp;FP register without clearing the remaining bits to zero.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  40. /// <br/>Equivalent instruction: <c>INS Vd.D[0],Xn</c></summary>
  41. /// <param name="a0">UInt64 a0</param>
  42. /// <returns>64-bit vector</returns>
  43. [DebuggerStepThrough]
  44. public static v64 vcreate_s64(UInt64 a0)
  45. {
  46. return new v64(a0);
  47. }
  48. /// <summary>Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&amp;FP register to the specified vector element of the destination SIMD&amp;FP register.This instruction can insert data into individual elements within a SIMD&amp;FP register without clearing the remaining bits to zero.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  49. /// <br/>Equivalent instruction: <c>INS Vd.D[0],Xn</c></summary>
  50. /// <param name="a0">UInt64 a0</param>
  51. /// <returns>64-bit vector</returns>
  52. [DebuggerStepThrough]
  53. public static v64 vcreate_u8(UInt64 a0)
  54. {
  55. return new v64(a0);
  56. }
  57. /// <summary>Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&amp;FP register to the specified vector element of the destination SIMD&amp;FP register.This instruction can insert data into individual elements within a SIMD&amp;FP register without clearing the remaining bits to zero.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  58. /// <br/>Equivalent instruction: <c>INS Vd.D[0],Xn</c></summary>
  59. /// <param name="a0">UInt64 a0</param>
  60. /// <returns>64-bit vector</returns>
  61. [DebuggerStepThrough]
  62. public static v64 vcreate_u16(UInt64 a0)
  63. {
  64. return new v64(a0);
  65. }
  66. /// <summary>Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&amp;FP register to the specified vector element of the destination SIMD&amp;FP register.This instruction can insert data into individual elements within a SIMD&amp;FP register without clearing the remaining bits to zero.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  67. /// <br/>Equivalent instruction: <c>INS Vd.D[0],Xn</c></summary>
  68. /// <param name="a0">UInt64 a0</param>
  69. /// <returns>64-bit vector</returns>
  70. [DebuggerStepThrough]
  71. public static v64 vcreate_u32(UInt64 a0)
  72. {
  73. return new v64(a0);
  74. }
  75. /// <summary>Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&amp;FP register to the specified vector element of the destination SIMD&amp;FP register.This instruction can insert data into individual elements within a SIMD&amp;FP register without clearing the remaining bits to zero.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  76. /// <br/>Equivalent instruction: <c>INS Vd.D[0],Xn</c></summary>
  77. /// <param name="a0">UInt64 a0</param>
  78. /// <returns>64-bit vector</returns>
  79. [DebuggerStepThrough]
  80. public static v64 vcreate_u64(UInt64 a0)
  81. {
  82. return new v64(a0);
  83. }
  84. /// <summary>Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&amp;FP register to the specified vector element of the destination SIMD&amp;FP register.This instruction can insert data into individual elements within a SIMD&amp;FP register without clearing the remaining bits to zero.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  85. /// <br/>Equivalent instruction: <c>INS Vd.D[0],Xn</c></summary>
  86. /// <param name="a0">UInt64 a0</param>
  87. /// <returns>64-bit vector</returns>
  88. [DebuggerStepThrough]
  89. public static v64 vcreate_f16(UInt64 a0)
  90. {
  91. return new v64(a0);
  92. }
  93. /// <summary>Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&amp;FP register to the specified vector element of the destination SIMD&amp;FP register.This instruction can insert data into individual elements within a SIMD&amp;FP register without clearing the remaining bits to zero.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  94. /// <br/>Equivalent instruction: <c>INS Vd.D[0],Xn</c></summary>
  95. /// <param name="a0">UInt64 a0</param>
  96. /// <returns>64-bit vector</returns>
  97. [DebuggerStepThrough]
  98. public static v64 vcreate_f32(UInt64 a0)
  99. {
  100. return new v64(a0);
  101. }
  102. /// <summary>Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&amp;FP register to the specified vector element of the destination SIMD&amp;FP register.This instruction can insert data into individual elements within a SIMD&amp;FP register without clearing the remaining bits to zero.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  103. /// <br/>Equivalent instruction: <c>INS Vd.D[0],Xn</c></summary>
  104. /// <param name="a0">UInt64 a0</param>
  105. /// <returns>64-bit vector</returns>
  106. [DebuggerStepThrough]
  107. public static v64 vcreate_f64(UInt64 a0)
  108. {
  109. return new v64(a0);
  110. }
  111. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  112. /// <br/>Equivalent instruction: <c>DUP Vd.8B,rn</c></summary>
  113. /// <param name="a0">SByte a0</param>
  114. /// <returns>64-bit vector</returns>
  115. [DebuggerStepThrough]
  116. public static v64 vdup_n_s8(SByte a0)
  117. {
  118. return new v64(a0);
  119. }
  120. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  121. /// <br/>Equivalent instruction: <c>DUP Vd.16B,rn</c></summary>
  122. /// <param name="a0">SByte a0</param>
  123. /// <returns>128-bit vector</returns>
  124. [DebuggerStepThrough]
  125. public static v128 vdupq_n_s8(SByte a0)
  126. {
  127. return new v128(a0);
  128. }
  129. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  130. /// <br/>Equivalent instruction: <c>DUP Vd.4H,rn</c></summary>
  131. /// <param name="a0">Int16 a0</param>
  132. /// <returns>64-bit vector</returns>
  133. [DebuggerStepThrough]
  134. public static v64 vdup_n_s16(Int16 a0)
  135. {
  136. return new v64(a0);
  137. }
  138. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  139. /// <br/>Equivalent instruction: <c>DUP Vd.8H,rn</c></summary>
  140. /// <param name="a0">Int16 a0</param>
  141. /// <returns>128-bit vector</returns>
  142. [DebuggerStepThrough]
  143. public static v128 vdupq_n_s16(Int16 a0)
  144. {
  145. return new v128(a0);
  146. }
  147. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  148. /// <br/>Equivalent instruction: <c>DUP Vd.2S,rn</c></summary>
  149. /// <param name="a0">Int32 a0</param>
  150. /// <returns>64-bit vector</returns>
  151. [DebuggerStepThrough]
  152. public static v64 vdup_n_s32(Int32 a0)
  153. {
  154. return new v64(a0);
  155. }
  156. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  157. /// <br/>Equivalent instruction: <c>DUP Vd.4S,rn</c></summary>
  158. /// <param name="a0">Int32 a0</param>
  159. /// <returns>128-bit vector</returns>
  160. [DebuggerStepThrough]
  161. public static v128 vdupq_n_s32(Int32 a0)
  162. {
  163. return new v128(a0);
  164. }
  165. /// <summary>Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&amp;FP register to the specified vector element of the destination SIMD&amp;FP register.This instruction can insert data into individual elements within a SIMD&amp;FP register without clearing the remaining bits to zero.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  166. /// <br/>Equivalent instruction: <c>INS Dd.D[0],xn</c></summary>
  167. /// <param name="a0">Int64 a0</param>
  168. /// <returns>64-bit vector</returns>
  169. [DebuggerStepThrough]
  170. public static v64 vdup_n_s64(Int64 a0)
  171. {
  172. return new v64(a0);
  173. }
  174. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  175. /// <br/>Equivalent instruction: <c>DUP Vd.2D,rn</c></summary>
  176. /// <param name="a0">Int64 a0</param>
  177. /// <returns>128-bit vector</returns>
  178. [DebuggerStepThrough]
  179. public static v128 vdupq_n_s64(Int64 a0)
  180. {
  181. return new v128(a0);
  182. }
  183. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  184. /// <br/>Equivalent instruction: <c>DUP Vd.8B,rn</c></summary>
  185. /// <param name="a0">Byte a0</param>
  186. /// <returns>64-bit vector</returns>
  187. [DebuggerStepThrough]
  188. public static v64 vdup_n_u8(Byte a0)
  189. {
  190. return new v64(a0);
  191. }
  192. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  193. /// <br/>Equivalent instruction: <c>DUP Vd.16B,rn</c></summary>
  194. /// <param name="a0">Byte a0</param>
  195. /// <returns>128-bit vector</returns>
  196. [DebuggerStepThrough]
  197. public static v128 vdupq_n_u8(Byte a0)
  198. {
  199. return new v128(a0);
  200. }
  201. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  202. /// <br/>Equivalent instruction: <c>DUP Vd.4H,rn</c></summary>
  203. /// <param name="a0">UInt16 a0</param>
  204. /// <returns>64-bit vector</returns>
  205. [DebuggerStepThrough]
  206. public static v64 vdup_n_u16(UInt16 a0)
  207. {
  208. return new v64(a0);
  209. }
  210. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  211. /// <br/>Equivalent instruction: <c>DUP Vd.8H,rn</c></summary>
  212. /// <param name="a0">UInt16 a0</param>
  213. /// <returns>128-bit vector</returns>
  214. [DebuggerStepThrough]
  215. public static v128 vdupq_n_u16(UInt16 a0)
  216. {
  217. return new v128(a0);
  218. }
  219. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  220. /// <br/>Equivalent instruction: <c>DUP Vd.2S,rn</c></summary>
  221. /// <param name="a0">UInt32 a0</param>
  222. /// <returns>64-bit vector</returns>
  223. [DebuggerStepThrough]
  224. public static v64 vdup_n_u32(UInt32 a0)
  225. {
  226. return new v64(a0);
  227. }
  228. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  229. /// <br/>Equivalent instruction: <c>DUP Vd.4S,rn</c></summary>
  230. /// <param name="a0">UInt32 a0</param>
  231. /// <returns>128-bit vector</returns>
  232. [DebuggerStepThrough]
  233. public static v128 vdupq_n_u32(UInt32 a0)
  234. {
  235. return new v128(a0);
  236. }
  237. /// <summary>Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&amp;FP register to the specified vector element of the destination SIMD&amp;FP register.This instruction can insert data into individual elements within a SIMD&amp;FP register without clearing the remaining bits to zero.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  238. /// <br/>Equivalent instruction: <c>INS Dd.D[0],xn</c></summary>
  239. /// <param name="a0">UInt64 a0</param>
  240. /// <returns>64-bit vector</returns>
  241. [DebuggerStepThrough]
  242. public static v64 vdup_n_u64(UInt64 a0)
  243. {
  244. return new v64(a0);
  245. }
  246. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  247. /// <br/>Equivalent instruction: <c>DUP Vd.2D,rn</c></summary>
  248. /// <param name="a0">UInt64 a0</param>
  249. /// <returns>128-bit vector</returns>
  250. [DebuggerStepThrough]
  251. public static v128 vdupq_n_u64(UInt64 a0)
  252. {
  253. return new v128(a0);
  254. }
  255. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  256. /// <br/>Equivalent instruction: <c>DUP Vd.2S,rn</c></summary>
  257. /// <param name="a0">Single a0</param>
  258. /// <returns>64-bit vector</returns>
  259. [DebuggerStepThrough]
  260. public static v64 vdup_n_f32(Single a0)
  261. {
  262. return new v64(a0);
  263. }
  264. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  265. /// <br/>Equivalent instruction: <c>DUP Vd.4S,rn</c></summary>
  266. /// <param name="a0">Single a0</param>
  267. /// <returns>128-bit vector</returns>
  268. [DebuggerStepThrough]
  269. public static v128 vdupq_n_f32(Single a0)
  270. {
  271. return new v128(a0);
  272. }
  273. /// <summary>Insert vector element from another vector element. This instruction copies the vector element of the source SIMD&amp;FP register to the specified vector element of the destination SIMD&amp;FP register.This instruction can insert data into individual elements within a SIMD&amp;FP register without clearing the remaining bits to zero.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  274. /// <br/>Equivalent instruction: <c>INS Dd.D[0],xn</c></summary>
  275. /// <param name="a0">Double a0</param>
  276. /// <returns>64-bit vector</returns>
  277. [DebuggerStepThrough]
  278. public static v64 vdup_n_f64(Double a0)
  279. {
  280. return new v64(a0);
  281. }
  282. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  283. /// <br/>Equivalent instruction: <c>DUP Vd.2D,rn</c></summary>
  284. /// <param name="a0">Double a0</param>
  285. /// <returns>128-bit vector</returns>
  286. [DebuggerStepThrough]
  287. public static v128 vdupq_n_f64(Double a0)
  288. {
  289. return new v128(a0);
  290. }
  291. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  292. /// <br/>Equivalent instruction: <c>DUP Vd.8B,rn</c></summary>
  293. /// <param name="a0">SByte a0</param>
  294. /// <returns>64-bit vector</returns>
  295. [DebuggerStepThrough]
  296. public static v64 vmov_n_s8(SByte a0)
  297. {
  298. return new v64(a0);
  299. }
  300. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  301. /// <br/>Equivalent instruction: <c>DUP Vd.16B,rn</c></summary>
  302. /// <param name="a0">SByte a0</param>
  303. /// <returns>128-bit vector</returns>
  304. [DebuggerStepThrough]
  305. public static v128 vmovq_n_s8(SByte a0)
  306. {
  307. return new v128(a0);
  308. }
  309. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  310. /// <br/>Equivalent instruction: <c>DUP Vd.4H,rn</c></summary>
  311. /// <param name="a0">Int16 a0</param>
  312. /// <returns>64-bit vector</returns>
  313. [DebuggerStepThrough]
  314. public static v64 vmov_n_s16(Int16 a0)
  315. {
  316. return new v64(a0);
  317. }
  318. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  319. /// <br/>Equivalent instruction: <c>DUP Vd.8H,rn</c></summary>
  320. /// <param name="a0">Int16 a0</param>
  321. /// <returns>128-bit vector</returns>
  322. [DebuggerStepThrough]
  323. public static v128 vmovq_n_s16(Int16 a0)
  324. {
  325. return new v128(a0);
  326. }
  327. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  328. /// <br/>Equivalent instruction: <c>DUP Vd.2S,rn</c></summary>
  329. /// <param name="a0">Int32 a0</param>
  330. /// <returns>64-bit vector</returns>
  331. [DebuggerStepThrough]
  332. public static v64 vmov_n_s32(Int32 a0)
  333. {
  334. return new v64(a0);
  335. }
  336. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  337. /// <br/>Equivalent instruction: <c>DUP Vd.4S,rn</c></summary>
  338. /// <param name="a0">Int32 a0</param>
  339. /// <returns>128-bit vector</returns>
  340. [DebuggerStepThrough]
  341. public static v128 vmovq_n_s32(Int32 a0)
  342. {
  343. return new v128(a0);
  344. }
  345. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  346. /// <br/>Equivalent instruction: <c>DUP Vd.1D,rn</c></summary>
  347. /// <param name="a0">Int64 a0</param>
  348. /// <returns>64-bit vector</returns>
  349. [DebuggerStepThrough]
  350. public static v64 vmov_n_s64(Int64 a0)
  351. {
  352. return new v64(a0);
  353. }
  354. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  355. /// <br/>Equivalent instruction: <c>DUP Vd.2D,rn</c></summary>
  356. /// <param name="a0">Int64 a0</param>
  357. /// <returns>128-bit vector</returns>
  358. [DebuggerStepThrough]
  359. public static v128 vmovq_n_s64(Int64 a0)
  360. {
  361. return new v128(a0);
  362. }
  363. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  364. /// <br/>Equivalent instruction: <c>DUP Vd.8B,rn</c></summary>
  365. /// <param name="a0">Byte a0</param>
  366. /// <returns>64-bit vector</returns>
  367. [DebuggerStepThrough]
  368. public static v64 vmov_n_u8(Byte a0)
  369. {
  370. return new v64(a0);
  371. }
  372. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  373. /// <br/>Equivalent instruction: <c>DUP Vd.16B,rn</c></summary>
  374. /// <param name="a0">Byte a0</param>
  375. /// <returns>128-bit vector</returns>
  376. [DebuggerStepThrough]
  377. public static v128 vmovq_n_u8(Byte a0)
  378. {
  379. return new v128(a0);
  380. }
  381. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  382. /// <br/>Equivalent instruction: <c>DUP Vd.4H,rn</c></summary>
  383. /// <param name="a0">UInt16 a0</param>
  384. /// <returns>64-bit vector</returns>
  385. [DebuggerStepThrough]
  386. public static v64 vmov_n_u16(UInt16 a0)
  387. {
  388. return new v64(a0);
  389. }
  390. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  391. /// <br/>Equivalent instruction: <c>DUP Vd.8H,rn</c></summary>
  392. /// <param name="a0">UInt16 a0</param>
  393. /// <returns>128-bit vector</returns>
  394. [DebuggerStepThrough]
  395. public static v128 vmovq_n_u16(UInt16 a0)
  396. {
  397. return new v128(a0);
  398. }
  399. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  400. /// <br/>Equivalent instruction: <c>DUP Vd.2S,rn</c></summary>
  401. /// <param name="a0">UInt32 a0</param>
  402. /// <returns>64-bit vector</returns>
  403. [DebuggerStepThrough]
  404. public static v64 vmov_n_u32(UInt32 a0)
  405. {
  406. return new v64(a0);
  407. }
  408. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  409. /// <br/>Equivalent instruction: <c>DUP Vd.4S,rn</c></summary>
  410. /// <param name="a0">UInt32 a0</param>
  411. /// <returns>128-bit vector</returns>
  412. [DebuggerStepThrough]
  413. public static v128 vmovq_n_u32(UInt32 a0)
  414. {
  415. return new v128(a0);
  416. }
  417. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  418. /// <br/>Equivalent instruction: <c>DUP Vd.1D,rn</c></summary>
  419. /// <param name="a0">UInt64 a0</param>
  420. /// <returns>64-bit vector</returns>
  421. [DebuggerStepThrough]
  422. public static v64 vmov_n_u64(UInt64 a0)
  423. {
  424. return new v64(a0);
  425. }
  426. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  427. /// <br/>Equivalent instruction: <c>DUP Vd.2D,rn</c></summary>
  428. /// <param name="a0">UInt64 a0</param>
  429. /// <returns>128-bit vector</returns>
  430. [DebuggerStepThrough]
  431. public static v128 vmovq_n_u64(UInt64 a0)
  432. {
  433. return new v128(a0);
  434. }
  435. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  436. /// <br/>Equivalent instruction: <c>DUP Vd.2S,rn</c></summary>
  437. /// <param name="a0">Single a0</param>
  438. /// <returns>64-bit vector</returns>
  439. [DebuggerStepThrough]
  440. public static v64 vmov_n_f32(Single a0)
  441. {
  442. return new v64(a0);
  443. }
  444. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  445. /// <br/>Equivalent instruction: <c>DUP Vd.4S,rn</c></summary>
  446. /// <param name="a0">Single a0</param>
  447. /// <returns>128-bit vector</returns>
  448. [DebuggerStepThrough]
  449. public static v128 vmovq_n_f32(Single a0)
  450. {
  451. return new v128(a0);
  452. }
  453. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  454. /// <br/>Equivalent instruction: <c>DUP Vd.1D,rn</c></summary>
  455. /// <param name="a0">Double a0</param>
  456. /// <returns>64-bit vector</returns>
  457. [DebuggerStepThrough]
  458. public static v64 vmov_n_f64(Double a0)
  459. {
  460. return new v64(a0);
  461. }
  462. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  463. /// <br/>Equivalent instruction: <c>DUP Vd.2D,rn</c></summary>
  464. /// <param name="a0">Double a0</param>
  465. /// <returns>128-bit vector</returns>
  466. [DebuggerStepThrough]
  467. public static v128 vmovq_n_f64(Double a0)
  468. {
  469. return new v128(a0);
  470. }
  471. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  472. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  473. /// <param name="a0">64-bit vector a0</param>
  474. /// <param name="a1">64-bit vector a1</param>
  475. /// <returns>128-bit vector</returns>
  476. [DebuggerStepThrough]
  477. public static v128 vcombine_s8(v64 a0, v64 a1)
  478. {
  479. return new v128(a0, a1);
  480. }
  481. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  482. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  483. /// <param name="a0">64-bit vector a0</param>
  484. /// <param name="a1">64-bit vector a1</param>
  485. /// <returns>128-bit vector</returns>
  486. [DebuggerStepThrough]
  487. public static v128 vcombine_s16(v64 a0, v64 a1)
  488. {
  489. return new v128(a0, a1);
  490. }
  491. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  492. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  493. /// <param name="a0">64-bit vector a0</param>
  494. /// <param name="a1">64-bit vector a1</param>
  495. /// <returns>128-bit vector</returns>
  496. [DebuggerStepThrough]
  497. public static v128 vcombine_s32(v64 a0, v64 a1)
  498. {
  499. return new v128(a0, a1);
  500. }
  501. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  502. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  503. /// <param name="a0">64-bit vector a0</param>
  504. /// <param name="a1">64-bit vector a1</param>
  505. /// <returns>128-bit vector</returns>
  506. [DebuggerStepThrough]
  507. public static v128 vcombine_s64(v64 a0, v64 a1)
  508. {
  509. return new v128(a0, a1);
  510. }
  511. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  512. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  513. /// <param name="a0">64-bit vector a0</param>
  514. /// <param name="a1">64-bit vector a1</param>
  515. /// <returns>128-bit vector</returns>
  516. [DebuggerStepThrough]
  517. public static v128 vcombine_u8(v64 a0, v64 a1)
  518. {
  519. return new v128(a0, a1);
  520. }
  521. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  522. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  523. /// <param name="a0">64-bit vector a0</param>
  524. /// <param name="a1">64-bit vector a1</param>
  525. /// <returns>128-bit vector</returns>
  526. [DebuggerStepThrough]
  527. public static v128 vcombine_u16(v64 a0, v64 a1)
  528. {
  529. return new v128(a0, a1);
  530. }
  531. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  532. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  533. /// <param name="a0">64-bit vector a0</param>
  534. /// <param name="a1">64-bit vector a1</param>
  535. /// <returns>128-bit vector</returns>
  536. [DebuggerStepThrough]
  537. public static v128 vcombine_u32(v64 a0, v64 a1)
  538. {
  539. return new v128(a0, a1);
  540. }
  541. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  542. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  543. /// <param name="a0">64-bit vector a0</param>
  544. /// <param name="a1">64-bit vector a1</param>
  545. /// <returns>128-bit vector</returns>
  546. [DebuggerStepThrough]
  547. public static v128 vcombine_u64(v64 a0, v64 a1)
  548. {
  549. return new v128(a0, a1);
  550. }
  551. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  552. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  553. /// <param name="a0">64-bit vector a0</param>
  554. /// <param name="a1">64-bit vector a1</param>
  555. /// <returns>128-bit vector</returns>
  556. [DebuggerStepThrough]
  557. public static v128 vcombine_f16(v64 a0, v64 a1)
  558. {
  559. return new v128(a0, a1);
  560. }
  561. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  562. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  563. /// <param name="a0">64-bit vector a0</param>
  564. /// <param name="a1">64-bit vector a1</param>
  565. /// <returns>128-bit vector</returns>
  566. [DebuggerStepThrough]
  567. public static v128 vcombine_f32(v64 a0, v64 a1)
  568. {
  569. return new v128(a0, a1);
  570. }
  571. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  572. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  573. /// <param name="a0">64-bit vector a0</param>
  574. /// <param name="a1">64-bit vector a1</param>
  575. /// <returns>128-bit vector</returns>
  576. [DebuggerStepThrough]
  577. public static v128 vcombine_f64(v64 a0, v64 a1)
  578. {
  579. return new v128(a0, a1);
  580. }
  581. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  582. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[1]</c></summary>
  583. /// <param name="a0">128-bit vector a0</param>
  584. /// <returns>64-bit vector</returns>
  585. [DebuggerStepThrough]
  586. public static v64 vget_high_s8(v128 a0)
  587. {
  588. return a0.Hi64;
  589. }
  590. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  591. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[1]</c></summary>
  592. /// <param name="a0">128-bit vector a0</param>
  593. /// <returns>64-bit vector</returns>
  594. [DebuggerStepThrough]
  595. public static v64 vget_high_s16(v128 a0)
  596. {
  597. return a0.Hi64;
  598. }
  599. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  600. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[1]</c></summary>
  601. /// <param name="a0">128-bit vector a0</param>
  602. /// <returns>64-bit vector</returns>
  603. [DebuggerStepThrough]
  604. public static v64 vget_high_s32(v128 a0)
  605. {
  606. return a0.Hi64;
  607. }
  608. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  609. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[1]</c></summary>
  610. /// <param name="a0">128-bit vector a0</param>
  611. /// <returns>64-bit vector</returns>
  612. [DebuggerStepThrough]
  613. public static v64 vget_high_s64(v128 a0)
  614. {
  615. return a0.Hi64;
  616. }
  617. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  618. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[1]</c></summary>
  619. /// <param name="a0">128-bit vector a0</param>
  620. /// <returns>64-bit vector</returns>
  621. [DebuggerStepThrough]
  622. public static v64 vget_high_u8(v128 a0)
  623. {
  624. return a0.Hi64;
  625. }
  626. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  627. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[1]</c></summary>
  628. /// <param name="a0">128-bit vector a0</param>
  629. /// <returns>64-bit vector</returns>
  630. [DebuggerStepThrough]
  631. public static v64 vget_high_u16(v128 a0)
  632. {
  633. return a0.Hi64;
  634. }
  635. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  636. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[1]</c></summary>
  637. /// <param name="a0">128-bit vector a0</param>
  638. /// <returns>64-bit vector</returns>
  639. [DebuggerStepThrough]
  640. public static v64 vget_high_u32(v128 a0)
  641. {
  642. return a0.Hi64;
  643. }
  644. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  645. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[1]</c></summary>
  646. /// <param name="a0">128-bit vector a0</param>
  647. /// <returns>64-bit vector</returns>
  648. [DebuggerStepThrough]
  649. public static v64 vget_high_u64(v128 a0)
  650. {
  651. return a0.Hi64;
  652. }
  653. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  654. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[1]</c></summary>
  655. /// <param name="a0">128-bit vector a0</param>
  656. /// <returns>64-bit vector</returns>
  657. [DebuggerStepThrough]
  658. public static v64 vget_high_f32(v128 a0)
  659. {
  660. return a0.Hi64;
  661. }
  662. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  663. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[1]</c></summary>
  664. /// <param name="a0">128-bit vector a0</param>
  665. /// <returns>64-bit vector</returns>
  666. [DebuggerStepThrough]
  667. public static v64 vget_high_f64(v128 a0)
  668. {
  669. return a0.Hi64;
  670. }
  671. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  672. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  673. /// <param name="a0">128-bit vector a0</param>
  674. /// <returns>64-bit vector</returns>
  675. [DebuggerStepThrough]
  676. public static v64 vget_low_s8(v128 a0)
  677. {
  678. return a0.Lo64;
  679. }
  680. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  681. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  682. /// <param name="a0">128-bit vector a0</param>
  683. /// <returns>64-bit vector</returns>
  684. [DebuggerStepThrough]
  685. public static v64 vget_low_s16(v128 a0)
  686. {
  687. return a0.Lo64;
  688. }
  689. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  690. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  691. /// <param name="a0">128-bit vector a0</param>
  692. /// <returns>64-bit vector</returns>
  693. [DebuggerStepThrough]
  694. public static v64 vget_low_s32(v128 a0)
  695. {
  696. return a0.Lo64;
  697. }
  698. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  699. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  700. /// <param name="a0">128-bit vector a0</param>
  701. /// <returns>64-bit vector</returns>
  702. [DebuggerStepThrough]
  703. public static v64 vget_low_s64(v128 a0)
  704. {
  705. return a0.Lo64;
  706. }
  707. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  708. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  709. /// <param name="a0">128-bit vector a0</param>
  710. /// <returns>64-bit vector</returns>
  711. [DebuggerStepThrough]
  712. public static v64 vget_low_u8(v128 a0)
  713. {
  714. return a0.Lo64;
  715. }
  716. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  717. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  718. /// <param name="a0">128-bit vector a0</param>
  719. /// <returns>64-bit vector</returns>
  720. [DebuggerStepThrough]
  721. public static v64 vget_low_u16(v128 a0)
  722. {
  723. return a0.Lo64;
  724. }
  725. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  726. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  727. /// <param name="a0">128-bit vector a0</param>
  728. /// <returns>64-bit vector</returns>
  729. [DebuggerStepThrough]
  730. public static v64 vget_low_u32(v128 a0)
  731. {
  732. return a0.Lo64;
  733. }
  734. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  735. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  736. /// <param name="a0">128-bit vector a0</param>
  737. /// <returns>64-bit vector</returns>
  738. [DebuggerStepThrough]
  739. public static v64 vget_low_u64(v128 a0)
  740. {
  741. return a0.Lo64;
  742. }
  743. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  744. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  745. /// <param name="a0">128-bit vector a0</param>
  746. /// <returns>64-bit vector</returns>
  747. [DebuggerStepThrough]
  748. public static v64 vget_low_f32(v128 a0)
  749. {
  750. return a0.Lo64;
  751. }
  752. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  753. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  754. /// <param name="a0">128-bit vector a0</param>
  755. /// <returns>64-bit vector</returns>
  756. [DebuggerStepThrough]
  757. public static v64 vget_low_f64(v128 a0)
  758. {
  759. return a0.Lo64;
  760. }
  761. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  762. /// <br/>Equivalent instruction: <c>LD1 {Vt.8B},[Xn]</c></summary>
  763. /// <param name="a0">Pointer to the address to load from</param>
  764. /// <returns>64-bit vector</returns>
  765. [DebuggerStepThrough]
  766. public static v64 vld1_s8(SByte* a0)
  767. {
  768. return *(v64*)a0;
  769. }
  770. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  771. /// <br/>Equivalent instruction: <c>LD1 {Vt.16B},[Xn]</c></summary>
  772. /// <param name="a0">Pointer to the address to load from</param>
  773. /// <returns>128-bit vector</returns>
  774. [DebuggerStepThrough]
  775. public static v128 vld1q_s8(SByte* a0)
  776. {
  777. return *(v128*)a0;
  778. }
  779. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  780. /// <br/>Equivalent instruction: <c>LD1 {Vt.4H},[Xn]</c></summary>
  781. /// <param name="a0">Pointer to the address to load from</param>
  782. /// <returns>64-bit vector</returns>
  783. [DebuggerStepThrough]
  784. public static v64 vld1_s16(Int16* a0)
  785. {
  786. return *(v64*)a0;
  787. }
  788. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  789. /// <br/>Equivalent instruction: <c>LD1 {Vt.8H},[Xn]</c></summary>
  790. /// <param name="a0">Pointer to the address to load from</param>
  791. /// <returns>128-bit vector</returns>
  792. [DebuggerStepThrough]
  793. public static v128 vld1q_s16(Int16* a0)
  794. {
  795. return *(v128*)a0;
  796. }
  797. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  798. /// <br/>Equivalent instruction: <c>LD1 {Vt.2S},[Xn]</c></summary>
  799. /// <param name="a0">Pointer to the address to load from</param>
  800. /// <returns>64-bit vector</returns>
  801. [DebuggerStepThrough]
  802. public static v64 vld1_s32(Int32* a0)
  803. {
  804. return *(v64*)a0;
  805. }
  806. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  807. /// <br/>Equivalent instruction: <c>LD1 {Vt.4S},[Xn]</c></summary>
  808. /// <param name="a0">Pointer to the address to load from</param>
  809. /// <returns>128-bit vector</returns>
  810. [DebuggerStepThrough]
  811. public static v128 vld1q_s32(Int32* a0)
  812. {
  813. return *(v128*)a0;
  814. }
  815. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  816. /// <br/>Equivalent instruction: <c>LD1 {Vt.1D},[Xn]</c></summary>
  817. /// <param name="a0">Pointer to the address to load from</param>
  818. /// <returns>64-bit vector</returns>
  819. [DebuggerStepThrough]
  820. public static v64 vld1_s64(Int64* a0)
  821. {
  822. return *(v64*)a0;
  823. }
  824. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  825. /// <br/>Equivalent instruction: <c>LD1 {Vt.2D},[Xn]</c></summary>
  826. /// <param name="a0">Pointer to the address to load from</param>
  827. /// <returns>128-bit vector</returns>
  828. [DebuggerStepThrough]
  829. public static v128 vld1q_s64(Int64* a0)
  830. {
  831. return *(v128*)a0;
  832. }
  833. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  834. /// <br/>Equivalent instruction: <c>LD1 {Vt.8B},[Xn]</c></summary>
  835. /// <param name="a0">Pointer to the address to load from</param>
  836. /// <returns>64-bit vector</returns>
  837. [DebuggerStepThrough]
  838. public static v64 vld1_u8(Byte* a0)
  839. {
  840. return *(v64*)a0;
  841. }
  842. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  843. /// <br/>Equivalent instruction: <c>LD1 {Vt.16B},[Xn]</c></summary>
  844. /// <param name="a0">Pointer to the address to load from</param>
  845. /// <returns>128-bit vector</returns>
  846. [DebuggerStepThrough]
  847. public static v128 vld1q_u8(Byte* a0)
  848. {
  849. return *(v128*)a0;
  850. }
  851. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  852. /// <br/>Equivalent instruction: <c>LD1 {Vt.4H},[Xn]</c></summary>
  853. /// <param name="a0">Pointer to the address to load from</param>
  854. /// <returns>64-bit vector</returns>
  855. [DebuggerStepThrough]
  856. public static v64 vld1_u16(UInt16* a0)
  857. {
  858. return *(v64*)a0;
  859. }
  860. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  861. /// <br/>Equivalent instruction: <c>LD1 {Vt.8H},[Xn]</c></summary>
  862. /// <param name="a0">Pointer to the address to load from</param>
  863. /// <returns>128-bit vector</returns>
  864. [DebuggerStepThrough]
  865. public static v128 vld1q_u16(UInt16* a0)
  866. {
  867. return *(v128*)a0;
  868. }
  869. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  870. /// <br/>Equivalent instruction: <c>LD1 {Vt.2S},[Xn]</c></summary>
  871. /// <param name="a0">Pointer to the address to load from</param>
  872. /// <returns>64-bit vector</returns>
  873. [DebuggerStepThrough]
  874. public static v64 vld1_u32(UInt32* a0)
  875. {
  876. return *(v64*)a0;
  877. }
  878. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  879. /// <br/>Equivalent instruction: <c>LD1 {Vt.4S},[Xn]</c></summary>
  880. /// <param name="a0">Pointer to the address to load from</param>
  881. /// <returns>128-bit vector</returns>
  882. [DebuggerStepThrough]
  883. public static v128 vld1q_u32(UInt32* a0)
  884. {
  885. return *(v128*)a0;
  886. }
  887. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  888. /// <br/>Equivalent instruction: <c>LD1 {Vt.1D},[Xn]</c></summary>
  889. /// <param name="a0">Pointer to the address to load from</param>
  890. /// <returns>64-bit vector</returns>
  891. [DebuggerStepThrough]
  892. public static v64 vld1_u64(UInt64* a0)
  893. {
  894. return *(v64*)a0;
  895. }
  896. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  897. /// <br/>Equivalent instruction: <c>LD1 {Vt.2D},[Xn]</c></summary>
  898. /// <param name="a0">Pointer to the address to load from</param>
  899. /// <returns>128-bit vector</returns>
  900. [DebuggerStepThrough]
  901. public static v128 vld1q_u64(UInt64* a0)
  902. {
  903. return *(v128*)a0;
  904. }
  905. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  906. /// <br/>Equivalent instruction: <c>LD1 {Vt.2S},[Xn]</c></summary>
  907. /// <param name="a0">Pointer to the address to load from</param>
  908. /// <returns>64-bit vector</returns>
  909. [DebuggerStepThrough]
  910. public static v64 vld1_f32(Single* a0)
  911. {
  912. return *(v64*)a0;
  913. }
  914. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  915. /// <br/>Equivalent instruction: <c>LD1 {Vt.4S},[Xn]</c></summary>
  916. /// <param name="a0">Pointer to the address to load from</param>
  917. /// <returns>128-bit vector</returns>
  918. [DebuggerStepThrough]
  919. public static v128 vld1q_f32(Single* a0)
  920. {
  921. return *(v128*)a0;
  922. }
  923. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  924. /// <br/>Equivalent instruction: <c>LD1 {Vt.1D},[Xn]</c></summary>
  925. /// <param name="a0">Pointer to the address to load from</param>
  926. /// <returns>64-bit vector</returns>
  927. [DebuggerStepThrough]
  928. public static v64 vld1_f64(Double* a0)
  929. {
  930. return *(v64*)a0;
  931. }
  932. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  933. /// <br/>Equivalent instruction: <c>LD1 {Vt.2D},[Xn]</c></summary>
  934. /// <param name="a0">Pointer to the address to load from</param>
  935. /// <returns>128-bit vector</returns>
  936. [DebuggerStepThrough]
  937. public static v128 vld1q_f64(Double* a0)
  938. {
  939. return *(v128*)a0;
  940. }
  941. #if BURST_INTERNAL || UNITY_BURST_EXPERIMENTAL_NEON_INTRINSICS
  942. // Intrinsics dealing with f16 type are still experimental, until we ship support for f16 type.
  943. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  944. /// <br/>Equivalent instruction: <c>DUP Vd.4H,rn</c></summary>
  945. /// <param name="a0">f16 a0</param>
  946. /// <returns>64-bit vector</returns>
  947. [DebuggerStepThrough]
  948. public static v64 vmov_n_f16(f16 a0)
  949. {
  950. return new v64(a0);
  951. }
  952. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  953. /// <br/>Equivalent instruction: <c>DUP Vd.8H,rn</c></summary>
  954. /// <param name="a0">f16 a0</param>
  955. /// <returns>128-bit vector</returns>
  956. [DebuggerStepThrough]
  957. public static v128 vmovq_n_f16(f16 a0)
  958. {
  959. return new v128(a0);
  960. }
  961. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  962. /// <br/>Equivalent instruction: <c>DUP Vd.4H,rn</c></summary>
  963. /// <param name="a0">f16 a0</param>
  964. /// <returns>64-bit vector</returns>
  965. [DebuggerStepThrough]
  966. public static v64 vdup_n_f16(f16 a0)
  967. {
  968. return new v64(a0);
  969. }
  970. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  971. /// <br/>Equivalent instruction: <c>DUP Vd.8H,rn</c></summary>
  972. /// <param name="a0">f16 a0</param>
  973. /// <returns>128-bit vector</returns>
  974. [DebuggerStepThrough]
  975. public static v128 vdupq_n_f16(f16 a0)
  976. {
  977. return new v128(a0);
  978. }
  979. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  980. /// <br/>Equivalent instruction: <c>LD1 {Vt.4H},[Xn]</c></summary>
  981. /// <param name="a0">Pointer to the address to load from</param>
  982. /// <returns>64-bit vector</returns>
  983. [DebuggerStepThrough]
  984. public static v64 vld1_f16(f16* a0)
  985. {
  986. return *(v64*)a0;
  987. }
  988. /// <summary>Load multiple single-element structures to a register. This instruction loads multiple single-element structures from memory and writes the result to a SIMD&amp;FP register.
  989. /// <br/>Equivalent instruction: <c>LD1 {Vt.8H},[Xn]</c></summary>
  990. /// <param name="a0">Pointer to the address to load from</param>
  991. /// <returns>128-bit vector</returns>
  992. [DebuggerStepThrough]
  993. public static v128 vld1q_f16(f16* a0)
  994. {
  995. return *(v128*)a0;
  996. }
  997. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  998. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[0]</c></summary>
  999. /// <param name="a0">128-bit vector a0</param>
  1000. /// <returns>64-bit vector</returns>
  1001. [DebuggerStepThrough]
  1002. public static v64 vget_low_f16(v128 a0)
  1003. {
  1004. return a0.Lo64;
  1005. }
  1006. /// <summary>Duplicate vector element to vector or scalar. This instruction duplicates the vector element at the specified element index in the source SIMD&amp;FP register into a scalar or each element in a vector, and writes the result to the destination SIMD&amp;FP register.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1007. /// <br/>Equivalent instruction: <c>DUP Vd.1D,Vn.D[1]</c></summary>
  1008. /// <param name="a0">128-bit vector a0</param>
  1009. /// <returns>64-bit vector</returns>
  1010. [DebuggerStepThrough]
  1011. public static v64 vget_high_f16(v128 a0)
  1012. {
  1013. return a0.Hi64;
  1014. }
  1015. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1016. /// <br/>Equivalent instruction: <c>ST1 {Vt.4H},[Xn]</c></summary>
  1017. /// <param name="a0">Pointer to the address to store to</param>
  1018. /// <param name="a1">64-bit vector a1</param>
  1019. [DebuggerStepThrough]
  1020. public static void vst1_f16(f16* a0, v64 a1)
  1021. {
  1022. *(v64*)a0 = a1;
  1023. }
  1024. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1025. /// <br/>Equivalent instruction: <c>ST1 {Vt.8H},[Xn]</c></summary>
  1026. /// <param name="a0">Pointer to the address to store to</param>
  1027. /// <param name="a1">128-bit vector a1</param>
  1028. [DebuggerStepThrough]
  1029. public static void vst1q_f16(f16* a0, v128 a1)
  1030. {
  1031. *(v128*)a0 = a1;
  1032. }
  1033. #endif // BURST_INTERNAL || UNITY_BURST_EXPERIMENTAL_NEON_INTRINSICS
  1034. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1035. /// <br/>Equivalent instruction: <c>ST1 {Vt.8B},[Xn]</c></summary>
  1036. /// <param name="a0">Pointer to the address to store to</param>
  1037. /// <param name="a1">64-bit vector a1</param>
  1038. [DebuggerStepThrough]
  1039. public static void vst1_s8(SByte* a0, v64 a1)
  1040. {
  1041. *(v64*) a0 = a1;
  1042. }
  1043. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1044. /// <br/>Equivalent instruction: <c>ST1 {Vt.16B},[Xn]</c></summary>
  1045. /// <param name="a0">Pointer to the address to store to</param>
  1046. /// <param name="a1">128-bit vector a1</param>
  1047. [DebuggerStepThrough]
  1048. public static void vst1q_s8(SByte* a0, v128 a1)
  1049. {
  1050. *(v128*) a0 = a1;
  1051. }
  1052. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1053. /// <br/>Equivalent instruction: <c>ST1 {Vt.4H},[Xn]</c></summary>
  1054. /// <param name="a0">Pointer to the address to store to</param>
  1055. /// <param name="a1">64-bit vector a1</param>
  1056. [DebuggerStepThrough]
  1057. public static void vst1_s16(Int16* a0, v64 a1)
  1058. {
  1059. *(v64*) a0 = a1;
  1060. }
  1061. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1062. /// <br/>Equivalent instruction: <c>ST1 {Vt.8H},[Xn]</c></summary>
  1063. /// <param name="a0">Pointer to the address to store to</param>
  1064. /// <param name="a1">128-bit vector a1</param>
  1065. [DebuggerStepThrough]
  1066. public static void vst1q_s16(Int16* a0, v128 a1)
  1067. {
  1068. *(v128*) a0 = a1;
  1069. }
  1070. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1071. /// <br/>Equivalent instruction: <c>ST1 {Vt.2S},[Xn]</c></summary>
  1072. /// <param name="a0">Pointer to the address to store to</param>
  1073. /// <param name="a1">64-bit vector a1</param>
  1074. [DebuggerStepThrough]
  1075. public static void vst1_s32(Int32* a0, v64 a1)
  1076. {
  1077. *(v64*) a0 = a1;
  1078. }
  1079. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1080. /// <br/>Equivalent instruction: <c>ST1 {Vt.4S},[Xn]</c></summary>
  1081. /// <param name="a0">Pointer to the address to store to</param>
  1082. /// <param name="a1">128-bit vector a1</param>
  1083. [DebuggerStepThrough]
  1084. public static void vst1q_s32(Int32* a0, v128 a1)
  1085. {
  1086. *(v128*) a0 = a1;
  1087. }
  1088. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1089. /// <br/>Equivalent instruction: <c>ST1 {Vt.1D},[Xn]</c></summary>
  1090. /// <param name="a0">Pointer to the address to store to</param>
  1091. /// <param name="a1">64-bit vector a1</param>
  1092. [DebuggerStepThrough]
  1093. public static void vst1_s64(Int64* a0, v64 a1)
  1094. {
  1095. *(v64*) a0 = a1;
  1096. }
  1097. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1098. /// <br/>Equivalent instruction: <c>ST1 {Vt.2D},[Xn]</c></summary>
  1099. /// <param name="a0">Pointer to the address to store to</param>
  1100. /// <param name="a1">128-bit vector a1</param>
  1101. [DebuggerStepThrough]
  1102. public static void vst1q_s64(Int64* a0, v128 a1)
  1103. {
  1104. *(v128*) a0 = a1;
  1105. }
  1106. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1107. /// <br/>Equivalent instruction: <c>ST1 {Vt.8B},[Xn]</c></summary>
  1108. /// <param name="a0">Pointer to the address to store to</param>
  1109. /// <param name="a1">64-bit vector a1</param>
  1110. [DebuggerStepThrough]
  1111. public static void vst1_u8(Byte* a0, v64 a1)
  1112. {
  1113. *(v64*) a0 = a1;
  1114. }
  1115. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1116. /// <br/>Equivalent instruction: <c>ST1 {Vt.16B},[Xn]</c></summary>
  1117. /// <param name="a0">Pointer to the address to store to</param>
  1118. /// <param name="a1">128-bit vector a1</param>
  1119. [DebuggerStepThrough]
  1120. public static void vst1q_u8(Byte* a0, v128 a1)
  1121. {
  1122. *(v128*) a0 = a1;
  1123. }
  1124. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1125. /// <br/>Equivalent instruction: <c>ST1 {Vt.4H},[Xn]</c></summary>
  1126. /// <param name="a0">Pointer to the address to store to</param>
  1127. /// <param name="a1">64-bit vector a1</param>
  1128. [DebuggerStepThrough]
  1129. public static void vst1_u16(UInt16* a0, v64 a1)
  1130. {
  1131. *(v64*) a0 = a1;
  1132. }
  1133. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1134. /// <br/>Equivalent instruction: <c>ST1 {Vt.8H},[Xn]</c></summary>
  1135. /// <param name="a0">Pointer to the address to store to</param>
  1136. /// <param name="a1">128-bit vector a1</param>
  1137. [DebuggerStepThrough]
  1138. public static void vst1q_u16(UInt16* a0, v128 a1)
  1139. {
  1140. *(v128*) a0 = a1;
  1141. }
  1142. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1143. /// <br/>Equivalent instruction: <c>ST1 {Vt.2S},[Xn]</c></summary>
  1144. /// <param name="a0">Pointer to the address to store to</param>
  1145. /// <param name="a1">64-bit vector a1</param>
  1146. [DebuggerStepThrough]
  1147. public static void vst1_u32(UInt32* a0, v64 a1)
  1148. {
  1149. *(v64*) a0 = a1;
  1150. }
  1151. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1152. /// <br/>Equivalent instruction: <c>ST1 {Vt.4S},[Xn]</c></summary>
  1153. /// <param name="a0">Pointer to the address to store to</param>
  1154. /// <param name="a1">128-bit vector a1</param>
  1155. [DebuggerStepThrough]
  1156. public static void vst1q_u32(UInt32* a0, v128 a1)
  1157. {
  1158. *(v128*) a0 = a1;
  1159. }
  1160. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1161. /// <br/>Equivalent instruction: <c>ST1 {Vt.1D},[Xn]</c></summary>
  1162. /// <param name="a0">Pointer to the address to store to</param>
  1163. /// <param name="a1">64-bit vector a1</param>
  1164. [DebuggerStepThrough]
  1165. public static void vst1_u64(UInt64* a0, v64 a1)
  1166. {
  1167. *(v64*) a0 = a1;
  1168. }
  1169. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1170. /// <br/>Equivalent instruction: <c>ST1 {Vt.2D},[Xn]</c></summary>
  1171. /// <param name="a0">Pointer to the address to store to</param>
  1172. /// <param name="a1">128-bit vector a1</param>
  1173. [DebuggerStepThrough]
  1174. public static void vst1q_u64(UInt64* a0, v128 a1)
  1175. {
  1176. *(v128*) a0 = a1;
  1177. }
  1178. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1179. /// <br/>Equivalent instruction: <c>ST1 {Vt.2S},[Xn]</c></summary>
  1180. /// <param name="a0">Pointer to the address to store to</param>
  1181. /// <param name="a1">64-bit vector a1</param>
  1182. [DebuggerStepThrough]
  1183. public static void vst1_f32(Single* a0, v64 a1)
  1184. {
  1185. *(v64*) a0 = a1;
  1186. }
  1187. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1188. /// <br/>Equivalent instruction: <c>ST1 {Vt.4S},[Xn]</c></summary>
  1189. /// <param name="a0">Pointer to the address to store to</param>
  1190. /// <param name="a1">128-bit vector a1</param>
  1191. [DebuggerStepThrough]
  1192. public static void vst1q_f32(Single* a0, v128 a1)
  1193. {
  1194. *(v128*) a0 = a1;
  1195. }
  1196. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1197. /// <br/>Equivalent instruction: <c>ST1 {Vt.1D},[Xn]</c></summary>
  1198. /// <param name="a0">Pointer to the address to store to</param>
  1199. /// <param name="a1">64-bit vector a1</param>
  1200. [DebuggerStepThrough]
  1201. public static void vst1_f64(Double* a0, v64 a1)
  1202. {
  1203. *(v64*) a0 = a1;
  1204. }
  1205. /// <summary>Store multiple single-element structures from one, two, three, or four registers. This instruction stores elements to memory from one, two, three, or four SIMD&amp;FP registers, without interleaving. Every element of each register is stored.Depending on the settings in the CPACR_EL1, CPTR_EL2, and CPTR_EL3 registers, and the current Security state and Exception level, an attempt to execute the instruction might be trapped.
  1206. /// <br/>Equivalent instruction: <c>ST1 {Vt.2D},[Xn]</c></summary>
  1207. /// <param name="a0">Pointer to the address to store to</param>
  1208. /// <param name="a1">128-bit vector a1</param>
  1209. [DebuggerStepThrough]
  1210. public static void vst1q_f64(Double* a0, v128 a1)
  1211. {
  1212. *(v128*) a0 = a1;
  1213. }
  1214. }
  1215. }
  1216. }