assembly: improve organization of simd add

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2019-05-12 00:00:09 +00:00
parent b5f5f6a5bc
commit 11359838a1
6 changed files with 44 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
/* https://github.com/cirosantilli/linux-kernel-module-cheat#simd-assembly
/* https://github.com/cirosantilli/linux-kernel-module-cheat#armv8-aarch64-add-vector-instruction
*
* Add a bunch of integers in one go.
*/

View File

@@ -1,4 +1,4 @@
/* https://github.com/cirosantilli/linux-kernel-module-cheat#simd-assembly
/* https://github.com/cirosantilli/linux-kernel-module-cheat#armv8-aarch64-fadd-vector-instruction
*
* Add a bunch of floating point numbers in one go.
*/

View File

@@ -1,4 +1,4 @@
/* https://github.com/cirosantilli/linux-kernel-module-cheat#arm-simd-instruction-assembly */
/* https://github.com/cirosantilli/linux-kernel-module-cheat#arm-vadd-instruction */
#include "common.h"

View File

@@ -1,4 +1,4 @@
/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-simd
/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-addpq-instruction
*
* Add a bunch of floating point numbers in one go.
*/

View File

@@ -1,4 +1,4 @@
/* https://github.com/cirosantilli/linux-kernel-module-cheat#simd-assembly
/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-paddq-instruction
*
* Add a bunch of integers in one go.
*