Gas is the GNU assembler used by the GCC C++ compiler to generate executable code.

learn more… | top users | synonyms

0
votes
1answer
13 views

gas assembler: segmentation error while reading from keyboard (simple program)

i'm getting the segmentation error while trying running a simple assembly code.... basically i want to keep asking for an input form keybord until the return key is pressed, idk what is causing it ...
0
votes
2answers
24 views

Assembler get program parameters

I'm trying to create a program to just write the param on the screen. I created some programs to get the C function parameter, or i used C to send the parameter to my asm program. Is there a way to ...
0
votes
2answers
27 views

C++ Understanding How A Virtual Destructor Adds to the size of a Type From An Assembly Outputs Perspective

I am trying to understand more deeply why the output of the following program is the way it is (see below for both). At the same time I am trying to understand how it relates to the assembly version ...
2
votes
1answer
68 views

Thumb Assembler Interrupt in custom SRAM section

I'd like to have an interrupt routine in SRAM on a LPC1768. I'm using a GCC toolchain similar to Yagarto. Currently I can do the following from C: NVIC_SetVector(TIMER0_IRQn, interruptTest); ...
0
votes
0answers
50 views

Useign printf call in assembly

I've a problem with using printf in assembly. Here is a piece of code push $buff push $end_str call printf add $8, %esp The o_buff is a variable declared like this : .lcomm o_buff, 32 and end_str ...
1
vote
1answer
65 views

Weird GAS ARM syntax

When I disassembled my arm elf .so file, I saw the following code: 170c: e28fc600 add ip, pc, #0, 12 I only know it is an ARM "add" instruction. But from the ARM reference manual "add" has a ...
0
votes
2answers
29 views

How do you specify a label reference using .intel_syntax?

I'm having some really big problems trying to get certain x86 instructions assembled properly using .intel_syntax, compiling with -m32 (i.e. 32-bit mode). If I have some code like this: #define ...
0
votes
1answer
51 views

gcc inline assembly function that clobbers all the floating-point registers

I'm trying to write an asm statement (inline assembly in GCC), that just calls some function, that returns one value in floating-point register and has no operands, but potentially clobbers all the ...
5
votes
1answer
64 views

Why does switching from AT&T to Intel syntax make this tutorial segfault using GAS?

I'm working through some of the tutorials on http://www.ibm.com/developerworks/linux/library/l-gas-nasm/index.html to familiarize myself with x86/x64. This tutorial code compiles and runs without a ...
0
votes
0answers
23 views

Verifying code size in assembly time in GAS

I'm generating a vector table in gnu assembler (GAS) and I would like to verify that the size of each vector is 4 bytes in assembly time. I tried: vector: pushl $0 jmp _alltraps ...
0
votes
1answer
25 views

I cannot understand the following gnu assembly code for powerpc architecture

#define START_GOT \ .section ".got2","aw";\ .LCTOC1 = .+32768 Is .LCTOC1 is a directive? Why is there a . before +32768?
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
87 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 ...
0
votes
1answer
94 views

Convert 32-bit program to 16-bit program [duplicate]

