mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-30 05:24:25 +01:00
x86 asm: move x87 FPU instructions from x86-assembly-cheat
This commit is contained in:
24
userland/arch/x86_64/fabs.S
Normal file
24
userland/arch/x86_64/fabs.S
Normal file
@@ -0,0 +1,24 @@
|
||||
/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-x87-fpu-instructions */
|
||||
|
||||
#include <lkmc.h>
|
||||
|
||||
.data
|
||||
double_1_0: .double 1.0
|
||||
double_minus_1_0: .double -1.0
|
||||
LKMC_PROLOGUE
|
||||
/* |-1| == 1 */
|
||||
fldl double_minus_1_0
|
||||
fabs
|
||||
fldl double_1_0
|
||||
fcomip %st(1)
|
||||
LKMC_ASSERT(je)
|
||||
finit
|
||||
|
||||
/* |1| == 1 */
|
||||
fldl double_1_0
|
||||
fabs
|
||||
fldl double_1_0
|
||||
fcomip %st(1)
|
||||
LKMC_ASSERT(je)
|
||||
finit
|
||||
LKMC_EPILOGUE
|
||||
Reference in New Issue
Block a user