Displaying 4 results from an estimated 4 matches for "0c0h".
Did you mean:
0c03
2011 Nov 02
5
[LLVMdev] About JIT by LLVM 2.9 or later
...8h],eax
013C1479 mov ecx,dword ptr [ebp-144h]
013C147F mov dword ptr [ebp-54h],ecx
* Callee( 'fetch_vs' MSVC ):*
float4 __cdecl fetch( float4x4* mat ){
// Stack protection
002C13B0 push ebp
002C13B1 mov ebp,esp
002C13B3 sub esp,0C0h
002C13B9 push ebx
002C13BA push esi
002C13BB push edi
002C13BC lea edi,[ebp-0C0h]
002C13C2 mov ecx,30h
002C13C7 mov eax,0CCCCCCCCh
002C13CC rep stos dword ptr es:[edi]
return mat->y;
// Copy to address of first temporary variable.
0...
2013 Jul 19
0
[LLVMdev] llvm.x86.sse2.sqrt.pd not using sqrtpd, calling a function that modifies ECX
...pd xmmword ptr [esp+80h],xmm0
002E00F3 movddup xmm0,mmword ptr [eax+8]
002E00F8 movapd xmmword ptr [esp+70h],xmm0
002E00FE movddup xmm0,mmword ptr [eax]
002E0102 movapd xmmword ptr [esp+60h],xmm0
002E0108 xorpd xmm0,xmm0
002E010C movapd xmmword ptr [esp+0C0h],xmm0
002E0115 xorpd xmm1,xmm1
002E0119 xorpd xmm7,xmm7
002E011D movapd xmmword ptr [esp+0A0h],xmm1
002E0126 movapd xmmword ptr [esp+0B0h],xmm7
002E012F movapd xmm3,xmm1
002E0133 movlpd qword ptr [esp+0F0h],xmm3
002E013C movhpd qword ptr [esp+0E0h]...
2004 Aug 12
1
Problems booting with memdisk, with fix
...tch is against syslinux-2.10
8<=================================================================
--- memdisk.asm.orig Thu Aug 12 10:51:01 2004
+++ memdisk.asm Thu Aug 12 12:02:11 2004
@@ -185,15 +185,17 @@
; BIOS equipment byte, top two bits + 1 == total # of floppies
test byte [es:0x410],0C0h
jz success
- ; ... otherwise pass it to the BIOS
+ ; ... otherwise pass it to the BIOS. This is done with a call
+ ; rather than a jump so we regain control and can force the
+ ; return status to "ok" - this is because some BIOS's return
+ ; an error if there are no drives pr...
2013 Jul 19
4
[LLVMdev] SIMD instructions and memory alignment on X86
Hmm, I'm not able to get those .ll files to compile if I disable SSE and I
end up with SSE instructions(including sqrtpd) if I don't disable it.
On Thu, Jul 18, 2013 at 10:53 PM, Peter Newman <peter at uformia.com> wrote:
> Is there something specifically required to enable SSE? If it's not
> detected as available (based from the target triple?) then I don't think