The ia-32 tag has no wiki summary.
0
votes
0answers
5 views
FILD Load Integer (and FSTP)?
can anyone please explain how do FILD and FSTP work? (Preferably with some examples)
I am working on a 32 bit machine:
the following are the IA32 instructions:
fildl -0x1c(%ebp)
fstps -0x14(%ebp)
...
0
votes
1answer
28 views
NASM: emit MSW of non-scalar (link-time) value
I am attempting to define a constant IDT (Interrupt Descriptor Table) entry in NASM, and to do so, I need to emit into a data table the high word of a double-word address that is not resolved until ...
0
votes
1answer
31 views
Calling Multiple Functions in x86
I am attempting to learn x86 AT&T syntax and am at a spot where I cam a little confused in general. I understand that there are frames on the stack and when a call is made the first thing that ...
1
vote
1answer
259 views
How to convert IA32 'cmp' instruction to Y86?
IA32 to Y86
ATT Assembly
I have the following IA32 assembly code:
Bubble:
.LFB0:
pushl %esi
pushl %ebx
movl 16(%esp), %esi
movl 12(%esp), %edx
subl $1, %esi
...
-1
votes
1answer
74 views
Decribing pop in Assembly
I am studying up on IA32. When I think about what the popl DEST instruction is doing I think the following:
movl (%esp), DEST
addl $4, %esp
But then I started second guessing myself when I thought ...
1
vote
0answers
79 views
Cleaning up stack in Buffer Overflow
I am performing a buffer overflow for educational purposes only. I have a function called that uses gets to receive input from the terminal. I want to force this function to return a specific value ...
1
vote
0answers
26 views
Error compiling Firefox for Android on a 64-bit Linux machine
I was trying to compile Fennec (Firefox for Android) when I ended up with this:
http://pastebin.mozilla.org/2126890
almost as soon as I started.
Then, I came to know that this is an issue with the ...
0
votes
1answer
1k views
Binary Bomb Phase 5
I have been working on a Binary Bomb for school, and I am absolutely lost in Phase 5. The object of the assignment is to dissemble the code and find a string, which I have found to be "flyers" and ...
-1
votes
1answer
41 views
Why do I see the byte representation of an address in assembly?
I am debugging a binary file with gdb. It was originally coded in C and compiled by gcc on an IA32. In gdb why when I try to print out %ebp for example do I see something like,
(gdb) x $ebp
...
2
votes
1answer
89 views
Local Variables offset from stack base pointer
I am trying to learn more about the stack and base pointer. The following sample assembly code is from an objdump of a binary compiled by gcc on an IA32.
08048e0b <func_3>:
8048e0b: 55 ...
2
votes
1answer
66 views
Reading gdb values correctly after mov
Here are two lines of a binary I am debugging in gdb. This was C code compiled by gcc for an IA32:
8049345: 8b 45 08 mov 0x8(%ebp),%eax
8049348: 89 04 24 mov ...
1
vote
1answer
109 views
Gdb step through assembly output of objdump from C compiled
I have a binary executable compiled by gcc on an IA32. It was originally coded in C. I would like to be able to step through and debug it. I can run objdump and shovel that to a file to read.
objdump ...
0
votes
1answer
234 views
Arrays & Loops in Assembly… Code not outputting correct Values
I have an array T with 10 values, specifically (if it matters) and in order: 2d, 5c, 5b, d3, 9b, 9a, 48, f1, e8, & 59.
In my code I am trying to find the sum, min, max, and average.
Well I get the ...
1
vote
3answers
116 views
How to modify existing assembly code generated from C
I'm writing some methods in C that must run very efficiently, so I'd like to manually edit some of the assembly code that is automatically generated.
I know how to read the assembly code using gdb or ...
4
votes
2answers
99 views
Purpose of self-IPI on IA-32
What is the purpose of a processor sending an Inter Processor Interrupt to itself on the IA-32 architecture?
According to the Intel IA-32 Architecture Software Developer's Manual, Vol. 3, Ch. 10.1:
...
1
vote
0answers
193 views
Android emulator not working after installing ia32-libs on 64-Ubuntu
I've 64-bit eclipse installed on a 64-bit Ubuntu 12.04 desktop. The android SDK and ADT is installed correctly and I'm able to execute applications on my android device. But, when I'm trying to boot ...
0
votes
1answer
73 views
Assembly, this line does what?
What does this line do in the following code?
0x0804840c <+3>: mov 0x8(%ebp),%edx
I know mov %x, %y moves reg value %x to %y, but stack offset 8 has never been set as anything, so I'm not ...
0
votes
1answer
149 views
Garbage values when assigning values to two dimensional array
I'm completely new to assembly and I've encountered an issue when assigning values to my two dimensional "array". My array is a .space named screen and is allocated with HEIGHT * WIDTH * 4, so there ...
7
votes
2answers
129 views
Statically Defined IDT
I'm working on a project that has tight boot time requirements. The targeted architecture is an IA-32 based processor running in 32 bit protected mode. One of the areas identified that can be improved ...
2
votes
3answers
161 views
Can out-of-order execution lead to speculative memory accesses?
When a out-of-order processor encounters something like
LOAD R1, 0x1337
LOAD R2, $R1
LOAD R3, 0x42
Assuming that all accesses will result in a cache miss, can the processor ask the memory ...
0
votes
1answer
988 views
Assembly: Read integer from stdin, increment it and print to stdout
I coded the following assembly script for IA32. It is supposed to read a number from stdin, increment it and print it to stdout, but it does not behave as expected, it doesn't print anything (maybe ...
3
votes
1answer
133 views
What are fundamental data types in IA-32?
I would like to know what the fundamental data types of Intel IA-32 architecture are.
I know four of them - bytes(8 bits), words(16 bits), doublewords(32 bits), and quadwords(64 bits). Are there ...
0
votes
1answer
209 views
IA-32 assembly cpuid using printf
I'm trying to follow the book Professional Asssembly Language on Mac OS X Montain Lion.
On google I found a port for Mac OS X at the following url: Assembly on MacOS X
Created the file with Vim and ...
1
vote
3answers
558 views
How to use relative jumps?
I have the following questions regarding relative jumps:
I understand that JMP SHORT <displacement> will jump to <displacement> bytes relatively to the current PC. Is that correct?
Is it ...
0
votes
1answer
311 views
Interpret Assembly Code
I found the following assembly code and I have no idea what it is supposed to be doing (mainly because cmovg follows the movl instruction ):
pushl %ebp
movl %esp, %ebp
movl 8(%ebp), %edx
movl %edx, ...
0
votes
1answer
1k views
opensuse 12.1 64bit - Android - error while loading shared libraries: libz.so.1
I just installed eclipse, the android sdk and jdk on a fresh installation of opensuse 12.1, but by the time i create a new project i am getting the following error in the console:
[2012-04-05 ...
3
votes
4answers
2k views
What's the difference between “CLD” and “STD” instructions in assembly language?
well, I know that CLD clears direction flag and STD sets direction flag.
but what's the point in setting and clearing direction flag?
3
votes
2answers
161 views
Analyzing the assembly code generated to manipulate command line arguments
#include <stdio.h>
int main(int argc, char * argv[])
{
argv[1][2] = 'A';
return 0;
}
Here is the corresponding assembly code from GCC for a 32-bit Intel architecture. I can't totally ...
5
votes
2answers
1k views
Why does __sync_add_and_fetch work for a 64 bit variable on a 32 bit system?
Consider the following condensed code:
/* Compile: gcc -pthread -m32 -ansi x.c */
#include <stdio.h>
#include <inttypes.h>
#include <pthread.h>
static volatile uint64_t v = 0;
...
1
vote
1answer
320 views
IA32 CPU, protected mode: which data is saved to the stack when an interrupt takes place?
I would like to know the size in bytes that each piece of data uses in the stack. How does the privilege level affect the answer?
0
votes
2answers
2k views
Use of ia32-libs
I'm trying to use the asmlibrary which I've obtained from here
I'm running in 64-bit, but the pre-compiled static library is build for 32-bit.
I don't really want to recompile the library, because I ...
0
votes
3answers
428 views
Segment Selector in IA-32
When does segment selector comes in picture. The line in Intel Guide says:
"Each segment descriptor has an associated segment selector. A segment selector
provides the software that uses it with an ...
1
vote
2answers
289 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
122 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
...
-1
votes
4answers
346 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 ...
1
vote
1answer
242 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 ...
0
votes
1answer
42 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.
2
votes
1answer
156 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
673 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, ...
9
votes
3answers
1k 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, ...
3
votes
3answers
382 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 ...
9
votes
3answers
2k 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, ...
2
votes
1answer
403 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
999 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
2answers
286 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
100 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 ...
3
votes
3answers
289 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 ...
1
vote
2answers
336 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 ...
3
votes
2answers
1k 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.
0
votes
1answer
168 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();
...
