active questions tagged win64 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T00:15:20Z http://stackoverflow.com/feeds/tag/win64 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/265449/windbg-with-minidump-from-native-32-bit-app-crashing-on-64-bit-windows-wont-lo 0 WinDbg, with minidump from native 32-bit app crashing on 64-bit Windows, won't load symbols for system DLLs Roger Lipscombe 2008-11-05T15:18:56Z 2009-10-12T06:27:37Z <p>I've got a minidump file from a crash in one of our apps. It's a 32-bit native app, and it was running on 64-bit Windows.</p> <p>If I load the minidump file into WinDbg, WinDbg won't load the symbols for the system DLLs. I've got my symbol paths configured correctly:</p> <pre><code>_NT_SYMBOL_PATH=SRV*C:\WebSymbols*http://msdl.microsoft.com/download/symbols </code></pre> <p>...because WinDbg correctly loads symbols for minidumps created on 32-bit Windows. It just won't load symbols for DLLs in the SysWOW64 directory.</p> <p>I've tried 32-bit WinDbg (from Debugging Tools 6.9) on 32-bit Windows 2003, and 64-bit WinDbg (also from Debugging Tools 6.9) on 64-bit Windows 2008. Both fail to load the symbols. This is from the 32-bit WinDbg:</p> <pre>0:014> !sym noisy noisy mode - symbol prompts on 0:014> .reload .................................................................................... Loading unloaded module list .. SYMSRV: C:\WebSymbols\ntdll.dll\48E714D0170000\ntdll.dll not found SYMSRV: http://msdl.microsoft.com/download/symbols/ntdll.dll/48E714D0170000/ntdll.dll not found DBGENG: C:\Windows\SysWOW64\ntdll.dll - Couldn't map image from disk. Unable to load image C:\Windows\SysWOW64\ntdll.dll, Win32 error 0n2 DBGENG: ntdll.dll - Partial symbol image load missing image info DBGHELP: Module is not fully loaded into memory. DBGHELP: Searching for symbols using debugger-provided data. SYMSRV: C:\WebSymbols\wntdll.pdb\6686D0C5D0554E14953396093DA218A92\wntdll.pdb not found SYMSRV: http://msdl.microsoft.com/download/symbols/wntdll.pdb/6686D0C5D0554E14953396093DA218A92/wntdll.pdb not found DBGHELP: wntdll.pdb - file not found *** WARNING: Unable to verify timestamp for ntdll.dll *** ERROR: Module load completed but symbols could not be loaded for ntdll.dll DBGHELP: ntdll - no symbols loaded SYMSRV: C:\WebSymbols\kernel32.dll\48E7156Cf0000\kernel32.dll not found SYMSRV: http://msdl.microsoft.com/download/symbols/kernel32.dll/48E7156Cf0000/kernel32.dll not found DBGENG: C:\Windows\SysWOW64\kernel32.dll - Couldn't map image from disk. Unable to load image C:\Windows\SysWOW64\kernel32.dll, Win32 error 0n2 DBGENG: kernel32.dll - Partial symbol image load missing image info DBGHELP: Module is not fully loaded into memory. DBGHELP: Searching for symbols using debugger-provided data. SYMSRV: C:\WebSymbols\wkernel32.pdb\B0C3B36CC7EF4F3E9C168E186A5A6FEB2\wkernel32.pdb not found SYMSRV: http://msdl.microsoft.com/download/symbols/wkernel32.pdb/B0C3B36CC7EF4F3E9C168E186A5A6FEB2/wkernel32.pdb not found DBGHELP: wkernel32.pdb - file not found *** WARNING: Unable to verify timestamp for kernel32.dll *** ERROR: Module load completed but symbols could not be loaded for kernel32.dll DBGHELP: kernel32 - no symbols loaded SYMSRV: C:\WebSymbols\KERNELBASE.dll\48E7156D5a000\KERNELBASE.dll not found SYMSRV: http://msdl.microsoft.com/download/symbols/KERNELBASE.dll/48E7156D5a000/KERNELBASE.dll not found DBGENG: C:\Windows\SysWOW64\KERNELBASE.dll - Couldn't map image from disk. DBGENG: KERNELBASE.dll - Partial symbol image load missing image info DBGHELP: Module is not fully loaded into memory. DBGHELP: Searching for symbols using debugger-provided data. SYMSRV: C:\WebSymbols\wkernelbase.pdb\A8683F0C515F469B833E3FA562E0DB251\wkernelbase.pdb not found SYMSRV: http://msdl.microsoft.com/download/symbols/wkernelbase.pdb/A8683F0C515F469B833E3FA562E0DB251/wkernelbase.pdb not found DBGHELP: wkernelbase.pdb - file not found *** WARNING: Unable to verify timestamp for KERNELBASE.dll *** ERROR: Module load completed but symbols could not be loaded for KERNELBASE.dll DBGHELP: KERNELBASE - no symbols loaded</pre> <p>Any ideas? Are the symbols just not available on Microsoft's symbol server?</p> http://stackoverflow.com/questions/185042/how-do-i-resolve-1-is-not-a-valid-win32-application 1 How do I resolve "%1 is not a valid Win32 application"? Adam Tuttle 2008-10-08T21:44:56Z 2009-10-06T09:27:38Z <p><strong>Environment:</strong><br/> Windows Server 2003 R2 Enterprise 64bit, SP2<br/> .NET framework is supposedly installed (2.0 SP2, 3.0 SP2, 3.5 SP1)</p> <p>I say "supposedly" because they are listed as installed under Add/Remove programs. I'm not sure it's <em>properly</em> installed, because the "ASP.NET" tab isn't added to any of the sites in IIS.</p> <p>In the IIS Web Service Extensions section, I have both "ASP.NET v2.0.50727" (Allowed), and "ASP.NET v2.0.50727 (32-bit)" (Prohibited).</p> <p>The site in question has script-execute enabled.</p> <p><strong>Problem:</strong></p> <p>I created a super-simple ASP.NET/C# website: Default.aspx with a label id="Label1", and a code-behind with: <code>Label1.text = "Hello World";</code> and the error I'm getting is:</p> <blockquote> <p>%1 is not a valid Win32 application.</p> </blockquote> http://stackoverflow.com/questions/1409161/exceptions-ignored-in-formload-for-x64 2 Exceptions ignored in form_load for x64 Pete 2009-09-11T05:39:39Z 2009-10-05T20:38:36Z <p>When I throw an exception from form_load in my C# application it doesn't work when the platform is x64. (it acts as expected for x86)</p> <p>When I step through the code, I get to the line where the exception it thrown, then it immediately jumps to timer_Tick.</p> <p>When I create a new project and add this line to form_load: throw new System.Exception("oops!");</p> <p>For x86 it crashes as expected. For x64 it doesn't crash.</p> <p>Is there some way to get an application to actually throw from form_load on 64-bit?</p> http://stackoverflow.com/questions/1478846/how-to-get-environment-variable-in-64-bit-windows 0 How to get environment variable in 64 bit Windows? alice7 2009-09-25T18:23:06Z 2009-09-27T13:14:03Z <p>Is there any way to retrieve the environment variable in 64 bit machine. I already have %abc% which returns me variable in 32 bit machine, but doesn't work in 64 bit.</p> <p>My Mistake: How can I get through command line not through programming language?</p> http://stackoverflow.com/questions/1479419/how-to-fix-the-error-c2118-negative-subscript 0 how to fix the error c2118: negative subscript Gentoo 2009-09-25T20:24:50Z 2009-09-26T21:53:08Z <p>Again, porting 32-bit app to 64-bit. I get the negative subscript error on the C_ASSERT statement mentioned below..</p> <pre><code> C_ASSERT (sizeof(somestruct) == some#define); </code></pre> <p>I also read the <a href="http://support.microsoft.com/kb/68475" rel="nofollow">http://support.microsoft.com/kb/68475</a> article but not sure if I know how to fix it in this case.</p> <p>Help is appreciated.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1479161/vc-cli-application-32-64-bit-cstring-question 1 VC++ CLI application 32 - 64 bit CString question Gentoo 2009-09-25T19:30:37Z 2009-09-25T19:35:46Z <p>SO, I am in the process of resolving the port of a 32bit app to 64 bit. When I compile for x64 I see a warning come up for the line ` CString sig; sig = "something"; sig = sig.left(strlen(something defined)); &lt;&lt;&lt;&lt;&lt;&lt;</p> <p>` So, I get the warning for the sig.left where it implicitly converts the strlen value to int. Since in x64 strlen returns the 64bit size_t, i am getting the warning. what are my options of fixing this.. any alternate method ?</p> <p>Thanks</p> http://stackoverflow.com/questions/1446087/how-can-my-perl-script-know-it-is-running-under-win64 1 How can my Perl script know it is running under Win64? bdbaddog 2009-09-18T18:10:56Z 2009-09-21T23:10:15Z <p>How can I have my Perl script detect it's running on a 64-bit Windows machine, even if it's a 32-bit perl?</p> http://stackoverflow.com/questions/1305286/shgetspecialfolderpath-how-to-access-64bit-csidl-from-32bit-application 0 SHGetSpecialFolderPath, how to access 64bit CSIDL from 32bit application Daniel Lopez 2009-08-20T10:38:26Z 2009-08-20T11:00:55Z <p>Is there a way from a 32bit application running on a 64bit system to have access to the default folders for 64bit applications?</p> <p>For example, using SHGetSpecialFolderPath with CSIDL_PROGRAM_FILES from a 32bit application returns "C:\Program Files (x86)' If the same call was used from a 64bit application, I would get "C:\Program Files". Is there a way of getting that "C:\Program Files" from a 32bit application?</p> <p>A related question here does not help <a href="http://stackoverflow.com/questions/138379">http://stackoverflow.com/questions/138379</a> nor does supressing the wow64 filesystem redirection before calling SHGetSpecialFolderPath</p> http://stackoverflow.com/questions/1271475/x64-valist-in-visual-studio-2005 2 x64 va_list in Visual Studio 2005 Roderick 2009-08-13T11:43:45Z 2009-08-19T16:28:59Z <p>I have a class non-static member function, and it has variable arguments, I'm compiling on Visual Studio 2005, with the 64-bit runtime, on 64-bit Windows.</p> <pre><code>void Class::Foo(void* ptr,...) { va_list args; va_start(args,ptr); float f=va_arg(args,float); va_end(args) } </code></pre> <p>I'm expecting a float, I pass a float to the function. But when I debug - I don't get the float I've passed. In fact - it's being received by the function as a 64-bit double! I have to do this:</p> <pre><code>double d=va_arg(args,double); float f=(float)d; </code></pre> <p>Now I know Win64 likes to pass parameters in registers, and casts floats when it does this, shouldn't a va_list always be on the stack?</p> <p>According to <a href="http://www.cppreference.com/wiki/c/other/va%5Farg" rel="nofollow">most references</a>, I should have just a clean stack full of the passed parameters.</p> <p>My question is: is this correct behaviour, or a bug? And if it's a bug, is it my bug, or Microsoft's?</p> <p>I have the defines WIN64 and _M_AMD64, and WIN32 is undefined.</p> http://stackoverflow.com/questions/1180796/how-to-use-gs-in-64-bit-windows-assembly-eg-porting-tls-code 5 How to use "GS:" in 64-bit Windows Assembly (eg, porting TLS code) caffiend 2009-07-25T00:32:22Z 2009-07-31T15:56:52Z <p>How can an user-space program configure "GS:" under 64-bit Windows (currently XP-64)?<br /> (By configure, set GS:0 at an arbitrary 64-bit linear address).</p> <p>I am trying to port a "JIT" environment to X86-64 that was originally developed for Win32. </p> <p>One unfortunate design aspect is that identical code needs to run on multiple user-space threads (eg, "fibers"). The Win32 version of the code uses the GS selector for this, and generates the proper prefix to access the local data - "mov eax,GS:[offset]" points to the correct data for the current task. The code from the Win32 version would load a value into GS, if only it had a value that would work.</p> <p>So far I've been able to find that 64-bit windows doesn't support the LDT, so the method used under Win32 won't work. However, the X86-64 instruction set includes "SWAPGS", as well as a method to load GS without using the legacy segmentation - but that only works in kernel space.</p> <p>According to X64 manuals, even if Win64 allowed access to descriptors -- which it doesn't -- there's no way to set the high 32-bits of the segment base. The only way to set these is through GS_BASE_MSR (and corresponding FS_BASE_MSR - the other segment bases are ignored in 64-bit mode). The WRMSR instruction is Ring0, so I can't use it directly. </p> <p>I am hoping for a Zw* function that allows me to change "GS:" in user space, or some other dark corner of the Windows API. I believe Windows still uses FS: for its own TLS, so some mechanism must be available?</p> <p><hr /> This sample code illustrates the problem. I apologize in advance for using byte code - VS won't do inline assembly for the 64-bit compile, and I was trying to keep this as one file for illustrative purposes.</p> <p>The program displays "PASS" on XP-32, and doesn't on XP-x64. </p> <p><hr /></p> <pre> #include &lt;windows.h&gt; #include &lt;string.h&gt; #include &lt;stdio.h&gt; unsigned char GetDS32[] = {0x8C,0xD8, // mov eax, ds 0xC3}; // ret unsigned char SetGS32[] = {0x8E,0x6C,0x24,0x04, // mov gs, ss:[sp+4] 0xC3 }; // ret unsigned char UseGS32[] = { 0x8B,0x44,0x24,0x04, // mov eax, ss:[sp+4] 0x65,0x8B,0x00, // mov eax, gs:[eax] 0xc3 }; // ret unsigned char SetGS64[] = {0x8E,0xe9, // mov gs, rcx 0xC3 }; // ret unsigned char UseGS64[] = { 0x65,0x8B,0x01, // mov eax, gs:[rcx] 0xc3 }; typedef WORD(*fcnGetDS)(void); typedef void(*fcnSetGS)(WORD); typedef DWORD(*fcnUseGS)(LPVOID); int (*NtSetLdtEntries)(DWORD, DWORD, DWORD, DWORD, DWORD, DWORD); int main( void ) { SYSTEM_INFO si; GetSystemInfo(&si); LPVOID p = VirtualAlloc(NULL, 1024, MEM_COMMIT|MEM_TOP_DOWN,PAGE_EXECUTE_READWRITE); fcnGetDS GetDS = (fcnGetDS)((LPBYTE)p+16); fcnUseGS UseGS = (fcnUseGS)((LPBYTE)p+32); fcnSetGS SetGS = (fcnSetGS)((LPBYTE)p+48); *(DWORD *)p = 0x12345678; if (si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64) { memcpy( GetDS, &GetDS32, sizeof(GetDS32)); memcpy( UseGS, &UseGS64, sizeof(UseGS64)); memcpy( SetGS, &SetGS64, sizeof(SetGS64)); } else { memcpy( GetDS, &GetDS32, sizeof(GetDS32)); memcpy( UseGS, &UseGS32, sizeof(UseGS32)); memcpy( SetGS, &SetGS32, sizeof(SetGS32)); } SetGS(GetDS()); if (UseGS(p) != 0x12345678) exit(-1); if (si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64) { // The gist of the question - What is the 64-bit equivalent of the following code } else { DWORD base = (DWORD)p; LDT_ENTRY ll; int ret; *(FARPROC*)(&NtSetLdtEntries) = GetProcAddress(LoadLibrary("ntdll.dll"), "NtSetLdtEntries"); ll.BaseLow = base & 0xFFFF; ll.HighWord.Bytes.BaseMid = base >> 16; ll.HighWord.Bytes.BaseHi = base >> 24; ll.LimitLow = 400; ll.HighWord.Bits.LimitHi = 0; ll.HighWord.Bits.Granularity = 0; ll.HighWord.Bits.Default_Big = 1; ll.HighWord.Bits.Reserved_0 = 0; ll.HighWord.Bits.Sys = 0; ll.HighWord.Bits.Pres = 1; ll.HighWord.Bits.Dpl = 3; ll.HighWord.Bits.Type = 0x13; ret = NtSetLdtEntries(0x80, *(DWORD*)&ll, *((DWORD*)(&ll)+1),0,0,0); if (ret &lt; 0) { exit(-1);} SetGS(0x84); } if (UseGS(0) != 0x12345678) exit(-1); printf("PASS\n"); } </pre> http://stackoverflow.com/questions/1153427/reliably-detecting-os-architecture-in-a-windows-desktop-gadget 0 Reliably detecting OS architecture in a Windows Desktop Gadget Andy E 2009-07-20T13:00:02Z 2009-07-20T13:11:32Z <p>I have some Javascript code that will programmatically register an COM interop assembly by writing all the necessary keys and values to the registry. An older version of this COM object was written in VB6 and didn't work correctly on x64 versions of Windows unless the user manually ran the x86 sidebar.exe, so some of our users would have switched to using the x86 sidebar.exe for the COM object to work.</p> <p>In short, I need to correctly detect the architecture of the operating system currently running. I've tried all of the following which return incorrect values if the x86 version of sidebar.exe is running:</p> <pre><code>System.Machine.processorArchitecture navigator.platform navigator.cpuClass </code></pre> <p>Is there something I can use to reliably detect if Win64 is running even though it's running x86 sidebar.exe?</p> http://stackoverflow.com/questions/985739/running-a-data-synapse-win32-dll-grid-node-on-a-windows-64-machine 0 Running a Data Synapse Win32 DLL Grid Node on a Windows 64 Machine? Tony Lambert 2009-06-12T09:06:36Z 2009-07-08T09:13:41Z <p>We are developing a Data Synapse calc node process in C# that requires functionality in a Win32 DLL. We have no problems building this.</p> <p>The question is it has to run on a Windows 64 bit system, with Data Synapse 5.1 Grid APIs for Windows 64. While Windows 64 will run most processes transparently using WOW we don't know that Data Synapse's 64 bit will in some way stop this from working?</p> <p>Anyone done this?</p> <p>8 Jun 2009: Update. when we try to run a win32 service on the win64 grid we run into problems because on Win64 the grid code intrastructure runs as 64 bit Java. This java calls our service using a win64 JINI call to our service which is implemented as a DLL. Unfortunately as a Win32 DLL.</p> http://stackoverflow.com/questions/1006831/compiling-with-delphi-2009-from-a-command-line-under-windows-vista-64-bit 1 Compiling with Delphi 2009 from a command line under Windows Vista 64-bit Lars D 2009-06-17T12:53:31Z 2009-06-22T07:01:39Z <p>Has anyone succeeded to compile a Win32 GUI app with the command line dcc32.exe compiler, under 64-bit Windows Vista, without installing Delphi 2009? On our system it fails, with a message that the DFM files contain unknown 16-bit resources. This is usually an indication that the DFM files cannot be read. It works perfectly on all 32-bit Vista and Windows XPs, that we tried.</p> <p>I am asking, because we want to ensure that we can rebuild our current exe files later, if needed, so even if we all switch to 64-bit OSes in the future, we want to be able to rebuild the old 2009 versions.</p> http://stackoverflow.com/questions/1018942/using-imagelist-from-vb6-application-causes-crash-on-windows-7-0-64-bit 2 Using ImageList from VB6 application causes crash on Windows 7.0 64-bit Joel Spolsky 2009-06-19T16:47:09Z 2009-06-19T19:28:29Z <p>I have an old VB6 application that uses an ImageList control from COMCTL32.OCX ("Microsoft Windows Common Controls 5.0 (SP2)") to provide icons for TreeViews and ListViews.</p> <p>The app won't even launch on Windows 7.0 64 bit. The minute it tries to load the form that has the ImageList on it, it crashes (well, actually, the app winks out, exiting without a trace).</p> <p>Removing the ImageList from the form solves the problem.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/915398/loading-a-32-bit-process-in-a-64-bit-environment 3 Loading a 32-bit process in a 64-bit environment. Rakesh Agarwal 2009-05-27T12:17:34Z 2009-06-11T19:23:46Z <p>I have a couple of questions as below. CHM is (Compiled HTML File)</p> <p>My CHM file has a link to launch a 32-bit application. The CHM file is coded in Javascript.This works fine in a 32-bit OS environment. </p> <p>But this does not work in a 64 bit OS environment.The reason being: When I open the chm file,64-bit version of hh.exe(an operating system executable) executes and launches the chm. And the chm gets loaded in a 64-bit environment.<br /> And now I cannot launch the 32 bit application from the CHM file, because a 64-bit process cannot load a 32-bit process. </p> <p>Is there any way I can make it work for 64-bit OS as well ? </p> <p>I thought of few solutions as below but I dont know how to implement them . </p> <p>1)In Javascript code,if I could check whether the OS is a 32-bit or 64 bit.Then I could pop-up a well-defined error to user,if it is 64-bit OS.</p> <p>2)Or if I could force the OS to run the 32-bit version of hh.exe, so that the chm is loaded in a 32-bit environment and hence causing no problem.</p> http://stackoverflow.com/questions/931150/wheres-win64-defined-in-c-cli-project-compiled-as-x64 0 Where's _WIN64 defined in C++/CLI project compiled as x64? AZ 2009-05-31T02:57:45Z 2009-05-31T03:42:42Z <p>It seems to be added automagically in every project I create and I compile for x64 but it doesn't even appear in the project's Configuration Properties/(C/C++)/Preprocessor when selecting the x64 configuration.</p> http://stackoverflow.com/questions/873812/how-to-compile-existing-posix-code-for-64-bit-windows 1 How to compile existing posix code for 64-bit Windows? fantius 2009-05-17T02:52:14Z 2009-05-18T01:06:19Z <p>I'm ok with using Cygwin or MinGW, but I need to end up with 64-bit code, not 32-bit. This is because I will be calling the DLL from 64-bit managed C#. I can't seem to find and good references for setting up those tools to create 64-bit binaries. Also, it would be nice if the GCC was version 4, not version 3 as came with my Cygwin install.</p> <p>An alternative would be some form of interprocess communication. I will research that, but what I laid out above is what I really want.</p> http://stackoverflow.com/questions/547313/run-win32-iis-applications-under-windows-xp-64bit 1 Run Win32 IIS applications under Windows XP 64bit Joshua 2009-02-13T19:21:25Z 2009-03-03T04:32:58Z <p>How do I run windows 32bit applications in IIS on Windows XP 64 bit?</p> <p>Note: This is not running within Visual Studio. Note: Only 404 errors are logged. Note: 404 errors caused by IIS disabling CGI scripts</p> http://stackoverflow.com/questions/301995/write-large-file 8 Write large file trygvi 2008-11-19T14:18:43Z 2009-02-23T09:16:45Z <p>I try to write to a large file, but it seems like it does not work for files larger than 2GB. I have tried with boost::iostreams::file_sink. Is this just a limit with the boost stream? Is there some other way I can write a large file on Win64 and win32?</p> http://stackoverflow.com/questions/519828/virtualstore-not-working-on-vista-x64 0 VirtualStore not working on Vista x64 Niklas 2009-02-06T10:42:25Z 2009-02-06T13:27:13Z <p>I have a little tray application that want's to write to it's own folder under the Program Files directory. I know not an ultimate design and I will fix it, but first I want to understand how this work. </p> <p>Running this on a 32-bit Vista machine it writes the files to the VirtualStore and it works just like it should.</p> <p>But when installing this on a Vista 64-bit machine I immediately get hit with a UnauthorizedAccessException for trying to write to the directory within Program Files (and Program Files (x86)). </p> <p>The VirtualStore redirect does not seem to work on Vista 64-bit. Any ideas?</p> <p>It's a C# app written in Visual Studio 2008 and I use a FileStream obj to persist the stream to disk.</p> http://stackoverflow.com/questions/519825/virtualstore-not-working-on-vista-x64 0 VirtualStore not working on Vista x64 [closed] Niklas 2009-02-06T10:41:14Z 2009-02-06T10:41:14Z <p>I have a little tray application that want's to write to it's own folder under the Program Files directory. I know not an ultimate design and I will fix it, but first I want to understand how this work. </p> <p>Running this on a 32-bit Vista machine it writes the files to the VirtualStore and it works just like it should.</p> <p>But when installing this on a Vista 64-bit machine I immediately get hit with a UnauthorizedAccessException for trying to write to the directory within Program Files (and Program Files (x86)). </p> <p>The VirtualStore redirect does not seem to work on Vista 64-bit. Any ideas?</p> http://stackoverflow.com/questions/438863/virtual-allocation-granularity-and-page-size 2 Virtual allocation granularity and page size fbonnet 2009-01-13T13:03:02Z 2009-01-13T13:59:24Z <p>Howdy folks,</p> <p>What are the typical values of the virtual allocation granularity and page size on Win64 platforms? That'd be SYSTEM_INFO's dwAllocationGranularity and dwPageSize.</p> <p>On Win32 systems these would be 64k and 4k.</p> <p>I need to know because I've designed a custom allocator based on VirtualAlloc for a Win32 application and wonder if my design choices are still valid on Win64. I have no access to a Win64 system.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/262162/why-did-windows-64-choose-to-require-xmm6-and-xmm7-to-be-saved-restored 6 Why did Windows 64 choose to require xmm6 and xmm7 to be saved/restored? Aaron Wallack 2008-11-04T15:27:58Z 2008-12-21T08:52:37Z <p>Why did Windows 64 choose to require xmm6 and xmm7 to be saved/restored?</p> <p>In Windows 32, you could write assembly routines which clobbered xmm0...xmm7. But if you take that same assembly code and run it in Windows 64, it will usually cause an application fault because VS2007 stores double-precision values in xmm6 and xmm7.</p> <p>It seemed to me that since X64 has 16 xmm registers xmm0...xmm15 (whereas X32 only has 8 xmm registers), then Microsoft could have chosen to allow users to clobber xmm0..xmm7 (so that they could reuse assembly routines from Win32 without thinking about it) but require users to save/restore xmm8...xmm15.</p> <p>So, to satisfy my own curiousity, why did Windows 64 choose to require xmm6 and xmm7 to be saved/restored?</p> http://stackoverflow.com/questions/158232/how-do-you-compile-openssl-for-x64 0 How do you compile OpenSSL for x64? Kurt 2008-10-01T15:30:18Z 2008-10-01T15:33:27Z <p>After following the instructions in INSTALL.W64 I have two problems:</p> <ul> <li>The code is still written to the "out32" folder. I need to be able to link to both 32-bit and 64-bit versions of the library on my workstation, so I don't want the 64-bit versions to clobber the 32-bit libs.</li> <li>The output is still 32-bit! This means that I get "unresolved external symbol" errors when trying to link to the libraries from an x64 app.</li> </ul> http://stackoverflow.com/questions/23083/whats-an-alternative-to-gwluserdata-for-storing-an-object-pointer 6 What's an alternative to GWL_USERDATA for storing an object pointer? Benjamin Pollack 2008-08-22T18:16:51Z 2008-08-28T20:38:17Z <p>In the Windows applications I work on, we have a custom framework that sits directly above Win32 (don't ask). When we create a window, our normal practice is to put <code>this</code> in the window's user data area via <code>SetWindowLong(hwnd, GWL-USERDATA, this)</code>, which allows us to have an MFC-like callback or a tightly integrated <code>WndProc</code>, depending. The problem is that this will not work on Win64, since LONG is only 32-bits wide. What's a better solution to this problem that works on both 32- and 64-bit systems?</p>