Displaying 4 results from an estimated 4 matches for "_aulldiv".
2018 Nov 30
3
(Question regarding the) incomplete "builtins library" of "Compiler-RT"
...s648426.aspx>
Is there any special reason why compiler-rt doesn't implement
other MSVC specific functions (alias builtins or "compiler
intrinsics") for which clang/LLVM but generates calls?
See <https://godbolt.org/z/ZsHmaf> for example
* unsigned 64-bit integer operations: _aulldiv(), _aulldvrm(),
_aullrem(), _aullshr()?
See <https://msdn.microsoft.com/en-us/library/mt703294.aspx>
* signed 64-bit integer operations: _alldiv(), _alldvrm(),
_allrem(), _allshl(), _allshr(), _allmul()?
See <https://msdn.microsoft.com/en-us/library/ms648425.aspx>
For the foll...
2018 Nov 30
2
(Question regarding the) incomplete "builtins library" of "Compiler-RT"
...uiltins or "compiler
>> intrinsics") for which clang/LLVM but generates calls?
>
> There are two "Windows" targets supported by LLVM: one using the MinGW
> runtime, and the other using the MSVC runtime. If you're targeting the
> MSVC runtime, it provides _aulldiv and friends; if you're targeting
> MinGW, LLVM won't refer to those routines. So I can't see a scenario
> where we would need those routines in compiler-rt.
What's the purpose of __chkstk_ms() then, implemented in compiler-rt?
1. LLVM does NOT create calls to __chkstk_ms()...
2011 Feb 04
0
Wine release 1.3.13
...eturn correct error code for DIPROP_VIDPID.
dinput: Ignore EV_MSC events instead of printing fixme.
Wolfram Sang (1):
comdlg32: Filedlg should not add extension if it contains a glob.
max at mtew.isa-geek.net (1):
ntdll: Correct 'b' parameter descriptions for _alldiv and _aulldiv.
--
Alexandre Julliard
julliard at winehq.org
2020 Jun 19
0
Wine release 5.11
...in wined3d_check_depth_stencil_format().
Huw D. M. Davies (2):
gdi32: Move the scan conversion to a helper function.
oleaut32: Return early if there is no matching funcdesc.
Jacek Caban (29):
winnt.h: Add BitScanForward and BitScanReverse implementation.
ntdll: Reimplement _aulldiv using 32-bit arithmetic.
ntdll: Reimplement _aullrem using 32-bit arithmetic.
ntdll: Reimplement _alldiv using 32-bit arithmetic.
ntdll: Reimplement _allrem using 32-bit arithmetic.
ntdll: Reimplement _allmul using 32-bit arithmetic.
ntdll/tests: Add long long builtins...