Tagged Questions

AMD64 is an alternate name for the x86-64 instruction set architecture

learn more… | top users | synonyms

8
votes
1answer
355 views

amd64 fs/gs registers in linux

On the x86-64 architecture, two registers have a special purpose: FS and GS. In linux 2.6.*, the FS register seem to be used to store thread-local information. Is that correct? What is stored at ...
6
votes
3answers
1k views

Clean x86_64 assembly output with gcc?

I've been teaching myself GNU Assembly for a while now by writing statements in C, compiling them with "gcc -S" and studying the output. This works alright on x86 (and compiling with -m32) but on my ...
5
votes
2answers
105 views

Lightweight method to use Amd64 instructions under 32-bit Windows?

For some CPU-bound code using 64-bit variables, it is beneficial to use the Amd64 instruction set rather than x86. How can it be done under 32-bit Windows (e.g. Windows XP SP3)? Of course I assume a ...
5
votes
2answers
1k views

Cross compile windows 64 bit .exe from linux

I know that if I want to compile a 32 bit .exe for windows on Linux I can just install and use the mingw32 package (e.g. apt-get install mingw32) on linux. What if I want to compile a windows .exe ...
4
votes
2answers
806 views

What 64bit target to choose when compiling with Visual Studio (vcvarsall.bat)?

The vcvarsall.bat that does setup de build environment let you choose between x86 | ia64 | amd64 | x86_amd64 | x86_ia64. First option is obvious for 32bit, but the question is: what would be the ...
4
votes
7answers
655 views

Is there any advantage for developing on a 64 bit OS?

I'm not sure I understand it properly: does a 64 bit OS run/compile code faster than a 32 bit OS on the same system? We're using 64 bit OSs where I am and it seems to only cause compatibility issues ...
3
votes
3answers
66 views

Java getProperties

