x86-64 is a 64 bit extension to the Intel x86 architecture

learn more… | top users | synonyms (1)

3
votes
1answer
77 views

Why don't GCC and Clang use cvtss2sd [memory]?

I'm trying to optimize some code that's supposed to read single precision floats from memory and perform arithmetic on them in double precision. This is becoming a significant performance bottleneck, ...
-1
votes
1answer
27 views

Installing pyaudio on AMD64 from .exe

I want to install pyaudio on my Windows 8 x64 machine. I have Python 2.7 x64 installed. Building from source is not an option for me, and anyway I have seen that it failed for others. The Python 2.7 ...
0
votes
1answer
15 views

Confused about data allignment

I'm trying to get my head around why data alignment/padding is necessary. From wikipedia: "When a modern computer reads from or writes to a memory address, it will do this in word sized chunks" ...
0
votes
0answers
45 views

Why am I getting longjmp causes uninitialized stack frame error

I am getting this error. "longjmp causes uninitialized stack frame". Any idea, what is the reason for it.
0
votes
1answer
41 views

Noob ASM Questions

I'm trying to learn a bit of assembly over here, and I need a bit of help from the pros! test.s: .data helloworld: .asciz "printf test! %i\n" .text .globl main main: push $0x40 push ...
-1
votes
1answer
63 views

Force memory allocation to allocate from higher address (>4GB) on 64-bit Linux

Here're what I want to do: I have a library built for 64-bit Linux. Then I created an application linking that library. I want to make sure when I run the application, the memory allocated from the ...
0
votes
0answers
49 views

Passing Parameters in 64 bit Assembly Functoin from C language. Which Register Receive These Parameter?

I have searched some information from the internet. If I want to pass parameter to the assembly funtion from C, on the UNIX like system, the first six parameters go into rdi, rsi, rdx, rcx, r8, and ...
-1
votes
0answers
27 views

Same division gives different outputs [closed]

I just typed this in python command line and got the following results. >>> 1.7 / 1.9 0.36842105263157893 >>> 1.7 / 1.9 0.89473684210526316 You can see, the first time it gave the ...
1
vote
1answer
43 views

How are params passed when calling Printf from 64 bit asm?

I am learning to do assembly language again, and the only problem I have had so far has been doing calls to C. The book I have is geared to 32 bit, and I am working in 64 bit. Apparently there is a ...
1
vote
1answer
51 views

ROL / ROR on variable using inline assembly in Objective-C

I would like to perform ROR and ROL operations on variables in an Objective-C program. However, I can't manage it – I am not an assembly expert. Here is what I have done so far: uint8_t v1 = ....; ...
1
vote
1answer
54 views

SDL: Undefined symbols for architecture x86_64

I'm working on a simple wrapper for SDL to function as a sort of game engine. At the moment I have a simple temporary main function that looks like this: #include <iostream> int main(int argc, ...
0
votes
0answers
29 views

LLVM: Cannot select intrinsic error

I'm trying to use the SSE4.2's instruction _mm_crc32_u64 and for that purpose added -msse4.2 flag in the makefile, but yet I get this error when I try to compile my code with clang/llvm. LLVM ERROR: ...
0
votes
1answer
45 views

Where have I changed register variable value?

I was playing with GDB. x/<op> $var is the command to view the current values right? I don't realize what has caused the value of x/d $rbx to change from 28 to -5604 in following sequence of ...
1
vote
1answer
28 views

create a memory address alignment on x86

I want to create a memory address alignment fault on my x86 machine. Why do I want to do this? Because I would like to expressly test out my SIGBUS handler. Here is my test example. #include ...
0
votes
0answers
23 views

Can CPUID give me x86-64 name to binary table of instructions?

Is it possible? I was only thinkning as it can return names of extensions.
0
votes
1answer
53 views

Push an argument into stack?

I know that the first four arguments are in the register (RCX, RDX, R8, R9), and that additional arguments are pushed on the stack. Question: How to push an argument onto the stack? I tried with ...
2
votes
2answers
55 views

Assembly instructions for a function having pointer as local variable

I am trying to understand how assembly is generated for c. I wrote a sample program and disassembled it for the same. int main() { int a = 100; } Assembly generated: pushq %rbp # movq ...
2
votes
0answers
84 views

