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.

1261 lines
33KB

  1. ;*****************************************************************************
  2. ;* x86inc.asm: x264asm abstraction layer
  3. ;*****************************************************************************
  4. ;* Copyright (C) 2005-2012 x264 project
  5. ;*
  6. ;* Authors: Loren Merritt <lorenm@u.washington.edu>
  7. ;* Anton Mitrofanov <BugMaster@narod.ru>
  8. ;* Jason Garrett-Glaser <darkshikari@gmail.com>
  9. ;* Henrik Gramner <hengar-6@student.ltu.se>
  10. ;*
  11. ;* Permission to use, copy, modify, and/or distribute this software for any
  12. ;* purpose with or without fee is hereby granted, provided that the above
  13. ;* copyright notice and this permission notice appear in all copies.
  14. ;*
  15. ;* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  16. ;* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  17. ;* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  18. ;* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. ;* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  20. ;* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  21. ;* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22. ;*****************************************************************************
  23. ; This is a header file for the x264ASM assembly language, which uses
  24. ; NASM/YASM syntax combined with a large number of macros to provide easy
  25. ; abstraction between different calling conventions (x86_32, win64, linux64).
  26. ; It also has various other useful features to simplify writing the kind of
  27. ; DSP functions that are most often used in x264.
  28. ; Unlike the rest of x264, this file is available under an ISC license, as it
  29. ; has significant usefulness outside of x264 and we want it to be available
  30. ; to the largest audience possible. Of course, if you modify it for your own
  31. ; purposes to add a new feature, we strongly encourage contributing a patch
  32. ; as this feature might be useful for others as well. Send patches or ideas
  33. ; to x264-devel@videolan.org .
  34. %ifndef program_name
  35. %define program_name x264
  36. %endif
  37. %define WIN64 0
  38. %define UNIX64 0
  39. %if ARCH_X86_64
  40. %ifidn __OUTPUT_FORMAT__,win32
  41. %define WIN64 1
  42. %elifidn __OUTPUT_FORMAT__,win64
  43. %define WIN64 1
  44. %else
  45. %define UNIX64 1
  46. %endif
  47. %endif
  48. %ifdef PREFIX
  49. %define mangle(x) _ %+ x
  50. %else
  51. %define mangle(x) x
  52. %endif
  53. ; Name of the .rodata section.
  54. ; Kludge: Something on OS X fails to align .rodata even given an align attribute,
  55. ; so use a different read-only section.
  56. %macro SECTION_RODATA 0-1 16
  57. %ifidn __OUTPUT_FORMAT__,macho64
  58. SECTION .text align=%1
  59. %elifidn __OUTPUT_FORMAT__,macho
  60. SECTION .text align=%1
  61. fakegot:
  62. %elifidn __OUTPUT_FORMAT__,aout
  63. section .text
  64. %else
  65. SECTION .rodata align=%1
  66. %endif
  67. %endmacro
  68. ; aout does not support align=
  69. %macro SECTION_TEXT 0-1 16
  70. %ifidn __OUTPUT_FORMAT__,aout
  71. SECTION .text
  72. %else
  73. SECTION .text align=%1
  74. %endif
  75. %endmacro
  76. %if WIN64
  77. %define PIC
  78. %elif ARCH_X86_64 == 0
  79. ; x86_32 doesn't require PIC.
  80. ; Some distros prefer shared objects to be PIC, but nothing breaks if
  81. ; the code contains a few textrels, so we'll skip that complexity.
  82. %undef PIC
  83. %endif
  84. %ifdef PIC
  85. default rel
  86. %endif
  87. %macro CPUNOP 1
  88. %if HAVE_CPUNOP
  89. CPU %1
  90. %endif
  91. %endmacro
  92. ; Always use long nops (reduces 0x90 spam in disassembly on x86_32)
  93. CPUNOP amdnop
  94. ; Macros to eliminate most code duplication between x86_32 and x86_64:
  95. ; Currently this works only for leaf functions which load all their arguments
  96. ; into registers at the start, and make no other use of the stack. Luckily that
  97. ; covers most of x264's asm.
  98. ; PROLOGUE:
  99. ; %1 = number of arguments. loads them from stack if needed.
  100. ; %2 = number of registers used. pushes callee-saved regs if needed.
  101. ; %3 = number of xmm registers used. pushes callee-saved xmm regs if needed.
  102. ; %4 = (optional) stack size to be allocated. If not aligned (x86-32 ICC 10.x,
  103. ; MSVC or YMM), the stack will be manually aligned (to 16 or 32 bytes),
  104. ; and an extra register will be allocated to hold the original stack
  105. ; pointer (to not invalidate r0m etc.). To prevent the use of an extra
  106. ; register as stack pointer, request a negative stack size.
  107. ; %4+/%5+ = list of names to define to registers
  108. ; PROLOGUE can also be invoked by adding the same options to cglobal
  109. ; e.g.
  110. ; cglobal foo, 2,3,0, dst, src, tmp
  111. ; declares a function (foo), taking two args (dst and src) and one local variable (tmp)
  112. ; TODO Some functions can use some args directly from the stack. If they're the
  113. ; last args then you can just not declare them, but if they're in the middle
  114. ; we need more flexible macro.
  115. ; RET:
  116. ; Pops anything that was pushed by PROLOGUE, and returns.
  117. ; REP_RET:
  118. ; Same, but if it doesn't pop anything it becomes a 2-byte ret, for athlons
  119. ; which are slow when a normal ret follows a branch.
  120. ; registers:
  121. ; rN and rNq are the native-size register holding function argument N
  122. ; rNd, rNw, rNb are dword, word, and byte size
  123. ; rNh is the high 8 bits of the word size
  124. ; rNm is the original location of arg N (a register or on the stack), dword
  125. ; rNmp is native size
  126. %macro DECLARE_REG 2-3
  127. %define r%1q %2
  128. %define r%1d %2d
  129. %define r%1w %2w
  130. %define r%1b %2b
  131. %define r%1h %2h
  132. %define %2q %2
  133. %if %0 == 2
  134. %define r%1m %2d
  135. %define r%1mp %2
  136. %elif ARCH_X86_64 ; memory
  137. %define r%1m [rstk + stack_offset + %3]
  138. %define r%1mp qword r %+ %1m
  139. %else
  140. %define r%1m [rstk + stack_offset + %3]
  141. %define r%1mp dword r %+ %1m
  142. %endif
  143. %define r%1 %2
  144. %endmacro
  145. %macro DECLARE_REG_SIZE 3
  146. %define r%1q r%1
  147. %define e%1q r%1
  148. %define r%1d e%1
  149. %define e%1d e%1
  150. %define r%1w %1
  151. %define e%1w %1
  152. %define r%1h %3
  153. %define e%1h %3
  154. %define r%1b %2
  155. %define e%1b %2
  156. %if ARCH_X86_64 == 0
  157. %define r%1 e%1
  158. %endif
  159. %endmacro
  160. DECLARE_REG_SIZE ax, al, ah
  161. DECLARE_REG_SIZE bx, bl, bh
  162. DECLARE_REG_SIZE cx, cl, ch
  163. DECLARE_REG_SIZE dx, dl, dh
  164. DECLARE_REG_SIZE si, sil, null
  165. DECLARE_REG_SIZE di, dil, null
  166. DECLARE_REG_SIZE bp, bpl, null
  167. ; t# defines for when per-arch register allocation is more complex than just function arguments
  168. %macro DECLARE_REG_TMP 1-*
  169. %assign %%i 0
  170. %rep %0
  171. CAT_XDEFINE t, %%i, r%1
  172. %assign %%i %%i+1
  173. %rotate 1
  174. %endrep
  175. %endmacro
  176. %macro DECLARE_REG_TMP_SIZE 0-*
  177. %rep %0
  178. %define t%1q t%1 %+ q
  179. %define t%1d t%1 %+ d
  180. %define t%1w t%1 %+ w
  181. %define t%1h t%1 %+ h
  182. %define t%1b t%1 %+ b
  183. %rotate 1
  184. %endrep
  185. %endmacro
  186. DECLARE_REG_TMP_SIZE 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14
  187. %if ARCH_X86_64
  188. %define gprsize 8
  189. %else
  190. %define gprsize 4
  191. %endif
  192. %macro PUSH 1
  193. push %1
  194. %ifidn rstk, rsp
  195. %assign stack_offset stack_offset+gprsize
  196. %endif
  197. %endmacro
  198. %macro POP 1
  199. pop %1
  200. %ifidn rstk, rsp
  201. %assign stack_offset stack_offset-gprsize
  202. %endif
  203. %endmacro
  204. %macro PUSH_IF_USED 1-*
  205. %rep %0
  206. %if %1 < regs_used
  207. PUSH r%1
  208. %endif
  209. %rotate 1
  210. %endrep
  211. %endmacro
  212. %macro POP_IF_USED 1-*
  213. %rep %0
  214. %if %1 < regs_used
  215. pop r%1
  216. %endif
  217. %rotate 1
  218. %endrep
  219. %endmacro
  220. %macro LOAD_IF_USED 1-*
  221. %rep %0
  222. %if %1 < num_args
  223. mov r%1, r %+ %1 %+ mp
  224. %endif
  225. %rotate 1
  226. %endrep
  227. %endmacro
  228. %macro SUB 2
  229. sub %1, %2
  230. %ifidn %1, rstk
  231. %assign stack_offset stack_offset+(%2)
  232. %endif
  233. %endmacro
  234. %macro ADD 2
  235. add %1, %2
  236. %ifidn %1, rstk
  237. %assign stack_offset stack_offset-(%2)
  238. %endif
  239. %endmacro
  240. %macro movifnidn 2
  241. %ifnidn %1, %2
  242. mov %1, %2
  243. %endif
  244. %endmacro
  245. %macro movsxdifnidn 2
  246. %ifnidn %1, %2
  247. movsxd %1, %2
  248. %endif
  249. %endmacro
  250. %macro ASSERT 1
  251. %if (%1) == 0
  252. %error assert failed
  253. %endif
  254. %endmacro
  255. %macro DEFINE_ARGS 0-*
  256. %ifdef n_arg_names
  257. %assign %%i 0
  258. %rep n_arg_names
  259. CAT_UNDEF arg_name %+ %%i, q
  260. CAT_UNDEF arg_name %+ %%i, d
  261. CAT_UNDEF arg_name %+ %%i, w
  262. CAT_UNDEF arg_name %+ %%i, h
  263. CAT_UNDEF arg_name %+ %%i, b
  264. CAT_UNDEF arg_name %+ %%i, m
  265. CAT_UNDEF arg_name %+ %%i, mp
  266. CAT_UNDEF arg_name, %%i
  267. %assign %%i %%i+1
  268. %endrep
  269. %endif
  270. %xdefine %%stack_offset stack_offset
  271. %undef stack_offset ; so that the current value of stack_offset doesn't get baked in by xdefine
  272. %assign %%i 0
  273. %rep %0
  274. %xdefine %1q r %+ %%i %+ q
  275. %xdefine %1d r %+ %%i %+ d
  276. %xdefine %1w r %+ %%i %+ w
  277. %xdefine %1h r %+ %%i %+ h
  278. %xdefine %1b r %+ %%i %+ b
  279. %xdefine %1m r %+ %%i %+ m
  280. %xdefine %1mp r %+ %%i %+ mp
  281. CAT_XDEFINE arg_name, %%i, %1
  282. %assign %%i %%i+1
  283. %rotate 1
  284. %endrep
  285. %xdefine stack_offset %%stack_offset
  286. %assign n_arg_names %0
  287. %endmacro
  288. %macro ALLOC_STACK 1-2 0 ; stack_size, n_xmm_regs (for win64 only)
  289. %ifnum %1
  290. %if %1 != 0
  291. %assign %%stack_alignment ((mmsize + 15) & ~15)
  292. %assign stack_size %1
  293. %if stack_size < 0
  294. %assign stack_size -stack_size
  295. %endif
  296. %assign xmm_regs_used %2
  297. %if mmsize <= 16 && HAVE_ALIGNED_STACK
  298. %assign stack_size_padded stack_size + %%stack_alignment - gprsize - (stack_offset & (%%stack_alignment - 1))
  299. %if xmm_regs_used > 6
  300. %assign stack_size_padded stack_size_padded + (xmm_regs_used - 6) * 16
  301. %endif
  302. SUB rsp, stack_size_padded
  303. %else
  304. %assign reg_num (regs_used - 1)
  305. %xdefine rstk r %+ reg_num
  306. ; align stack, and save original stack location directly above
  307. ; it, i.e. in [rsp+stack_size_padded], so we can restore the
  308. ; stack in a single instruction (i.e. mov rsp, rstk or mov
  309. ; rsp, [rsp+stack_size_padded])
  310. mov rstk, rsp
  311. %assign stack_size_padded stack_size
  312. %if xmm_regs_used > 6
  313. %assign stack_size_padded stack_size_padded + (xmm_regs_used - 6) * 16
  314. %endif
  315. %if %1 < 0 ; need to store rsp on stack
  316. sub rsp, gprsize+stack_size_padded
  317. and rsp, ~(%%stack_alignment-1)
  318. %xdefine rstkm [rsp+stack_size_padded]
  319. mov rstkm, rstk
  320. %else ; can keep rsp in rstk during whole function
  321. sub rsp, stack_size_padded
  322. and rsp, ~(%%stack_alignment-1)
  323. %xdefine rstkm rstk
  324. %endif
  325. %endif
  326. %if xmm_regs_used > 6
  327. WIN64_PUSH_XMM
  328. %endif
  329. %endif
  330. %endif
  331. %endmacro
  332. %macro SETUP_STACK_POINTER 1
  333. %ifnum %1
  334. %if %1 != 0 && (HAVE_ALIGNED_STACK == 0 || mmsize == 32)
  335. %if %1 > 0
  336. %assign regs_used (regs_used + 1)
  337. %elif ARCH_X86_64 && regs_used == num_args && num_args <= 4 + UNIX64 * 2
  338. %warning "Stack pointer will overwrite register argument"
  339. %endif
  340. %endif
  341. %endif
  342. %endmacro
  343. %macro DEFINE_ARGS_INTERNAL 3+
  344. %ifnum %2
  345. DEFINE_ARGS %3
  346. %elif %1 == 4
  347. DEFINE_ARGS %2
  348. %elif %1 > 4
  349. DEFINE_ARGS %2, %3
  350. %endif
  351. %endmacro
  352. %if WIN64 ; Windows x64 ;=================================================
  353. DECLARE_REG 0, rcx
  354. DECLARE_REG 1, rdx
  355. DECLARE_REG 2, R8
  356. DECLARE_REG 3, R9
  357. DECLARE_REG 4, R10, 40
  358. DECLARE_REG 5, R11, 48
  359. DECLARE_REG 6, rax, 56
  360. DECLARE_REG 7, rdi, 64
  361. DECLARE_REG 8, rsi, 72
  362. DECLARE_REG 9, rbx, 80
  363. DECLARE_REG 10, rbp, 88
  364. DECLARE_REG 11, R12, 96
  365. DECLARE_REG 12, R13, 104
  366. DECLARE_REG 13, R14, 112
  367. DECLARE_REG 14, R15, 120
  368. %macro PROLOGUE 2-5+ 0 ; #args, #regs, #xmm_regs, [stack_size,] arg_names...
  369. %assign num_args %1
  370. %assign regs_used %2
  371. SETUP_STACK_POINTER %4
  372. ASSERT regs_used >= num_args
  373. ASSERT regs_used <= 15
  374. PUSH_IF_USED 7, 8, 9, 10, 11, 12, 13, 14
  375. %assign xmm_regs_used 0
  376. ALLOC_STACK %4, %3
  377. %if mmsize != 8 && stack_size == 0
  378. WIN64_SPILL_XMM %3
  379. %endif
  380. LOAD_IF_USED 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
  381. DEFINE_ARGS_INTERNAL %0, %4, %5
  382. %endmacro
  383. %macro WIN64_PUSH_XMM 0
  384. %assign %%i xmm_regs_used
  385. %rep (xmm_regs_used-6)
  386. %assign %%i %%i-1
  387. movdqa [rsp + (%%i-6)*16 + stack_size], xmm %+ %%i
  388. %endrep
  389. %endmacro
  390. %macro WIN64_SPILL_XMM 1
  391. %assign xmm_regs_used %1
  392. ASSERT xmm_regs_used <= 16
  393. %if xmm_regs_used > 6
  394. %assign stack_size_padded (xmm_regs_used-6)*16+16-gprsize-(stack_offset&15)
  395. SUB rsp, stack_size_padded
  396. WIN64_PUSH_XMM
  397. %endif
  398. %endmacro
  399. %macro WIN64_RESTORE_XMM_INTERNAL 1
  400. %if xmm_regs_used > 6
  401. %assign %%i xmm_regs_used
  402. %rep (xmm_regs_used-6)
  403. %assign %%i %%i-1
  404. movdqa xmm %+ %%i, [%1 + (%%i-6)*16+stack_size]
  405. %endrep
  406. %endif
  407. %if stack_size_padded > 0
  408. %if stack_size > 0 && (mmsize == 32 || HAVE_ALIGNED_STACK == 0)
  409. mov rsp, rstkm
  410. %else
  411. add %1, stack_size_padded
  412. %endif
  413. %endif
  414. %endmacro
  415. %macro WIN64_RESTORE_XMM 1
  416. WIN64_RESTORE_XMM_INTERNAL %1
  417. %assign stack_offset (stack_offset-stack_size_padded)
  418. %assign xmm_regs_used 0
  419. %endmacro
  420. %define has_epilogue regs_used > 7 || xmm_regs_used > 6 || mmsize == 32 || stack_size > 0
  421. %macro RET 0
  422. WIN64_RESTORE_XMM_INTERNAL rsp
  423. POP_IF_USED 14, 13, 12, 11, 10, 9, 8, 7
  424. %if mmsize == 32
  425. vzeroupper
  426. %endif
  427. ret
  428. %endmacro
  429. %elif ARCH_X86_64 ; *nix x64 ;=============================================
  430. DECLARE_REG 0, rdi
  431. DECLARE_REG 1, rsi
  432. DECLARE_REG 2, rdx
  433. DECLARE_REG 3, rcx
  434. DECLARE_REG 4, R8
  435. DECLARE_REG 5, R9
  436. DECLARE_REG 6, rax, 8
  437. DECLARE_REG 7, R10, 16
  438. DECLARE_REG 8, R11, 24
  439. DECLARE_REG 9, rbx, 32
  440. DECLARE_REG 10, rbp, 40
  441. DECLARE_REG 11, R12, 48
  442. DECLARE_REG 12, R13, 56
  443. DECLARE_REG 13, R14, 64
  444. DECLARE_REG 14, R15, 72
  445. %macro PROLOGUE 2-5+ ; #args, #regs, #xmm_regs, [stack_size,] arg_names...
  446. %assign num_args %1
  447. %assign regs_used %2
  448. SETUP_STACK_POINTER %4
  449. ASSERT regs_used >= num_args
  450. ASSERT regs_used <= 15
  451. PUSH_IF_USED 9, 10, 11, 12, 13, 14
  452. ALLOC_STACK %4
  453. LOAD_IF_USED 6, 7, 8, 9, 10, 11, 12, 13, 14
  454. DEFINE_ARGS_INTERNAL %0, %4, %5
  455. %endmacro
  456. %define has_epilogue regs_used > 9 || mmsize == 32 || stack_size > 0
  457. %macro RET 0
  458. %if stack_size_padded > 0
  459. %if mmsize == 32 || HAVE_ALIGNED_STACK == 0
  460. mov rsp, rstkm
  461. %else
  462. add rsp, stack_size_padded
  463. %endif
  464. %endif
  465. POP_IF_USED 14, 13, 12, 11, 10, 9
  466. %if mmsize == 32
  467. vzeroupper
  468. %endif
  469. ret
  470. %endmacro
  471. %else ; X86_32 ;==============================================================
  472. DECLARE_REG 0, eax, 4
  473. DECLARE_REG 1, ecx, 8
  474. DECLARE_REG 2, edx, 12
  475. DECLARE_REG 3, ebx, 16
  476. DECLARE_REG 4, esi, 20
  477. DECLARE_REG 5, edi, 24
  478. DECLARE_REG 6, ebp, 28
  479. %define rsp esp
  480. %macro DECLARE_ARG 1-*
  481. %rep %0
  482. %define r%1m [rstk + stack_offset + 4*%1 + 4]
  483. %define r%1mp dword r%1m
  484. %rotate 1
  485. %endrep
  486. %endmacro
  487. DECLARE_ARG 7, 8, 9, 10, 11, 12, 13, 14
  488. %macro PROLOGUE 2-5+ ; #args, #regs, #xmm_regs, [stack_size,] arg_names...
  489. %assign num_args %1
  490. %assign regs_used %2
  491. %if regs_used > 7
  492. %assign regs_used 7
  493. %endif
  494. SETUP_STACK_POINTER %4
  495. ASSERT regs_used <= 7
  496. ASSERT regs_used >= num_args
  497. PUSH_IF_USED 3, 4, 5, 6
  498. ALLOC_STACK %4
  499. LOAD_IF_USED 0, 1, 2, 3, 4, 5, 6
  500. DEFINE_ARGS_INTERNAL %0, %4, %5
  501. %endmacro
  502. %define has_epilogue regs_used > 3 || mmsize == 32 || stack_size > 0
  503. %macro RET 0
  504. %if stack_size_padded > 0
  505. %if mmsize == 32 || HAVE_ALIGNED_STACK == 0
  506. mov rsp, rstkm
  507. %else
  508. add rsp, stack_size_padded
  509. %endif
  510. %endif
  511. POP_IF_USED 6, 5, 4, 3
  512. %if mmsize == 32
  513. vzeroupper
  514. %endif
  515. ret
  516. %endmacro
  517. %endif ;======================================================================
  518. %if WIN64 == 0
  519. %macro WIN64_SPILL_XMM 1
  520. %endmacro
  521. %macro WIN64_RESTORE_XMM 1
  522. %endmacro
  523. %macro WIN64_PUSH_XMM 0
  524. %endmacro
  525. %endif
  526. %macro REP_RET 0
  527. %if has_epilogue
  528. RET
  529. %else
  530. rep ret
  531. %endif
  532. %endmacro
  533. %macro TAIL_CALL 2 ; callee, is_nonadjacent
  534. %if has_epilogue
  535. call %1
  536. RET
  537. %elif %2
  538. jmp %1
  539. %endif
  540. %endmacro
  541. ;=============================================================================
  542. ; arch-independent part
  543. ;=============================================================================
  544. %assign function_align 16
  545. ; Begin a function.
  546. ; Applies any symbol mangling needed for C linkage, and sets up a define such that
  547. ; subsequent uses of the function name automatically refer to the mangled version.
  548. ; Appends cpuflags to the function name if cpuflags has been specified.
  549. %macro cglobal 1-2+ ; name, [PROLOGUE args]
  550. %if %0 == 1
  551. cglobal_internal %1 %+ SUFFIX
  552. %else
  553. cglobal_internal %1 %+ SUFFIX, %2
  554. %endif
  555. %endmacro
  556. %macro cglobal_internal 1-2+
  557. %ifndef cglobaled_%1
  558. %xdefine %1 mangle(program_name %+ _ %+ %1)
  559. %xdefine %1.skip_prologue %1 %+ .skip_prologue
  560. CAT_XDEFINE cglobaled_, %1, 1
  561. %endif
  562. %xdefine current_function %1
  563. %ifidn __OUTPUT_FORMAT__,elf
  564. global %1:function hidden
  565. %else
  566. global %1
  567. %endif
  568. align function_align
  569. %1:
  570. RESET_MM_PERMUTATION ; not really needed, but makes disassembly somewhat nicer
  571. %xdefine rstk rsp
  572. %assign stack_offset 0
  573. %assign stack_size 0
  574. %assign stack_size_padded 0
  575. %if %0 > 1
  576. PROLOGUE %2
  577. %endif
  578. %endmacro
  579. %macro cextern 1
  580. %xdefine %1 mangle(program_name %+ _ %+ %1)
  581. CAT_XDEFINE cglobaled_, %1, 1
  582. extern %1
  583. %endmacro
  584. ; like cextern, but without the prefix
  585. %macro cextern_naked 1
  586. %xdefine %1 mangle(%1)
  587. CAT_XDEFINE cglobaled_, %1, 1
  588. extern %1
  589. %endmacro
  590. %macro const 2+
  591. %xdefine %1 mangle(program_name %+ _ %+ %1)
  592. global %1
  593. %1: %2
  594. %endmacro
  595. ; This is needed for ELF, otherwise the GNU linker assumes the stack is
  596. ; executable by default.
  597. %ifidn __OUTPUT_FORMAT__,elf
  598. SECTION .note.GNU-stack noalloc noexec nowrite progbits
  599. %endif
  600. ; cpuflags
  601. %assign cpuflags_mmx (1<<0)
  602. %assign cpuflags_mmx2 (1<<1) | cpuflags_mmx
  603. %assign cpuflags_3dnow (1<<2) | cpuflags_mmx
  604. %assign cpuflags_3dnowext (1<<3) | cpuflags_3dnow
  605. %assign cpuflags_sse (1<<4) | cpuflags_mmx2
  606. %assign cpuflags_sse2 (1<<5) | cpuflags_sse
  607. %assign cpuflags_sse2slow (1<<6) | cpuflags_sse2
  608. %assign cpuflags_sse3 (1<<7) | cpuflags_sse2
  609. %assign cpuflags_ssse3 (1<<8) | cpuflags_sse3
  610. %assign cpuflags_sse4 (1<<9) | cpuflags_ssse3
  611. %assign cpuflags_sse42 (1<<10)| cpuflags_sse4
  612. %assign cpuflags_avx (1<<11)| cpuflags_sse42
  613. %assign cpuflags_xop (1<<12)| cpuflags_avx
  614. %assign cpuflags_fma4 (1<<13)| cpuflags_avx
  615. %assign cpuflags_avx2 (1<<14)| cpuflags_avx
  616. %assign cpuflags_fma3 (1<<15)| cpuflags_avx
  617. %assign cpuflags_cache32 (1<<16)
  618. %assign cpuflags_cache64 (1<<17)
  619. %assign cpuflags_slowctz (1<<18)
  620. %assign cpuflags_lzcnt (1<<19)
  621. %assign cpuflags_misalign (1<<20)
  622. %assign cpuflags_aligned (1<<21) ; not a cpu feature, but a function variant
  623. %assign cpuflags_atom (1<<22)
  624. %assign cpuflags_bmi1 (1<<23)
  625. %assign cpuflags_bmi2 (1<<24)|cpuflags_bmi1
  626. %assign cpuflags_tbm (1<<25)|cpuflags_bmi1
  627. %define cpuflag(x) ((cpuflags & (cpuflags_ %+ x)) == (cpuflags_ %+ x))
  628. %define notcpuflag(x) ((cpuflags & (cpuflags_ %+ x)) != (cpuflags_ %+ x))
  629. ; Takes up to 2 cpuflags from the above list.
  630. ; All subsequent functions (up to the next INIT_CPUFLAGS) is built for the specified cpu.
  631. ; You shouldn't need to invoke this macro directly, it's a subroutine for INIT_MMX &co.
  632. %macro INIT_CPUFLAGS 0-2
  633. CPUNOP amdnop
  634. %if %0 >= 1
  635. %xdefine cpuname %1
  636. %assign cpuflags cpuflags_%1
  637. %if %0 >= 2
  638. %xdefine cpuname %1_%2
  639. %assign cpuflags cpuflags | cpuflags_%2
  640. %endif
  641. %xdefine SUFFIX _ %+ cpuname
  642. %if cpuflag(avx)
  643. %assign avx_enabled 1
  644. %endif
  645. %if mmsize == 16 && notcpuflag(sse2)
  646. %define mova movaps
  647. %define movu movups
  648. %define movnta movntps
  649. %endif
  650. %if cpuflag(aligned)
  651. %define movu mova
  652. %elifidn %1, sse3
  653. %define movu lddqu
  654. %endif
  655. %if notcpuflag(mmx2)
  656. CPUNOP basicnop
  657. %endif
  658. %else
  659. %xdefine SUFFIX
  660. %undef cpuname
  661. %undef cpuflags
  662. %endif
  663. %endmacro
  664. ; merge mmx and sse*
  665. %macro CAT_XDEFINE 3
  666. %xdefine %1%2 %3
  667. %endmacro
  668. %macro CAT_UNDEF 2
  669. %undef %1%2
  670. %endmacro
  671. %macro INIT_MMX 0-1+
  672. %assign avx_enabled 0
  673. %define RESET_MM_PERMUTATION INIT_MMX %1
  674. %define mmsize 8
  675. %define num_mmregs 8
  676. %define mova movq
  677. %define movu movq
  678. %define movh movd
  679. %define movnta movntq
  680. %assign %%i 0
  681. %rep 8
  682. CAT_XDEFINE m, %%i, mm %+ %%i
  683. CAT_XDEFINE nmm, %%i, %%i
  684. %assign %%i %%i+1
  685. %endrep
  686. %rep 8
  687. CAT_UNDEF m, %%i
  688. CAT_UNDEF nmm, %%i
  689. %assign %%i %%i+1
  690. %endrep
  691. INIT_CPUFLAGS %1
  692. %endmacro
  693. %macro INIT_XMM 0-1+
  694. %assign avx_enabled 0
  695. %define RESET_MM_PERMUTATION INIT_XMM %1
  696. %define mmsize 16
  697. %define num_mmregs 8
  698. %if ARCH_X86_64
  699. %define num_mmregs 16
  700. %endif
  701. %define mova movdqa
  702. %define movu movdqu
  703. %define movh movq
  704. %define movnta movntdq
  705. %assign %%i 0
  706. %rep num_mmregs
  707. CAT_XDEFINE m, %%i, xmm %+ %%i
  708. CAT_XDEFINE nxmm, %%i, %%i
  709. %assign %%i %%i+1
  710. %endrep
  711. INIT_CPUFLAGS %1
  712. %endmacro
  713. %macro INIT_YMM 0-1+
  714. %assign avx_enabled 1
  715. %define RESET_MM_PERMUTATION INIT_YMM %1
  716. %define mmsize 32
  717. %define num_mmregs 8
  718. %if ARCH_X86_64
  719. %define num_mmregs 16
  720. %endif
  721. %define mova vmovaps
  722. %define movu vmovups
  723. %undef movh
  724. %define movnta vmovntps
  725. %assign %%i 0
  726. %rep num_mmregs
  727. CAT_XDEFINE m, %%i, ymm %+ %%i
  728. CAT_XDEFINE nymm, %%i, %%i
  729. %assign %%i %%i+1
  730. %endrep
  731. INIT_CPUFLAGS %1
  732. %endmacro
  733. INIT_XMM
  734. ; I often want to use macros that permute their arguments. e.g. there's no
  735. ; efficient way to implement butterfly or transpose or dct without swapping some
  736. ; arguments.
  737. ;
  738. ; I would like to not have to manually keep track of the permutations:
  739. ; If I insert a permutation in the middle of a function, it should automatically
  740. ; change everything that follows. For more complex macros I may also have multiple
  741. ; implementations, e.g. the SSE2 and SSSE3 versions may have different permutations.
  742. ;
  743. ; Hence these macros. Insert a PERMUTE or some SWAPs at the end of a macro that
  744. ; permutes its arguments. It's equivalent to exchanging the contents of the
  745. ; registers, except that this way you exchange the register names instead, so it
  746. ; doesn't cost any cycles.
  747. %macro PERMUTE 2-* ; takes a list of pairs to swap
  748. %rep %0/2
  749. %xdefine tmp%2 m%2
  750. %xdefine ntmp%2 nm%2
  751. %rotate 2
  752. %endrep
  753. %rep %0/2
  754. %xdefine m%1 tmp%2
  755. %xdefine nm%1 ntmp%2
  756. %undef tmp%2
  757. %undef ntmp%2
  758. %rotate 2
  759. %endrep
  760. %endmacro
  761. %macro SWAP 2-* ; swaps a single chain (sometimes more concise than pairs)
  762. %rep %0-1
  763. %ifdef m%1
  764. %xdefine tmp m%1
  765. %xdefine m%1 m%2
  766. %xdefine m%2 tmp
  767. CAT_XDEFINE n, m%1, %1
  768. CAT_XDEFINE n, m%2, %2
  769. %else
  770. ; If we were called as "SWAP m0,m1" rather than "SWAP 0,1" infer the original numbers here.
  771. ; Be careful using this mode in nested macros though, as in some cases there may be
  772. ; other copies of m# that have already been dereferenced and don't get updated correctly.
  773. %xdefine %%n1 n %+ %1
  774. %xdefine %%n2 n %+ %2
  775. %xdefine tmp m %+ %%n1
  776. CAT_XDEFINE m, %%n1, m %+ %%n2
  777. CAT_XDEFINE m, %%n2, tmp
  778. CAT_XDEFINE n, m %+ %%n1, %%n1
  779. CAT_XDEFINE n, m %+ %%n2, %%n2
  780. %endif
  781. %undef tmp
  782. %rotate 1
  783. %endrep
  784. %endmacro
  785. ; If SAVE_MM_PERMUTATION is placed at the end of a function, then any later
  786. ; calls to that function will automatically load the permutation, so values can
  787. ; be returned in mmregs.
  788. %macro SAVE_MM_PERMUTATION 0-1
  789. %if %0
  790. %xdefine %%f %1_m
  791. %else
  792. %xdefine %%f current_function %+ _m
  793. %endif
  794. %assign %%i 0
  795. %rep num_mmregs
  796. CAT_XDEFINE %%f, %%i, m %+ %%i
  797. %assign %%i %%i+1
  798. %endrep
  799. %endmacro
  800. %macro LOAD_MM_PERMUTATION 1 ; name to load from
  801. %ifdef %1_m0
  802. %assign %%i 0
  803. %rep num_mmregs
  804. CAT_XDEFINE m, %%i, %1_m %+ %%i
  805. CAT_XDEFINE n, m %+ %%i, %%i
  806. %assign %%i %%i+1
  807. %endrep
  808. %endif
  809. %endmacro
  810. ; Append cpuflags to the callee's name iff the appended name is known and the plain name isn't
  811. %macro call 1
  812. call_internal %1 %+ SUFFIX, %1
  813. %endmacro
  814. %macro call_internal 2
  815. %xdefine %%i %2
  816. %ifndef cglobaled_%2
  817. %ifdef cglobaled_%1
  818. %xdefine %%i %1
  819. %endif
  820. %endif
  821. call %%i
  822. LOAD_MM_PERMUTATION %%i
  823. %endmacro
  824. ; Substitutions that reduce instruction size but are functionally equivalent
  825. %macro add 2
  826. %ifnum %2
  827. %if %2==128
  828. sub %1, -128
  829. %else
  830. add %1, %2
  831. %endif
  832. %else
  833. add %1, %2
  834. %endif
  835. %endmacro
  836. %macro sub 2
  837. %ifnum %2
  838. %if %2==128
  839. add %1, -128
  840. %else
  841. sub %1, %2
  842. %endif
  843. %else
  844. sub %1, %2
  845. %endif
  846. %endmacro
  847. ;=============================================================================
  848. ; AVX abstraction layer
  849. ;=============================================================================
  850. %assign i 0
  851. %rep 16
  852. %if i < 8
  853. CAT_XDEFINE sizeofmm, i, 8
  854. %endif
  855. CAT_XDEFINE sizeofxmm, i, 16
  856. CAT_XDEFINE sizeofymm, i, 32
  857. %assign i i+1
  858. %endrep
  859. %undef i
  860. %macro CHECK_AVX_INSTR_EMU 3-*
  861. %xdefine %%opcode %1
  862. %xdefine %%dst %2
  863. %rep %0-2
  864. %ifidn %%dst, %3
  865. %error non-avx emulation of ``%%opcode'' is not supported
  866. %endif
  867. %rotate 1
  868. %endrep
  869. %endmacro
  870. ;%1 == instruction
  871. ;%2 == 1 if float, 0 if int
  872. ;%3 == 1 if 4-operand (xmm, xmm, xmm, imm), 0 if 2- or 3-operand (xmm, xmm, xmm)
  873. ;%4 == number of operands given
  874. ;%5+: operands
  875. %macro RUN_AVX_INSTR 6-7+
  876. %ifid %6
  877. %define %%sizeofreg sizeof%6
  878. %elifid %5
  879. %define %%sizeofreg sizeof%5
  880. %else
  881. %define %%sizeofreg mmsize
  882. %endif
  883. %if %%sizeofreg==32
  884. %if %4>=3
  885. v%1 %5, %6, %7
  886. %else
  887. v%1 %5, %6
  888. %endif
  889. %else
  890. %if %%sizeofreg==8
  891. %define %%regmov movq
  892. %elif %2
  893. %define %%regmov movaps
  894. %else
  895. %define %%regmov movdqa
  896. %endif
  897. %if %4>=3+%3
  898. %ifnidn %5, %6
  899. %if avx_enabled && %%sizeofreg==16
  900. v%1 %5, %6, %7
  901. %else
  902. CHECK_AVX_INSTR_EMU {%1 %5, %6, %7}, %5, %7
  903. %%regmov %5, %6
  904. %1 %5, %7
  905. %endif
  906. %else
  907. %1 %5, %7
  908. %endif
  909. %elif %4>=3
  910. %1 %5, %6, %7
  911. %else
  912. %1 %5, %6
  913. %endif
  914. %endif
  915. %endmacro
  916. ; 3arg AVX ops with a memory arg can only have it in src2,
  917. ; whereas SSE emulation of 3arg prefers to have it in src1 (i.e. the mov).
  918. ; So, if the op is symmetric and the wrong one is memory, swap them.
  919. %macro RUN_AVX_INSTR1 8
  920. %assign %%swap 0
  921. %if avx_enabled
  922. %ifnid %6
  923. %assign %%swap 1
  924. %endif
  925. %elifnidn %5, %6
  926. %ifnid %7
  927. %assign %%swap 1
  928. %endif
  929. %endif
  930. %if %%swap && %3 == 0 && %8 == 1
  931. RUN_AVX_INSTR %1, %2, %3, %4, %5, %7, %6
  932. %else
  933. RUN_AVX_INSTR %1, %2, %3, %4, %5, %6, %7
  934. %endif
  935. %endmacro
  936. ;%1 == instruction
  937. ;%2 == 1 if float, 0 if int
  938. ;%3 == 1 if 4-operand (xmm, xmm, xmm, imm), 0 if 2- or 3-operand (xmm, xmm, xmm)
  939. ;%4 == 1 if symmetric (i.e. doesn't matter which src arg is which), 0 if not
  940. %macro AVX_INSTR 4
  941. %macro %1 2-9 fnord, fnord, fnord, %1, %2, %3, %4
  942. %ifidn %3, fnord
  943. RUN_AVX_INSTR %6, %7, %8, 2, %1, %2
  944. %elifidn %4, fnord
  945. RUN_AVX_INSTR1 %6, %7, %8, 3, %1, %2, %3, %9
  946. %elifidn %5, fnord
  947. RUN_AVX_INSTR %6, %7, %8, 4, %1, %2, %3, %4
  948. %else
  949. RUN_AVX_INSTR %6, %7, %8, 5, %1, %2, %3, %4, %5
  950. %endif
  951. %endmacro
  952. %endmacro
  953. AVX_INSTR addpd, 1, 0, 1
  954. AVX_INSTR addps, 1, 0, 1
  955. AVX_INSTR addsd, 1, 0, 1
  956. AVX_INSTR addss, 1, 0, 1
  957. AVX_INSTR addsubpd, 1, 0, 0
  958. AVX_INSTR addsubps, 1, 0, 0
  959. AVX_INSTR andpd, 1, 0, 1
  960. AVX_INSTR andps, 1, 0, 1
  961. AVX_INSTR andnpd, 1, 0, 0
  962. AVX_INSTR andnps, 1, 0, 0
  963. AVX_INSTR blendpd, 1, 0, 0
  964. AVX_INSTR blendps, 1, 0, 0
  965. AVX_INSTR blendvpd, 1, 0, 0
  966. AVX_INSTR blendvps, 1, 0, 0
  967. AVX_INSTR cmppd, 1, 0, 0
  968. AVX_INSTR cmpps, 1, 0, 0
  969. AVX_INSTR cmpsd, 1, 0, 0
  970. AVX_INSTR cmpss, 1, 0, 0
  971. AVX_INSTR cvtdq2ps, 1, 0, 0
  972. AVX_INSTR cvtpd2dq, 1, 0, 0
  973. AVX_INSTR cvtps2dq, 1, 0, 0
  974. AVX_INSTR divpd, 1, 0, 0
  975. AVX_INSTR divps, 1, 0, 0
  976. AVX_INSTR divsd, 1, 0, 0
  977. AVX_INSTR divss, 1, 0, 0
  978. AVX_INSTR dppd, 1, 1, 0
  979. AVX_INSTR dpps, 1, 1, 0
  980. AVX_INSTR haddpd, 1, 0, 0
  981. AVX_INSTR haddps, 1, 0, 0
  982. AVX_INSTR hsubpd, 1, 0, 0
  983. AVX_INSTR hsubps, 1, 0, 0
  984. AVX_INSTR maxpd, 1, 0, 1
  985. AVX_INSTR maxps, 1, 0, 1
  986. AVX_INSTR maxsd, 1, 0, 1
  987. AVX_INSTR maxss, 1, 0, 1
  988. AVX_INSTR minpd, 1, 0, 1
  989. AVX_INSTR minps, 1, 0, 1
  990. AVX_INSTR minsd, 1, 0, 1
  991. AVX_INSTR minss, 1, 0, 1
  992. AVX_INSTR movhlps, 1, 0, 0
  993. AVX_INSTR movlhps, 1, 0, 0
  994. AVX_INSTR movsd, 1, 0, 0
  995. AVX_INSTR movss, 1, 0, 0
  996. AVX_INSTR mpsadbw, 0, 1, 0
  997. AVX_INSTR mulpd, 1, 0, 1
  998. AVX_INSTR mulps, 1, 0, 1
  999. AVX_INSTR mulsd, 1, 0, 1
  1000. AVX_INSTR mulss, 1, 0, 1
  1001. AVX_INSTR orpd, 1, 0, 1
  1002. AVX_INSTR orps, 1, 0, 1
  1003. AVX_INSTR pabsb, 0, 0, 0
  1004. AVX_INSTR pabsw, 0, 0, 0
  1005. AVX_INSTR pabsd, 0, 0, 0
  1006. AVX_INSTR packsswb, 0, 0, 0
  1007. AVX_INSTR packssdw, 0, 0, 0
  1008. AVX_INSTR packuswb, 0, 0, 0
  1009. AVX_INSTR packusdw, 0, 0, 0
  1010. AVX_INSTR paddb, 0, 0, 1
  1011. AVX_INSTR paddw, 0, 0, 1
  1012. AVX_INSTR paddd, 0, 0, 1
  1013. AVX_INSTR paddq, 0, 0, 1
  1014. AVX_INSTR paddsb, 0, 0, 1
  1015. AVX_INSTR paddsw, 0, 0, 1
  1016. AVX_INSTR paddusb, 0, 0, 1
  1017. AVX_INSTR paddusw, 0, 0, 1
  1018. AVX_INSTR palignr, 0, 1, 0
  1019. AVX_INSTR pand, 0, 0, 1
  1020. AVX_INSTR pandn, 0, 0, 0
  1021. AVX_INSTR pavgb, 0, 0, 1
  1022. AVX_INSTR pavgw, 0, 0, 1
  1023. AVX_INSTR pblendvb, 0, 0, 0
  1024. AVX_INSTR pblendw, 0, 1, 0
  1025. AVX_INSTR pcmpestri, 0, 0, 0
  1026. AVX_INSTR pcmpestrm, 0, 0, 0
  1027. AVX_INSTR pcmpistri, 0, 0, 0
  1028. AVX_INSTR pcmpistrm, 0, 0, 0
  1029. AVX_INSTR pcmpeqb, 0, 0, 1
  1030. AVX_INSTR pcmpeqw, 0, 0, 1
  1031. AVX_INSTR pcmpeqd, 0, 0, 1
  1032. AVX_INSTR pcmpeqq, 0, 0, 1
  1033. AVX_INSTR pcmpgtb, 0, 0, 0
  1034. AVX_INSTR pcmpgtw, 0, 0, 0
  1035. AVX_INSTR pcmpgtd, 0, 0, 0
  1036. AVX_INSTR pcmpgtq, 0, 0, 0
  1037. AVX_INSTR phaddw, 0, 0, 0
  1038. AVX_INSTR phaddd, 0, 0, 0
  1039. AVX_INSTR phaddsw, 0, 0, 0
  1040. AVX_INSTR phsubw, 0, 0, 0
  1041. AVX_INSTR phsubd, 0, 0, 0
  1042. AVX_INSTR phsubsw, 0, 0, 0
  1043. AVX_INSTR pmaddwd, 0, 0, 1
  1044. AVX_INSTR pmaddubsw, 0, 0, 0
  1045. AVX_INSTR pmaxsb, 0, 0, 1
  1046. AVX_INSTR pmaxsw, 0, 0, 1
  1047. AVX_INSTR pmaxsd, 0, 0, 1
  1048. AVX_INSTR pmaxub, 0, 0, 1
  1049. AVX_INSTR pmaxuw, 0, 0, 1
  1050. AVX_INSTR pmaxud, 0, 0, 1
  1051. AVX_INSTR pminsb, 0, 0, 1
  1052. AVX_INSTR pminsw, 0, 0, 1
  1053. AVX_INSTR pminsd, 0, 0, 1
  1054. AVX_INSTR pminub, 0, 0, 1
  1055. AVX_INSTR pminuw, 0, 0, 1
  1056. AVX_INSTR pminud, 0, 0, 1
  1057. AVX_INSTR pmovmskb, 0, 0, 0
  1058. AVX_INSTR pmulhuw, 0, 0, 1
  1059. AVX_INSTR pmulhrsw, 0, 0, 1
  1060. AVX_INSTR pmulhw, 0, 0, 1
  1061. AVX_INSTR pmullw, 0, 0, 1
  1062. AVX_INSTR pmulld, 0, 0, 1
  1063. AVX_INSTR pmuludq, 0, 0, 1
  1064. AVX_INSTR pmuldq, 0, 0, 1
  1065. AVX_INSTR por, 0, 0, 1
  1066. AVX_INSTR psadbw, 0, 0, 1
  1067. AVX_INSTR pshufb, 0, 0, 0
  1068. AVX_INSTR pshufd, 0, 1, 0
  1069. AVX_INSTR pshufhw, 0, 1, 0
  1070. AVX_INSTR pshuflw, 0, 1, 0
  1071. AVX_INSTR psignb, 0, 0, 0
  1072. AVX_INSTR psignw, 0, 0, 0
  1073. AVX_INSTR psignd, 0, 0, 0
  1074. AVX_INSTR psllw, 0, 0, 0
  1075. AVX_INSTR pslld, 0, 0, 0
  1076. AVX_INSTR psllq, 0, 0, 0
  1077. AVX_INSTR pslldq, 0, 0, 0
  1078. AVX_INSTR psraw, 0, 0, 0
  1079. AVX_INSTR psrad, 0, 0, 0
  1080. AVX_INSTR psrlw, 0, 0, 0
  1081. AVX_INSTR psrld, 0, 0, 0
  1082. AVX_INSTR psrlq, 0, 0, 0
  1083. AVX_INSTR psrldq, 0, 0, 0
  1084. AVX_INSTR psubb, 0, 0, 0
  1085. AVX_INSTR psubw, 0, 0, 0
  1086. AVX_INSTR psubd, 0, 0, 0
  1087. AVX_INSTR psubq, 0, 0, 0
  1088. AVX_INSTR psubsb, 0, 0, 0
  1089. AVX_INSTR psubsw, 0, 0, 0
  1090. AVX_INSTR psubusb, 0, 0, 0
  1091. AVX_INSTR psubusw, 0, 0, 0
  1092. AVX_INSTR ptest, 0, 0, 0
  1093. AVX_INSTR punpckhbw, 0, 0, 0
  1094. AVX_INSTR punpckhwd, 0, 0, 0
  1095. AVX_INSTR punpckhdq, 0, 0, 0
  1096. AVX_INSTR punpckhqdq, 0, 0, 0
  1097. AVX_INSTR punpcklbw, 0, 0, 0
  1098. AVX_INSTR punpcklwd, 0, 0, 0
  1099. AVX_INSTR punpckldq, 0, 0, 0
  1100. AVX_INSTR punpcklqdq, 0, 0, 0
  1101. AVX_INSTR pxor, 0, 0, 1
  1102. AVX_INSTR shufps, 1, 1, 0
  1103. AVX_INSTR subpd, 1, 0, 0
  1104. AVX_INSTR subps, 1, 0, 0
  1105. AVX_INSTR subsd, 1, 0, 0
  1106. AVX_INSTR subss, 1, 0, 0
  1107. AVX_INSTR unpckhpd, 1, 0, 0
  1108. AVX_INSTR unpckhps, 1, 0, 0
  1109. AVX_INSTR unpcklpd, 1, 0, 0
  1110. AVX_INSTR unpcklps, 1, 0, 0
  1111. AVX_INSTR xorpd, 1, 0, 1
  1112. AVX_INSTR xorps, 1, 0, 1
  1113. ; 3DNow instructions, for sharing code between AVX, SSE and 3DN
  1114. AVX_INSTR pfadd, 1, 0, 1
  1115. AVX_INSTR pfsub, 1, 0, 0
  1116. AVX_INSTR pfmul, 1, 0, 1
  1117. ; base-4 constants for shuffles
  1118. %assign i 0
  1119. %rep 256
  1120. %assign j ((i>>6)&3)*1000 + ((i>>4)&3)*100 + ((i>>2)&3)*10 + (i&3)
  1121. %if j < 10
  1122. CAT_XDEFINE q000, j, i
  1123. %elif j < 100
  1124. CAT_XDEFINE q00, j, i
  1125. %elif j < 1000
  1126. CAT_XDEFINE q0, j, i
  1127. %else
  1128. CAT_XDEFINE q, j, i
  1129. %endif
  1130. %assign i i+1
  1131. %endrep
  1132. %undef i
  1133. %undef j
  1134. %macro FMA_INSTR 3
  1135. %macro %1 5-8 %1, %2, %3
  1136. %if cpuflag(xop) || cpuflag(fma4)
  1137. v%6 %1, %2, %3, %4
  1138. %else
  1139. %ifidn %1, %4
  1140. %7 %5, %2, %3
  1141. %8 %1, %4, %5
  1142. %else
  1143. %7 %1, %2, %3
  1144. %8 %1, %4
  1145. %endif
  1146. %endif
  1147. %endmacro
  1148. %endmacro
  1149. FMA_INSTR fmaddps, mulps, addps
  1150. FMA_INSTR pmacsdd, pmulld, paddd
  1151. FMA_INSTR pmacsww, pmullw, paddw
  1152. FMA_INSTR pmadcswd, pmaddwd, paddd
  1153. ; tzcnt is equivalent to "rep bsf" and is backwards-compatible with bsf.
  1154. ; This lets us use tzcnt without bumping the yasm version requirement yet.
  1155. %define tzcnt rep bsf