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.

1263 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 %+ %1 %+ m
  139. %else
  140. %define r%1m [rstk + stack_offset + %3]
  141. %define r%1mp dword r %+ %1 %+ m
  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 + (~stack_offset&8)], 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. SUB rsp, (xmm_regs_used-6)*16+16
  395. WIN64_PUSH_XMM
  396. %endif
  397. %endmacro
  398. %macro WIN64_RESTORE_XMM_INTERNAL 1
  399. %if xmm_regs_used > 6
  400. %assign %%i xmm_regs_used
  401. %rep (xmm_regs_used-6)
  402. %assign %%i %%i-1
  403. movdqa xmm %+ %%i, [%1 + (%%i-6)*16+stack_size+(~stack_offset&8)]
  404. %endrep
  405. %if stack_size_padded == 0
  406. add %1, (xmm_regs_used-6)*16+16
  407. %endif
  408. %endif
  409. %if stack_size_padded > 0
  410. %if stack_size > 0 && (mmsize == 32 || HAVE_ALIGNED_STACK == 0)
  411. mov rsp, rstkm
  412. %else
  413. add %1, stack_size_padded
  414. %endif
  415. %endif
  416. %endmacro
  417. %macro WIN64_RESTORE_XMM 1
  418. WIN64_RESTORE_XMM_INTERNAL %1
  419. %assign stack_offset (stack_offset-stack_size_padded)
  420. %assign xmm_regs_used 0
  421. %endmacro
  422. %define has_epilogue regs_used > 7 || xmm_regs_used > 6 || mmsize == 32 || stack_size > 0
  423. %macro RET 0
  424. WIN64_RESTORE_XMM_INTERNAL rsp
  425. POP_IF_USED 14, 13, 12, 11, 10, 9, 8, 7
  426. %if mmsize == 32
  427. vzeroupper
  428. %endif
  429. ret
  430. %endmacro
  431. %elif ARCH_X86_64 ; *nix x64 ;=============================================
  432. DECLARE_REG 0, rdi
  433. DECLARE_REG 1, rsi
  434. DECLARE_REG 2, rdx
  435. DECLARE_REG 3, rcx
  436. DECLARE_REG 4, R8
  437. DECLARE_REG 5, R9
  438. DECLARE_REG 6, rax, 8
  439. DECLARE_REG 7, R10, 16
  440. DECLARE_REG 8, R11, 24
  441. DECLARE_REG 9, rbx, 32
  442. DECLARE_REG 10, rbp, 40
  443. DECLARE_REG 11, R12, 48
  444. DECLARE_REG 12, R13, 56
  445. DECLARE_REG 13, R14, 64
  446. DECLARE_REG 14, R15, 72
  447. %macro PROLOGUE 2-5+ ; #args, #regs, #xmm_regs, [stack_size,] arg_names...
  448. %assign num_args %1
  449. %assign regs_used %2
  450. SETUP_STACK_POINTER %4
  451. ASSERT regs_used >= num_args
  452. ASSERT regs_used <= 15
  453. PUSH_IF_USED 9, 10, 11, 12, 13, 14
  454. ALLOC_STACK %4
  455. LOAD_IF_USED 6, 7, 8, 9, 10, 11, 12, 13, 14
  456. DEFINE_ARGS_INTERNAL %0, %4, %5
  457. %endmacro
  458. %define has_epilogue regs_used > 9 || mmsize == 32 || stack_size > 0
  459. %macro RET 0
  460. %if stack_size_padded > 0
  461. %if mmsize == 32 || HAVE_ALIGNED_STACK == 0
  462. mov rsp, rstkm
  463. %else
  464. add rsp, stack_size_padded
  465. %endif
  466. %endif
  467. POP_IF_USED 14, 13, 12, 11, 10, 9
  468. %if mmsize == 32
  469. vzeroupper
  470. %endif
  471. ret
  472. %endmacro
  473. %else ; X86_32 ;==============================================================
  474. DECLARE_REG 0, eax, 4
  475. DECLARE_REG 1, ecx, 8
  476. DECLARE_REG 2, edx, 12
  477. DECLARE_REG 3, ebx, 16
  478. DECLARE_REG 4, esi, 20
  479. DECLARE_REG 5, edi, 24
  480. DECLARE_REG 6, ebp, 28
  481. %define rsp esp
  482. %macro DECLARE_ARG 1-*
  483. %rep %0
  484. %define r%1m [rstk + stack_offset + 4*%1 + 4]
  485. %define r%1mp dword r%1m
  486. %rotate 1
  487. %endrep
  488. %endmacro
  489. DECLARE_ARG 7, 8, 9, 10, 11, 12, 13, 14
  490. %macro PROLOGUE 2-5+ ; #args, #regs, #xmm_regs, [stack_size,] arg_names...
  491. %assign num_args %1
  492. %assign regs_used %2
  493. %if regs_used > 7
  494. %assign regs_used 7
  495. %endif
  496. SETUP_STACK_POINTER %4
  497. ASSERT regs_used <= 7
  498. ASSERT regs_used >= num_args
  499. PUSH_IF_USED 3, 4, 5, 6
  500. ALLOC_STACK %4
  501. LOAD_IF_USED 0, 1, 2, 3, 4, 5, 6
  502. DEFINE_ARGS_INTERNAL %0, %4, %5
  503. %endmacro
  504. %define has_epilogue regs_used > 3 || mmsize == 32 || stack_size > 0
  505. %macro RET 0
  506. %if stack_size_padded > 0
  507. %if mmsize == 32 || HAVE_ALIGNED_STACK == 0
  508. mov rsp, rstkm
  509. %else
  510. add rsp, stack_size_padded
  511. %endif
  512. %endif
  513. POP_IF_USED 6, 5, 4, 3
  514. %if mmsize == 32
  515. vzeroupper
  516. %endif
  517. ret
  518. %endmacro
  519. %endif ;======================================================================
  520. %if WIN64 == 0
  521. %macro WIN64_SPILL_XMM 1
  522. %endmacro
  523. %macro WIN64_RESTORE_XMM 1
  524. %endmacro
  525. %macro WIN64_PUSH_XMM 0
  526. %endmacro
  527. %endif
  528. %macro REP_RET 0
  529. %if has_epilogue
  530. RET
  531. %else
  532. rep ret
  533. %endif
  534. %endmacro
  535. %macro TAIL_CALL 2 ; callee, is_nonadjacent
  536. %if has_epilogue
  537. call %1
  538. RET
  539. %elif %2
  540. jmp %1
  541. %endif
  542. %endmacro
  543. ;=============================================================================
  544. ; arch-independent part
  545. ;=============================================================================
  546. %assign function_align 16
  547. ; Begin a function.
  548. ; Applies any symbol mangling needed for C linkage, and sets up a define such that
  549. ; subsequent uses of the function name automatically refer to the mangled version.
  550. ; Appends cpuflags to the function name if cpuflags has been specified.
  551. %macro cglobal 1-2+ ; name, [PROLOGUE args]
  552. %if %0 == 1
  553. cglobal_internal %1 %+ SUFFIX
  554. %else
  555. cglobal_internal %1 %+ SUFFIX, %2
  556. %endif
  557. %endmacro
  558. %macro cglobal_internal 1-2+
  559. %ifndef cglobaled_%1
  560. %xdefine %1 mangle(program_name %+ _ %+ %1)
  561. %xdefine %1.skip_prologue %1 %+ .skip_prologue
  562. CAT_XDEFINE cglobaled_, %1, 1
  563. %endif
  564. %xdefine current_function %1
  565. %ifidn __OUTPUT_FORMAT__,elf
  566. global %1:function hidden
  567. %else
  568. global %1
  569. %endif
  570. align function_align
  571. %1:
  572. RESET_MM_PERMUTATION ; not really needed, but makes disassembly somewhat nicer
  573. %xdefine rstk rsp
  574. %assign stack_offset 0
  575. %assign stack_size 0
  576. %assign stack_size_padded 0
  577. %if %0 > 1
  578. PROLOGUE %2
  579. %endif
  580. %endmacro
  581. %macro cextern 1
  582. %xdefine %1 mangle(program_name %+ _ %+ %1)
  583. CAT_XDEFINE cglobaled_, %1, 1
  584. extern %1
  585. %endmacro
  586. ; like cextern, but without the prefix
  587. %macro cextern_naked 1
  588. %xdefine %1 mangle(%1)
  589. CAT_XDEFINE cglobaled_, %1, 1
  590. extern %1
  591. %endmacro
  592. %macro const 2+
  593. %xdefine %1 mangle(program_name %+ _ %+ %1)
  594. global %1
  595. %1: %2
  596. %endmacro
  597. ; This is needed for ELF, otherwise the GNU linker assumes the stack is
  598. ; executable by default.
  599. %ifidn __OUTPUT_FORMAT__,elf
  600. SECTION .note.GNU-stack noalloc noexec nowrite progbits
  601. %endif
  602. ; cpuflags
  603. %assign cpuflags_mmx (1<<0)
  604. %assign cpuflags_mmx2 (1<<1) | cpuflags_mmx
  605. %assign cpuflags_3dnow (1<<2) | cpuflags_mmx
  606. %assign cpuflags_3dnowext (1<<3) | cpuflags_3dnow
  607. %assign cpuflags_sse (1<<4) | cpuflags_mmx2
  608. %assign cpuflags_sse2 (1<<5) | cpuflags_sse
  609. %assign cpuflags_sse2slow (1<<6) | cpuflags_sse2
  610. %assign cpuflags_sse3 (1<<7) | cpuflags_sse2
  611. %assign cpuflags_ssse3 (1<<8) | cpuflags_sse3
  612. %assign cpuflags_sse4 (1<<9) | cpuflags_ssse3
  613. %assign cpuflags_sse42 (1<<10)| cpuflags_sse4
  614. %assign cpuflags_avx (1<<11)| cpuflags_sse42
  615. %assign cpuflags_xop (1<<12)| cpuflags_avx
  616. %assign cpuflags_fma4 (1<<13)| cpuflags_avx
  617. %assign cpuflags_avx2 (1<<14)| cpuflags_avx
  618. %assign cpuflags_fma3 (1<<15)| cpuflags_avx
  619. %assign cpuflags_cache32 (1<<16)
  620. %assign cpuflags_cache64 (1<<17)
  621. %assign cpuflags_slowctz (1<<18)
  622. %assign cpuflags_lzcnt (1<<19)
  623. %assign cpuflags_misalign (1<<20)
  624. %assign cpuflags_aligned (1<<21) ; not a cpu feature, but a function variant
  625. %assign cpuflags_atom (1<<22)
  626. %assign cpuflags_bmi1 (1<<23)
  627. %assign cpuflags_bmi2 (1<<24)|cpuflags_bmi1
  628. %assign cpuflags_tbm (1<<25)|cpuflags_bmi1
  629. %define cpuflag(x) ((cpuflags & (cpuflags_ %+ x)) == (cpuflags_ %+ x))
  630. %define notcpuflag(x) ((cpuflags & (cpuflags_ %+ x)) != (cpuflags_ %+ x))
  631. ; Takes up to 2 cpuflags from the above list.
  632. ; All subsequent functions (up to the next INIT_CPUFLAGS) is built for the specified cpu.
  633. ; You shouldn't need to invoke this macro directly, it's a subroutine for INIT_MMX &co.
  634. %macro INIT_CPUFLAGS 0-2
  635. CPUNOP amdnop
  636. %if %0 >= 1
  637. %xdefine cpuname %1
  638. %assign cpuflags cpuflags_%1
  639. %if %0 >= 2
  640. %xdefine cpuname %1_%2
  641. %assign cpuflags cpuflags | cpuflags_%2
  642. %endif
  643. %xdefine SUFFIX _ %+ cpuname
  644. %if cpuflag(avx)
  645. %assign avx_enabled 1
  646. %endif
  647. %if mmsize == 16 && notcpuflag(sse2)
  648. %define mova movaps
  649. %define movu movups
  650. %define movnta movntps
  651. %endif
  652. %if cpuflag(aligned)
  653. %define movu mova
  654. %elifidn %1, sse3
  655. %define movu lddqu
  656. %endif
  657. %if notcpuflag(mmx2)
  658. CPUNOP basicnop
  659. %endif
  660. %else
  661. %xdefine SUFFIX
  662. %undef cpuname
  663. %undef cpuflags
  664. %endif
  665. %endmacro
  666. ; merge mmx and sse*
  667. %macro CAT_XDEFINE 3
  668. %xdefine %1%2 %3
  669. %endmacro
  670. %macro CAT_UNDEF 2
  671. %undef %1%2
  672. %endmacro
  673. %macro INIT_MMX 0-1+
  674. %assign avx_enabled 0
  675. %define RESET_MM_PERMUTATION INIT_MMX %1
  676. %define mmsize 8
  677. %define num_mmregs 8
  678. %define mova movq
  679. %define movu movq
  680. %define movh movd
  681. %define movnta movntq
  682. %assign %%i 0
  683. %rep 8
  684. CAT_XDEFINE m, %%i, mm %+ %%i
  685. CAT_XDEFINE nmm, %%i, %%i
  686. %assign %%i %%i+1
  687. %endrep
  688. %rep 8
  689. CAT_UNDEF m, %%i
  690. CAT_UNDEF nmm, %%i
  691. %assign %%i %%i+1
  692. %endrep
  693. INIT_CPUFLAGS %1
  694. %endmacro
  695. %macro INIT_XMM 0-1+
  696. %assign avx_enabled 0
  697. %define RESET_MM_PERMUTATION INIT_XMM %1
  698. %define mmsize 16
  699. %define num_mmregs 8
  700. %if ARCH_X86_64
  701. %define num_mmregs 16
  702. %endif
  703. %define mova movdqa
  704. %define movu movdqu
  705. %define movh movq
  706. %define movnta movntdq
  707. %assign %%i 0
  708. %rep num_mmregs
  709. CAT_XDEFINE m, %%i, xmm %+ %%i
  710. CAT_XDEFINE nxmm, %%i, %%i
  711. %assign %%i %%i+1
  712. %endrep
  713. INIT_CPUFLAGS %1
  714. %endmacro
  715. %macro INIT_YMM 0-1+
  716. %assign avx_enabled 1
  717. %define RESET_MM_PERMUTATION INIT_YMM %1
  718. %define mmsize 32
  719. %define num_mmregs 8
  720. %if ARCH_X86_64
  721. %define num_mmregs 16
  722. %endif
  723. %define mova vmovaps
  724. %define movu vmovups
  725. %undef movh
  726. %define movnta vmovntps
  727. %assign %%i 0
  728. %rep num_mmregs
  729. CAT_XDEFINE m, %%i, ymm %+ %%i
  730. CAT_XDEFINE nymm, %%i, %%i
  731. %assign %%i %%i+1
  732. %endrep
  733. INIT_CPUFLAGS %1
  734. %endmacro
  735. INIT_XMM
  736. ; I often want to use macros that permute their arguments. e.g. there's no
  737. ; efficient way to implement butterfly or transpose or dct without swapping some
  738. ; arguments.
  739. ;
  740. ; I would like to not have to manually keep track of the permutations:
  741. ; If I insert a permutation in the middle of a function, it should automatically
  742. ; change everything that follows. For more complex macros I may also have multiple
  743. ; implementations, e.g. the SSE2 and SSSE3 versions may have different permutations.
  744. ;
  745. ; Hence these macros. Insert a PERMUTE or some SWAPs at the end of a macro that
  746. ; permutes its arguments. It's equivalent to exchanging the contents of the
  747. ; registers, except that this way you exchange the register names instead, so it
  748. ; doesn't cost any cycles.
  749. %macro PERMUTE 2-* ; takes a list of pairs to swap
  750. %rep %0/2
  751. %xdefine tmp%2 m%2
  752. %xdefine ntmp%2 nm%2
  753. %rotate 2
  754. %endrep
  755. %rep %0/2
  756. %xdefine m%1 tmp%2
  757. %xdefine nm%1 ntmp%2
  758. %undef tmp%2
  759. %undef ntmp%2
  760. %rotate 2
  761. %endrep
  762. %endmacro
  763. %macro SWAP 2-* ; swaps a single chain (sometimes more concise than pairs)
  764. %rep %0-1
  765. %ifdef m%1
  766. %xdefine tmp m%1
  767. %xdefine m%1 m%2
  768. %xdefine m%2 tmp
  769. CAT_XDEFINE n, m%1, %1
  770. CAT_XDEFINE n, m%2, %2
  771. %else
  772. ; If we were called as "SWAP m0,m1" rather than "SWAP 0,1" infer the original numbers here.
  773. ; Be careful using this mode in nested macros though, as in some cases there may be
  774. ; other copies of m# that have already been dereferenced and don't get updated correctly.
  775. %xdefine %%n1 n %+ %1
  776. %xdefine %%n2 n %+ %2
  777. %xdefine tmp m %+ %%n1
  778. CAT_XDEFINE m, %%n1, m %+ %%n2
  779. CAT_XDEFINE m, %%n2, tmp
  780. CAT_XDEFINE n, m %+ %%n1, %%n1
  781. CAT_XDEFINE n, m %+ %%n2, %%n2
  782. %endif
  783. %undef tmp
  784. %rotate 1
  785. %endrep
  786. %endmacro
  787. ; If SAVE_MM_PERMUTATION is placed at the end of a function, then any later
  788. ; calls to that function will automatically load the permutation, so values can
  789. ; be returned in mmregs.
  790. %macro SAVE_MM_PERMUTATION 0-1
  791. %if %0
  792. %xdefine %%f %1_m
  793. %else
  794. %xdefine %%f current_function %+ _m
  795. %endif
  796. %assign %%i 0
  797. %rep num_mmregs
  798. CAT_XDEFINE %%f, %%i, m %+ %%i
  799. %assign %%i %%i+1
  800. %endrep
  801. %endmacro
  802. %macro LOAD_MM_PERMUTATION 1 ; name to load from
  803. %ifdef %1_m0
  804. %assign %%i 0
  805. %rep num_mmregs
  806. CAT_XDEFINE m, %%i, %1_m %+ %%i
  807. CAT_XDEFINE n, m %+ %%i, %%i
  808. %assign %%i %%i+1
  809. %endrep
  810. %endif
  811. %endmacro
  812. ; Append cpuflags to the callee's name iff the appended name is known and the plain name isn't
  813. %macro call 1
  814. call_internal %1 %+ SUFFIX, %1
  815. %endmacro
  816. %macro call_internal 2
  817. %xdefine %%i %2
  818. %ifndef cglobaled_%2
  819. %ifdef cglobaled_%1
  820. %xdefine %%i %1
  821. %endif
  822. %endif
  823. call %%i
  824. LOAD_MM_PERMUTATION %%i
  825. %endmacro
  826. ; Substitutions that reduce instruction size but are functionally equivalent
  827. %macro add 2
  828. %ifnum %2
  829. %if %2==128
  830. sub %1, -128
  831. %else
  832. add %1, %2
  833. %endif
  834. %else
  835. add %1, %2
  836. %endif
  837. %endmacro
  838. %macro sub 2
  839. %ifnum %2
  840. %if %2==128
  841. add %1, -128
  842. %else
  843. sub %1, %2
  844. %endif
  845. %else
  846. sub %1, %2
  847. %endif
  848. %endmacro
  849. ;=============================================================================
  850. ; AVX abstraction layer
  851. ;=============================================================================
  852. %assign i 0
  853. %rep 16
  854. %if i < 8
  855. CAT_XDEFINE sizeofmm, i, 8
  856. %endif
  857. CAT_XDEFINE sizeofxmm, i, 16
  858. CAT_XDEFINE sizeofymm, i, 32
  859. %assign i i+1
  860. %endrep
  861. %undef i
  862. %macro CHECK_AVX_INSTR_EMU 3-*
  863. %xdefine %%opcode %1
  864. %xdefine %%dst %2
  865. %rep %0-2
  866. %ifidn %%dst, %3
  867. %error non-avx emulation of ``%%opcode'' is not supported
  868. %endif
  869. %rotate 1
  870. %endrep
  871. %endmacro
  872. ;%1 == instruction
  873. ;%2 == 1 if float, 0 if int
  874. ;%3 == 1 if 4-operand (xmm, xmm, xmm, imm), 0 if 2- or 3-operand (xmm, xmm, xmm)
  875. ;%4 == number of operands given
  876. ;%5+: operands
  877. %macro RUN_AVX_INSTR 6-7+
  878. %ifid %6
  879. %define %%sizeofreg sizeof%6
  880. %elifid %5
  881. %define %%sizeofreg sizeof%5
  882. %else
  883. %define %%sizeofreg mmsize
  884. %endif
  885. %if %%sizeofreg==32
  886. %if %4>=3
  887. v%1 %5, %6, %7
  888. %else
  889. v%1 %5, %6
  890. %endif
  891. %else
  892. %if %%sizeofreg==8
  893. %define %%regmov movq
  894. %elif %2
  895. %define %%regmov movaps
  896. %else
  897. %define %%regmov movdqa
  898. %endif
  899. %if %4>=3+%3
  900. %ifnidn %5, %6
  901. %if avx_enabled && %%sizeofreg==16
  902. v%1 %5, %6, %7
  903. %else
  904. CHECK_AVX_INSTR_EMU {%1 %5, %6, %7}, %5, %7
  905. %%regmov %5, %6
  906. %1 %5, %7
  907. %endif
  908. %else
  909. %1 %5, %7
  910. %endif
  911. %elif %4>=3
  912. %1 %5, %6, %7
  913. %else
  914. %1 %5, %6
  915. %endif
  916. %endif
  917. %endmacro
  918. ; 3arg AVX ops with a memory arg can only have it in src2,
  919. ; whereas SSE emulation of 3arg prefers to have it in src1 (i.e. the mov).
  920. ; So, if the op is symmetric and the wrong one is memory, swap them.
  921. %macro RUN_AVX_INSTR1 8
  922. %assign %%swap 0
  923. %if avx_enabled
  924. %ifnid %6
  925. %assign %%swap 1
  926. %endif
  927. %elifnidn %5, %6
  928. %ifnid %7
  929. %assign %%swap 1
  930. %endif
  931. %endif
  932. %if %%swap && %3 == 0 && %8 == 1
  933. RUN_AVX_INSTR %1, %2, %3, %4, %5, %7, %6
  934. %else
  935. RUN_AVX_INSTR %1, %2, %3, %4, %5, %6, %7
  936. %endif
  937. %endmacro
  938. ;%1 == instruction
  939. ;%2 == 1 if float, 0 if int
  940. ;%3 == 1 if 4-operand (xmm, xmm, xmm, imm), 0 if 2- or 3-operand (xmm, xmm, xmm)
  941. ;%4 == 1 if symmetric (i.e. doesn't matter which src arg is which), 0 if not
  942. %macro AVX_INSTR 4
  943. %macro %1 2-9 fnord, fnord, fnord, %1, %2, %3, %4
  944. %ifidn %3, fnord
  945. RUN_AVX_INSTR %6, %7, %8, 2, %1, %2
  946. %elifidn %4, fnord
  947. RUN_AVX_INSTR1 %6, %7, %8, 3, %1, %2, %3, %9
  948. %elifidn %5, fnord
  949. RUN_AVX_INSTR %6, %7, %8, 4, %1, %2, %3, %4
  950. %else
  951. RUN_AVX_INSTR %6, %7, %8, 5, %1, %2, %3, %4, %5
  952. %endif
  953. %endmacro
  954. %endmacro
  955. AVX_INSTR addpd, 1, 0, 1
  956. AVX_INSTR addps, 1, 0, 1
  957. AVX_INSTR addsd, 1, 0, 1
  958. AVX_INSTR addss, 1, 0, 1
  959. AVX_INSTR addsubpd, 1, 0, 0
  960. AVX_INSTR addsubps, 1, 0, 0
  961. AVX_INSTR andpd, 1, 0, 1
  962. AVX_INSTR andps, 1, 0, 1
  963. AVX_INSTR andnpd, 1, 0, 0
  964. AVX_INSTR andnps, 1, 0, 0
  965. AVX_INSTR blendpd, 1, 0, 0
  966. AVX_INSTR blendps, 1, 0, 0
  967. AVX_INSTR blendvpd, 1, 0, 0
  968. AVX_INSTR blendvps, 1, 0, 0
  969. AVX_INSTR cmppd, 1, 0, 0
  970. AVX_INSTR cmpps, 1, 0, 0
  971. AVX_INSTR cmpsd, 1, 0, 0
  972. AVX_INSTR cmpss, 1, 0, 0
  973. AVX_INSTR cvtdq2ps, 1, 0, 0
  974. AVX_INSTR cvtpd2dq, 1, 0, 0
  975. AVX_INSTR cvtps2dq, 1, 0, 0
  976. AVX_INSTR divpd, 1, 0, 0
  977. AVX_INSTR divps, 1, 0, 0
  978. AVX_INSTR divsd, 1, 0, 0
  979. AVX_INSTR divss, 1, 0, 0
  980. AVX_INSTR dppd, 1, 1, 0
  981. AVX_INSTR dpps, 1, 1, 0
  982. AVX_INSTR haddpd, 1, 0, 0
  983. AVX_INSTR haddps, 1, 0, 0
  984. AVX_INSTR hsubpd, 1, 0, 0
  985. AVX_INSTR hsubps, 1, 0, 0
  986. AVX_INSTR maxpd, 1, 0, 1
  987. AVX_INSTR maxps, 1, 0, 1
  988. AVX_INSTR maxsd, 1, 0, 1
  989. AVX_INSTR maxss, 1, 0, 1
  990. AVX_INSTR minpd, 1, 0, 1
  991. AVX_INSTR minps, 1, 0, 1
  992. AVX_INSTR minsd, 1, 0, 1
  993. AVX_INSTR minss, 1, 0, 1
  994. AVX_INSTR movhlps, 1, 0, 0
  995. AVX_INSTR movlhps, 1, 0, 0
  996. AVX_INSTR movsd, 1, 0, 0
  997. AVX_INSTR movss, 1, 0, 0
  998. AVX_INSTR mpsadbw, 0, 1, 0
  999. AVX_INSTR mulpd, 1, 0, 1
  1000. AVX_INSTR mulps, 1, 0, 1
  1001. AVX_INSTR mulsd, 1, 0, 1
  1002. AVX_INSTR mulss, 1, 0, 1
  1003. AVX_INSTR orpd, 1, 0, 1
  1004. AVX_INSTR orps, 1, 0, 1
  1005. AVX_INSTR pabsb, 0, 0, 0
  1006. AVX_INSTR pabsw, 0, 0, 0
  1007. AVX_INSTR pabsd, 0, 0, 0
  1008. AVX_INSTR packsswb, 0, 0, 0
  1009. AVX_INSTR packssdw, 0, 0, 0
  1010. AVX_INSTR packuswb, 0, 0, 0
  1011. AVX_INSTR packusdw, 0, 0, 0
  1012. AVX_INSTR paddb, 0, 0, 1
  1013. AVX_INSTR paddw, 0, 0, 1
  1014. AVX_INSTR paddd, 0, 0, 1
  1015. AVX_INSTR paddq, 0, 0, 1
  1016. AVX_INSTR paddsb, 0, 0, 1
  1017. AVX_INSTR paddsw, 0, 0, 1
  1018. AVX_INSTR paddusb, 0, 0, 1
  1019. AVX_INSTR paddusw, 0, 0, 1
  1020. AVX_INSTR palignr, 0, 1, 0
  1021. AVX_INSTR pand, 0, 0, 1
  1022. AVX_INSTR pandn, 0, 0, 0
  1023. AVX_INSTR pavgb, 0, 0, 1
  1024. AVX_INSTR pavgw, 0, 0, 1
  1025. AVX_INSTR pblendvb, 0, 0, 0
  1026. AVX_INSTR pblendw, 0, 1, 0
  1027. AVX_INSTR pcmpestri, 0, 0, 0
  1028. AVX_INSTR pcmpestrm, 0, 0, 0
  1029. AVX_INSTR pcmpistri, 0, 0, 0
  1030. AVX_INSTR pcmpistrm, 0, 0, 0
  1031. AVX_INSTR pcmpeqb, 0, 0, 1
  1032. AVX_INSTR pcmpeqw, 0, 0, 1
  1033. AVX_INSTR pcmpeqd, 0, 0, 1
  1034. AVX_INSTR pcmpeqq, 0, 0, 1
  1035. AVX_INSTR pcmpgtb, 0, 0, 0
  1036. AVX_INSTR pcmpgtw, 0, 0, 0
  1037. AVX_INSTR pcmpgtd, 0, 0, 0
  1038. AVX_INSTR pcmpgtq, 0, 0, 0
  1039. AVX_INSTR phaddw, 0, 0, 0
  1040. AVX_INSTR phaddd, 0, 0, 0
  1041. AVX_INSTR phaddsw, 0, 0, 0
  1042. AVX_INSTR phsubw, 0, 0, 0
  1043. AVX_INSTR phsubd, 0, 0, 0
  1044. AVX_INSTR phsubsw, 0, 0, 0
  1045. AVX_INSTR pmaddwd, 0, 0, 1
  1046. AVX_INSTR pmaddubsw, 0, 0, 0
  1047. AVX_INSTR pmaxsb, 0, 0, 1
  1048. AVX_INSTR pmaxsw, 0, 0, 1
  1049. AVX_INSTR pmaxsd, 0, 0, 1
  1050. AVX_INSTR pmaxub, 0, 0, 1
  1051. AVX_INSTR pmaxuw, 0, 0, 1
  1052. AVX_INSTR pmaxud, 0, 0, 1
  1053. AVX_INSTR pminsb, 0, 0, 1
  1054. AVX_INSTR pminsw, 0, 0, 1
  1055. AVX_INSTR pminsd, 0, 0, 1
  1056. AVX_INSTR pminub, 0, 0, 1
  1057. AVX_INSTR pminuw, 0, 0, 1
  1058. AVX_INSTR pminud, 0, 0, 1
  1059. AVX_INSTR pmovmskb, 0, 0, 0
  1060. AVX_INSTR pmulhuw, 0, 0, 1
  1061. AVX_INSTR pmulhrsw, 0, 0, 1
  1062. AVX_INSTR pmulhw, 0, 0, 1
  1063. AVX_INSTR pmullw, 0, 0, 1
  1064. AVX_INSTR pmulld, 0, 0, 1
  1065. AVX_INSTR pmuludq, 0, 0, 1
  1066. AVX_INSTR pmuldq, 0, 0, 1
  1067. AVX_INSTR por, 0, 0, 1
  1068. AVX_INSTR psadbw, 0, 0, 1
  1069. AVX_INSTR pshufb, 0, 0, 0
  1070. AVX_INSTR pshufd, 0, 1, 0
  1071. AVX_INSTR pshufhw, 0, 1, 0
  1072. AVX_INSTR pshuflw, 0, 1, 0
  1073. AVX_INSTR psignb, 0, 0, 0
  1074. AVX_INSTR psignw, 0, 0, 0
  1075. AVX_INSTR psignd, 0, 0, 0
  1076. AVX_INSTR psllw, 0, 0, 0
  1077. AVX_INSTR pslld, 0, 0, 0
  1078. AVX_INSTR psllq, 0, 0, 0
  1079. AVX_INSTR pslldq, 0, 0, 0
  1080. AVX_INSTR psraw, 0, 0, 0
  1081. AVX_INSTR psrad, 0, 0, 0
  1082. AVX_INSTR psrlw, 0, 0, 0
  1083. AVX_INSTR psrld, 0, 0, 0
  1084. AVX_INSTR psrlq, 0, 0, 0
  1085. AVX_INSTR psrldq, 0, 0, 0
  1086. AVX_INSTR psubb, 0, 0, 0
  1087. AVX_INSTR psubw, 0, 0, 0
  1088. AVX_INSTR psubd, 0, 0, 0
  1089. AVX_INSTR psubq, 0, 0, 0
  1090. AVX_INSTR psubsb, 0, 0, 0
  1091. AVX_INSTR psubsw, 0, 0, 0
  1092. AVX_INSTR psubusb, 0, 0, 0
  1093. AVX_INSTR psubusw, 0, 0, 0
  1094. AVX_INSTR ptest, 0, 0, 0
  1095. AVX_INSTR punpckhbw, 0, 0, 0
  1096. AVX_INSTR punpckhwd, 0, 0, 0
  1097. AVX_INSTR punpckhdq, 0, 0, 0
  1098. AVX_INSTR punpckhqdq, 0, 0, 0
  1099. AVX_INSTR punpcklbw, 0, 0, 0
  1100. AVX_INSTR punpcklwd, 0, 0, 0
  1101. AVX_INSTR punpckldq, 0, 0, 0
  1102. AVX_INSTR punpcklqdq, 0, 0, 0
  1103. AVX_INSTR pxor, 0, 0, 1
  1104. AVX_INSTR shufps, 1, 1, 0
  1105. AVX_INSTR subpd, 1, 0, 0
  1106. AVX_INSTR subps, 1, 0, 0
  1107. AVX_INSTR subsd, 1, 0, 0
  1108. AVX_INSTR subss, 1, 0, 0
  1109. AVX_INSTR unpckhpd, 1, 0, 0
  1110. AVX_INSTR unpckhps, 1, 0, 0
  1111. AVX_INSTR unpcklpd, 1, 0, 0
  1112. AVX_INSTR unpcklps, 1, 0, 0
  1113. AVX_INSTR xorpd, 1, 0, 1
  1114. AVX_INSTR xorps, 1, 0, 1
  1115. ; 3DNow instructions, for sharing code between AVX, SSE and 3DN
  1116. AVX_INSTR pfadd, 1, 0, 1
  1117. AVX_INSTR pfsub, 1, 0, 0
  1118. AVX_INSTR pfmul, 1, 0, 1
  1119. ; base-4 constants for shuffles
  1120. %assign i 0
  1121. %rep 256
  1122. %assign j ((i>>6)&3)*1000 + ((i>>4)&3)*100 + ((i>>2)&3)*10 + (i&3)
  1123. %if j < 10
  1124. CAT_XDEFINE q000, j, i
  1125. %elif j < 100
  1126. CAT_XDEFINE q00, j, i
  1127. %elif j < 1000
  1128. CAT_XDEFINE q0, j, i
  1129. %else
  1130. CAT_XDEFINE q, j, i
  1131. %endif
  1132. %assign i i+1
  1133. %endrep
  1134. %undef i
  1135. %undef j
  1136. %macro FMA_INSTR 3
  1137. %macro %1 5-8 %1, %2, %3
  1138. %if cpuflag(xop) || cpuflag(fma4)
  1139. v%6 %1, %2, %3, %4
  1140. %else
  1141. %ifidn %1, %4
  1142. %7 %5, %2, %3
  1143. %8 %1, %4, %5
  1144. %else
  1145. %7 %1, %2, %3
  1146. %8 %1, %4
  1147. %endif
  1148. %endif
  1149. %endmacro
  1150. %endmacro
  1151. FMA_INSTR fmaddps, mulps, addps
  1152. FMA_INSTR pmacsdd, pmulld, paddd
  1153. FMA_INSTR pmacsww, pmullw, paddw
  1154. FMA_INSTR pmadcswd, pmaddwd, paddd
  1155. ; tzcnt is equivalent to "rep bsf" and is backwards-compatible with bsf.
  1156. ; This lets us use tzcnt without bumping the yasm version requirement yet.
  1157. %define tzcnt rep bsf