Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
5answers
2k views

GCC's assembly output of an empty program on x86, win32

I write empty programs to annoy the hell out of stackoverflow coders, NOT. I am just exploring the gnu toolchain. Now the following might be too deep for me, but to continuie the empty program saga I ...
15
votes
4answers
1k views

calling c function from assembly

I'm trying to use a function in assembly in a C project, the function is supposed to call a libc function let's say printf() but I keep getting a segmentation fault. In the .c file I have the ...
13
votes
3answers
180 views

GCC: Prohibit use of some registers

This is a strange request but I have a feeling that it could be possible. What I would like is to insert some pragmas or directives into areas of my code (written in C) so that GCC's register ...
8
votes
5answers
2k views

GCC inline assembler, mixing register sizes (x86)

Does anyone know how I can get rid of the following assembler warning? Code is x86, 32 bit: int test (int x) { int y; // do a bit-rotate by 8 on the lower word. leave upper word intact. asm ...
7
votes
3answers
87 views

Understanding Base Pointer and Stack Pointers: In Context with gcc Output

I have the following C program: int main() { int c[10] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 2}; return c[0]; } and when compiled using the -S directive with gcc I get the following assembly: ...
7
votes
1answer
1k views

What is register %eiz?

In the following assembly code that I dumped out using objdump: lea 0x0(%esi,%eiz,1),%esi What is register %eiz? What does the preceding code mean?
6
votes
2answers
91 views

How to link a C object file with a Assembly Language object file?

I am having trouble linking 2 object files one of which was generated from an Assembly Language Source File and another that was generated from a C Source file. C source code: //main2.c extern int ...
6
votes
3answers
201 views

i386 assembly question: why do I need to meddle with the stack pointer?

I decided it would be fun to learn x86 assembly during the summer break. So I started with a very simple hello world program, borrowing on free examples gcc -S could give me. I ended up with this: ...
6
votes
6answers
3k views

Threads in x86 assembler (using the GNU assember: as)

Whilst learning the "assembler language" (in linux on a x86 architecture using the GNU as assembler), one of the aha moments was the possibility of using system calls. These system calls come in very ...
5
votes
1answer
137 views

Automatically generate xmm register name in a gas macro?

I would like to write a gas macro to generate code containing various movdqu instructions to xmm register depending on the parameter n. .macro xxmov n, p1 .if (\n == 1) ...
5
votes
3answers
1k views

Invalid instruction suffix for push when assembling with gas

