search for: stosl

Displaying 20 results from an estimated 34 matches for "stosl".

Did you mean: stosq
2013 Dec 14
4
[PATCH 1/2] Match comment with code
...f450d3..8ab6b50 100644 --- a/mbr/gptmbr.S +++ b/mbr/gptmbr.S @@ -194,7 +194,7 @@ found_part: pushw %di /* 80 00 00 00 ee 00 00 00 - - bootable partition, type EFI (EE), no CHS information */ + - bootable partition, type EFI (ED), no CHS information */ xorl %eax,%eax movb $0x80,%al stosl -- 1.8.4.2
2013 Dec 15
3
[PATCH 1/2] Match comment with code
...out,%di pushw %di - /* 80 00 00 00 ee 00 00 00 - - bootable partition, type EFI (EE), no CHS information */ + /* 80 00 00 00 ed 00 00 00 + - bootable partition, type EFI (ED), no CHS information */ xorl %eax,%eax movb $0x80,%al stosl movb $0xed,%al stosl
2010 Jul 12
2
[LLVMdev] about llvm2.7's inline assembly
Hello, Whenever I compile a C program containing "FD_SET" function using llvm-gcc 2.7 (with -emit-llvm option), I got the following inline assembly in my llvm byte code: %asmtmp = call %struct.__mbstate_t asm sideeffect "cld; rep; stosl", "={cx},={di},{ax},0,1,~{dirflag},~{fpsr},~{flags},~{memory}"(i32 0, i32 32, i32* getelementptr inbounds (%struct.__sigset_t* @socks, i32 0, i32 0, i32 0)) nounwind ; <%struct.__mbstat %asmresult = extractvalue %struct.__mbstate_t %asmtmp, 0 ; <i32> [#uses=1] store i32 %a...
2013 Dec 15
0
[PATCH 1/2] Match comment with code
...- /* 80 00 00 00 ee 00 00 00 > - - bootable partition, type EFI (EE), no CHS information */ > + /* 80 00 00 00 ed 00 00 00 > + - bootable partition, type EFI (ED), no CHS information */ > xorl %eax,%eax > movb $0x80,%al > stosl > movb $0xed,%al > stosl > _______________________________________________ Please forgive my ignorance. Could someone point to some "standard" or some documentation where the supposedly correct / adequate value (EE or ED or whichever) is specifically listed...
2013 Dec 29
2
[PATCH 2/2] Remove some whitespace
...br.S | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/mbr/gptmbr.S b/mbr/gptmbr.S > index 8ab6b50..7d98aee 100644 > --- a/mbr/gptmbr.S > +++ b/mbr/gptmbr.S > @@ -213,7 +213,7 @@ found_part: > > movzwl %cx,%eax /* Length of GPT entry */ > stosl > - > + > rep; movsb /* GPT entry follows MBR entry */ > popw %si > The removal of that trailing tab character is valid change. What is needed to get the patch applied in the leading git repository? Groeten Geert Stappers -- Leven en laten leven
2002 Nov 07
5
From RISKS: secret scrubbing code removed by optimizers
This showed up in RISKS and no one has mentioned it here yet, so.. OpenSSH contains lots of code like: char *password = read_passphrase(prompt, 0); [do stuff] memset(password, 0, strlen(password));
2010 Feb 16
2
[LLVMdev] FD_ZERO unsupported inline asm on 64 bit
...32 bit Linux. FD_ZERO is defined in /usr/include/bits/select.h like this: # if __WORDSIZE == 64 # define __FD_ZERO_STOS "stosq" # define __FD_SET_BTS "btsq" # define __FD_CLR_BTR "btrq" # define __FD_ISSET_BT "btq" # else # define __FD_ZERO_STOS "stosl" # define __FD_SET_BTS "btsl" # define __FD_CLR_BTR "btrl" # define __FD_ISSET_BT "btl" # endif # define __FD_ZERO(fdsp) \ do { \ int __d0, __d1;...
2010 Jul 12
0
[LLVMdev] about llvm2.7's inline assembly
...ode: this comes directly from your system headers (/usr/include/bits/select.h) and as such doesn't really have anything to do with llvm-gcc: #if defined __GNUC__ && __GNUC__ >= 2 # if __WORDSIZE == 64 # define __FD_ZERO_STOS "stosq" # else # define __FD_ZERO_STOS "stosl" # endif # define __FD_ZERO(fdsp) \ do { \ int __d0, __d1; \ __asm__ __volatile__ ("cld; rep; " __FD_ZERO_STOS \...
2005 Dec 22
0
program doesn't work, wine returns without message
...aryA+0x1d in kernel32 (0x7fcde55d) 13 0x7fa7d1e0 main+0x80 in winevdm (0x7fa7d1e0) 14 0x7fa7dffa in winevdm (+0xdffa) (0x7fa7dffa) 15 0x7fcea947 in kernel32 (+0x4a947) (0x7fcea947) 16 0xb7f08c17 wine_switch_to_stack+0x17 in libwine.so.1 (0xb7f08c17) 0xb7e301bf memset+0x3f in libc.so.6: repe stosl %es:(%edi) Don't know if this is useful to anyone. Any hint what to do to make it work? Regards Mario
2003 Mar 18
0
Crash in Microsoft Excel, using Add-ons
...3,0)-stub! err:storage:BIGBLOCKFILE_UnmapPage unmapping inuse page (nil) wine: Unhandled exception, starting debugger... Debug Output.. Unhandled exception: page fault on write access to 0x00000000 in 32-bit code (0x4028bd45). In 32-bit mode. 0x4028bd45 (NTDLL.DLL.memset+0x35 in libc.so.6): repe stosl %es: (%edi) -- -- "Catch the Magic of Linux..." -------------------------------------------------------- Michael Peddemors - Senior Consultant LinuxAdministration - Internet Services NetworkServices - Programming - Security Wizard IT Services http://www.wizard.ca Linux Support Specia...
2013 Dec 14
0
[PATCH 2/2] Remove some whitespace
...of <ruben at rubenkerkhof.com> --- mbr/gptmbr.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mbr/gptmbr.S b/mbr/gptmbr.S index 8ab6b50..7d98aee 100644 --- a/mbr/gptmbr.S +++ b/mbr/gptmbr.S @@ -213,7 +213,7 @@ found_part: movzwl %cx,%eax /* Length of GPT entry */ stosl - + rep; movsb /* GPT entry follows MBR entry */ popw %si -- 1.8.4.2
2013 Dec 30
0
[PATCH 2/2] Remove some whitespace
...tion(-) >> >> diff --git a/mbr/gptmbr.S b/mbr/gptmbr.S >> index 8ab6b50..7d98aee 100644 >> --- a/mbr/gptmbr.S >> +++ b/mbr/gptmbr.S >> @@ -213,7 +213,7 @@ found_part: >> >> movzwl %cx,%eax /* Length of GPT entry */ >> stosl >> - >> + >> rep; movsb /* GPT entry follows MBR entry */ >> popw %si >> > > The removal of that trailing tab character is valid change. > > What is needed to get the patch applied in the leading git repository? It has b...
2005 Apr 02
1
[PATCH] VMX support for MMIO/PIO in VM8086 mode
..."); - return DECODE_success; - + case 0xaa: + /* stosb */ + thread_inst->op_size = BYTE; + strcpy((char *)thread_inst->i_name, "stosb"); + return DECODE_success; + case 0xab: + /* stosw/stosl */ + if (thread_inst->op_size == WORD) { + strcpy((char *)thread_inst->i_name, "stosw"); + } else { + thread_inst->op_size = LONG; + strcpy((char *)thread_inst->i_name, "stosl"); + } +...
2008 Jun 14
3
having trouble running Kingpin (quake2 engine) [grey screen]
when i try to load it with wine all i get is a grey screen and nothing happens...have to control alt del and log out of ubuntu to be able to do anything...sometimes it will even lock up the entire pc and i have to manually reset it...most of the time its just a grey screen though ive tried disabling compiz, reinstalling nvidia drivers, different wine compatibility modes/graphics tab settings and
2009 Jun 12
3
Can't run Mercedes Benz Star Service Manual Library CD
I'm mainly a noobie to Wine. I've got Wine installed in Ubuntu 9.04 via Synaptic The viewer.exe won't run directly as it's supposed to I've managed to get WHIP4 to start the installation process but it comes to a point and gives the message"Cannot detect Netscape or Microsoft Internet Explorer on your machine. You must use DWF files with OLE compliant tools like
2013 Feb 08
6
[PATCH] 4k_sector: Support dynamic sectors in GPT MBR
This patches add support for dynamic sectors to GPT MBR code. First 3 patches are trick and optimizations to gain some space for the forth patch. I have a modified version of SeaBIOS, some code and some script o test it I'll send on a different mail.
2004 May 31
0
Gunbound
...bit DLL 'C:\WINDOWS\SYSTEM\MSACM.DRV' (0x56280000) No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MIDIMAP.DRV' (0x563d0000) Unhandled exception: page fault on write access to 0x00000000 in 32-bit code (0x550bb8b7). In 32-bit mode. 0x550bb8b7 (__GI_memset+0x37 [interp.c]): repe stosl %es:(%edi) Unable to open file interp.c Wine-dbg>WineDbg terminated on pid b Can anybody help me? thank you Julio
2004 May 03
3
wine-users digest, Vol 1 #1757 - 10 msgs
...32.DLL' (0x42f00000) > No debug information in 32bit DLL 'C: > \WINDOWS\MSAGENT\INTL\AGT0409.DLL' (0x67f70000) > Unhandled exception: page fault on write access to 0x00000000 in 32-bit code > (0x400c8e07). > In 32-bit mode. > 0x400c8e07 (memset+0x37 in libc.so.6): repe stosl %es:(%edi) > Wine-dbg> > > Thanx Ivan For allyour help > > > --__--__-- > > Message: 2 > Subject: Wine CVS troubles. > From: Adam Cooper <adam.cooper@port.ac.uk> > To: wine-users@winehq.org > Organization: University of Portsmouth > Date: Fri, 3...
2013 Jun 04
12
[PATCH 0/4] XSA-52..54 follow-up
The first patch really isn''t as much of a follow-up than what triggered the security issues to be noticed in the first place. 1: x86: preserve FPU selectors for 32-bit guest code 2: x86: fix XCR0 handling 3: x86/xsave: adjust state management 4: x86/fxsave: bring in line with recent xsave adjustments The first two I would see as candidates for 4.3 (as well as subsequent backporting,
2007 Mar 19
2
Master of Orion 2 hangs when run in Wine 0.9.17 under Fedora Core 5
I recently installed Fedora Cora 5 (2.6.17-1.2157_FC5) on my PC, and then installed Wine (0.9.17) from the Fedora yum repository. I then installed Master of Orion II, and tried to run it. It started OK, but as soon as I moved the mouse, it seemed to hang. My keyboard and mouse stopped working, and the only way I could break out was to hit Ctrl-Alt-Del and log out. I tried this repeatedly, and