The command: System.getProperties().list(System.out); returns the following: sun.cpu.isalist=amd64 I can't understand why it's amd64. I have Lenovo with Intel 3i, Win7 (where the code was ...
3
votes
3answers
675 views

Free 64-bit disassembler?

Is there any free AMD64 disassembler? It seems like there are a lot of x86 disassemblers, but they can't open 64-bit files... Update: Are there any tools that can show exported symbols in the ...
3
votes
2answers
258 views

i386 vs. AMD64 ABI Differences

Where can I find all the differences in data types between the i386 & AMD64 Application Binary Interface(ABI)s ? I know that the long type is 32-bit in i386 ABI & 64-bit in AMD64. Is this ...
3
votes
2answers
250 views

Does x64 mono require x64 class library?

I compiled an x64 mono (version 2.11) on Windows. I noticed that every program that use a class library (System.Net, System.IO, ...) crash systematically. I downloaded the latest version of class ...
3
votes
3answers
683 views

PROCESSOR_ARCHITECTURE returns AMD64 in some 32-bit processes

I ran into a bizarre scenario where a 32 bit process claims that its PROCESSOR_ARCHITECTURE is AMD64, causing failure in components that make decisions based on that flag. I isolated it to these ...
3
votes
1answer
989 views

How to use RIP Relative Addressing in a 64-bit assembly program?

How do I use RIP Relative Addressing in a Linux assembly program for the AMD64 archtitecture? I am looking for a simple example (a Hello world program) that uses the AMD64 RIP relative adressing mode. ...
3
votes
2answers
2k views

Killing linux socket from shell (gentoo amd64)

Folks, what is the best way to kill an established connection from the shell in linux? Looks like there are 'tcpkill' and 'cutter' tools available, however, on my gentoo amd64 tcpkill is disabled by ...
2
votes
1answer
488 views

Ghostscript initialization fails with simple Ghost4J sample code

I am using Ubuntu 10.10 amd64, Sun JDK 6.0.24 and the default ghostscript package. Now, I am trying to get the "Render a PDF document using SimpleRenderer" sample from the Ghost4J page working. While ...
2
votes
1answer
214 views

Alignment of vectors in LLVM's amd64 output

I'm trying to use vectors inside structs with LLVM. I have the following C definition of my struct: struct Foo { uint32_t len; uint32_t data[32] __attribute__ ((aligned (16))); }; and ...
2
votes
1answer
834 views

Push and Pop on AMD64

What is the equivilent of pushl %ecx and popl %ecx on a AMD64 sytem, My results are Error: invalid instruction suffix for 'push' I have had a look and some one suggested changing ecx to rcx but that ...
2
votes
1answer
402 views

OpenCV and AMD processors

I know that in the past OpenCV was based on IPP and was optimized to run on Intel CPUs. Is this still the case with OpenCV 2.0? Thanks, SW.
2
votes
2answers
986 views

Why does MSVC not support inline assembly for AMD64 and Itanium targets?

Yesterday I learned that inline assembly (with the __asm keyword) is not supported under Microsoft Visual C++ when compiling for AMD64 and Itanium targets. Is that correct? And if so, does anyone ...
1
vote
1answer
84 views

Are my Go tools built for the wrong architecure?

I'm a big fan of Go language, and now I am trying to explore other architectures than x86/amd64. I build Go for ARM, and it seems to have good support for that target. All libraries build ...
1
vote
1answer
63 views

Any AMD64 (x86-64) assembler AST library? (preference for .NET and free)

I need to compile from binary VM-bytecode to native x86-64 but I dont want to write text asm, I would like output AST-objects, and later go to text or x86 binary images. Someone knows a good library ...
1
vote
3answers
169 views

compiling in amd64 mode (visual studio 2010)

guys I want to compile a native 64 bit application. I did configure VS the right way and it works but obvisouly it is cross compiling and not compiling in native amd64 mode as my program still freezes ...
1
vote
1answer
38 views

JACK midi events lost on 64 bit machines

I have an application using JACK MIDI under Linux. It works perfectly on 32 bit machines, but on my new one, which is 64 bits, I get event loss all the time. I checked: Values coming from ...
1
vote
1answer
648 views

Problem of loading mod_wsgi module into apache on Windows 64-bit

I'm trying to install mod_wsgi module followed this instruction. I've downloaded mod_wsgi.so from this source. It seems like apache cannot restart services properly and the page cannot be loaded after ...
0
votes
0answers
20 views

MAC OS in VMWARE on AMD [migrated]

I need to install MAC OS 10.6.4+ version in VMWare Workstation 7(to use XCode 3.2.4+). I have an AMD Turion X2 CPU(virtualization works) and Windows 7 x64. Till now, i was able to launch only this ...
0
votes
2answers
53 views

Portable source code between 386 and amd64?

Goal: have a single assembler source file which will assemble both to x86 (i386) and to x86_64 (amd64)? Is this possible, for instance with YASM?
0
votes
2answers
85 views

Can't build 32 bit asp.net app deployment package on 64 bit Windows 7

I'm building a web app that's going to be deployed on a 32 bit server, using a cproj_deploy and web deployment project to build my msi file. If I build this on XP, everything works fine. If I build it ...
0
votes
3answers
165 views

golang programming linux amd64 wrong release object

I wanted to try-out go language from Google. I've installed everything correctly like the doc said. But when I try to compile I always have an output similar to this: $ 6g main.go main.go:3: ...
0
votes
0answers
73 views

Why QTime::start() giving segmentation fault in amd64 architecture? (Key words : QTime, OpenGL, Frame Rate Per Scond, FRPS, AMD64)

I am implementing a Cloth simulation program in Debian Lenny 32bit platform (Intel architecture). It uses Qt4 and OpenGL(that Qt4 itself calls in makefile line QT+=opengl). In the Debian Lenny 32 ...
0
votes
4answers
203 views

AMD compatible assemblers for Linux

I have an AMD CPU and I've been looking for an AMD compatible assembler. Is there any advice for me? Sultan
0
votes
3answers
444 views

Division and modulus using single divl instruction (i386, amd64)

I was trying to come up with inline assembly for gcc to get both division and modulus using single divl instruction. Unfortunately, I am not that good at assembly. Could someone please help me on ...
0
votes
2answers
248 views

AMD64 run on i586 or vice-versa?

I have a small C program that I wish to port from Linux to Windows. I can do this with the MinGW compiler, and I have noticed that it has two different prefixes, amd64 and i586. I am on an i686 ...
0
votes
1answer
83 views

My python build binaries not really running as 64bit program in AMD Win2003r2x64 machine

My problem is my python binaries not running as 64bits program on my amd64(Opteron 8214, 4 cpu) server. The machine is a Dual-Core, so there are 8 core shown in taskmgr. It shown no "*32" in ...
0
votes
1answer
581 views

Does Visual C++ 2010 Express include an x64 compiler?

I have just downloaded and installed the VC++ 2010 Express tool from Microsoft. I don't see an amd64 directory under c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin In my old install of ...
0
votes
1answer
374 views

Libtool think that a “library was moved” but it isn't the case

I am currently recompiling gtk+ and dependencies from source (I have no other choices). All my custom packages are installed in a specific custom point (let's call it /packages) (it can seem odd but ...
0
votes
1answer
97 views

Problem with using driver on Vista 64bit

This is a chronological continuation of this question. I have simplified my board so it runs well with the DDK version of BulkUSB on 32bit versions of XP and Vista, but I'm not able to install it on ...
0
votes
1answer
329 views

VMware 4 ESXi on 64Bit CPU does it run 64Bit Guests?

I have a PC with AMD FX CPU (Do not remember if it was FX51 or FX60) it is 64Bit does it means that I can run 64Bit Guests? even if it does not have the Visualization extensions in the CPU?
0
votes
2answers
781 views

Writing a simple batch file to setup a variable?

I want to write a simple batch file where i want to setup a environment variable based on the machine architecture. It is as below: set ARCH=%PROCESSOR_ARCHITECTURE% echo %ARCH% if %ARCH%==x86 ( ...
0
votes
2answers
118 views

write() in sys/uio.h returns -1

I'm using Ubuntu Server 9.10 AMD Phenom 2 cpu g++ (Ubuntu 4.4.1-4ubuntu9) 4.4.1 trying to run the application pftp-shit v 1.11, which runs successfully until the remote file list is going to be saved ...
-1
votes
0answers
45 views

Segmentation fault with movdqu

Ok, ignore me - I've forgotten that rdi may change after calling, and my two mallocs for 64k were in fact one for 64k and one undefined. I'm writing deflate decompression implementation, and I've got ...