Displaying 12 results from an estimated 12 matches for "flushinstructioncache".
2001 Aug 10
1
Direct Connect in Wine
..."Invalid Picture"
and an OK button, pushing it exits the program. This is what wine says:
fixme:win32:SetCriticalSectionSpinCount critsection=0x77a36230:
spincount=1000 not supported
fixme:win32:SetCriticalSectionSpinCount critsection=0x77a36258:
spincount=1000 not supported
fixme:debug:FlushInstructionCache (0xffffffff,0x00000000,0x00000000):
stub
fixme:debug:FlushInstructionCache (0xffffffff,0x00000000,0x00000000):
stub
fixme:debug:FlushInstructionCache (0xffffffff,0x419e0000,0x00006000):
stub
fixme:debug:FlushInstructionCache (0xffffffff,0x419e0000,0x00006000):
stub
fixme:debug:FlushInstructionCache...
2001 Apr 06
1
installshield problems
I'm having problems when installing applications using InstallShield.
This is what I get:
...
fixme:module:CreateProcessA (C:\Program Files\Common
Files\InstallShield\Engine\6\Intel 32\IKernel.exe,...):
CREATE_NEW_CONSOLE ignored
fixme:module:CreateProcessA (C:\Program Files\Common
Files\InstallShield\Engine\6\Intel 32\IKernel.exe,...):
lpStartupInfo->lpTitle
2001 Apr 10
2
wine on Mandrake 7.2
...#39;s gone for good).
Any help appreciated
Zeev
$ /usr/local/bin/wine --winver win95 UD.exe
fixme:win32:SetCriticalSectionSpinCount critsection=0x653c6230:
spincount=1000
not supported
fixme:win32:SetCriticalSectionSpinCount critsection=0x653c6278:
spincount=1000
not supported
fixme:debug:FlushInstructionCache (0xffffffff,0x41710000,0x00006000): stub
fixme:ole:CoSetState (0x653ca9f0),stub!
fixme:ole:CoRegisterMessageFilter stub
fixme:debug:FlushInstructionCache (0xffffffff,0x41710000,0x00006000): stub
fixme:debug:FlushInstructionCache (0xffffffff,0x41710000,0x0000a000): stub
fixme:storage:GetCreationMode...
2012 Jan 07
3
[LLVMdev] [PATCH][Compiler-rt] Windows implementation of mmap functionality in clear_cache_test and enable_execute_stack_test
...est/Unit/clear_cache_test.c (revision 147731)
+++ test/Unit/clear_cache_test.c (working copy)
@@ -11,12 +11,20 @@
#include <stdio.h>
#include <string.h>
#include <stdint.h>
+#if defined(_WIN32)
+#include <windows.h>
+void __clear_cache(void* start, void* end)
+{
+ if( !FlushInstructionCache(GetCurrentProcess(), start, end-start) )
+ exit(1);
+}
+#else
#include <sys/mman.h>
+extern void __clear_cache(void* start, void* end);
+#endif
-extern void __clear_cache(void* start, void* end);
-
typedef int (*pfunc)(void);
int func1()
@@ -31,14 +39,23 @@
-unsigned...
2003 Jun 02
1
wine and OLEDB
...al stub
fixme:ntdll:NtQuerySystemInformation (0x00000008,0x402cd618,0x00000030,0x40792808) stub
fixme:ntdll:NtOpenFile (0x4079267c,0x00100001,0x40792654,0x4079266c,0x00000007,0x00000010) partial stub
fixme:ntdll:NtQuerySystemInformation (0x00000008,0x402cd618,0x00000030,0x40792808) stub
fixme:debug:FlushInstructionCache (0xffffffff,0x41b60000,0x00006000): stub
fixme:debug:FlushInstructionCache (0xffffffff,0x41b60000,0x00006000): stub
fixme:debug:FlushInstructionCache (0xffffffff,0x41b60000,0x0000a000): stub
fixme:win:GetProcessWindowStation (void): stub
fixme:win:GetThreadDesktop (9): stub
fixme:win32:GetUserObjec...
2001 Nov 25
1
Direct Connect
...NTFS filesystem with the utf8 option, although I get
the following when running Direct Connect.exe
fixme:win32:SetCriticalSectionSpinCount critsection=0x77a3f770:
spincount=1000 not supported
fixme:win32:SetCriticalSectionSpinCount critsection=0x77a3f7e0:
spincount=1000 not supported
fixme:debug:FlushInstructionCache (0xffffffff,0x00000000,0x00000000):
stub
fixme:debug:FlushInstructionCache (0xffffffff,0x00000000,0x00000000):
stub
fixme:ntdll:NtOpenFile
(0x40616658,0x00100001,0x40616630,0x40616648,0x00000007,0x00000010)
stub
fixme:ntdll:NtQuerySystemInformation
(0x00000008,0x403ea4d0,0x00000030,0x40616834)...
2018 Apr 15
1
__clear_cache / clear_cache.c
...likely anyway, you aren't likely
to "fall from" the caller into the code.
2. #elif defined(_WIN32) && (defined(__arm__) || defined(__aarch64__))
be changed to just:
#elif defined(_WIN32)
since Win32 hypothetically/historically runs on more than just x86/amd64/arm/arm64, and
FlushInstructionCache has been and presumably will remain omnipresent.
- Jay
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180415/83b0bac5/attachment.html>
2012 Jan 07
1
[LLVMdev] [llvm-commits] [PATCH][Compiler-rt] Windows implementation of mmap functionality in clear_cache_test and enable_execute_stack_test
...est/Unit/clear_cache_test.c (revision 147731)
+++ test/Unit/clear_cache_test.c (working copy)
@@ -11,11 +11,20 @@
#include <stdio.h>
#include <string.h>
#include <stdint.h>
+#if defined(_WIN32)
+#include <windows.h>
+void __clear_cache(void* start, void* end)
+{
+ if( !FlushInstructionCache(GetCurrentProcess(), start, end-start) )
+ exit(1);
+}
+#else
#include <sys/mman.h>
+extern void __clear_cache(void* start, void* end);
+#endif
-extern void __clear_cache(void* start, void* end);
typedef int (*pfunc)(void);
@@ -38,7 +47,15 @@
// make executable the pag...
2012 Jan 07
0
[LLVMdev] [llvm-commits] [PATCH][Compiler-rt] Windows implementation of mmap functionality in clear_cache_test and enable_execute_stack_test
Hi Ruben,
> I see I missed some curly braces. I also modified spacing a tiny bit.
Doesn't seem so. E.g. you have:
+ if ( !VirtualQuery(addr, &b, sizeof(b)) )
+ exit(1);
+ if( !VirtualProtect(b.BaseAddress, b.RegionSize,
PAGE_EXECUTE_READWRITE, &b.Protect) )
Add space after "if". Do not put spaces after "(" and before ")". Same
for other
2012 Jan 07
2
[LLVMdev] [llvm-commits] [PATCH][Compiler-rt] Windows implementation of mmap functionality in clear_cache_test and enable_execute_stack_test
...est/Unit/clear_cache_test.c (revision 147738)
+++ test/Unit/clear_cache_test.c (working copy)
@@ -11,11 +11,20 @@
#include <stdio.h>
#include <string.h>
#include <stdint.h>
+#if defined(_WIN32)
+#include <windows.h>
+void __clear_cache(void* start, void* end)
+{
+ if (!FlushInstructionCache(GetCurrentProcess(), start, end-start))
+ exit(1);
+}
+#else
#include <sys/mman.h>
+extern void __clear_cache(void* start, void* end);
+#endif
-extern void __clear_cache(void* start, void* end);
typedef int (*pfunc)(void);
@@ -38,21 +47,29 @@
// make executable the pag...
2002 Jul 10
2
Problems with VGA PLANETS 4
...es this mean at all?
- fixme:reg:_w95_parse_dkv RegSetValueEx returned: 0x0000000e
- err:seh:EXC_DefaultHandling Unhandled exception code
c000013a flags 0 addr 0x401 36fb4
04 _ Building the font metrics takes a LOT of time, god is that slow!
And then it fails!
fixme:debug:FlushInstructionCache
(0xffffffff,0x41410000,0x00006000):stub
last address with 6000, 6000 and with a000
- a popup window from wine says
"Unhandled exception 0xc0000005 at address 0x24748b56.
Do you want to debug it?"
and clicking YES results in
- err:seh:UnhandledExceptio...
2001 Apr 29
1
files not found
i am getting closer!!
now when i run the program (as root),
wine --debugmsg +file,+dosfs tc2000.exe
i get a messagebox:
'Files were missing that are required for TeleChart 2000. Telechart 2000
will attempt to restore your system.'
it then bombs-out:
Run-time error '429':
ActiveX component can't create object'
the only modification to config was i added