Trying to reverse engineer C code that is 64bit assembly [migrated]

This is the code I am looking at 0x0000000000401048 <+70>: mov 0x401ba0(,%rax,4),%eax This is an array of 15 integers. Just wondering how I can access indices 0 to 15 in gdb Thanks
-1
votes
3answers
120 views

Why the number of x86 int registers is 8?

recently I started to learn x86 assembler language and CPU architecture. I noticed that total number of int registers is 8, for x86-64 is 16. Why ? There must be some explanation.
3
votes
1answer
39 views

How can I dynamically hint a branch target to an x64 CPU?

I'd like to know how to write efficient jump tables for x64 processors, either in C, C++ or assembly. The input is known in advance, but impossible to predict algorithmically. Assuming I can look as ...
1
vote
1answer
24 views

“ABI-volatile” register treated as non-volatile across function call

On Windows x64, when is a compiler allowed to treat registers that the ABI marks as volatile as non-volatile given some additional insight? I have a disassembled function where r11 is used to restore ...
1
vote
2answers
50 views

What does sched_yield do in this case?

If I have a process whose all threads are running on different cores, what will sched_yield do in that case? Get relinquished and immediately issued again? Because what I see is that sched_yield does ...
1
vote
1answer
72 views

In GDB how do I print 0xc(%rsp)?

I'm trying to debug some code for a project and I've come up against this line cmpl $0x7,0xc(%rsp). What is 0xc(%rsp), and how do I print it?
0
votes
2answers
48 views

Using extra 16 bit in 64 bit machine

