Displaying 7 results from an estimated 7 matches for "_xgetbv".
Did you mean:
xgetbv
2013 Apr 17
3
[LLVMdev] Patch to compile LLVM with MSVC 2010
In order to get llvm to compile on Windows with MSVC 10, I have to disable inline on utostr to avoid internal compiler failure, and disable _xgetbv call in OsSupportsAVX because it's only defined in MSVC 2012 compiler. The first patch (noinline) is known for many months now. I'm a casual llvm user, and don't know the proper channels to go through to submit a patch. Could someone tell me, where do I submit patches like this one belo...
2013 Apr 18
0
[LLVMdev] Patch to compile LLVM with MSVC 2010
On Wed, Apr 17, 2013 at 11:36 AM, Sergiy Migdalskiy
<migdalskiy at hotmail.com> wrote:
> In order to get llvm to compile on Windows with MSVC 10, I have to disable
> inline on utostr to avoid internal compiler failure, and disable _xgetbv
> call in OsSupportsAVX because it's only defined in MSVC 2012 compiler. The
> first patch (noinline) is known for many months now. I'm a casual llvm user,
> and don't know the proper channels to go through to submit a patch. Could
> someone tell me, where do I submit patche...
2013 Apr 18
2
[LLVMdev] Patch to compile LLVM with MSVC 2010
...gt; CC: llvmdev at cs.uiuc.edu
>
> On Wed, Apr 17, 2013 at 11:36 AM, Sergiy Migdalskiy
> <migdalskiy at hotmail.com> wrote:
> > In order to get llvm to compile on Windows with MSVC 10, I have to disable
> > inline on utostr to avoid internal compiler failure, and disable _xgetbv
> > call in OsSupportsAVX because it's only defined in MSVC 2012 compiler. The
> > first patch (noinline) is known for many months now. I'm a casual llvm user,
> > and don't know the proper channels to go through to submit a patch. Could
> > someone tell me, wher...
2013 Apr 18
0
[LLVMdev] Patch to compile LLVM with MSVC 2010
...; On Wed, Apr 17, 2013 at 11:36 AM, Sergiy Migdalskiy
> <migdalskiy at hotmail.com<mailto:migdalskiy at hotmail.com>> wrote:
> > In order to get llvm to compile on Windows with MSVC 10, I have to disable
> > inline on utostr to avoid internal compiler failure, and disable _xgetbv
> > call in OsSupportsAVX because it's only defined in MSVC 2012 compiler. The
> > first patch (noinline) is known for many months now. I'm a casual llvm user,
> > and don't know the proper channels to go through to submit a patch. Could
> > someone tell me, wher...
2015 Jun 11
2
[LLVMdev] Self compiling latest clang from SVN
...bj) : error LNK2019: unresolved external symbol
__faststorefence referenced in function "void __cdecl
llvm::sys::MemoryFence(void)" (?MemoryFence at sys@llvm@@YAXXZ)
[C:\llvm-svn\build\utils\FileCheck\FileCheck.vcxproj]
LLVMSupport.lib(Host.obj) : error LNK2019: unresolved external symbol
_xgetbv referenced in function "class llvm::StringRef __cdecl
llvm::sys::getHostCPUName(void)"
(?getHostCPUName at sys@llvm@@YA?AVStringRef at 2@XZ)
[C:\llvm-svn\build\utils\FileCheck\FileCheck.vcxproj]
LLVMSupport.lib(Host.obj) : error LNK2019: unresolved external symbol
__cpuidex referenced in...
2015 Jun 12
2
[LLVMdev] Self compiling latest clang from SVN
...ol
>> __faststorefence referenced in function "void __cdecl
>> llvm::sys::MemoryFence(void)" (?MemoryFence at sys@llvm@@YAXXZ)
>> [C:\llvm-svn\build\utils\FileCheck\FileCheck.vcxproj]
>> LLVMSupport.lib(Host.obj) : error LNK2019: unresolved external symbol
>> _xgetbv referenced in function "class llvm::StringRef __cdecl
>> llvm::sys::getHostCPUName(void)" (?getHostCPUName at sys@llvm@
>> @YA?AVStringRef at 2@XZ)
>> [C:\llvm-svn\build\utils\FileCheck\FileCheck.vcxproj]
>> LLVMSupport.lib(Host.obj) : error LNK2019: unresolved ext...
2017 Feb 27
2
[PATCH] fix LLVM compile
...rubbed...
URL: <http://lists.xiph.org/pipermail/flac-dev/attachments/20170227/631ac282/attachment.html>
-------------- next part --------------
diff --git a/src/libFLAC/cpu.c b/src/libFLAC/cpu.c
index 67a076d..bf0708c 100644
--- a/src/libFLAC/cpu.c
+++ b/src/libFLAC/cpu.c
@@ -81,7 +81,7 @@ cpu_xgetbv_x86(void)
return (uint32_t)_xgetbv(0);
#elif defined __GNUC__
uint32_t lo, hi;
- asm volatile (".byte 0x0f, 0x01, 0xd0" : "=a"(lo), "=d"(hi) : "c" (0));
+ __asm__ volatile (".byte 0x0f, 0x01, 0xd0" : "=a"(lo), "=d"(hi) : &qu...