When assembling a file with GNU assembler I get the following error: hello.s:6: Error: invalid instruction suffix for `push' Here's the file that I'm trying to assemble: .text LC0: ...
5
votes
2answers
205 views

Details on gdb memory access complaint

I have an object file compiled using as (from assembler code). If I link it using ld, when I try to stepi (or nexti) gdb complains about memory access at address 0x0. If I link it using gcc, all is ...
5
votes
1answer
1k views

What are CFI directives in Gnu Assembler (GAS) used for?

There seem to be a .CFI directive after every line and also there are wide varities of these ex.,.cfi_startproc , .cfi_endproc etc.. more here. .file "temp.c" .text .globl main .type ...
5
votes
6answers
2k views

gas vs. nasm: which assembler produces the best code?

Both tools translate assembly instructions directly into machine code, but is it possible to determine which one produces the fastest and cleanest code?
4
votes
2answers
793 views

linking a gas assembly file as a c program without using gcc

Hey, as an exercise to learn more precisely how c programs work and what minimum level of content must exist for a program to be able to use libc, ive taken it upon myself to attempt to program ...
4
votes
1answer
484 views

Memory adressing in asm

I'm learning asm and here's one of my (many) problems : I'd like to change the value of some index of an array. Let's say that : %eax contains my new value the top of the stack (ie (0)%esp) ...
4
votes
8answers
449 views

Algorithm for modeling expanding gases on a 2D grid

I have a simple program, at it's heart is a two dimensional array of floats, supposedly representing gas concentrations, I have been trying to come up with a simple algorithm that will model the gas ...
3
votes
2answers
127 views

Combining C and Assembly(32 bit code) on Linux 64 bit

I have a 64 bit Ubuntu Operating System and I have been learning 32 bit Assembly. I am trying to compile these two files: square.s: #square.s .section .text .globl sqr .type sqr, @function sqr: ...
3
votes
3answers
118 views

Calling C functions from ARM Assembly

I'm writing code targeting ARM Cortex-A on Android devices (using GNU assembler and compiler), and I'm trying to interface between Assembly and C. In particular, I'm interested in calling functions ...
3
votes
2answers
102 views

Is '.set noat' unsupported for MIPS assembly?

Currently, I'm learning GNU as, and find a lot useful information in "info as". I found ".set noat" is used in MIPS specified code, but when searching for this directive in "info as", I found its ...
3
votes
1answer
149 views

GAS: Explanation of .cfi_def_cfa_offset

I would like an explanation for the values used with the .cfi_def_cfa_offset directives in assembly generated by GCC. I know vaguely that the .cfi directives are involved in call frames and stack ...
3
votes
1answer
358 views

x86 assembler: floating point compare

As part of an compiler project I have to write GNU assembler code for x86 to compare floating point values. I have tried to find recurses on how to do this online and from what I understand it works ...
3
votes
1answer
98 views

GAS: jmp to label results in wrong jump?

I am trying to assembly following program: .text .globl _search2 _search2: pushq %rbp movq %rsp, %rbp movq %rax, -8(%rbp) go_again: cmpl $0x90909090, (%rax) je ...
3
votes
2answers
166 views

NASM to GAS: Calling equ'd symbols

I have some NASM files which have a line: %INCLUDE "bmdev.asm" The bmdev.asm file has equ directives such as: b_print_newline equ 0x0000000000100040 The files which include bmdev.asm ...
3
votes
1answer
454 views

Plain binaries with GNU assembler

I have some NASM files that generally have the structure: [BITS 64] [ORG 0x0000000000200000] start: ... ret I'm assembling them like so: nasm -f bin abc.asm I'd ...
3
votes
2answers
502 views

how do you make an x86 assembly program in linux that converts files to uppercase?

I found a pdf file called: ProgrammingGroundUp-1-0-booksize.pdf, and one of the projects is to make an assembly program that takes in files and converts them to uppercase, ` .section .data ...
3
votes
3answers
402 views

Can GAS (GNU Assembler) compile to iPhone/iTouch?

