x86-64 is a 64 bit extension to the Intel x86 architecture
1
vote
1answer
36 views
GCC inline assembly: register constraints on intel x86_64
Here's the list of register loading codes:
a eax
b ebx
c ecx
d edx
S esi
D edi
I constant value (0 to 31)
q,r dynamically ...
0
votes
0answers
14 views
Producing dynamic libraries (debug/release/i386/amd64) with gcc 4.7.2 under GNU-Linux (Debian)
Under Debian 7.0.0, I try to produce 4 dynamic libraries (debug/release/32/64 bits).
For x86-64 (64 bits), all is ok, but for i386 (32 bits) the includes are not resolved, why?
Here is the Makefile:
...
1
vote
1answer
64 views
Integer arithmetic on floating points
I have a floating point value in an xmm register and I heve to do some integer arithmetic on it. By integer arithmetic I mean bit-manipulation like shift or bit-wise and/or/xor. In C++, I can write ...
0
votes
0answers
14 views
debugging with bochs + gdb on 64bits system: Program received signal SIGTRAP, Trace/breakpoint trap
everyone! I got a strange question when debugging with bochs + gdb on 64 bits system, while on 32 bits system it woks well.
I write some code like linux kernel 0.01 and use bochs to debug it. After ...
0
votes
2answers
75 views
Converting Assembly Inline from 32bit to 64bit
Does anyone knows how can this function be changed to deal with 64bits?
{
unsigned int prev;
__asm__ __volatile__ (
" lock; cmpxchgl %1,%2; "
: "=a"(prev)
: ...
2
votes
2answers
119 views
Memory alignment : how to use alignof / alignas?
I work with shared memory right now.
I can't understand alignof and alignas.
cppreference is unclear : alignof returns "alignment" but what is "alignment" ? number of bytes to add for the next block ...
0
votes
1answer
48 views
Is it possible to bypass L1 cache in a multicore processor
In Modern multicore processors, we normally have a local L1 cache but a shared L2 cache. Is it possible to bypass the L1 cache for some portion of the memory while still using L2 cache for it? I want ...
1
vote
1answer
34 views
Compile a statement only if Assembly has specific version (x86 or x64)
I have a project where I reference a third party assembly.
That assembly has x86 and x64 versions. I can only reference one, since the third party system relies on a specific one to work. (Depending ...
0
votes
1answer
47 views
Why does x86 nopl instruction take an operand?
Why does a nopl instruction in an x86 executable take an operand? Don't nops just do, well, nothing?
nopl 0x0(%rax)
0
votes
1answer
40 views
How to push a 64bit int in NASM?
I'm trying to push a 64bit integer but when assembling NASM seems to want to see it as a DWORD not a QWORD.
I'm using ASM to create the shellcode I need to inject a 64bit DLL into a 64bit process. ...
1
vote
1answer
53 views
Is there inline x86 asm that can be faster than gcc's llround?
Is there an x86 inline asm solution that can take a double, multiple by 100.00, and then convert to an integer. The "input" double is effectively a price and I'd like to convert to "cents" as an ...
4
votes
1answer
208 views
clang (LLVM) inline assembly - multiple constraints with useless spills / reloads
clang / gcc : Some inline assembly operands can be satisfied with multiple constraints, e.g., "rm", when an operand can be satisfied with a register or memory location. As an example, the 64 x 64 = ...
1
vote
2answers
85 views
How are the C++11 memory barriers implemented for x86-like systems?
I have a good conceptual understanding of C++11's std::memory_order types (relaxed vs acquire-release vs sequentially consistent ...), but I'd like to have a better understanding of how they are ...
6
votes
2answers
97 views
What is the “.s” suffix in x86 instructions?
When I disassemble the .text sections of some binaries using objdump (with both AT&T and Intel syntaxes), I sometimes see instructions with a .s suffix, for example: cmpb.s %bh,%ch, sbbl.s ...
0
votes
0answers
20 views
Compiling with soft floating point on x86-64
I'm trying to compile a simple bench that does a lot of floating point instructions. However, the x86_64 simulator I'm using does not handle the fp instructions. Hence I'm trying to compile my bench ...
5
votes
1answer
71 views
How to start a program with cold cache
I run a benchmark several times, to note down the mean reading. But I notice that after the first run, the subsequent runs are faster. I guess it has something to do with the Instruction Cache, so ...
1
vote
2answers
61 views
Is there a correct way to measure performance when writing low-level code?
I am writing speed optimizations for low-level C/x64 code and I am wondering if there is any standard way of measuring which choice is faster reliably.
My current technique when comparing technique A ...
0
votes
2answers
45 views
storing a constant in memory using ASM
What would be the proper gcc compilable GAS ASM code to store my constant $3360220 in a memory location 0x7FFFFFFFb098?
Will this produce the desired result? Is it ok that the movabs instruction ...
3
votes
1answer
103 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
42 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
61 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
45 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
102 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
76 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
vote
1answer
78 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 ...
2
votes
1answer
78 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
75 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
37 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
49 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
31 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
28 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
62 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
66 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 ...
0
votes
3answers
132 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
52 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
25 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
63 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
89 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
55 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
80 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
191 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
45 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
78 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
163 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
110 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
44 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
120 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
348 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?


