hillclimber 0.1.6__cp313-cp313-macosx_15_0_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (468) hide show
  1. hillclimber/__init__.py +41 -0
  2. hillclimber/actions.py +53 -0
  3. hillclimber/analysis.py +590 -0
  4. hillclimber/biases.py +293 -0
  5. hillclimber/calc.py +22 -0
  6. hillclimber/cvs.py +1070 -0
  7. hillclimber/interfaces.py +133 -0
  8. hillclimber/metadynamics.py +416 -0
  9. hillclimber/nodes.py +6 -0
  10. hillclimber/opes.py +359 -0
  11. hillclimber/pycv.py +362 -0
  12. hillclimber/selectors.py +230 -0
  13. hillclimber/virtual_atoms.py +341 -0
  14. hillclimber-0.1.6.dist-info/METADATA +325 -0
  15. hillclimber-0.1.6.dist-info/RECORD +468 -0
  16. hillclimber-0.1.6.dist-info/WHEEL +6 -0
  17. hillclimber-0.1.6.dist-info/entry_points.txt +8 -0
  18. hillclimber-0.1.6.dist-info/licenses/LICENSE +165 -0
  19. plumed/__init__.py +104 -0
  20. plumed/_lib/bin/plumed +0 -0
  21. plumed/_lib/bin/plumed-config +9 -0
  22. plumed/_lib/bin/plumed-patch +9 -0
  23. plumed/_lib/include/plumed/adjmat/AdjacencyMatrixBase.h +659 -0
  24. plumed/_lib/include/plumed/adjmat/ContactMatrix.h +59 -0
  25. plumed/_lib/include/plumed/asmjit/arch.h +228 -0
  26. plumed/_lib/include/plumed/asmjit/arm.h +43 -0
  27. plumed/_lib/include/plumed/asmjit/asmjit.h +69 -0
  28. plumed/_lib/include/plumed/asmjit/asmjit_apibegin.h +143 -0
  29. plumed/_lib/include/plumed/asmjit/asmjit_apiend.h +93 -0
  30. plumed/_lib/include/plumed/asmjit/asmjit_build.h +971 -0
  31. plumed/_lib/include/plumed/asmjit/assembler.h +183 -0
  32. plumed/_lib/include/plumed/asmjit/base.h +56 -0
  33. plumed/_lib/include/plumed/asmjit/codebuilder.h +944 -0
  34. plumed/_lib/include/plumed/asmjit/codecompiler.h +767 -0
  35. plumed/_lib/include/plumed/asmjit/codeemitter.h +528 -0
  36. plumed/_lib/include/plumed/asmjit/codeholder.h +777 -0
  37. plumed/_lib/include/plumed/asmjit/constpool.h +286 -0
  38. plumed/_lib/include/plumed/asmjit/cpuinfo.h +402 -0
  39. plumed/_lib/include/plumed/asmjit/func.h +1327 -0
  40. plumed/_lib/include/plumed/asmjit/globals.h +370 -0
  41. plumed/_lib/include/plumed/asmjit/inst.h +137 -0
  42. plumed/_lib/include/plumed/asmjit/logging.h +317 -0
  43. plumed/_lib/include/plumed/asmjit/misc_p.h +103 -0
  44. plumed/_lib/include/plumed/asmjit/moved_string.h +318 -0
  45. plumed/_lib/include/plumed/asmjit/operand.h +1599 -0
  46. plumed/_lib/include/plumed/asmjit/osutils.h +207 -0
  47. plumed/_lib/include/plumed/asmjit/regalloc_p.h +597 -0
  48. plumed/_lib/include/plumed/asmjit/runtime.h +227 -0
  49. plumed/_lib/include/plumed/asmjit/simdtypes.h +1104 -0
  50. plumed/_lib/include/plumed/asmjit/utils.h +1387 -0
  51. plumed/_lib/include/plumed/asmjit/vmem.h +183 -0
  52. plumed/_lib/include/plumed/asmjit/x86.h +45 -0
  53. plumed/_lib/include/plumed/asmjit/x86assembler.h +125 -0
  54. plumed/_lib/include/plumed/asmjit/x86builder.h +117 -0
  55. plumed/_lib/include/plumed/asmjit/x86compiler.h +322 -0
  56. plumed/_lib/include/plumed/asmjit/x86emitter.h +5149 -0
  57. plumed/_lib/include/plumed/asmjit/x86globals.h +535 -0
  58. plumed/_lib/include/plumed/asmjit/x86inst.h +2547 -0
  59. plumed/_lib/include/plumed/asmjit/x86instimpl_p.h +74 -0
  60. plumed/_lib/include/plumed/asmjit/x86internal_p.h +108 -0
  61. plumed/_lib/include/plumed/asmjit/x86logging_p.h +92 -0
  62. plumed/_lib/include/plumed/asmjit/x86misc.h +417 -0
  63. plumed/_lib/include/plumed/asmjit/x86operand.h +1133 -0
  64. plumed/_lib/include/plumed/asmjit/x86regalloc_p.h +734 -0
  65. plumed/_lib/include/plumed/asmjit/zone.h +1157 -0
  66. plumed/_lib/include/plumed/bias/Bias.h +82 -0
  67. plumed/_lib/include/plumed/bias/ReweightBase.h +58 -0
  68. plumed/_lib/include/plumed/blas/blas.h +253 -0
  69. plumed/_lib/include/plumed/blas/def_external.h +61 -0
  70. plumed/_lib/include/plumed/blas/def_internal.h +97 -0
  71. plumed/_lib/include/plumed/blas/real.h +49 -0
  72. plumed/_lib/include/plumed/cltools/CLTool.h +32 -0
  73. plumed/_lib/include/plumed/clusters/ClusteringBase.h +70 -0
  74. plumed/_lib/include/plumed/colvar/Colvar.h +32 -0
  75. plumed/_lib/include/plumed/colvar/ColvarInput.h +68 -0
  76. plumed/_lib/include/plumed/colvar/ColvarShortcut.h +81 -0
  77. plumed/_lib/include/plumed/colvar/CoordinationBase.h +52 -0
  78. plumed/_lib/include/plumed/colvar/MultiColvarTemplate.h +333 -0
  79. plumed/_lib/include/plumed/colvar/PathMSDBase.h +101 -0
  80. plumed/_lib/include/plumed/colvar/RMSDVector.h +78 -0
  81. plumed/_lib/include/plumed/config/Config.h +118 -0
  82. plumed/_lib/include/plumed/config/version.h +9 -0
  83. plumed/_lib/include/plumed/contour/ContourFindingObject.h +87 -0
  84. plumed/_lib/include/plumed/contour/DistanceFromContourBase.h +82 -0
  85. plumed/_lib/include/plumed/contour/FindContour.h +67 -0
  86. plumed/_lib/include/plumed/core/Action.h +540 -0
  87. plumed/_lib/include/plumed/core/ActionAnyorder.h +48 -0
  88. plumed/_lib/include/plumed/core/ActionAtomistic.h +343 -0
  89. plumed/_lib/include/plumed/core/ActionForInterface.h +99 -0
  90. plumed/_lib/include/plumed/core/ActionPilot.h +57 -0
  91. plumed/_lib/include/plumed/core/ActionRegister.h +124 -0
  92. plumed/_lib/include/plumed/core/ActionSet.h +163 -0
  93. plumed/_lib/include/plumed/core/ActionSetup.h +48 -0
  94. plumed/_lib/include/plumed/core/ActionShortcut.h +73 -0
  95. plumed/_lib/include/plumed/core/ActionToGetData.h +59 -0
  96. plumed/_lib/include/plumed/core/ActionToPutData.h +101 -0
  97. plumed/_lib/include/plumed/core/ActionWithArguments.h +140 -0
  98. plumed/_lib/include/plumed/core/ActionWithMatrix.h +87 -0
  99. plumed/_lib/include/plumed/core/ActionWithValue.h +258 -0
  100. plumed/_lib/include/plumed/core/ActionWithVector.h +94 -0
  101. plumed/_lib/include/plumed/core/ActionWithVirtualAtom.h +123 -0
  102. plumed/_lib/include/plumed/core/CLTool.h +177 -0
  103. plumed/_lib/include/plumed/core/CLToolMain.h +102 -0
  104. plumed/_lib/include/plumed/core/CLToolRegister.h +108 -0
  105. plumed/_lib/include/plumed/core/Colvar.h +115 -0
  106. plumed/_lib/include/plumed/core/DataPassingObject.h +94 -0
  107. plumed/_lib/include/plumed/core/DataPassingTools.h +54 -0
  108. plumed/_lib/include/plumed/core/DomainDecomposition.h +120 -0
  109. plumed/_lib/include/plumed/core/ExchangePatterns.h +47 -0
  110. plumed/_lib/include/plumed/core/FlexibleBin.h +63 -0
  111. plumed/_lib/include/plumed/core/GREX.h +61 -0
  112. plumed/_lib/include/plumed/core/GenericMolInfo.h +89 -0
  113. plumed/_lib/include/plumed/core/Group.h +41 -0
  114. plumed/_lib/include/plumed/core/ModuleMap.h +30 -0
  115. plumed/_lib/include/plumed/core/ParallelTaskManager.h +1023 -0
  116. plumed/_lib/include/plumed/core/PbcAction.h +61 -0
  117. plumed/_lib/include/plumed/core/PlumedMain.h +632 -0
  118. plumed/_lib/include/plumed/core/PlumedMainInitializer.h +118 -0
  119. plumed/_lib/include/plumed/core/RegisterBase.h +340 -0
  120. plumed/_lib/include/plumed/core/TargetDist.h +48 -0
  121. plumed/_lib/include/plumed/core/Value.h +547 -0
  122. plumed/_lib/include/plumed/core/WithCmd.h +93 -0
  123. plumed/_lib/include/plumed/dimred/SMACOF.h +55 -0
  124. plumed/_lib/include/plumed/drr/DRR.h +383 -0
  125. plumed/_lib/include/plumed/drr/colvar_UIestimator.h +777 -0
  126. plumed/_lib/include/plumed/fisst/legendre_rule_fast.h +44 -0
  127. plumed/_lib/include/plumed/function/Custom.h +54 -0
  128. plumed/_lib/include/plumed/function/Function.h +85 -0
  129. plumed/_lib/include/plumed/function/FunctionOfMatrix.h +368 -0
  130. plumed/_lib/include/plumed/function/FunctionOfScalar.h +135 -0
  131. plumed/_lib/include/plumed/function/FunctionOfVector.h +296 -0
  132. plumed/_lib/include/plumed/function/FunctionSetup.h +180 -0
  133. plumed/_lib/include/plumed/function/FunctionShortcut.h +130 -0
  134. plumed/_lib/include/plumed/function/FunctionWithSingleArgument.h +165 -0
  135. plumed/_lib/include/plumed/gridtools/ActionWithGrid.h +43 -0
  136. plumed/_lib/include/plumed/gridtools/EvaluateGridFunction.h +99 -0
  137. plumed/_lib/include/plumed/gridtools/FunctionOfGrid.h +295 -0
  138. plumed/_lib/include/plumed/gridtools/GridCoordinatesObject.h +179 -0
  139. plumed/_lib/include/plumed/gridtools/GridSearch.h +135 -0
  140. plumed/_lib/include/plumed/gridtools/Interpolator.h +45 -0
  141. plumed/_lib/include/plumed/gridtools/KDE.h +455 -0
  142. plumed/_lib/include/plumed/gridtools/RDF.h +40 -0
  143. plumed/_lib/include/plumed/gridtools/SumOfKernels.h +219 -0
  144. plumed/_lib/include/plumed/isdb/MetainferenceBase.h +398 -0
  145. plumed/_lib/include/plumed/lapack/def_external.h +207 -0
  146. plumed/_lib/include/plumed/lapack/def_internal.h +388 -0
  147. plumed/_lib/include/plumed/lapack/lapack.h +899 -0
  148. plumed/_lib/include/plumed/lapack/lapack_limits.h +79 -0
  149. plumed/_lib/include/plumed/lapack/real.h +50 -0
  150. plumed/_lib/include/plumed/lepton/CompiledExpression.h +164 -0
  151. plumed/_lib/include/plumed/lepton/CustomFunction.h +143 -0
  152. plumed/_lib/include/plumed/lepton/Exception.h +93 -0
  153. plumed/_lib/include/plumed/lepton/ExpressionProgram.h +137 -0
  154. plumed/_lib/include/plumed/lepton/ExpressionTreeNode.h +145 -0
  155. plumed/_lib/include/plumed/lepton/Lepton.h +85 -0
  156. plumed/_lib/include/plumed/lepton/MSVC_erfc.h +123 -0
  157. plumed/_lib/include/plumed/lepton/Operation.h +1302 -0
  158. plumed/_lib/include/plumed/lepton/ParsedExpression.h +165 -0
  159. plumed/_lib/include/plumed/lepton/Parser.h +111 -0
  160. plumed/_lib/include/plumed/lepton/windowsIncludes.h +73 -0
  161. plumed/_lib/include/plumed/mapping/Path.h +44 -0
  162. plumed/_lib/include/plumed/mapping/PathProjectionCalculator.h +57 -0
  163. plumed/_lib/include/plumed/matrixtools/MatrixOperationBase.h +54 -0
  164. plumed/_lib/include/plumed/matrixtools/MatrixTimesMatrix.h +309 -0
  165. plumed/_lib/include/plumed/matrixtools/MatrixTimesVectorBase.h +365 -0
  166. plumed/_lib/include/plumed/matrixtools/OuterProduct.h +238 -0
  167. plumed/_lib/include/plumed/maze/Core.h +65 -0
  168. plumed/_lib/include/plumed/maze/Loss.h +86 -0
  169. plumed/_lib/include/plumed/maze/Member.h +66 -0
  170. plumed/_lib/include/plumed/maze/Memetic.h +799 -0
  171. plumed/_lib/include/plumed/maze/Optimizer.h +357 -0
  172. plumed/_lib/include/plumed/maze/Random_MT.h +156 -0
  173. plumed/_lib/include/plumed/maze/Tools.h +183 -0
  174. plumed/_lib/include/plumed/metatomic/vesin.h +188 -0
  175. plumed/_lib/include/plumed/molfile/Gromacs.h +2013 -0
  176. plumed/_lib/include/plumed/molfile/endianswap.h +217 -0
  177. plumed/_lib/include/plumed/molfile/fastio.h +683 -0
  178. plumed/_lib/include/plumed/molfile/largefiles.h +78 -0
  179. plumed/_lib/include/plumed/molfile/libmolfile_plugin.h +77 -0
  180. plumed/_lib/include/plumed/molfile/molfile_plugin.h +1034 -0
  181. plumed/_lib/include/plumed/molfile/periodic_table.h +248 -0
  182. plumed/_lib/include/plumed/molfile/readpdb.h +447 -0
  183. plumed/_lib/include/plumed/molfile/vmdplugin.h +236 -0
  184. plumed/_lib/include/plumed/multicolvar/MultiColvarShortcuts.h +45 -0
  185. plumed/_lib/include/plumed/opes/ExpansionCVs.h +79 -0
  186. plumed/_lib/include/plumed/sasa/Sasa.h +32 -0
  187. plumed/_lib/include/plumed/secondarystructure/SecondaryStructureBase.h +372 -0
  188. plumed/_lib/include/plumed/setup/ActionSetup.h +25 -0
  189. plumed/_lib/include/plumed/small_vector/small_vector.h +6114 -0
  190. plumed/_lib/include/plumed/symfunc/CoordinationNumbers.h +41 -0
  191. plumed/_lib/include/plumed/tools/Angle.h +52 -0
  192. plumed/_lib/include/plumed/tools/AtomDistribution.h +138 -0
  193. plumed/_lib/include/plumed/tools/AtomNumber.h +152 -0
  194. plumed/_lib/include/plumed/tools/BiasRepresentation.h +106 -0
  195. plumed/_lib/include/plumed/tools/BitmaskEnum.h +167 -0
  196. plumed/_lib/include/plumed/tools/Brent1DRootSearch.h +159 -0
  197. plumed/_lib/include/plumed/tools/CheckInRange.h +44 -0
  198. plumed/_lib/include/plumed/tools/Citations.h +74 -0
  199. plumed/_lib/include/plumed/tools/ColvarOutput.h +118 -0
  200. plumed/_lib/include/plumed/tools/Communicator.h +316 -0
  201. plumed/_lib/include/plumed/tools/ConjugateGradient.h +80 -0
  202. plumed/_lib/include/plumed/tools/DLLoader.h +79 -0
  203. plumed/_lib/include/plumed/tools/ERMSD.h +73 -0
  204. plumed/_lib/include/plumed/tools/Exception.h +406 -0
  205. plumed/_lib/include/plumed/tools/File.h +28 -0
  206. plumed/_lib/include/plumed/tools/FileBase.h +153 -0
  207. plumed/_lib/include/plumed/tools/FileTools.h +37 -0
  208. plumed/_lib/include/plumed/tools/ForwardDecl.h +54 -0
  209. plumed/_lib/include/plumed/tools/Grid.h +638 -0
  210. plumed/_lib/include/plumed/tools/HistogramBead.h +136 -0
  211. plumed/_lib/include/plumed/tools/IFile.h +117 -0
  212. plumed/_lib/include/plumed/tools/KernelFunctions.h +113 -0
  213. plumed/_lib/include/plumed/tools/Keywords.h +380 -0
  214. plumed/_lib/include/plumed/tools/LatticeReduction.h +66 -0
  215. plumed/_lib/include/plumed/tools/LeptonCall.h +64 -0
  216. plumed/_lib/include/plumed/tools/LinkCells.h +126 -0
  217. plumed/_lib/include/plumed/tools/Log.h +41 -0
  218. plumed/_lib/include/plumed/tools/LoopUnroller.h +163 -0
  219. plumed/_lib/include/plumed/tools/Matrix.h +721 -0
  220. plumed/_lib/include/plumed/tools/MatrixSquareBracketsAccess.h +138 -0
  221. plumed/_lib/include/plumed/tools/MergeVectorTools.h +153 -0
  222. plumed/_lib/include/plumed/tools/Minimise1DBrent.h +244 -0
  223. plumed/_lib/include/plumed/tools/MinimiseBase.h +120 -0
  224. plumed/_lib/include/plumed/tools/MolDataClass.h +51 -0
  225. plumed/_lib/include/plumed/tools/NeighborList.h +112 -0
  226. plumed/_lib/include/plumed/tools/OFile.h +286 -0
  227. plumed/_lib/include/plumed/tools/OpenACC.h +180 -0
  228. plumed/_lib/include/plumed/tools/OpenMP.h +75 -0
  229. plumed/_lib/include/plumed/tools/PDB.h +154 -0
  230. plumed/_lib/include/plumed/tools/Pbc.h +139 -0
  231. plumed/_lib/include/plumed/tools/PlumedHandle.h +105 -0
  232. plumed/_lib/include/plumed/tools/RMSD.h +493 -0
  233. plumed/_lib/include/plumed/tools/Random.h +80 -0
  234. plumed/_lib/include/plumed/tools/RootFindingBase.h +79 -0
  235. plumed/_lib/include/plumed/tools/Stopwatch.h +475 -0
  236. plumed/_lib/include/plumed/tools/Subprocess.h +142 -0
  237. plumed/_lib/include/plumed/tools/SwitchingFunction.h +208 -0
  238. plumed/_lib/include/plumed/tools/Tensor.h +724 -0
  239. plumed/_lib/include/plumed/tools/TokenizedLine.h +123 -0
  240. plumed/_lib/include/plumed/tools/Tools.h +638 -0
  241. plumed/_lib/include/plumed/tools/Torsion.h +55 -0
  242. plumed/_lib/include/plumed/tools/TrajectoryParser.h +118 -0
  243. plumed/_lib/include/plumed/tools/Tree.h +61 -0
  244. plumed/_lib/include/plumed/tools/TypesafePtr.h +463 -0
  245. plumed/_lib/include/plumed/tools/Units.h +167 -0
  246. plumed/_lib/include/plumed/tools/Vector.h +433 -0
  247. plumed/_lib/include/plumed/tools/View.h +296 -0
  248. plumed/_lib/include/plumed/tools/View2D.h +100 -0
  249. plumed/_lib/include/plumed/tools/h36.h +39 -0
  250. plumed/_lib/include/plumed/vatom/ActionWithVirtualAtom.h +32 -0
  251. plumed/_lib/include/plumed/ves/BasisFunctions.h +380 -0
  252. plumed/_lib/include/plumed/ves/CoeffsBase.h +310 -0
  253. plumed/_lib/include/plumed/ves/CoeffsMatrix.h +220 -0
  254. plumed/_lib/include/plumed/ves/CoeffsVector.h +251 -0
  255. plumed/_lib/include/plumed/ves/FermiSwitchingFunction.h +74 -0
  256. plumed/_lib/include/plumed/ves/GridIntegrationWeights.h +50 -0
  257. plumed/_lib/include/plumed/ves/GridLinearInterpolation.h +81 -0
  258. plumed/_lib/include/plumed/ves/GridProjWeights.h +61 -0
  259. plumed/_lib/include/plumed/ves/LinearBasisSetExpansion.h +303 -0
  260. plumed/_lib/include/plumed/ves/Optimizer.h +444 -0
  261. plumed/_lib/include/plumed/ves/TargetDistModifer.h +53 -0
  262. plumed/_lib/include/plumed/ves/TargetDistribution.h +266 -0
  263. plumed/_lib/include/plumed/ves/VesBias.h +545 -0
  264. plumed/_lib/include/plumed/ves/VesTools.h +142 -0
  265. plumed/_lib/include/plumed/ves/WaveletGrid.h +75 -0
  266. plumed/_lib/include/plumed/volumes/ActionVolume.h +268 -0
  267. plumed/_lib/include/plumed/volumes/VolumeShortcut.h +147 -0
  268. plumed/_lib/include/plumed/wrapper/Plumed.h +5025 -0
  269. plumed/_lib/include/plumed/xdrfile/xdrfile.h +663 -0
  270. plumed/_lib/include/plumed/xdrfile/xdrfile_trr.h +89 -0
  271. plumed/_lib/include/plumed/xdrfile/xdrfile_xtc.h +90 -0
  272. plumed/_lib/lib/PythonCVInterface.dylib +0 -0
  273. plumed/_lib/lib/libplumed.dylib +0 -0
  274. plumed/_lib/lib/libplumedKernel.dylib +0 -0
  275. plumed/_lib/lib/libplumedWrapper.a +0 -0
  276. plumed/_lib/lib/pkgconfig/plumed.pc +13 -0
  277. plumed/_lib/lib/pkgconfig/plumedInternals.pc +13 -0
  278. plumed/_lib/lib/pkgconfig/plumedWrapper.pc +13 -0
  279. plumed/_lib/lib/plumed/fortran/plumed.f90 +879 -0
  280. plumed/_lib/lib/plumed/fortran/plumed_f08.f90 +2625 -0
  281. plumed/_lib/lib/plumed/modulefile +69 -0
  282. plumed/_lib/lib/plumed/patches/gromacs-2022.5.config +43 -0
  283. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/CMakeLists.txt +543 -0
  284. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/CMakeLists.txt.preplumed +540 -0
  285. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.cpp +1628 -0
  286. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.cpp.preplumed +1590 -0
  287. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.h +103 -0
  288. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/expanded.h.preplumed +99 -0
  289. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/sim_util.cpp +2527 -0
  290. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdlib/sim_util.cpp.preplumed +2513 -0
  291. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp +208 -0
  292. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp.preplumed +175 -0
  293. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.h +408 -0
  294. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/legacymdrunoptions.h.preplumed +394 -0
  295. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/md.cpp +2348 -0
  296. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/md.cpp.preplumed +2091 -0
  297. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/minimize.cpp +3573 -0
  298. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/minimize.cpp.preplumed +3495 -0
  299. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.cpp +1506 -0
  300. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.cpp.preplumed +1402 -0
  301. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.h +114 -0
  302. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/replicaexchange.h.preplumed +106 -0
  303. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/rerun.cpp +997 -0
  304. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/rerun.cpp.preplumed +906 -0
  305. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/runner.cpp +2780 -0
  306. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/mdrun/runner.cpp.preplumed +2738 -0
  307. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp +224 -0
  308. plumed/_lib/lib/plumed/patches/gromacs-2022.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp.preplumed +222 -0
  309. plumed/_lib/lib/plumed/patches/gromacs-2023.5.config +43 -0
  310. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/CMakeLists.txt +549 -0
  311. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/CMakeLists.txt.preplumed +546 -0
  312. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.cpp +1632 -0
  313. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.cpp.preplumed +1594 -0
  314. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.h +104 -0
  315. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/expanded.h.preplumed +100 -0
  316. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/sim_util.cpp +2624 -0
  317. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdlib/sim_util.cpp.preplumed +2610 -0
  318. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp +208 -0
  319. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.cpp.preplumed +175 -0
  320. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.h +409 -0
  321. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/legacymdrunoptions.h.preplumed +395 -0
  322. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/md.cpp +2419 -0
  323. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/md.cpp.preplumed +2164 -0
  324. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/minimize.cpp +3546 -0
  325. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/minimize.cpp.preplumed +3468 -0
  326. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.cpp +1513 -0
  327. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.cpp.preplumed +1409 -0
  328. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.h +114 -0
  329. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/replicaexchange.h.preplumed +106 -0
  330. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/rerun.cpp +991 -0
  331. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/rerun.cpp.preplumed +900 -0
  332. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/runner.cpp +2895 -0
  333. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/mdrun/runner.cpp.preplumed +2849 -0
  334. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp +224 -0
  335. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp.preplumed +222 -0
  336. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/decidegpuusage.cpp +886 -0
  337. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/decidegpuusage.cpp.preplumed +880 -0
  338. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h +347 -0
  339. plumed/_lib/lib/plumed/patches/gromacs-2023.5.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h.preplumed +345 -0
  340. plumed/_lib/lib/plumed/patches/gromacs-2024.3.config +43 -0
  341. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/CMakeLists.txt +575 -0
  342. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/CMakeLists.txt.preplumed +572 -0
  343. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.cpp +1632 -0
  344. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.cpp.preplumed +1594 -0
  345. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.h +104 -0
  346. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/expanded.h.preplumed +100 -0
  347. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/sim_util.cpp +2564 -0
  348. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdlib/sim_util.cpp.preplumed +2550 -0
  349. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.cpp +208 -0
  350. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.cpp.preplumed +175 -0
  351. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.h +410 -0
  352. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/legacymdrunoptions.h.preplumed +396 -0
  353. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/md.cpp +2435 -0
  354. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/md.cpp.preplumed +2187 -0
  355. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/minimize.cpp +3592 -0
  356. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/minimize.cpp.preplumed +3514 -0
  357. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.cpp +1513 -0
  358. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.cpp.preplumed +1409 -0
  359. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.h +114 -0
  360. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/replicaexchange.h.preplumed +106 -0
  361. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/rerun.cpp +958 -0
  362. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/rerun.cpp.preplumed +929 -0
  363. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/runner.cpp +2987 -0
  364. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/mdrun/runner.cpp.preplumed +2941 -0
  365. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp +224 -0
  366. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/modularsimulator/expandedensembleelement.cpp.preplumed +222 -0
  367. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/decidegpuusage.cpp +904 -0
  368. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/decidegpuusage.cpp.preplumed +898 -0
  369. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h +353 -0
  370. plumed/_lib/lib/plumed/patches/gromacs-2024.3.diff/src/gromacs/taskassignment/include/gromacs/taskassignment/decidegpuusage.h.preplumed +351 -0
  371. plumed/_lib/lib/plumed/patches/gromacs-2025.0.config +39 -0
  372. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/cmake/gmxManagePlumed.cmake +82 -0
  373. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/cmake/gmxManagePlumed.cmake.preplumed +82 -0
  374. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedMDModule.cpp +162 -0
  375. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedMDModule.cpp.preplumed +154 -0
  376. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.cpp +107 -0
  377. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.cpp.preplumed +99 -0
  378. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.h +120 -0
  379. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedOptions.h.preplumed +111 -0
  380. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.cpp +215 -0
  381. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.cpp.preplumed +197 -0
  382. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.h +87 -0
  383. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/applied_forces/plumed/plumedforceprovider.h.preplumed +86 -0
  384. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrun/runner.cpp +2971 -0
  385. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrun/runner.cpp.preplumed +2970 -0
  386. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrunutility/mdmodulesnotifiers.h +430 -0
  387. plumed/_lib/lib/plumed/patches/gromacs-2025.0.diff/src/gromacs/mdrunutility/mdmodulesnotifiers.h.preplumed +429 -0
  388. plumed/_lib/lib/plumed/patches/namd-2.12.config +30 -0
  389. plumed/_lib/lib/plumed/patches/namd-2.12.diff +267 -0
  390. plumed/_lib/lib/plumed/patches/namd-2.13.config +30 -0
  391. plumed/_lib/lib/plumed/patches/namd-2.13.diff +267 -0
  392. plumed/_lib/lib/plumed/patches/namd-2.14.config +30 -0
  393. plumed/_lib/lib/plumed/patches/namd-2.14.diff +268 -0
  394. plumed/_lib/lib/plumed/patches/patch.sh +500 -0
  395. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.config +25 -0
  396. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/forces.f90 +368 -0
  397. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/forces.f90.preplumed +366 -0
  398. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_forces.f90 +71 -0
  399. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_forces.f90.preplumed +24 -0
  400. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_initialization.f90 +62 -0
  401. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
  402. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/pwscf.f90 +189 -0
  403. plumed/_lib/lib/plumed/patches/qespresso-5.0.2.diff/PW/src/pwscf.f90.preplumed +185 -0
  404. plumed/_lib/lib/plumed/patches/qespresso-6.2.config +26 -0
  405. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/forces.f90 +422 -0
  406. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/forces.f90.preplumed +420 -0
  407. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_ext_forces.f90 +70 -0
  408. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_ext_forces.f90.preplumed +23 -0
  409. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_initialization.f90 +62 -0
  410. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
  411. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/run_pwscf.f90 +233 -0
  412. plumed/_lib/lib/plumed/patches/qespresso-6.2.diff/PW/src/run_pwscf.f90.preplumed +230 -0
  413. plumed/_lib/lib/plumed/patches/qespresso-7.0.config +28 -0
  414. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/Modules/Makefile +175 -0
  415. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/Modules/Makefile.preplumed +171 -0
  416. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/forces.f90 +486 -0
  417. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/forces.f90.preplumed +484 -0
  418. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_ext_forces.f90 +74 -0
  419. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_ext_forces.f90.preplumed +23 -0
  420. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_initialization.f90 +64 -0
  421. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
  422. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/run_pwscf.f90 +532 -0
  423. plumed/_lib/lib/plumed/patches/qespresso-7.0.diff/PW/src/run_pwscf.f90.preplumed +518 -0
  424. plumed/_lib/lib/plumed/patches/qespresso-7.2.config +28 -0
  425. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/Modules/Makefile +249 -0
  426. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/Modules/Makefile.preplumed +244 -0
  427. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/forces.f90 +532 -0
  428. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/forces.f90.preplumed +535 -0
  429. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_ext_forces.f90 +74 -0
  430. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_ext_forces.f90.preplumed +23 -0
  431. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_initialization.f90 +64 -0
  432. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/plugin_initialization.f90.preplumed +21 -0
  433. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/run_pwscf.f90 +569 -0
  434. plumed/_lib/lib/plumed/patches/qespresso-7.2.diff/PW/src/run_pwscf.f90.preplumed +560 -0
  435. plumed/_lib/lib/plumed/plumed-config +9 -0
  436. plumed/_lib/lib/plumed/plumed-mklib +9 -0
  437. plumed/_lib/lib/plumed/plumed-newcv +9 -0
  438. plumed/_lib/lib/plumed/plumed-partial_tempering +9 -0
  439. plumed/_lib/lib/plumed/plumed-patch +9 -0
  440. plumed/_lib/lib/plumed/plumed-runtime +0 -0
  441. plumed/_lib/lib/plumed/plumed-selector +9 -0
  442. plumed/_lib/lib/plumed/plumed-vim2html +9 -0
  443. plumed/_lib/lib/plumed/scripts/config.sh +126 -0
  444. plumed/_lib/lib/plumed/scripts/mklib.sh +175 -0
  445. plumed/_lib/lib/plumed/scripts/newcv.sh +26 -0
  446. plumed/_lib/lib/plumed/scripts/partial_tempering.sh +319 -0
  447. plumed/_lib/lib/plumed/scripts/patch.sh +4 -0
  448. plumed/_lib/lib/plumed/scripts/selector.sh +234 -0
  449. plumed/_lib/lib/plumed/scripts/vim2html.sh +190 -0
  450. plumed/_lib/lib/plumed/src/colvar/Template.cpp +116 -0
  451. plumed/_lib/lib/plumed/src/config/compile_options.sh +3 -0
  452. plumed/_lib/lib/plumed/src/config/config.txt +181 -0
  453. plumed/_lib/lib/plumed/src/lib/Plumed.cmake +6 -0
  454. plumed/_lib/lib/plumed/src/lib/Plumed.cmake.runtime +5 -0
  455. plumed/_lib/lib/plumed/src/lib/Plumed.cmake.shared +5 -0
  456. plumed/_lib/lib/plumed/src/lib/Plumed.cmake.static +3 -0
  457. plumed/_lib/lib/plumed/src/lib/Plumed.inc +6 -0
  458. plumed/_lib/lib/plumed/src/lib/Plumed.inc.runtime +5 -0
  459. plumed/_lib/lib/plumed/src/lib/Plumed.inc.shared +5 -0
  460. plumed/_lib/lib/plumed/src/lib/Plumed.inc.static +3 -0
  461. plumed/_lib/lib/plumed/vim/scripts.vim +6 -0
  462. plumed/_plumed_core.cpython-311-darwin.so +0 -0
  463. plumed/_plumed_core.cpython-312-darwin.so +0 -0
  464. plumed/_plumed_core.cpython-313-darwin.so +0 -0
  465. plumedCommunications.cpython-311-darwin.so +0 -0
  466. plumedCommunications.cpython-312-darwin.so +0 -0
  467. plumedCommunications.cpython-313-darwin.so +0 -0
  468. plumedCommunications.pyi +431 -0