I am programming some applications for the iDevice market using the unofficial Open SDK, but am having difficulty installing the open toolchain on Windows, rather than Linux (I would use Linux, but I ...
3
votes
5answers
819 views

GNU ld removes section

I'm writing a boot script for an ARM-Cortex M3 based device. If I compile the assembler boot script and the C application code and then combine the object files and transfer them to my device ...
3
votes
1answer
716 views

Splitting a string on AT&T IA-32 Linux Assembler (gas)

.section .data astring: .asciz "11010101" format: .asciz "%d\n" .section .text .globl _start _start: xorl %ecx, %ecx movb astring(%ecx,1), %al movzbl %al, %eax pushl %eax pushl $format call ...
2
votes
1answer
36 views

Does GAS have anything that evaluates similar to NASM's $ token?

I just started down the Assembly road, and one of the first "Hello, World!" tutorials I found http://asm.sourceforge.net/intro/hello.html, gives a nice way of psudo-dynamicly getting the length of the ...
2
votes
1answer
18 views

Current address Symbol in Gnu Assembly

i am curios to know is there any special GAS syntax to achieve the same like in NASM example: SECTION .data msg: db "Hello World",10,0 ; the 0-terminated string. len: equ $-msg ...
2
votes
3answers
160 views

x86_64 Assembly Linux System Call Confusion

I am currently learning Assembly language on Linux. I have been using the book 'Programming From the Ground Up' and all the examples are 32-bit. My OS is 64-bit and I have been trying to do all the ...
2
votes
3answers
66 views

wrong return in asm function (x86)

I'm new to asm programming. I use intel x86. I've got two variables (int) and I want the asm function returns the biggest. I call the asm function with a C program, i've got in the main(), ...
2
votes
1answer
70 views

help in understanding this code snippet

This is code snipper from header.S file in kernel code. I could not understand what the lretw instruction does. I've checked out so many online sources for the instruction. # We will have entered ...
2
votes
2answers
145 views

x86_64 “gcc -S” -> as -> ld -> execution failed

I am trying to compile a simplified C source file by "gcc -S" -> "as" -> "ld" on x86_64 platform. The process finished with no error, but when executed, "No such file or direcotry" error message is ...
2
votes
1answer
80 views

Bogus Results from Simple Assembly Program on FreeBSD System

I've been having problems getting even the simplest of assembly programs that I write on Linux to run on my FreeBSD machine. Here's the offending code (I'm trying to keep this as simple as possible): ...
2
votes
1answer
340 views

arm assembly : '#define' risk

In ARM assembly bic r0, r0, #0x1f works fine. now I want #define MODE 0x1f and change above code to bic r0,r0, #MODE. There is a risk here. If you forget include the header file where #define ...
2
votes
3answers
759 views

gas: too many memory reference

when compiling the instruction movl 4(%ebp), 8(%ebp) i got 'too many memory referene', what's wrong with it??
2
votes
1answer
1k views

ljmp syntax in gcc inline assembly

I was thinking of using a far jump to set the code segment (CS) register. Getting into why I'm doing this and why I'm dealing with segmentation at all would take a while, so bear with me and consider ...
1
vote
0answers
40 views

Tutorial for GAS with 64bit

Does anyone know a tutorial for GAS where I can find infos about compiling and linking code in AT&T-Syntax on 64bit Systems? I need this for university, so I cannot use nasm instead. All tuts I ...
1
vote
2answers
50 views

Retrieving command line args in gas

I am struggling to find a way to retrieve first character of the first command line argument in GAS. To clarify what I mean here how I do it in NASM: main: pop ebx pop ebx pop ebx ...
1
vote
2answers
117 views

GCC not saving/restoring reserved registers on function calls

I have a scenario in GCC causing me problems. The behaviour I get is not the behaviour I expect. To summarise the situation, I am proposing several new instructions for x86-64 which are implemented in ...
1
vote
1answer
85 views

Calling equ'd symbols in GAS

Here's a small NASM program: [BITS 64] [ORG 0x0000000000200000] b_print_newline equ 0x0000000000100040 start: call b_print_newline ret Assemble it: $ ...
1
vote
1answer
192 views

Need to convert old 32-bit GAS code to a current GAS assembler (pushfl/popl)

I am in the process of trying to compile an old project on my modern machine. I know this old project used an old (2.x) version of GCC/GAS so I need to clean it up so that I can compile it with a ...
1
vote
1answer
60 views

Do I need to initialize stack in GAS?

Hallo! Currently I'm learning basics of assembly. Earlier I was using TASM and Intel-syntax. There I had to initialize stack in some ways. But now I'm using GNU Assembler and AT&T syntax. I looked ...
1
vote
1answer
167 views

Gnu Assembler (GAS) Optimizations

Im actually learning assembly and I went with Gas, but the problem is: 1) I only know Intel syntax and I saw in a page Gas with intel syntax is not very good optimized in some cases. Is this correct ...
1
vote
2answers
163 views

GCC Calling label as a function

All is in the title. For some reasons I have to do it like this. But when I compile my code, GCC (or GAS maybe...) displays the following error: .../Temp/cc1C1fjs.s:19: Error: immediate operand ...
1
vote
1answer
329 views

Homework help - GNU assembler selection sort question

I have to create a program in assembly that takes a user's input as a maximum array size then let's the user create an array of that size. I'm supposed to buffer that value to a maximum of 1000 array ...
1
vote
1answer
339 views

Passing array to external assembly function

Somehow related to this calling c function from assembly I'm passing to that function an array of int and a length: do_stuff_in_asm (array, len); The assembly part looks like this ...
1
vote
2answers
384 views

I need help converting Intel inline asm to AT&T so I can compile it with gcc

This is the original code: #define CPU_PREFETCH(cache_line) \ { int* address = (int*) (cache_line); \ _asm mov edx, address \ _asm prefetcht0[edx] ...

1 2