mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 10:15:57 +01:00
x86 asm: move rotation and bit instructoins in from x86-assembly-cheat
This commit is contained in:
57
README.adoc
57
README.adoc
@@ -12378,6 +12378,63 @@ Bibliography:
|
||||
* link:userland/arch/x86_64/or.S[OR]
|
||||
* link:userland/arch/x86_64/xor.S[XOR]
|
||||
|
||||
=== x86 shift and rotate instructions
|
||||
|
||||
<<intel-manual-1>> 5.1.5 "Shift and Rotate Instructions"
|
||||
|
||||
* link:userland/arch/x86_64/shl.S[SHL and SHR]
|
||||
+
|
||||
SHift left or Right and insert 0.
|
||||
+
|
||||
CF == the bit that got shifted out.
|
||||
+
|
||||
Application: quick unsigned multiply and divide by powers of 2.
|
||||
* link:userland/arch/x86_64/sal.S[SAL and SAR]
|
||||
+
|
||||
Application: signed multiply and divide by powers of 2.
|
||||
+
|
||||
Mnemonics: Shift Arithmetic Left and Right
|
||||
+
|
||||
Keeps the same sign on right shift.
|
||||
+
|
||||
Not directly exposed in C, for which signed shift is undetermined behavior, but does exist in Java via the `>>>` operator. C compilers can omit it however.
|
||||
+
|
||||
SHL and SAL are exactly the same and have the same encoding: https://stackoverflow.com/questions/8373415/difference-between-shl-and-sal-in-80x86/56621271#56621271
|
||||
* link:userland/arch/x86_64/rol.S[ROL and ROR]
|
||||
+
|
||||
Rotates the bit that is going out around to the other side.
|
||||
* link:userland/arch/x86_64/rol.S[RCL and RCR]
|
||||
+
|
||||
Like ROL and ROR, but insert the carry bit instead, which effectively generates a rotation of 8 + 1 bits. TODO application.
|
||||
|
||||
=== x86 bit and byte instructions
|
||||
|
||||
<<intel-manual-1>> 5.1.6 "Bit and Byte Instructions"
|
||||
|
||||
* link:userland/arch/x86_64/bt.S[BT]
|
||||
+
|
||||
Bit test: test if the Nth bit a bit of a register is set and store the result in the CF FLAG.
|
||||
+
|
||||
....
|
||||
CF = reg[N]
|
||||
....
|
||||
* link:userland/arch/x86_64/btr.S[BTR]
|
||||
+
|
||||
Do a BT and then set the bit to 0.
|
||||
* link:userland/arch/x86_64/btc.S[BTC]
|
||||
+
|
||||
Do a BT and then swap the value of the tested bit.
|
||||
* link:userland/arch/x86_64/setcc.S[SETcc]
|
||||
+
|
||||
Set a a byte of a register to 0 or 1 depending on the cc condition.
|
||||
* link:userland/arch/x86_64/test.S[TEST]
|
||||
+
|
||||
Like <<x86-binary-arithmetic-instructions,CMP>> but does AND instead of SUB:
|
||||
+
|
||||
....
|
||||
ZF = (!(X && Y)) ? 1 : 0
|
||||
....
|
||||
|
||||
=== x86 control transfer instructions
|
||||
|
||||
<<intel-manual-1>> 5.1.7 "Control Transfer Instructions"
|
||||
|
||||
42
userland/arch/x86_64/bt.S
Normal file
42
userland/arch/x86_64/bt.S
Normal file
@@ -0,0 +1,42 @@
|
||||
/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-bit-and-byte-instructions */
|
||||
|
||||
#include <lkmc.h>
|
||||
|
||||
LKMC_PROLOGUE
|
||||
/* 0101 1010 */
|
||||
mov $0x5A, %r12
|
||||
|
||||
bt $0, %r12w
|
||||
LKMC_ASSERT(jnc)
|
||||
|
||||
bt $1, %r12w
|
||||
LKMC_ASSERT(jc)
|
||||
|
||||
bt $2, %r12w
|
||||
LKMC_ASSERT(jnc)
|
||||
|
||||
bt $3, %r12w
|
||||
LKMC_ASSERT(jc)
|
||||
|
||||
bt $4, %r12w
|
||||
LKMC_ASSERT(jc)
|
||||
|
||||
bt $5, %r12w
|
||||
LKMC_ASSERT(jnc)
|
||||
|
||||
bt $6, %r12w
|
||||
LKMC_ASSERT(jc)
|
||||
|
||||
bt $7, %r12w
|
||||
LKMC_ASSERT(jnc)
|
||||
|
||||
/* The register is unchanged. */
|
||||
LKMC_ASSERT_EQ(%r12, $0x5A)
|
||||
|
||||
#if 0
|
||||
/* There is no Byte decoding for bt:
|
||||
* Error: operand size mismatch for `bt'
|
||||
*/
|
||||
bt $0, %r12b
|
||||
#endif
|
||||
LKMC_EPILOGUE
|
||||
16
userland/arch/x86_64/btc.S
Normal file
16
userland/arch/x86_64/btc.S
Normal file
@@ -0,0 +1,16 @@
|
||||
/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-bit-and-byte-instructions */
|
||||
|
||||
#include <lkmc.h>
|
||||
|
||||
LKMC_PROLOGUE
|
||||
/* 0101 1010 */
|
||||
mov $0x5A, %r12
|
||||
btc $0, %r12
|
||||
LKMC_ASSERT(jnc)
|
||||
LKMC_ASSERT_EQ(%r12, $0x5B)
|
||||
|
||||
/* 0101 1010 */
|
||||
btc $0, %r12
|
||||
LKMC_ASSERT(jc)
|
||||
LKMC_ASSERT_EQ(%r12, $0x5A)
|
||||
LKMC_EPILOGUE
|
||||
16
userland/arch/x86_64/btr.S
Normal file
16
userland/arch/x86_64/btr.S
Normal file
@@ -0,0 +1,16 @@
|
||||
/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-bit-and-byte-instructions */
|
||||
|
||||
#include <lkmc.h>
|
||||
|
||||
LKMC_PROLOGUE
|
||||
/* 0101 1010 */
|
||||
mov $0x5A, %r12
|
||||
btr $1, %r12
|
||||
LKMC_ASSERT(jc)
|
||||
LKMC_ASSERT_EQ(%r12, $0x58)
|
||||
|
||||
/* 0101 1000 */
|
||||
btr $1, %r12
|
||||
LKMC_ASSERT(jnc)
|
||||
LKMC_ASSERT_EQ(%r12, $0x58)
|
||||
LKMC_EPILOGUE
|
||||
38
userland/arch/x86_64/rcl.S
Normal file
38
userland/arch/x86_64/rcl.S
Normal file
@@ -0,0 +1,38 @@
|
||||
/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-shift-and-rotate-instructions */
|
||||
|
||||
#include <lkmc.h>
|
||||
|
||||
LKMC_PROLOGUE
|
||||
mov $0x81, %r12
|
||||
clc
|
||||
|
||||
rcl $1, %r12b
|
||||
/* We'll have to save and restore flags across our asserts!
|
||||
* 2x PUSHF to maintain 16-bit stack alignment.
|
||||
* https://github.com/cirosantilli/linux-kernel-module-cheat#x86_64-calling-convention
|
||||
*/
|
||||
pushf
|
||||
pushf
|
||||
LKMC_ASSERT(jc)
|
||||
LKMC_ASSERT_EQ(%r12, $2)
|
||||
|
||||
popf
|
||||
rcl $1, %r12b
|
||||
pushf
|
||||
LKMC_ASSERT(jnc)
|
||||
LKMC_ASSERT_EQ(%r12, $5)
|
||||
|
||||
popf
|
||||
rcr $2, %r12b
|
||||
pushf
|
||||
LKMC_ASSERT(jnc)
|
||||
LKMC_ASSERT_EQ(%r12, $0x81)
|
||||
|
||||
popf
|
||||
rcr $1, %r12b
|
||||
pushf
|
||||
LKMC_ASSERT(jc)
|
||||
LKMC_ASSERT_EQ(%r12, $0x40)
|
||||
|
||||
add $16, %rsp
|
||||
LKMC_EPILOGUE
|
||||
27
userland/arch/x86_64/rol.S
Normal file
27
userland/arch/x86_64/rol.S
Normal file
@@ -0,0 +1,27 @@
|
||||
/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-shift-and-rotate-instructions */
|
||||
|
||||
#include <lkmc.h>
|
||||
|
||||
LKMC_PROLOGUE
|
||||
mov $0x81, %r12
|
||||
|
||||
/* axl = 03h, CF = 1 */
|
||||
rol $1, %r12b
|
||||
LKMC_ASSERT(jc)
|
||||
LKMC_ASSERT_EQ(%r12, $3)
|
||||
|
||||
/* axl = 04h, CF = 0 */
|
||||
rol $1, %r12b
|
||||
LKMC_ASSERT(jnc)
|
||||
LKMC_ASSERT_EQ(%r12, $6)
|
||||
|
||||
/* axl = 03h, CF = 0 */
|
||||
ror $2, %r12b
|
||||
LKMC_ASSERT(jc)
|
||||
LKMC_ASSERT_EQ(%r12, $0x81)
|
||||
|
||||
/* axl = 81h, CF = 1 */
|
||||
ror $1, %r12b
|
||||
LKMC_ASSERT(jc)
|
||||
LKMC_ASSERT_EQ(%r12, $0x0C0)
|
||||
LKMC_EPILOGUE
|
||||
24
userland/arch/x86_64/sal.S
Normal file
24
userland/arch/x86_64/sal.S
Normal file
@@ -0,0 +1,24 @@
|
||||
/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-shift-and-rotate-instructions */
|
||||
|
||||
#include <lkmc.h>
|
||||
|
||||
LKMC_PROLOGUE
|
||||
/* 0xFF == -1 in 2's complement with 8-bits. */
|
||||
mov $0xFF, %r12
|
||||
sal %r12b
|
||||
LKMC_ASSERT(jc)
|
||||
/* 0xFE == -2 in 2's complement with 8-bits. */
|
||||
LKMC_ASSERT_EQ(%r12, $0xFE)
|
||||
|
||||
/* SAR*/
|
||||
sar %r12b
|
||||
LKMC_ASSERT(jnc)
|
||||
/* -1 */
|
||||
LKMC_ASSERT_EQ(%r12, $0xFF)
|
||||
|
||||
/* SAR rounds to -infinity: -1 goes to -1 again. */
|
||||
sar %r12b
|
||||
LKMC_ASSERT(jc)
|
||||
/* -1 */
|
||||
LKMC_ASSERT_EQ(%r12, $0xFF)
|
||||
LKMC_EPILOGUE
|
||||
26
userland/arch/x86_64/setcc.S
Normal file
26
userland/arch/x86_64/setcc.S
Normal file
@@ -0,0 +1,26 @@
|
||||
/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-bit-and-byte-instructions */
|
||||
|
||||
#include <lkmc.h>
|
||||
|
||||
LKMC_PROLOGUE
|
||||
mov $0xFF, %r12
|
||||
|
||||
/* Set Carry flag. */
|
||||
stc
|
||||
/* Check for carry flag. */
|
||||
setc %r12b
|
||||
/* Carry flag was set, so set the r12b to 1. */
|
||||
LKMC_ASSERT_EQ(%r12, $1)
|
||||
|
||||
/* Clear carry flag. */
|
||||
clc
|
||||
setc %r12b
|
||||
LKMC_ASSERT_EQ(%r12, $0)
|
||||
|
||||
#if 0
|
||||
/* The operand size can only be one byte:
|
||||
* Error: operand size mismatch for `setc'
|
||||
*/
|
||||
setc %eax
|
||||
#endif
|
||||
LKMC_EPILOGUE
|
||||
43
userland/arch/x86_64/shl.S
Normal file
43
userland/arch/x86_64/shl.S
Normal file
@@ -0,0 +1,43 @@
|
||||
/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-shift-and-rotate-instructions */
|
||||
|
||||
#include <lkmc.h>
|
||||
|
||||
LKMC_PROLOGUE
|
||||
mov $0x81, %r12
|
||||
|
||||
/* Shift left by one. */
|
||||
shl %r12b
|
||||
LKMC_ASSERT(jc)
|
||||
LKMC_ASSERT_EQ(%r12, $2)
|
||||
|
||||
/* Shift left by one. */
|
||||
shl %r12b
|
||||
LKMC_ASSERT(jnc)
|
||||
LKMC_ASSERT_EQ(%r12, $4)
|
||||
|
||||
/* Shift right by one. */
|
||||
shr %r12b
|
||||
LKMC_ASSERT(jnc)
|
||||
LKMC_ASSERT_EQ(%r12, $2)
|
||||
|
||||
/* Shift left by 2 immediate.
|
||||
* Differentent coding than shift by 1.
|
||||
*/
|
||||
shl $2, %r12b
|
||||
LKMC_ASSERT(jnc)
|
||||
LKMC_ASSERT_EQ(%r12, $8)
|
||||
|
||||
/* Shift left by 2 in cl register. */
|
||||
mov $2, %cl
|
||||
shl %cl, %r12b
|
||||
LKMC_ASSERT(jnc)
|
||||
LKMC_ASSERT_EQ(%r12, $0x20)
|
||||
|
||||
#if 0
|
||||
/* cl is the only possible register choice
|
||||
* Error: operand type mismatch for `shr'
|
||||
*/
|
||||
shr %bl, %ax
|
||||
#endif
|
||||
|
||||
LKMC_EPILOGUE
|
||||
24
userland/arch/x86_64/test.S
Normal file
24
userland/arch/x86_64/test.S
Normal file
@@ -0,0 +1,24 @@
|
||||
/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-bit-and-byte-instructions */
|
||||
|
||||
#include <lkmc.h>
|
||||
|
||||
LKMC_PROLOGUE
|
||||
/* 0xF0 & 0x00 == 0x00 */
|
||||
mov $0xF0, %r12
|
||||
test $0, %r12b
|
||||
/* The comparison was equal 0. */
|
||||
LKMC_ASSERT(jz)
|
||||
/* r12 is unchanged. */
|
||||
LKMC_ASSERT_EQ(%r12, $0x0F0)
|
||||
|
||||
/* 0xF0 & 0x18 == 0x10 != 0x00 */
|
||||
mov $0xF0, %r12
|
||||
test $0x18, %r12b
|
||||
LKMC_ASSERT(jnz)
|
||||
LKMC_ASSERT_EQ(%r12, $0x0F0)
|
||||
|
||||
/* test %rax, %rax vs cmp $0, %rax: test produces a shorter
|
||||
* encoding to decide if a register equals zero or not.
|
||||
* http://stackoverflow.com/questions/147173/x86-assembly-testl-eax-against-eax
|
||||
*/
|
||||
LKMC_EPILOGUE
|
||||
Reference in New Issue
Block a user