Displaying 3 results from an estimated 3 matches for "f4uil4".
2018 Nov 25
3
BUGS n code generated for target i386 compiling __bswapdi3, and for target x86-64 compiling __bswapsi2()
...& 0x00000000000000ffull) << 7 * 8);
}
You can find these sources in "compiler-rt/lib/builtins/bswapsi2.c"
and "compiler-rt/lib/builtins/bswapdi2.c", for example!
Compiled with "-O3 -target i386" this yields the following code
(see <https://godbolt.org/z/F4UIl4>):
__bswapsi2: # @__bswapsi2
push ebp
mov ebp, esp
mov eax, dword ptr [ebp + 8]
bswap eax
pop ebp
ret
__bswapdi2: # @__bswapdi2
push ebp
mov ebp, esp
mov edx, dword ptr [ebp + 8]
mov eax, dword ptr [ebp + 12]
bswap eax
bswap edx...
2018 Nov 25
3
BUGS n code generated for target i386 compiling __bswapdi3, and for target x86-64 compiling __bswapsi2()
...;> You can find these sources in "compiler-rt/lib/builtins/bswapsi2.c"
>> and "compiler-rt/lib/builtins/bswapdi2.c", for example!
>>
>>
>> Compiled with "-O3 -target i386" this yields the following code
>> (see <https://godbolt.org/z/F4UIl4>):
>>
>> __bswapsi2: # @__bswapsi2
>> push ebp
>> mov ebp, esp
>> mov eax, dword ptr [ebp + 8]
>> bswap eax
>> pop ebp
>> ret
>>
>> __bswapdi2: # @__bswapdi2
>> push ebp
>> mov ebp,...
2018 Nov 25
2
BUGS n code generated for target i386 compiling __bswapdi3, and for target x86-64 compiling __bswapsi2()
...piler-rt/lib/builtins/bswapsi2.c"
> >>> and "compiler-rt/lib/builtins/bswapdi2.c", for example!
> >>>
> >>>
> >>> Compiled with "-O3 -target i386" this yields the following code
> >>> (see <https://godbolt.org/z/F4UIl4>):
> >>>
> >>> __bswapsi2: # @__bswapsi2
> >>> push ebp
> >>> mov ebp, esp
> >>> mov eax, dword ptr [ebp + 8]
> >>> bswap eax
> >>> pop ebp
> >>> ret
> >>>
&...