@@ -0,0 +1,1104 @@
1
+ /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2
+ Copyright (c) 2008-2017, Petr Kobalicek
3
+
4
+ This software is provided 'as-is', without any express or implied
5
+ warranty. In no event will the authors be held liable for any damages
6
+ arising from the use of this software.
7
+
8
+ Permission is granted to anyone to use this software for any purpose,
9
+ including commercial applications, and to alter it and redistribute it
10
+ freely, subject to the following restrictions:
11
+
12
+ 1. The origin of this software must not be misrepresented; you must not
13
+ claim that you wrote the original software. If you use this software
14
+ in a product, an acknowledgment in the product documentation would be
15
+ appreciated but is not required.
16
+ 2. Altered source versions must be plainly marked as such, and must not be
17
+ misrepresented as being the original software.
18
+ 3. This notice may not be removed or altered from any source distribution.
19
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
20
+ #ifndef __PLUMED_asmjit_simdtypes_h
21
+ #define __PLUMED_asmjit_simdtypes_h
22
+ #ifdef __PLUMED_HAS_ASMJIT
23
+ #pragma GCC diagnostic push
24
+ #pragma GCC diagnostic ignored "-Wpedantic"
25
+ // [AsmJit]
26
+ // Complete x86/x64 JIT and Remote Assembler for C++.
27
+ //
28
+ // [License]
29
+ // Zlib - See LICENSE.md file in the package.
30
+
31
+ // [Guard]
32
+ #ifndef _ASMJIT_BASE_SIMDTYPES_H
33
+ #define _ASMJIT_BASE_SIMDTYPES_H
34
+
35
+ // [Dependencies]
36
+ #include "./globals.h"
37
+
38
+ // [Api-Begin]
39
+ #include "./asmjit_apibegin.h"
40
+
41
+ namespace PLMD {
42
+ namespace asmjit {
43
+
44
+ //! \addtogroup asmjit_base
45
+ //! \{
46
+
47
+ // ============================================================================
48
+ // [asmjit::Data64]
49
+ // ============================================================================
50
+
51
+ //! 64-bit data useful for creating SIMD constants.
52
+ union Data64 {
53
+ // --------------------------------------------------------------------------
54
+ // [Construction / Destruction]
55
+ // --------------------------------------------------------------------------
56
+
57
+ //! Set all eight 8-bit signed integers.
58
+ static ASMJIT_INLINE Data64 fromI8(int8_t x0) noexcept {
59
+ Data64 self;
60
+ self.setI8(x0);
61
+ return self;
62
+ }
63
+
64
+ //! Set all eight 8-bit unsigned integers.
65
+ static ASMJIT_INLINE Data64 fromU8(uint8_t x0) noexcept {
66
+ Data64 self;
67
+ self.setU8(x0);
68
+ return self;
69
+ }
70
+
71
+ //! Set all eight 8-bit signed integers.
72
+ static ASMJIT_INLINE Data64 fromI8(
73
+ int8_t x0, int8_t x1, int8_t x2, int8_t x3, int8_t x4, int8_t x5, int8_t x6, int8_t x7) noexcept {
74
+
75
+ Data64 self;
76
+ self.setI8(x0, x1, x2, x3, x4, x5, x6, x7);
77
+ return self;
78
+ }
79
+
80
+ //! Set all eight 8-bit unsigned integers.
81
+ static ASMJIT_INLINE Data64 fromU8(
82
+ uint8_t x0, uint8_t x1, uint8_t x2, uint8_t x3, uint8_t x4, uint8_t x5, uint8_t x6, uint8_t x7) noexcept {
83
+
84
+ Data64 self;
85
+ self.setU8(x0, x1, x2, x3, x4, x5, x6, x7);
86
+ return self;
87
+ }
88
+
89
+ //! Set all four 16-bit signed integers.
90
+ static ASMJIT_INLINE Data64 fromI16(int16_t x0) noexcept {
91
+ Data64 self;
92
+ self.setI16(x0);
93
+ return self;
94
+ }
95
+
96
+ //! Set all four 16-bit unsigned integers.
97
+ static ASMJIT_INLINE Data64 fromU16(uint16_t x0) noexcept {
98
+ Data64 self;
99
+ self.setU16(x0);
100
+ return self;
101
+ }
102
+
103
+ //! Set all four 16-bit signed integers.
104
+ static ASMJIT_INLINE Data64 fromI16(int16_t x0, int16_t x1, int16_t x2, int16_t x3) noexcept {
105
+ Data64 self;
106
+ self.setI16(x0, x1, x2, x3);
107
+ return self;
108
+ }
109
+
110
+ //! Set all four 16-bit unsigned integers.
111
+ static ASMJIT_INLINE Data64 fromU16(uint16_t x0, uint16_t x1, uint16_t x2, uint16_t x3) noexcept {
112
+ Data64 self;
113
+ self.setU16(x0, x1, x2, x3);
114
+ return self;
115
+ }
116
+
117
+ //! Set all two 32-bit signed integers.
118
+ static ASMJIT_INLINE Data64 fromI32(int32_t x0) noexcept {
119
+ Data64 self;
120
+ self.setI32(x0);
121
+ return self;
122
+ }
123
+
124
+ //! Set all two 32-bit unsigned integers.
125
+ static ASMJIT_INLINE Data64 fromU32(uint32_t x0) noexcept {
126
+ Data64 self;
127
+ self.setU32(x0);
128
+ return self;
129
+ }
130
+
131
+ //! Set all two 32-bit signed integers.
132
+ static ASMJIT_INLINE Data64 fromI32(int32_t x0, int32_t x1) noexcept {
133
+ Data64 self;
134
+ self.setI32(x0, x1);
135
+ return self;
136
+ }
137
+
138
+ //! Set all two 32-bit unsigned integers.
139
+ static ASMJIT_INLINE Data64 fromU32(uint32_t x0, uint32_t x1) noexcept {
140
+ Data64 self;
141
+ self.setU32(x0, x1);
142
+ return self;
143
+ }
144
+
145
+ //! Set 64-bit signed integer.
146
+ static ASMJIT_INLINE Data64 fromI64(int64_t x0) noexcept {
147
+ Data64 self;
148
+ self.setI64(x0);
149
+ return self;
150
+ }
151
+
152
+ //! Set 64-bit unsigned integer.
153
+ static ASMJIT_INLINE Data64 fromU64(uint64_t x0) noexcept {
154
+ Data64 self;
155
+ self.setU64(x0);
156
+ return self;
157
+ }
158
+
159
+ //! Set all two SP-FP values.
160
+ static ASMJIT_INLINE Data64 fromF32(float x0) noexcept {
161
+ Data64 self;
162
+ self.setF32(x0);
163
+ return self;
164
+ }
165
+
166
+ //! Set all two SP-FP values.
167
+ static ASMJIT_INLINE Data64 fromF32(float x0, float x1) noexcept {
168
+ Data64 self;
169
+ self.setF32(x0, x1);
170
+ return self;
171
+ }
172
+
173
+ //! Set all two SP-FP values.
174
+ static ASMJIT_INLINE Data64 fromF64(double x0) noexcept {
175
+ Data64 self;
176
+ self.setF64(x0);
177
+ return self;
178
+ }
179
+
180
+ // --------------------------------------------------------------------------
181
+ // [Accessors]
182
+ // --------------------------------------------------------------------------
183
+
184
+ //! Set all eight 8-bit signed integers.
185
+ ASMJIT_INLINE void setI8(int8_t x0) noexcept {
186
+ setU8(static_cast<uint8_t>(x0));
187
+ }
188
+
189
+ //! Set all eight 8-bit unsigned integers.
190
+ ASMJIT_INLINE void setU8(uint8_t x0) noexcept {
191
+ if (ASMJIT_ARCH_64BIT) {
192
+ uint64_t xq = static_cast<uint64_t>(x0) * ASMJIT_UINT64_C(0x0101010101010101);
193
+ uq[0] = xq;
194
+ }
195
+ else {
196
+ uint32_t xd = static_cast<uint32_t>(x0) * static_cast<uint32_t>(0x01010101U);
197
+ ud[0] = xd;
198
+ ud[1] = xd;
199
+ }
200
+ }
201
+
202
+ //! Set all eight 8-bit signed integers.
203
+ ASMJIT_INLINE void setI8(
204
+ int8_t x0, int8_t x1, int8_t x2, int8_t x3, int8_t x4, int8_t x5, int8_t x6, int8_t x7) noexcept {
205
+
206
+ sb[0] = x0; sb[1] = x1; sb[2] = x2; sb[3] = x3;
207
+ sb[4] = x4; sb[5] = x5; sb[6] = x6; sb[7] = x7;
208
+ }
209
+
210
+ //! Set all eight 8-bit unsigned integers.
211
+ ASMJIT_INLINE void setU8(
212
+ uint8_t x0, uint8_t x1, uint8_t x2, uint8_t x3, uint8_t x4, uint8_t x5, uint8_t x6, uint8_t x7) noexcept {
213
+
214
+ ub[0] = x0; ub[1] = x1; ub[2] = x2; ub[3] = x3;
215
+ ub[4] = x4; ub[5] = x5; ub[6] = x6; ub[7] = x7;
216
+ }
217
+
218
+ //! Set all four 16-bit signed integers.
219
+ ASMJIT_INLINE void setI16(int16_t x0) noexcept {
220
+ setU16(static_cast<uint16_t>(x0));
221
+ }
222
+
223
+ //! Set all four 16-bit unsigned integers.
224
+ ASMJIT_INLINE void setU16(uint16_t x0) noexcept {
225
+ if (ASMJIT_ARCH_64BIT) {
226
+ uint64_t xq = static_cast<uint64_t>(x0) * ASMJIT_UINT64_C(0x0001000100010001);
227
+ uq[0] = xq;
228
+ }
229
+ else {
230
+ uint32_t xd = static_cast<uint32_t>(x0) * static_cast<uint32_t>(0x00010001U);
231
+ ud[0] = xd;
232
+ ud[1] = xd;
233
+ }
234
+ }
235
+
236
+ //! Set all four 16-bit signed integers.
237
+ ASMJIT_INLINE void setI16(int16_t x0, int16_t x1, int16_t x2, int16_t x3) noexcept {
238
+ sw[0] = x0; sw[1] = x1; sw[2] = x2; sw[3] = x3;
239
+ }
240
+
241
+ //! Set all four 16-bit unsigned integers.
242
+ ASMJIT_INLINE void setU16(uint16_t x0, uint16_t x1, uint16_t x2, uint16_t x3) noexcept {
243
+ uw[0] = x0; uw[1] = x1; uw[2] = x2; uw[3] = x3;
244
+ }
245
+
246
+ //! Set all two 32-bit signed integers.
247
+ ASMJIT_INLINE void setI32(int32_t x0) noexcept {
248
+ sd[0] = x0; sd[1] = x0;
249
+ }
250
+
251
+ //! Set all two 32-bit unsigned integers.
252
+ ASMJIT_INLINE void setU32(uint32_t x0) noexcept {
253
+ ud[0] = x0; ud[1] = x0;
254
+ }
255
+
256
+ //! Set all two 32-bit signed integers.
257
+ ASMJIT_INLINE void setI32(int32_t x0, int32_t x1) noexcept {
258
+ sd[0] = x0; sd[1] = x1;
259
+ }
260
+
261
+ //! Set all two 32-bit unsigned integers.
262
+ ASMJIT_INLINE void setU32(uint32_t x0, uint32_t x1) noexcept {
263
+ ud[0] = x0; ud[1] = x1;
264
+ }
265
+
266
+ //! Set 64-bit signed integer.
267
+ ASMJIT_INLINE void setI64(int64_t x0) noexcept {
268
+ sq[0] = x0;
269
+ }
270
+
271
+ //! Set 64-bit unsigned integer.
272
+ ASMJIT_INLINE void setU64(uint64_t x0) noexcept {
273
+ uq[0] = x0;
274
+ }
275
+
276
+ //! Set all two SP-FP values.
277
+ ASMJIT_INLINE void setF32(float x0) noexcept {
278
+ sf[0] = x0; sf[1] = x0;
279
+ }
280
+
281
+ //! Set all two SP-FP values.
282
+ ASMJIT_INLINE void setF32(float x0, float x1) noexcept {
283
+ sf[0] = x0; sf[1] = x1;
284
+ }
285
+
286
+ //! Set all two SP-FP values.
287
+ ASMJIT_INLINE void setF64(double x0) noexcept {
288
+ df[0] = x0;
289
+ }
290
+
291
+ // --------------------------------------------------------------------------
292
+ // [Members]
293
+ // --------------------------------------------------------------------------
294
+
295
+ //! Array of eight 8-bit signed integers.
296
+ int8_t sb[8];
297
+ //! Array of eight 8-bit unsigned integers.
298
+ uint8_t ub[8];
299
+ //! Array of four 16-bit signed integers.
300
+ int16_t sw[4];
301
+ //! Array of four 16-bit unsigned integers.
302
+ uint16_t uw[4];
303
+ //! Array of two 32-bit signed integers.
304
+ int32_t sd[2];
305
+ //! Array of two 32-bit unsigned integers.
306
+ uint32_t ud[2];
307
+ //! Array of one 64-bit signed integer.
308
+ int64_t sq[1];
309
+ //! Array of one 64-bit unsigned integer.
310
+ uint64_t uq[1];
311
+
312
+ //! Array of two SP-FP values.
313
+ float sf[2];
314
+ //! Array of one DP-FP value.
315
+ double df[1];
316
+ };
317
+
318
+ // ============================================================================
319
+ // [asmjit::Data128]
320
+ // ============================================================================
321
+
322
+ //! 128-bit data useful for creating SIMD constants.
323
+ union Data128 {
324
+ // --------------------------------------------------------------------------
325
+ // [Construction / Destruction]
326
+ // --------------------------------------------------------------------------
327
+
328
+ //! Set all sixteen 8-bit signed integers.
329
+ static ASMJIT_INLINE Data128 fromI8(int8_t x0) noexcept {
330
+ Data128 self;
331
+ self.setI8(x0);
332
+ return self;
333
+ }
334
+
335
+ //! Set all sixteen 8-bit unsigned integers.
336
+ static ASMJIT_INLINE Data128 fromU8(uint8_t x0) noexcept {
337
+ Data128 self;
338
+ self.setU8(x0);
339
+ return self;
340
+ }
341
+
342
+ //! Set all sixteen 8-bit signed integers.
343
+ static ASMJIT_INLINE Data128 fromI8(
344
+ int8_t x0 , int8_t x1 , int8_t x2 , int8_t x3 ,
345
+ int8_t x4 , int8_t x5 , int8_t x6 , int8_t x7 ,
346
+ int8_t x8 , int8_t x9 , int8_t x10, int8_t x11,
347
+ int8_t x12, int8_t x13, int8_t x14, int8_t x15) noexcept {
348
+
349
+ Data128 self;
350
+ self.setI8(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15);
351
+ return self;
352
+ }
353
+
354
+ //! Set all sixteen 8-bit unsigned integers.
355
+ static ASMJIT_INLINE Data128 fromU8(
356
+ uint8_t x0 , uint8_t x1 , uint8_t x2 , uint8_t x3 ,
357
+ uint8_t x4 , uint8_t x5 , uint8_t x6 , uint8_t x7 ,
358
+ uint8_t x8 , uint8_t x9 , uint8_t x10, uint8_t x11,
359
+ uint8_t x12, uint8_t x13, uint8_t x14, uint8_t x15) noexcept {
360
+
361
+ Data128 self;
362
+ self.setU8(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15);
363
+ return self;
364
+ }
365
+
366
+ //! Set all eight 16-bit signed integers.
367
+ static ASMJIT_INLINE Data128 fromI16(int16_t x0) noexcept {
368
+ Data128 self;
369
+ self.setI16(x0);
370
+ return self;
371
+ }
372
+
373
+ //! Set all eight 16-bit unsigned integers.
374
+ static ASMJIT_INLINE Data128 fromU16(uint16_t x0) noexcept {
375
+ Data128 self;
376
+ self.setU16(x0);
377
+ return self;
378
+ }
379
+
380
+ //! Set all eight 16-bit signed integers.
381
+ static ASMJIT_INLINE Data128 fromI16(
382
+ int16_t x0, int16_t x1, int16_t x2, int16_t x3, int16_t x4, int16_t x5, int16_t x6, int16_t x7) noexcept {
383
+
384
+ Data128 self;
385
+ self.setI16(x0, x1, x2, x3, x4, x5, x6, x7);
386
+ return self;
387
+ }
388
+
389
+ //! Set all eight 16-bit unsigned integers.
390
+ static ASMJIT_INLINE Data128 fromU16(
391
+ uint16_t x0, uint16_t x1, uint16_t x2, uint16_t x3, uint16_t x4, uint16_t x5, uint16_t x6, uint16_t x7) noexcept {
392
+
393
+ Data128 self;
394
+ self.setU16(x0, x1, x2, x3, x4, x5, x6, x7);
395
+ return self;
396
+ }
397
+
398
+ //! Set all four 32-bit signed integers.
399
+ static ASMJIT_INLINE Data128 fromI32(int32_t x0) noexcept {
400
+ Data128 self;
401
+ self.setI32(x0);
402
+ return self;
403
+ }
404
+
405
+ //! Set all four 32-bit unsigned integers.
406
+ static ASMJIT_INLINE Data128 fromU32(uint32_t x0) noexcept {
407
+ Data128 self;
408
+ self.setU32(x0);
409
+ return self;
410
+ }
411
+
412
+ //! Set all four 32-bit signed integers.
413
+ static ASMJIT_INLINE Data128 fromI32(int32_t x0, int32_t x1, int32_t x2, int32_t x3) noexcept {
414
+ Data128 self;
415
+ self.setI32(x0, x1, x2, x3);
416
+ return self;
417
+ }
418
+
419
+ //! Set all four 32-bit unsigned integers.
420
+ static ASMJIT_INLINE Data128 fromU32(uint32_t x0, uint32_t x1, uint32_t x2, uint32_t x3) noexcept {
421
+ Data128 self;
422
+ self.setU32(x0, x1, x2, x3);
423
+ return self;
424
+ }
425
+
426
+ //! Set all two 64-bit signed integers.
427
+ static ASMJIT_INLINE Data128 fromI64(int64_t x0) noexcept {
428
+ Data128 self;
429
+ self.setI64(x0);
430
+ return self;
431
+ }
432
+
433
+ //! Set all two 64-bit unsigned integers.
434
+ static ASMJIT_INLINE Data128 fromU64(uint64_t x0) noexcept {
435
+ Data128 self;
436
+ self.setU64(x0);
437
+ return self;
438
+ }
439
+
440
+ //! Set all two 64-bit signed integers.
441
+ static ASMJIT_INLINE Data128 fromI64(int64_t x0, int64_t x1) noexcept {
442
+ Data128 self;
443
+ self.setI64(x0, x1);
444
+ return self;
445
+ }
446
+
447
+ //! Set all two 64-bit unsigned integers.
448
+ static ASMJIT_INLINE Data128 fromU64(uint64_t x0, uint64_t x1) noexcept {
449
+ Data128 self;
450
+ self.setU64(x0, x1);
451
+ return self;
452
+ }
453
+
454
+ //! Set all four SP-FP floats.
455
+ static ASMJIT_INLINE Data128 fromF32(float x0) noexcept {
456
+ Data128 self;
457
+ self.setF32(x0);
458
+ return self;
459
+ }
460
+
461
+ //! Set all four SP-FP floats.
462
+ static ASMJIT_INLINE Data128 fromF32(float x0, float x1, float x2, float x3) noexcept {
463
+ Data128 self;
464
+ self.setF32(x0, x1, x2, x3);
465
+ return self;
466
+ }
467
+
468
+ //! Set all two DP-FP floats.
469
+ static ASMJIT_INLINE Data128 fromF64(double x0) noexcept {
470
+ Data128 self;
471
+ self.setF64(x0);
472
+ return self;
473
+ }
474
+
475
+ //! Set all two DP-FP floats.
476
+ static ASMJIT_INLINE Data128 fromF64(double x0, double x1) noexcept {
477
+ Data128 self;
478
+ self.setF64(x0, x1);
479
+ return self;
480
+ }
481
+
482
+ // --------------------------------------------------------------------------
483
+ // [Accessors]
484
+ // --------------------------------------------------------------------------
485
+
486
+ //! Set all sixteen 8-bit signed integers.
487
+ ASMJIT_INLINE void setI8(int8_t x0) noexcept {
488
+ setU8(static_cast<uint8_t>(x0));
489
+ }
490
+
491
+ //! Set all sixteen 8-bit unsigned integers.
492
+ ASMJIT_INLINE void setU8(uint8_t x0) noexcept {
493
+ if (ASMJIT_ARCH_64BIT) {
494
+ uint64_t xq = static_cast<uint64_t>(x0) * ASMJIT_UINT64_C(0x0101010101010101);
495
+ uq[0] = xq;
496
+ uq[1] = xq;
497
+ }
498
+ else {
499
+ uint32_t xd = static_cast<uint32_t>(x0) * static_cast<uint32_t>(0x01010101U);
500
+ ud[0] = xd;
501
+ ud[1] = xd;
502
+ ud[2] = xd;
503
+ ud[3] = xd;
504
+ }
505
+ }
506
+
507
+ //! Set all sixteen 8-bit signed integers.
508
+ ASMJIT_INLINE void setI8(
509
+ int8_t x0 , int8_t x1 , int8_t x2 , int8_t x3 ,
510
+ int8_t x4 , int8_t x5 , int8_t x6 , int8_t x7 ,
511
+ int8_t x8 , int8_t x9 , int8_t x10, int8_t x11,
512
+ int8_t x12, int8_t x13, int8_t x14, int8_t x15) noexcept {
513
+
514
+ sb[0 ] = x0 ; sb[1 ] = x1 ; sb[2 ] = x2 ; sb[3 ] = x3 ;
515
+ sb[4 ] = x4 ; sb[5 ] = x5 ; sb[6 ] = x6 ; sb[7 ] = x7 ;
516
+ sb[8 ] = x8 ; sb[9 ] = x9 ; sb[10] = x10; sb[11] = x11;
517
+ sb[12] = x12; sb[13] = x13; sb[14] = x14; sb[15] = x15;
518
+ }
519
+
520
+ //! Set all sixteen 8-bit unsigned integers.
521
+ ASMJIT_INLINE void setU8(
522
+ uint8_t x0 , uint8_t x1 , uint8_t x2 , uint8_t x3 ,
523
+ uint8_t x4 , uint8_t x5 , uint8_t x6 , uint8_t x7 ,
524
+ uint8_t x8 , uint8_t x9 , uint8_t x10, uint8_t x11,
525
+ uint8_t x12, uint8_t x13, uint8_t x14, uint8_t x15) noexcept {
526
+
527
+ ub[0 ] = x0 ; ub[1 ] = x1 ; ub[2 ] = x2 ; ub[3 ] = x3 ;
528
+ ub[4 ] = x4 ; ub[5 ] = x5 ; ub[6 ] = x6 ; ub[7 ] = x7 ;
529
+ ub[8 ] = x8 ; ub[9 ] = x9 ; ub[10] = x10; ub[11] = x11;
530
+ ub[12] = x12; ub[13] = x13; ub[14] = x14; ub[15] = x15;
531
+ }
532
+
533
+ //! Set all eight 16-bit signed integers.
534
+ ASMJIT_INLINE void setI16(int16_t x0) noexcept {
535
+ setU16(static_cast<uint16_t>(x0));
536
+ }
537
+
538
+ //! Set all eight 16-bit unsigned integers.
539
+ ASMJIT_INLINE void setU16(uint16_t x0) noexcept {
540
+ if (ASMJIT_ARCH_64BIT) {
541
+ uint64_t xq = static_cast<uint64_t>(x0) * ASMJIT_UINT64_C(0x0001000100010001);
542
+ uq[0] = xq;
543
+ uq[1] = xq;
544
+ }
545
+ else {
546
+ uint32_t xd = static_cast<uint32_t>(x0) * static_cast<uint32_t>(0x00010001U);
547
+ ud[0] = xd;
548
+ ud[1] = xd;
549
+ ud[2] = xd;
550
+ ud[3] = xd;
551
+ }
552
+ }
553
+
554
+ //! Set all eight 16-bit signed integers.
555
+ ASMJIT_INLINE void setI16(
556
+ int16_t x0, int16_t x1, int16_t x2, int16_t x3, int16_t x4, int16_t x5, int16_t x6, int16_t x7) noexcept {
557
+
558
+ sw[0] = x0; sw[1] = x1; sw[2] = x2; sw[3] = x3;
559
+ sw[4] = x4; sw[5] = x5; sw[6] = x6; sw[7] = x7;
560
+ }
561
+
562
+ //! Set all eight 16-bit unsigned integers.
563
+ ASMJIT_INLINE void setU16(
564
+ uint16_t x0, uint16_t x1, uint16_t x2, uint16_t x3, uint16_t x4, uint16_t x5, uint16_t x6, uint16_t x7) noexcept {
565
+
566
+ uw[0] = x0; uw[1] = x1; uw[2] = x2; uw[3] = x3;
567
+ uw[4] = x4; uw[5] = x5; uw[6] = x6; uw[7] = x7;
568
+ }
569
+
570
+ //! Set all four 32-bit signed integers.
571
+ ASMJIT_INLINE void setI32(int32_t x0) noexcept {
572
+ setU32(static_cast<uint32_t>(x0));
573
+ }
574
+
575
+ //! Set all four 32-bit unsigned integers.
576
+ ASMJIT_INLINE void setU32(uint32_t x0) noexcept {
577
+ if (ASMJIT_ARCH_64BIT) {
578
+ uint64_t t = (static_cast<uint64_t>(x0) << 32) + x0;
579
+ uq[0] = t;
580
+ uq[1] = t;
581
+ }
582
+ else {
583
+ ud[0] = x0;
584
+ ud[1] = x0;
585
+ ud[2] = x0;
586
+ ud[3] = x0;
587
+ }
588
+ }
589
+
590
+ //! Set all four 32-bit signed integers.
591
+ ASMJIT_INLINE void setI32(int32_t x0, int32_t x1, int32_t x2, int32_t x3) noexcept {
592
+ sd[0] = x0; sd[1] = x1; sd[2] = x2; sd[3] = x3;
593
+ }
594
+
595
+ //! Set all four 32-bit unsigned integers.
596
+ ASMJIT_INLINE void setU32(uint32_t x0, uint32_t x1, uint32_t x2, uint32_t x3) noexcept {
597
+ ud[0] = x0; ud[1] = x1; ud[2] = x2; ud[3] = x3;
598
+ }
599
+
600
+ //! Set all two 64-bit signed integers.
601
+ ASMJIT_INLINE void setI64(int64_t x0) noexcept {
602
+ sq[0] = x0; sq[1] = x0;
603
+ }
604
+
605
+ //! Set all two 64-bit unsigned integers.
606
+ ASMJIT_INLINE void setU64(uint64_t x0) noexcept {
607
+ uq[0] = x0; uq[1] = x0;
608
+ }
609
+
610
+ //! Set all two 64-bit signed integers.
611
+ ASMJIT_INLINE void setI64(int64_t x0, int64_t x1) noexcept {
612
+ sq[0] = x0; sq[1] = x1;
613
+ }
614
+
615
+ //! Set all two 64-bit unsigned integers.
616
+ ASMJIT_INLINE void setU64(uint64_t x0, uint64_t x1) noexcept {
617
+ uq[0] = x0; uq[1] = x1;
618
+ }
619
+
620
+ //! Set all four SP-FP floats.
621
+ ASMJIT_INLINE void setF32(float x0) noexcept {
622
+ sf[0] = x0; sf[1] = x0; sf[2] = x0; sf[3] = x0;
623
+ }
624
+
625
+ //! Set all four SP-FP floats.
626
+ ASMJIT_INLINE void setF32(float x0, float x1, float x2, float x3) noexcept {
627
+ sf[0] = x0; sf[1] = x1; sf[2] = x2; sf[3] = x3;
628
+ }
629
+
630
+ //! Set all two DP-FP floats.
631
+ ASMJIT_INLINE void setF64(double x0) noexcept {
632
+ df[0] = x0; df[1] = x0;
633
+ }
634
+
635
+ //! Set all two DP-FP floats.
636
+ ASMJIT_INLINE void setF64(double x0, double x1) noexcept {
637
+ df[0] = x0; df[1] = x1;
638
+ }
639
+
640
+ // --------------------------------------------------------------------------
641
+ // [Members]
642
+ // --------------------------------------------------------------------------
643
+
644
+ //! Array of sixteen 8-bit signed integers.
645
+ int8_t sb[16];
646
+ //! Array of sixteen 8-bit unsigned integers.
647
+ uint8_t ub[16];
648
+ //! Array of eight 16-bit signed integers.
649
+ int16_t sw[8];
650
+ //! Array of eight 16-bit unsigned integers.
651
+ uint16_t uw[8];
652
+ //! Array of four 32-bit signed integers.
653
+ int32_t sd[4];
654
+ //! Array of four 32-bit unsigned integers.
655
+ uint32_t ud[4];
656
+ //! Array of two 64-bit signed integers.
657
+ int64_t sq[2];
658
+ //! Array of two 64-bit unsigned integers.
659
+ uint64_t uq[2];
660
+
661
+ //! Array of four 32-bit single precision floating points.
662
+ float sf[4];
663
+ //! Array of two 64-bit double precision floating points.
664
+ double df[2];
665
+ };
666
+
667
+ // ============================================================================
668
+ // [asmjit::Data256]
669
+ // ============================================================================
670
+
671
+ //! 256-bit data useful for creating SIMD constants.
672
+ union Data256 {
673
+ // --------------------------------------------------------------------------
674
+ // [Construction / Destruction]
675
+ // --------------------------------------------------------------------------
676
+
677
+ //! Set all thirty two 8-bit signed integers.
678
+ static ASMJIT_INLINE Data256 fromI8(int8_t x0) noexcept {
679
+ Data256 self;
680
+ self.setI8(x0);
681
+ return self;
682
+ }
683
+
684
+ //! Set all thirty two 8-bit unsigned integers.
685
+ static ASMJIT_INLINE Data256 fromU8(uint8_t x0) noexcept {
686
+ Data256 self;
687
+ self.setU8(x0);
688
+ return self;
689
+ }
690
+
691
+ //! Set all thirty two 8-bit signed integers.
692
+ static ASMJIT_INLINE Data256 fromI8(
693
+ int8_t x0 , int8_t x1 , int8_t x2 , int8_t x3 ,
694
+ int8_t x4 , int8_t x5 , int8_t x6 , int8_t x7 ,
695
+ int8_t x8 , int8_t x9 , int8_t x10, int8_t x11,
696
+ int8_t x12, int8_t x13, int8_t x14, int8_t x15,
697
+ int8_t x16, int8_t x17, int8_t x18, int8_t x19,
698
+ int8_t x20, int8_t x21, int8_t x22, int8_t x23,
699
+ int8_t x24, int8_t x25, int8_t x26, int8_t x27,
700
+ int8_t x28, int8_t x29, int8_t x30, int8_t x31) noexcept {
701
+
702
+ Data256 self;
703
+ self.setI8(
704
+ x0, x1 , x2 , x3 , x4 , x5 , x6 , x7 , x8 , x9 , x10, x11, x12, x13, x14, x15,
705
+ x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31);
706
+ return self;
707
+ }
708
+
709
+ //! Set all thirty two 8-bit unsigned integers.
710
+ static ASMJIT_INLINE Data256 fromU8(
711
+ uint8_t x0 , uint8_t x1 , uint8_t x2 , uint8_t x3 ,
712
+ uint8_t x4 , uint8_t x5 , uint8_t x6 , uint8_t x7 ,
713
+ uint8_t x8 , uint8_t x9 , uint8_t x10, uint8_t x11,
714
+ uint8_t x12, uint8_t x13, uint8_t x14, uint8_t x15,
715
+ uint8_t x16, uint8_t x17, uint8_t x18, uint8_t x19,
716
+ uint8_t x20, uint8_t x21, uint8_t x22, uint8_t x23,
717
+ uint8_t x24, uint8_t x25, uint8_t x26, uint8_t x27,
718
+ uint8_t x28, uint8_t x29, uint8_t x30, uint8_t x31) noexcept {
719
+
720
+ Data256 self;
721
+ self.setU8(
722
+ x0, x1 , x2 , x3 , x4 , x5 , x6 , x7 , x8 , x9 , x10, x11, x12, x13, x14, x15,
723
+ x16, x17, x18, x19, x20, x21, x22, x23, x24, x25, x26, x27, x28, x29, x30, x31);
724
+ return self;
725
+ }
726
+
727
+ //! Set all sixteen 16-bit signed integers.
728
+ static ASMJIT_INLINE Data256 fromI16(int16_t x0) noexcept {
729
+ Data256 self;
730
+ self.setI16(x0);
731
+ return self;
732
+ }
733
+
734
+ //! Set all sixteen 16-bit unsigned integers.
735
+ static ASMJIT_INLINE Data256 fromU16(uint16_t x0) noexcept {
736
+ Data256 self;
737
+ self.setU16(x0);
738
+ return self;
739
+ }
740
+
741
+ //! Set all sixteen 16-bit signed integers.
742
+ static ASMJIT_INLINE Data256 fromI16(
743
+ int16_t x0, int16_t x1, int16_t x2 , int16_t x3 , int16_t x4 , int16_t x5 , int16_t x6 , int16_t x7 ,
744
+ int16_t x8, int16_t x9, int16_t x10, int16_t x11, int16_t x12, int16_t x13, int16_t x14, int16_t x15) noexcept {
745
+
746
+ Data256 self;
747
+ self.setI16(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15);
748
+ return self;
749
+ }
750
+
751
+ //! Set all sixteen 16-bit unsigned integers.
752
+ static ASMJIT_INLINE Data256 fromU16(
753
+ uint16_t x0, uint16_t x1, uint16_t x2 , uint16_t x3 , uint16_t x4 , uint16_t x5 , uint16_t x6 , uint16_t x7 ,
754
+ uint16_t x8, uint16_t x9, uint16_t x10, uint16_t x11, uint16_t x12, uint16_t x13, uint16_t x14, uint16_t x15) noexcept {
755
+
756
+ Data256 self;
757
+ self.setU16(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15);
758
+ return self;
759
+ }
760
+
761
+ //! Set all eight 32-bit signed integers.
762
+ static ASMJIT_INLINE Data256 fromI32(int32_t x0) noexcept {
763
+ Data256 self;
764
+ self.setI32(x0);
765
+ return self;
766
+ }
767
+
768
+ //! Set all eight 32-bit unsigned integers.
769
+ static ASMJIT_INLINE Data256 fromU32(uint32_t x0) noexcept {
770
+ Data256 self;
771
+ self.setU32(x0);
772
+ return self;
773
+ }
774
+
775
+ //! Set all eight 32-bit signed integers.
776
+ static ASMJIT_INLINE Data256 fromI32(
777
+ int32_t x0, int32_t x1, int32_t x2, int32_t x3,
778
+ int32_t x4, int32_t x5, int32_t x6, int32_t x7) noexcept {
779
+
780
+ Data256 self;
781
+ self.setI32(x0, x1, x2, x3, x4, x5, x6, x7);
782
+ return self;
783
+ }
784
+
785
+ //! Set all eight 32-bit unsigned integers.
786
+ static ASMJIT_INLINE Data256 fromU32(
787
+ uint32_t x0, uint32_t x1, uint32_t x2, uint32_t x3,
788
+ uint32_t x4, uint32_t x5, uint32_t x6, uint32_t x7) noexcept {
789
+
790
+ Data256 self;
791
+ self.setU32(x0, x1, x2, x3, x4, x5, x6, x7);
792
+ return self;
793
+ }
794
+
795
+ //! Set all four 64-bit signed integers.
796
+ static ASMJIT_INLINE Data256 fromI64(int64_t x0) noexcept {
797
+ Data256 self;
798
+ self.setI64(x0);
799
+ return self;
800
+ }
801
+
802
+ //! Set all four 64-bit unsigned integers.
803
+ static ASMJIT_INLINE Data256 fromU64(uint64_t x0) noexcept {
804
+ Data256 self;
805
+ self.setU64(x0);
806
+ return self;
807
+ }
808
+
809
+ //! Set all four 64-bit signed integers.
810
+ static ASMJIT_INLINE Data256 fromI64(int64_t x0, int64_t x1, int64_t x2, int64_t x3) noexcept {
811
+ Data256 self;
812
+ self.setI64(x0, x1, x2, x3);
813
+ return self;
814
+ }
815
+
816
+ //! Set all four 64-bit unsigned integers.
817
+ static ASMJIT_INLINE Data256 fromU64(uint64_t x0, uint64_t x1, uint64_t x2, uint64_t x3) noexcept {
818
+ Data256 self;
819
+ self.setU64(x0, x1, x2, x3);
820
+ return self;
821
+ }
822
+
823
+ //! Set all eight SP-FP floats.
824
+ static ASMJIT_INLINE Data256 fromF32(float x0) noexcept {
825
+ Data256 self;
826
+ self.setF32(x0);
827
+ return self;
828
+ }
829
+
830
+ //! Set all eight SP-FP floats.
831
+ static ASMJIT_INLINE Data256 fromF32(
832
+ float x0, float x1, float x2, float x3,
833
+ float x4, float x5, float x6, float x7) noexcept {
834
+
835
+ Data256 self;
836
+ self.setF32(x0, x1, x2, x3, x4, x5, x6, x7);
837
+ return self;
838
+ }
839
+
840
+ //! Set all four DP-FP floats.
841
+ static ASMJIT_INLINE Data256 fromF64(double x0) noexcept {
842
+ Data256 self;
843
+ self.setF64(x0);
844
+ return self;
845
+ }
846
+
847
+ //! Set all four DP-FP floats.
848
+ static ASMJIT_INLINE Data256 fromF64(double x0, double x1, double x2, double x3) noexcept {
849
+ Data256 self;
850
+ self.setF64(x0, x1, x2, x3);
851
+ return self;
852
+ }
853
+
854
+ // --------------------------------------------------------------------------
855
+ // [Accessors]
856
+ // --------------------------------------------------------------------------
857
+
858
+ //! Set all thirty two 8-bit signed integers.
859
+ ASMJIT_INLINE void setI8(int8_t x0) noexcept {
860
+ setU8(static_cast<uint8_t>(x0));
861
+ }
862
+
863
+ //! Set all thirty two 8-bit unsigned integers.
864
+ ASMJIT_INLINE void setU8(uint8_t x0) noexcept {
865
+ if (ASMJIT_ARCH_64BIT) {
866
+ uint64_t xq = static_cast<uint64_t>(x0) * ASMJIT_UINT64_C(0x0101010101010101);
867
+ uq[0] = xq;
868
+ uq[1] = xq;
869
+ uq[2] = xq;
870
+ uq[3] = xq;
871
+ }
872
+ else {
873
+ uint32_t xd = static_cast<uint32_t>(x0) * static_cast<uint32_t>(0x01010101U);
874
+ ud[0] = xd;
875
+ ud[1] = xd;
876
+ ud[2] = xd;
877
+ ud[3] = xd;
878
+ ud[4] = xd;
879
+ ud[5] = xd;
880
+ ud[6] = xd;
881
+ ud[7] = xd;
882
+ }
883
+ }
884
+
885
+ //! Set all thirty two 8-bit signed integers.
886
+ ASMJIT_INLINE void setI8(
887
+ int8_t x0 , int8_t x1 , int8_t x2 , int8_t x3 ,
888
+ int8_t x4 , int8_t x5 , int8_t x6 , int8_t x7 ,
889
+ int8_t x8 , int8_t x9 , int8_t x10, int8_t x11,
890
+ int8_t x12, int8_t x13, int8_t x14, int8_t x15,
891
+ int8_t x16, int8_t x17, int8_t x18, int8_t x19,
892
+ int8_t x20, int8_t x21, int8_t x22, int8_t x23,
893
+ int8_t x24, int8_t x25, int8_t x26, int8_t x27,
894
+ int8_t x28, int8_t x29, int8_t x30, int8_t x31) noexcept {
895
+
896
+ sb[0 ] = x0 ; sb[1 ] = x1 ; sb[2 ] = x2 ; sb[3 ] = x3 ;
897
+ sb[4 ] = x4 ; sb[5 ] = x5 ; sb[6 ] = x6 ; sb[7 ] = x7 ;
898
+ sb[8 ] = x8 ; sb[9 ] = x9 ; sb[10] = x10; sb[11] = x11;
899
+ sb[12] = x12; sb[13] = x13; sb[14] = x14; sb[15] = x15;
900
+ sb[16] = x16; sb[17] = x17; sb[18] = x18; sb[19] = x19;
901
+ sb[20] = x20; sb[21] = x21; sb[22] = x22; sb[23] = x23;
902
+ sb[24] = x24; sb[25] = x25; sb[26] = x26; sb[27] = x27;
903
+ sb[28] = x28; sb[29] = x29; sb[30] = x30; sb[31] = x31;
904
+ }
905
+
906
+ //! Set all thirty two 8-bit unsigned integers.
907
+ ASMJIT_INLINE void setU8(
908
+ uint8_t x0 , uint8_t x1 , uint8_t x2 , uint8_t x3 ,
909
+ uint8_t x4 , uint8_t x5 , uint8_t x6 , uint8_t x7 ,
910
+ uint8_t x8 , uint8_t x9 , uint8_t x10, uint8_t x11,
911
+ uint8_t x12, uint8_t x13, uint8_t x14, uint8_t x15,
912
+ uint8_t x16, uint8_t x17, uint8_t x18, uint8_t x19,
913
+ uint8_t x20, uint8_t x21, uint8_t x22, uint8_t x23,
914
+ uint8_t x24, uint8_t x25, uint8_t x26, uint8_t x27,
915
+ uint8_t x28, uint8_t x29, uint8_t x30, uint8_t x31) noexcept {
916
+
917
+ ub[0 ] = x0 ; ub[1 ] = x1 ; ub[2 ] = x2 ; ub[3 ] = x3 ;
918
+ ub[4 ] = x4 ; ub[5 ] = x5 ; ub[6 ] = x6 ; ub[7 ] = x7 ;
919
+ ub[8 ] = x8 ; ub[9 ] = x9 ; ub[10] = x10; ub[11] = x11;
920
+ ub[12] = x12; ub[13] = x13; ub[14] = x14; ub[15] = x15;
921
+ ub[16] = x16; ub[17] = x17; ub[18] = x18; ub[19] = x19;
922
+ ub[20] = x20; ub[21] = x21; ub[22] = x22; ub[23] = x23;
923
+ ub[24] = x24; ub[25] = x25; ub[26] = x26; ub[27] = x27;
924
+ ub[28] = x28; ub[29] = x29; ub[30] = x30; ub[31] = x31;
925
+ }
926
+
927
+ //! Set all sixteen 16-bit signed integers.
928
+ ASMJIT_INLINE void setI16(int16_t x0) noexcept {
929
+ setU16(static_cast<uint16_t>(x0));
930
+ }
931
+
932
+ //! Set all eight 16-bit unsigned integers.
933
+ ASMJIT_INLINE void setU16(uint16_t x0) noexcept {
934
+ if (ASMJIT_ARCH_64BIT) {
935
+ uint64_t xq = static_cast<uint64_t>(x0) * ASMJIT_UINT64_C(0x0001000100010001);
936
+ uq[0] = xq;
937
+ uq[1] = xq;
938
+ uq[2] = xq;
939
+ uq[3] = xq;
940
+ }
941
+ else {
942
+ uint32_t xd = static_cast<uint32_t>(x0) * static_cast<uint32_t>(0x00010001U);
943
+ ud[0] = xd;
944
+ ud[1] = xd;
945
+ ud[2] = xd;
946
+ ud[3] = xd;
947
+ ud[4] = xd;
948
+ ud[5] = xd;
949
+ ud[6] = xd;
950
+ ud[7] = xd;
951
+ }
952
+ }
953
+
954
+ //! Set all sixteen 16-bit signed integers.
955
+ ASMJIT_INLINE void setI16(
956
+ int16_t x0, int16_t x1, int16_t x2 , int16_t x3 , int16_t x4 , int16_t x5 , int16_t x6 , int16_t x7,
957
+ int16_t x8, int16_t x9, int16_t x10, int16_t x11, int16_t x12, int16_t x13, int16_t x14, int16_t x15) noexcept {
958
+
959
+ sw[0 ] = x0 ; sw[1 ] = x1 ; sw[2 ] = x2 ; sw[3 ] = x3 ;
960
+ sw[4 ] = x4 ; sw[5 ] = x5 ; sw[6 ] = x6 ; sw[7 ] = x7 ;
961
+ sw[8 ] = x8 ; sw[9 ] = x9 ; sw[10] = x10; sw[11] = x11;
962
+ sw[12] = x12; sw[13] = x13; sw[14] = x14; sw[15] = x15;
963
+ }
964
+
965
+ //! Set all sixteen 16-bit unsigned integers.
966
+ ASMJIT_INLINE void setU16(
967
+ uint16_t x0, uint16_t x1, uint16_t x2 , uint16_t x3 , uint16_t x4 , uint16_t x5 , uint16_t x6 , uint16_t x7,
968
+ uint16_t x8, uint16_t x9, uint16_t x10, uint16_t x11, uint16_t x12, uint16_t x13, uint16_t x14, uint16_t x15) noexcept {
969
+
970
+ uw[0 ] = x0 ; uw[1 ] = x1 ; uw[2 ] = x2 ; uw[3 ] = x3 ;
971
+ uw[4 ] = x4 ; uw[5 ] = x5 ; uw[6 ] = x6 ; uw[7 ] = x7 ;
972
+ uw[8 ] = x8 ; uw[9 ] = x9 ; uw[10] = x10; uw[11] = x11;
973
+ uw[12] = x12; uw[13] = x13; uw[14] = x14; uw[15] = x15;
974
+ }
975
+
976
+ //! Set all eight 32-bit signed integers.
977
+ ASMJIT_INLINE void setI32(int32_t x0) noexcept {
978
+ setU32(static_cast<uint32_t>(x0));
979
+ }
980
+
981
+ //! Set all eight 32-bit unsigned integers.
982
+ ASMJIT_INLINE void setU32(uint32_t x0) noexcept {
983
+ if (ASMJIT_ARCH_64BIT) {
984
+ uint64_t xq = (static_cast<uint64_t>(x0) << 32) + x0;
985
+ uq[0] = xq;
986
+ uq[1] = xq;
987
+ uq[2] = xq;
988
+ uq[3] = xq;
989
+ }
990
+ else {
991
+ ud[0] = x0;
992
+ ud[1] = x0;
993
+ ud[2] = x0;
994
+ ud[3] = x0;
995
+ ud[4] = x0;
996
+ ud[5] = x0;
997
+ ud[6] = x0;
998
+ ud[7] = x0;
999
+ }
1000
+ }
1001
+
1002
+ //! Set all eight 32-bit signed integers.
1003
+ ASMJIT_INLINE void setI32(
1004
+ int32_t x0, int32_t x1, int32_t x2, int32_t x3,
1005
+ int32_t x4, int32_t x5, int32_t x6, int32_t x7) noexcept {
1006
+
1007
+ sd[0] = x0; sd[1] = x1; sd[2] = x2; sd[3] = x3;
1008
+ sd[4] = x4; sd[5] = x5; sd[6] = x6; sd[7] = x7;
1009
+ }
1010
+
1011
+ //! Set all eight 32-bit unsigned integers.
1012
+ ASMJIT_INLINE void setU32(
1013
+ uint32_t x0, uint32_t x1, uint32_t x2, uint32_t x3,
1014
+ uint32_t x4, uint32_t x5, uint32_t x6, uint32_t x7) noexcept {
1015
+
1016
+ ud[0] = x0; ud[1] = x1; ud[2] = x2; ud[3] = x3;
1017
+ ud[4] = x4; ud[5] = x5; ud[6] = x6; ud[7] = x7;
1018
+ }
1019
+
1020
+ //! Set all four 64-bit signed integers.
1021
+ ASMJIT_INLINE void setI64(int64_t x0) noexcept {
1022
+ sq[0] = x0; sq[1] = x0; sq[2] = x0; sq[3] = x0;
1023
+ }
1024
+
1025
+ //! Set all four 64-bit unsigned integers.
1026
+ ASMJIT_INLINE void setU64(uint64_t x0) noexcept {
1027
+ uq[0] = x0; uq[1] = x0; uq[2] = x0; uq[3] = x0;
1028
+ }
1029
+
1030
+ //! Set all four 64-bit signed integers.
1031
+ ASMJIT_INLINE void setI64(int64_t x0, int64_t x1, int64_t x2, int64_t x3) noexcept {
1032
+ sq[0] = x0; sq[1] = x1; sq[2] = x2; sq[3] = x3;
1033
+ }
1034
+
1035
+ //! Set all four 64-bit unsigned integers.
1036
+ ASMJIT_INLINE void setU64(uint64_t x0, uint64_t x1, uint64_t x2, uint64_t x3) noexcept {
1037
+ uq[0] = x0; uq[1] = x1; uq[2] = x2; uq[3] = x3;
1038
+ }
1039
+
1040
+ //! Set all eight SP-FP floats.
1041
+ ASMJIT_INLINE void setF32(float x0) noexcept {
1042
+ sf[0] = x0; sf[1] = x0; sf[2] = x0; sf[3] = x0;
1043
+ sf[4] = x0; sf[5] = x0; sf[6] = x0; sf[7] = x0;
1044
+ }
1045
+
1046
+ //! Set all eight SP-FP floats.
1047
+ ASMJIT_INLINE void setF32(
1048
+ float x0, float x1, float x2, float x3,
1049
+ float x4, float x5, float x6, float x7) noexcept {
1050
+
1051
+ sf[0] = x0; sf[1] = x1; sf[2] = x2; sf[3] = x3;
1052
+ sf[4] = x4; sf[5] = x5; sf[6] = x6; sf[7] = x7;
1053
+ }
1054
+
1055
+ //! Set all four DP-FP floats.
1056
+ ASMJIT_INLINE void setF64(double x0) noexcept {
1057
+ df[0] = x0; df[1] = x0; df[2] = x0; df[3] = x0;
1058
+ }
1059
+
1060
+ //! Set all four DP-FP floats.
1061
+ ASMJIT_INLINE void setF64(double x0, double x1, double x2, double x3) noexcept {
1062
+ df[0] = x0; df[1] = x1; df[2] = x2; df[3] = x3;
1063
+ }
1064
+
1065
+ // --------------------------------------------------------------------------
1066
+ // [Members]
1067
+ // --------------------------------------------------------------------------
1068
+
1069
+ //! Array of thirty two 8-bit signed integers.
1070
+ int8_t sb[32];
1071
+ //! Array of thirty two 8-bit unsigned integers.
1072
+ uint8_t ub[32];
1073
+ //! Array of sixteen 16-bit signed integers.
1074
+ int16_t sw[16];
1075
+ //! Array of sixteen 16-bit unsigned integers.
1076
+ uint16_t uw[16];
1077
+ //! Array of eight 32-bit signed integers.
1078
+ int32_t sd[8];
1079
+ //! Array of eight 32-bit unsigned integers.
1080
+ uint32_t ud[8];
1081
+ //! Array of four 64-bit signed integers.
1082
+ int64_t sq[4];
1083
+ //! Array of four 64-bit unsigned integers.
1084
+ uint64_t uq[4];
1085
+
1086
+ //! Array of eight 32-bit single precision floating points.
1087
+ float sf[8];
1088
+ //! Array of four 64-bit double precision floating points.
1089
+ double df[4];
1090
+ };
1091
+
1092
+ //! \}
1093
+
1094
+ } // asmjit namespace
1095
+ } // namespace PLMD
1096
+
1097
+ // [Api-End]
1098
+ #include "./asmjit_apiend.h"
1099
+
1100
+ // [Guard]
1101
+ #endif // _ASMJIT_BASE_SIMDTYPES_H
1102
+ #pragma GCC diagnostic pop
1103
+ #endif // __PLUMED_HAS_ASMJIT
1104
+ #endif