Assembler throws error for my 16 bit code movzbw (%ax), %ax Error: `(%ax)' is not a valid base/index expression But the below instruction is valid on 32 bit code generation. movzbl (%eax), %eax ...
0
votes
0answers
24 views

Subroutene printing extra characters when called

I have come across an error that I am having trouble understanding the cause. I am using gas on CENTOS6; the assembler options will be listed below. This subroutine uses VT100 commands to clear the ...
1
vote
1answer
96 views

GAS assembly basics, getting the exponent

there aren't a lot of GAS assembly tutorials so im terribly lost. this is just a simple program that computes the result after the user inputs a base and an exponent. but it won't work, i think there ...
-1
votes
1answer
45 views

How do use a memory location?

I have written a code for example .global _start .data str: .long 0x1 .text _start: mov $1, %rax # system call 1 is write mov $0x21, %rdx mov %rdx, 4(%rax) mov $60, %rax ...
0
votes
4answers
139 views

Calling C function in assembly code (gas)

I found an example and was editing it for gas. extern printf .global _start .data hello: db "Hello", 0xa, 0 .text _start: mov %rdi, hello mov %rax, 0 call printf mov %rax, 0 ret But it doesn't ...
2
votes
1answer
59 views

How do I see a value on register?

I read books on assembly language, a chapter about instructions. I understand what is doing the instruction mov, but i don't understand how do I check and see a result. I wrote a hello world. .global ...
10
votes
2answers
265 views

Is it possible to write a zero-cost exception handling in C?

g++ compiler has the feature of zero-cost exception handling. To my understanding, try does nothing, but when exception is thrown, a subroutine for the exception handler is executed. Like this: void ...
0
votes
2answers
107 views

SIGSEGV When accessing array element using assembly

Background: I am new to assembly. When I was learning programming, I made a program that implements multiplication tables up to 1000 * 1000. The tables are formatted so that each answer is on the ...
0
votes
2answers
77 views

GAS assembly snippet divides by 0, not sure why

I have the following function, involving a snippet of i386 assembly in GAS syntax: inline int MulDivRound( int nNumber, int nNumerator, int nDenominator ) { int nRet, nMod; ...
1
vote
1answer
62 views

Place GCC assembler code section in RAM

I have an assembly function written for an embedded ARM project that I would like to tag with the attribute to place it in a RAM code section rather than flash. How do I specify this? To do this for ...
2
votes
1answer
81 views

howto get subsection padding in gnu-assembler

I'm using gnu assembler on a TI MCU (msp430) and want to define variables of mixed alignments in assembly; some are byte aligned, others must be word (16bit) aligned. I am also needing to keep some ...
0
votes
2answers
158 views

Inline assembly, getting into interrupt

Good day. I faced a problem that I couldn't solve for several days. The error appears when I try to compile this function in C language. void GetInInterrupt(UChar Interrupt) { //asm ...
2
votes
1answer
125 views

Assembling i386 code on x86_64

The following code does not work as expected: .intel_syntax noprefix .arch i386 .data hello_world: .ascii "Hello world!\n" hello_world_end: .equ hello_world_len, hello_world_end - hello_world .text ...
0
votes
0answers
44 views

Switching to protected mode in bochs PC simulator

I'm working on the bochs x86 emulator but I'm having trouble with switching to protected mode. At the moment this is the [relevant] code I have, but it's not working, i.e. it's not switching to ...
0
votes
1answer
95 views

How do i start to learn asm (gas)?

I found "hello world" and wrote it. nano hello.s this code .data msg: .string "Hello, world!\n" len = . - msg .text global _start _start: movl $len,%edx movl $msg,%ecx movl ...
0
votes
1answer
115 views

x86 assembly short and long size

I'm writing a little x86 program and I'm surprised about "types" size. .short are handling 4 bytes values such a .short 0xFFFF and .long 8 bytes, while .bytes are handling 2 bytes. I can't find an ...
2
votes
1answer
37 views

implementation of .cfi_remember_state

I was wondering how exactly .cfi_remember_state is implemented. I know it is a pseudo-op, so I suppose it is converted into a couple of instructions when assembling. I am interested what exact ...
5
votes
2answers
223 views

64-bit GCC mixing 32-bit and 64-bit pointers

Although the code works, I'm baffled by the compiler's decision to seemingly mix 32 and 64 bit parameters of the same type. Specifically, I have a function which receives three char pointers. Looking ...
0
votes
1answer
131 views

“Invalid symbol redefinition” in inline ASM on LLVM

I've got a project in Xcode (4.5.2) that builds fine using the Debug configuration. However, now that I've switched to building the Release configuration, I'm getting an issue: one of my inline ...
2
votes
1answer
287 views

cmp assembly language instruction - gas format

I am converting 32-bit and 64-bit assembly language files from gas to MASM format, and ran across an instruction in my code that seems completely problematic. What I mean is, I see no way the ...
1
vote
1answer
105 views

GCC Inline assembler access arguments?

I need to access an argument from a C function void printk(char* msg); and store it into ESI. However I can not do mov $msg, %esi or mov $_msg, %esi Both return a linker error (Saying that the ...
0
votes
0answers
47 views

show the difference in the opcodes for different architectures

I have the script which (as intended) allows me to see the difference in the opcodes generated for the different architectures (especially intrested in x87 instructions on x86 vs x86_64). ...
0
votes
2answers
209 views

Assembly .byte array

I've defined a byte array using .data letters : .byte 0:26 And i've got some questions : 1 ) Is the first cell in the array available for use, or its employed for other purpose? 2 ) How can ...
0
votes
0answers
328 views

sys_read syscall vs. int 0x80 in GNU Assembler

I'm attempting to write a simple program which grabs a number of characters from stdin. For the sake of brevity, the relevant code is: mov $3, %rax # sys_read = 3 mov $0, %rbx # stdin fd = 0 ...
0
votes
1answer
106 views

3 or 4 parameter x86 assembly in AT&T syntax

Simple question. I doubt this will receive much attention, but how do I do 3 or 4 parameter operations in x86-64 assembly in AT&T (gAS) syntax? It's known to any x86 programmer using gAS that the ...
0
votes
0answers
241 views

NASM Vs GAS (Practical differences)

I'm not trying to prompt an Intel vs AT&T war (moot point anyway, now that they both support Intel syntax) or ask which one is "better" per se, I just want to know the practical differences in ...
0
votes
0answers
49 views

In gcc inline assembly, how to test version of binutils

I'm using some ARM inline assembler with GCC. I'm using a directive (.inst) but that isn't available in older binutils so I need to fall back to an alternative sequence. I could conditionalize my C ...
0
votes
0answers
40 views

Symbolic Names for MIPS Registers (binutils-2.23.1)

I started coding assembler for MIPS using binutils-2.23.1. In this version as already supports symbolic names for registers (e.g. $sp). Where can I find some documentation on these names when using ...
0
votes
1answer
331 views

GCC inline assembly - accessing structure members

I'm trying to use inline assembly to load a bunch of structure members (Particle is a pointer to such structure) into some registers. Here's my initial solution: asm("mov %1(%0), %%edx\n" "fld ...
3
votes
1answer
108 views

How to tell if a function argument is an immediate?

I have an inline function definition that wraps an inline assembly. I wish to choose different inline assembly implementation based on the fact whether or not the argument is known in build time or ...
0
votes
1answer
122 views

Gnu AS equivalent of ORG in NASM

What would be the equivalent directive in GAS for the ORG (origin) directive in NASM? EDIT: A warning to all: .org is not the origin directive, it seems to instead pad the assembled file with 00 up ...
0
votes
1answer
113 views

GAS ORM many-many relation with attributes

I'm using CodeIgniter and I'm starting to work with gas orm. One of my m-n-relationship-tables using a composite key has also some additional attributes to the releation. For Example: Table teams, ...
0
votes
1answer
67 views

Wrong result from assembly program

Can someone help me find what is wrong with the following program? I'm reading 'Programming from the Ground Up' and attempting to translate the examples into x86-64 assembly. The following program ...
0
votes
1answer
290 views

trouble getting Hello World / gas / Mac OS X to work

I'm trying to write Hello World in GNU assembler for Mac OS X, but it's bus erroring before it can print "Hello World". hello.s: .global start .data .equ stdout, 1 .equ sys_write, 4 .equ ...
0
votes
2answers
91 views

Get the address at the end of a set of data?

I've been reading the book 'Programming from the Ground Up' to learn assembly programming in Linux. I'm having trouble solving one of the exercises at the end of chapter 3. The exercise says to modify ...
0
votes
1answer
132 views

GAS does not recognise register %ip

In my 16bit program GAS is balking at the instruction: movw %ip, %dx I find this strange as moving a segment register works fine, for example: movw %ss, %ax The full error message is: Error: ...
0
votes
1answer
95 views

Using GNU Assembler to dynamically create a struct and returning a pointer to it

Using the GNU Assembler I'm trying to call malloc to create a C struct, insert values into that struct and return a pointer to that struct. Below is the struct: struct node { void *next; ...

1 2 3 4