Skip to content

Commit 65441fd

Browse files
committed
[ADD] Tolower.s without look up table
1 parent 1949f93 commit 65441fd

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

srcs/ft_tolower.s

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
global _ft_tolower
22

3-
extern table_type ; includes table_type
4-
53
section .text
64

75
_ft_tolower: ; int ft_tolower(int c);
8-
lea rcx, [rel table_type] ; Load Effective (memory) Address of table_type in rax
9-
mov eax, edi
10-
or eax, 0x20 ; 0x20 : it sets the 6th bit which is the diff between lower and uppercase letters
11-
test byte[rcx + rdi], 0b00000001 ; rdi is int c, al contains 8 lowest bytes of rax, al = byte[&table_type + c]
12-
cmovz eax, edi ; set function's return value 'eax' equals to edi, which is int c passed, if it was an alpha
6+
lea edx, [edi - ('A')] ; we substract the value of the letter A
7+
mov eax, edi ; return value set to input value
8+
or edi, 0x20 ; create a lowercase version
9+
cmp edx, 'Z'-'A' ; that we will use only if we were facing an upper case character
10+
cmovb eax, edi ; if it was, we move value from edi to eax
1311
ret
12+

0 commit comments

Comments
 (0)