Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
350 views

Correct way to wrap CMPXCHG8B in GCC inline assembly, 32 bits

I'm trying to write GCC inline asm for CMPXCHG8B for ia32. No, I cannot use __sync_bool_compare_and_swap. It has to work with and without -fPIC. So far the best I've (EDIT: does not work after all, ...
7
votes
3answers
412 views

LEA or ADD instruction?

When I'm handwriting assembly, I generally choose the form lea eax, [eax+4] Over the form.. add eax, 4 I have heard that lea is a "0-clock" instruction (like NOP), while 'add' isn't. However, ...
5
votes
6answers
1k views

Linux IA-32 memory model

I'm looking at the Linux IA-32 memory model of a process and I have a simple question to it. What do the grey areas in the picture contain? Are they only included to show the beginning and end of the ...
4
votes
2answers
170 views

Question about the Intel's IA-32 software developer manual

I'm studying the Intel's IA-32 software developer manual. In particular, I'm reading the following manual: http://www.intel.com/Assets/PDF/manual/253666.pdf. Let's take for example the ADD ...
4
votes
4answers
713 views

IA-32: Pushing a byte onto a stack isn't possible on Pentium, why?

I've come to learn that you cannot push a byte directly onto the Intel Pentium's stack, can anyone explain this to me please? The reason that I've been given is because the esp register is ...
4
votes
3answers
957 views

Working with double-precision numbers in inline assembly (GCC, IA-32)

I'm just starting to learn assembly in my computer science class, and I have an assignment to round a floating-point value using a specified rounding mode. I've tried to implement this using fstcw, ...
3
votes
3answers
189 views

8086 Assembly question, what does this code do

i've received this question in my assembly course: what does this procedure do and how it should be called? push ebp mov ebp, esp push esi mov esi, [ebp+4] mov eax, [esi] sub eax, [esi+4] add ...
3
votes
3answers
179 views

x86-32 Assembly question

GCC made me some assembly code, and inside theres this statement: lea eax, [ebx+eax] (Intel Syntax) Just curious, what would the difference between that, and: add eax, ebx Be? eax, and ebx ...
3
votes
2answers
505 views

What exactly does the 3 operand imul instruction do in ia-32 assembly?

I'm reading the instruction imul 0xffffffd4(%ebp, %ebx, 4), %eax and I'm baffled by what it's doing exactly. I understand that imul multiplies, but I can't figure out the syntax.
2
votes
1answer
68 views

Assembly Language instructions that do not change EFLAGS

I am trying to compile a list of AL instructions that do not affect the EFLAGS register. So far I have: 1) mov 2) push 3) pop 4) lea 5) inc and dec do not change the CF I am looking for ...
2
votes
2answers
82 views

XOR register,register (assembler)

From time to time we have to analyze pieces of assembler code (IA32), and more than often i come across an instruction that looks like this: xor ax, ax or with other registers aswell: xor dx, dx, ...
2
votes
1answer
148 views

GDB question with C program

Here I'm examining a simple program written in C that saves a char pointer to a string that says "Hello, world!\n" Here is the output of my GDB... I'm confused at the inconsistency of GDB and what's ...
2
votes
2answers
206 views

returning result to eax (ia32 assembly language)

I'm slightly confused as to how to return a value from a method in assembly language. As far as I know, the eax register is used to hold the result that is to be returned. As an example, say my ...
2
votes
1answer
97 views

Integer Overflow IA 32

How does overflow work in ia-32? For instance, what would happen to the following code? What flags would it throw? movl $0x1, %eax addl $7fffffff, %eax Thanks!
2
votes
1answer
216 views

Byte order of DEC VAX vs IA-32

A description of the problem follows. You can skip to the bottom line if you're not interested. I am working with a data file with this description: A 109-slice MRI data set of a human head. ...
2
votes
3answers
644 views

Why is printf showing -1.#IND for FPTAN results?

