search for: 0ffffffffh

Displaying 5 results from an estimated 5 matches for "0ffffffffh".

2015 Feb 13
2
[LLVMdev] trunk's optimizer generates slower code than 3.5
...8h var_40 = qword ptr -40h var_34 = dword ptr -34h push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 18h mov ebx, 0FFFFFFFFh cmp edi, 2 jnz loc_100000F29 mov rdi, [rsi+8] ; char * xor r14d, r14d xor esi, esi ; char ** mov edx, 0Ah ; int call _strtol mo...
2015 Feb 14
2
[LLVMdev] trunk's optimizer generates slower code than 3.5
...t;> push rbp >> push r15 >> push r14 >> push r13 >> push r12 >> push rbx >> sub rsp, 18h >> mov ebx, 0FFFFFFFFh >> cmp edi, 2 >> jnz loc_100000F29 >> mov rdi, [rsi+8] ; char * >> xor r14d, r14d >> xor esi, esi ; char ** >> mov edx, 0Ah ;...
2015 Feb 14
2
[LLVMdev] trunk's optimizer generates slower code than 3.5
...push r15 >>>> push r14 >>>> push r13 >>>> push r12 >>>> push rbx >>>> sub rsp, 18h >>>> mov ebx, 0FFFFFFFFh >>>> cmp edi, 2 >>>> jnz loc_100000F29 >>>> mov rdi, [rsi+8] ; char * >>>> xor r14d, r14d >>>> xor esi, esi ; char ** >>&gt...
2001 Dec 12
0
App crashes and exception handling [Was: Re: VirtualProtect and app crash]
This is where that 0x761B10 address must have been coming from: 007605E2 sub_7605E2 proc near ; CODE XREF: start+88^Xp 007605E2 mov eax, large fs:0 007605E8 push ebp 007605E9 mov ebp, esp 007605EB push 0FFFFFFFFh 007605ED push 75A010h 007605F2 push 761B10h 007605F7 push eax 007605F8 mov large fs:0, esp 007605FF sub esp, 14h It's code that gets called very near the beginning of the program. I think this cor...
2011 Feb 18
1
[PATCH] core: Allow pasting from a VMware host by typing Ctrl-P
...ste: + mov eax,VMwareMagic + mov ebx,0 + mov cx,000ah ; Get VMware version + mov dx,VMwarePort + in eax,dx + cmp ebx,VMwareMagic + jne vmware_done + + mov eax,VMwareMagic + mov cx,0006h ; Get clipboard length + mov dx,VMwarePort + in eax,dx + and eax,eax + jz vmware_done + cmp eax,0ffffffffh + jz vmware_done + mov ebx,eax + +vmware_get_data: + mov eax,VMwareMagic + mov cx,00007h ; Get clipboard data + mov dx,VMwarePort + in eax,dx + mov ecx,4 + +vmware_paste_char: + and al,al + je vmware_clear_buffer + cmp al,7Fh ; <DEL> == <BS> + je vmware_no_enter + cmp al...