I read that a 64 bit machine actually uses only 48 bit (specifically, I'm using intel i7). Why do 64 bit systems have only a 48 bit address space? I would expect that the extra 16 bits (bits 48-63) ...
1
vote
1answer
69 views

What does lea in this x86-64 code do? [duplicate]

These are the first four lines of a function. I know that the first two lines create a new frame in the stack and are basically 'setup' lines. What do the lea instructions do? 40148e: 48 83 ec 18 ...
1
vote
1answer
92 views

Problems when compiling 64 bit (0xc000007b)

I am working on a Kinect Project, which uses MS Kinect SDK and facetracker. The code compiles and runs perfectly on Win32, but I am trying to get it to run in x64. I am using Visual studio and I ...
0
votes
0answers
34 views

Can't properly write a tiff file

I have a program which has the following function to write to a tiff file. However, the files produced are not recognized by any picture viewing software. What is wrong in this code, why is it not ...
0
votes
0answers
54 views

Will assembly applications be able to run on any Windows OS?

Let's say I write a 32-bit assembly application. Will it run on 32-bit and 64-bit Windows XP, Windows Vista, Windows 7, and Windows 8? Also, will it require any dependencies? Or will it require ...
1
vote
1answer
63 views

x86-64 assembly pointer variable implementation in external memory

When on move address pointer from cpu register to external memory the address value change with apparent erroneous signed extension Assembly Code: .section .data argc: .quad 0 ...
8
votes
2answers
152 views

Code a simple thread with C and assembly

I'm trying to code a simple user-level thread library as an exercise for my OS course. As the first step, I am trying to run a program and jump to a function leaving the first program. The code so far ...
6
votes
1answer
76 views

Printing floating point numbers from x86-64 seems to require %rbp to be saved

When I write a simple assembly language program, linked with the C library, using gcc 4.6.1 on Ubuntu, and I try to print an integer, it works fine: .global main .text main: ...
0
votes
0answers
36 views

How do I generate a DAG of instruction dependencies for x86/x64 assembly?

I'm writing a scheduling optimizer for x86/x64 assembly code. It would take as input either a assembly.s source or compiled.o object file, and determine the optimum instruction ordering for a given ...
3
votes
2answers
105 views

Understanding C disassembled call

I want to learn about C calling convention. To do this I wrote the following code: #include <stdio.h> #include <stdlib.h> struct tstStruct { void *sp; int k; }; void ...
4
votes
2answers
149 views

Is there a 128 bit integer in gcc? [duplicate]

I want a 128 bit integer because I want to store results of multiplication of two 64 bit numbers. Is there any such thing in gcc 4.4 and above?
0
votes
1answer
50 views

Assembly: Outputting variables, OS dependent?, Executing

I am trying to learn some Assembly after we talked about it a little in class. I am trying to translate a basic java program to find a Fibonacci number into assembly and I think I got the logic right, ...
4
votes
4answers
152 views

Fast dot product of a bit vector and a floating point vector

I'm trying to compute the dot product between a floating and a bit vector in the most efficient manner on a i7. In reality, I'm doing this operation on either 128 or 256-dimensional vectors, but for ...
0
votes
2answers
24 views

program crash after modification on gcc and gcov

Recently I'm trying to modify GCC and gcov to collect execution sequence for program. As we all know, gcc will instrument code on arcs between basic blocks to count the execution count of arc. So I ...
1
vote
1answer
42 views

Can FXSAVE be executed twice before an FXRSTOR?

While hacking the Linux kernel, I noticed that it would execute an FXSAVE instruction before performing FPU related tasks. I understand that the FXSAVE instruction will save the FPU state to a ...
1
vote
1answer
92 views

Compiling a library on a 64 bit architecture: Incorrect register `%rax' used with `l' suffix

I have to compile a library on a 64 bit architecture, anyway I get that error. The lines of code affected by the error are in assembler, here's an example (they are all very similar): //=== get the ...
0
votes
1answer
45 views

Why do I get segmentation fault?

I compile code gcc -g3 hello3.s -o hello .data ssttrr: .string "%d\n" .text .globl main main: mov $213, %rdx push %rdx push $ssttrr call printf add $8, %rsp mov $60, %rax xor ...
-1
votes
2answers
86 views

How do a library function (C) call on gnu assembly language?

I compile a code. .data ssttrr: .string "%d\n" .text .globl main main: mov $213, %rdx push %rdx push $ssttrr call _printf add $8, %rsp or it .global main .text main: push %rax ...
3
votes
2answers
93 views

Constraining r10 register in gcc inline x86_64 assembly

I'm having a go at writing a very light weight libc replacement library so that I can better understand the kernel - application interface. The first task is clearly getting some system call wrappers ...
2
votes
3answers
123 views

I want to create a simple assembler in C. Where should I begin? [duplicate]

I've recently been trying to immerse myself in the world of assembly programming with the eventual goal of creating my own programming language. I want my first real project to be a simple assembler ...
0
votes
0answers
20 views

How to generate a shared library using ndk for x-86 platform in android for some linux package

I have an external linux source package and I have the full-setup of android JB code base. I put the linux source package in external folder.The source package also contains Android.mk file through ...
1
vote
0answers
71 views

64-bit Program - Windows “Shadow Space” Trouble

I am trying to create a program in x64 assembly language but I am having problems understanding the x64 calling convention. I believe that the problem is that I do not know how much shadow space I ...
0
votes
2answers
117 views

Weird syscall numbers on Linux 32 bits

The story I have a C program which generates automatically a list of syscall numbers, as I prefer automated generation from real world reference than hand‑written generated files when, applicable. ...
0
votes
0answers
240 views

Visual Studio Professional 2010 .csproj cannot be opened

I am more In to Java, iOS, Linux. I did so little development with Microsoft products. I am trying to run an existing project developed by another team on Microsoft visual studio. The project is ...
3
votes
0answers
1k views

GCC installation on Fedora 18 x86_64 [closed]

I've been trying to install gcc compiler but the installation stops and i get the following error advice: file /usr/lib64/audit from install of glibc-2.16-30.fc18.x86_64 conflicts with file from ...
0
votes
0answers
24 views

coolc is not compiled for i686

So I was trying to run the Cool compiler(coolc) for one of my class on my own virtual machine with Ubuntu 12.04 64-bit. It says "coolc is not compiled for i686" even though my machine is x86_64. ...
2
votes
0answers
60 views

The missing address space in 64-bit Windows

In today x86-64 processors, the usable address space is 48 bits long and is separated into two halves. One is from 00000000`00000000 to 00007fff`ffffffff, another one is from ffff8000`00000000 to ...

1 2 3 4 5 18