I am working on a program which produces assembler code from expressions. One of the functions required is tan(x) which currently works using the following sequence of code (the addresses are filled ...
2
votes
4answers
289 views

Trouble examining byte code in MSVC++

I've been messing around with the free Digital Mars Compiler at work (naughty I know), and created some code to inspect compiled functions and look at the byte code for learning purposes, seeing if I ...
2
votes
5answers
660 views

Dumping the values of the registers in GCC

I need to get the values in the registers with GCC. Something similar to this: EAX=00000002 EBX=00000001 ECX=00000005 EDX=BFFC94C0 ESI=8184C544 EDI=00000000 EBP=0063FF78 ESP=0063FE3C CF=0 ...
1
vote
1answer
58 views

IA 32 read command line argument

I am trying to read command line arguments with assembly code for IA 32. I found an explanation of how to do it here http://www.paladingrp.com/ia32.shtml. I am able to use the stack pointer to get the ...
1
vote
2answers
160 views

Jump into the middle of instruction - in IA-32

why IA-32 enable us to jump into the middle of instruction? how can I use this architectonic characteristic for optimization when I'm writing in Assembler? (beside the obvious of cases we like to ...
1
vote
1answer
76 views

IA-32 | reordering issue in a multiprocessor environment

I want to perform an atomic 'and' operation on IA-32. Please consider the following situation: ; processor 0 lea edx, var mov ecx, mask mov eax, [edx] lock and [edx], ecx ; processor 1 lea ...
1
vote
2answers
130 views

Where does the frame pointer point after set up?

Despite looking at textbooks trying to grasp this, I'm having trouble. 0x08048b29 <func+0>: push %ebp 0x08048b2a <func+1>: mov %esp,%ebp 0x08048b2c <func+3>: push ...
1
vote
1answer
640 views

Cannot access label through segment registers, error in assembly

INCLUDE Irvine16.inc .data byteArray BYTE 6 DUP(?) listSize = ($ - byteArray) aSum WORD 0 soffset = 0 .code main PROC mov ax, @data mov ds, ax mov cx, listSize Loop1: ...
1
vote
2answers
126 views

Is there a way to store part of a 16 bit value in an 8 bit variable in Assembly?

I created one variable that stores a 16 bit variable, and I'm tring to store the upper half in an 8 bit variable. How do I do this? EDIT: its for the IA-32, and I don't think i can use registers ...
0
votes
2answers
45 views

Getting instruction given address pointed by the instruction pointer

I am working on this code where, I need to get the instructions executed by a program, given the instruction pointers. Assume for now that I have a mechanism that provides me addresses of the ...
0
votes
1answer
57 views

why using push instruction instead of overwriting memory location %esp points causes ambiguous behavior in a recursive procedure

I have following piece of assembly: recursive: pushl %ebp movl %esp, %ebp subl $40, %esp cmpl $0, 8(%ebp) jne .L6 movl $0, %eax jmp .L7 .L6: movl 8(%ebp), %eax movl (%eax), %eax ...
0
votes
1answer
32 views

When do the CF and OF get set during arithmetic operations?

I can't find a reasonable formula for this. I know CF is used for unsigned arithmetic and OF for signed. Please give some example arithmetic operations (like 5-7,7-5 etc.) along with the heuristic.
0
votes
0answers
90 views

Translation of class & method into Intel IA-32 Assembly

I need to translate the following code into Intel IA-32 assembly without using global variables. I am really not sure how to do this for a class and I would really appreciate any help! Thanks! class ...
0
votes
1answer
125 views

Interaction between for loops with clock function?

Can someone explain me the exact interaction in context of delay between the two for loops with clock function. How does for1 interact with for2 on the cout statement(30 on 640000000)? start=clock(); ...
-1
votes
4answers
67 views

Why does IA-32 have a non-intuitive caller and callee register saving convention?

IA-32 calling convention says: • Callee-save registers %ebx, %esi, %edi Callee must not change these. If it changes it must restore to old values. • Caller-save registers %eax, %edx, %ecx Caller ...