0
votes
1answer
54 views

Segmentation fault - what is the reason

I'm learning 32bit assembly and I need help with code. I'm trying to put 4 to a table at index 3, which is passed by arguments to assebly code. .code32 .equ KERNEL, 0x80 # Linux system ...
0
votes
1answer
26 views

Calling from C functions written in NASM on x86-64

I'm studying NASM on Linux 64-bit and have been trying to implement some examples of code. However I got a problem in the following example. The function donothing is implemented in NASM and is ...
0
votes
1answer
31 views

Detect call's offset with ptrace

I'm trying to do a program that can detect calls with the function ptrace. Using PTRACE_SINGLESTEP I can run a program instructions by instructions, then, when I get the OP_CODE 0xe8 pointed by the ...
1
vote
2answers
99 views

intel x86 - why does -4(%ebp) refers to nothing?

In many examples when I compile a c-function (such as the sorting algorithm shell sort) the stackaddress (i gues it is called?) ebp-4 / -4(%ebp) / [ebp]-4 or whatever, which, as I understand, is ...
0
votes
0answers
62 views

How to compile this inline asm code

I got source code of an application containing an ASM code but whenever I try to compile I get the following error messages: idea.c:219: Error: suffix or operands invalid for `mov' idea.c:220: Error: ...
0
votes
1answer
61 views

hi, I'm writing in Assembly in model LARGE and I need to send to malloc #c

I need to link the allocated array from malloc to the pointers array: result array. How do I link the segment and the address, I know it is in DX:AX but how to link it? here is part of the code: MOV ...
2
votes
3answers
54 views

Processors that have instructions to bypass the cache

Are there any such processors which have instructions to bypass the cache for a specific data? This question also has an answer which suggests that SSE4.2 instructions do bypass the cache. Can ...
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) : ...
3
votes
3answers
123 views

Programming to fill our system's L1 or L2 cache

How we can systematically write code to load data into our L1 or L2 cache? I am specifically trying to target filling the the L1 I cache of my system for some higher analysis. Any suggestions will do ...
0
votes
1answer
70 views

Array size - Segmentation fault - C

Below you see a code snippet: int foo[262144] __attribute__ ((aligned (8192))); void test49() { __asm__("movl $0x0, %ecx"); __asm__("movl %0,%%eax"::"r"(&foo)); #ifdef FOREVER ...
0
votes
2answers
78 views

understanding some assembly code

I am trying to learn some assembly code, so I read in some tutorial that the assembly code for int proc(void) { int x,y; scanf("%x %x", &y, &x); return x-y; } is ...
0
votes
0answers
26 views

32 bit libc with debug symbols on x64

I am searching how to install 32 bit non-stripped libc on a x64 system. I have already lib32 libc installed but it is stripped, I have libc-2.15.so on my Ubuntu 12.04 x64. Does anyone know the name of ...
1
vote
6answers
153 views

Why is one assignment faster than the other?

I heard a lot people saying int a = 0; a += 10; is faster than int a = 0; a = a + 10; Why is that? I debugged it with gdb and it was absolutely the same instructions. gdb : First (gdb) list ...
-1
votes
1answer
55 views

Assembly AT&T x86 read from file

I'm trying to write a piece of code that will display the contents of a txt file. I only have numbers stored in the new file, one number per line (%d \n). Currently the code looks like this: movl $0 ...
1
vote
1answer
61 views

Memory indirect addressing movl - assembly

I'm trying to understand how exactly memory indirect addressing works in assembly language with AT&T syntax. movl (%eax), %ebx movl %eax, (%ebx) Here is a similar question that explains about ...
0
votes
1answer
39 views

movl AT&T syntax with attributes

Here is a snippet of assembly code in AT&T Syntax. int foo_array[64*1024] __attribute__ ((aligned (8192))); void foo() { __asm__("movl %0,%%eax"::"r"(&foo_array)); I understood that ...
4
votes
3answers
103 views

Given return address, how to get the address of the function?

Suppose in a piece of C code, I have a function foo that calls bar. While inside bar, I can use assembly to get the address to which bar will return to. How do I use this information to determine the ...
1
vote
0answers
34 views

Why does the function pointer get overwritten even though is declared before the vulnerable buffer? [migrated]

I am working on io-wargames for fun right now, level3: I do understand why there is a stack-overflow in this code (strlen(argv[1])), but what I don't understand is why it overflows the function ...
4
votes
0answers
104 views

c library x86/x64 assembler

Is there a C library for assembling a x86/x64 assembly string to opcodes? Example code: /* size_t assemble(char *string, int asm_flavor, char *out, size_t max_size); */ unsigned char bytes[32]; ...
3
votes
3answers
121 views

C intrinsics, SSE2 dot product and gcc -O3 generated assembly

First I'm french so I hope you will understand the rest... I wanted to write a dot product using sse2 (no _mm_dp_ps nor _mm_hadd_ps) : #include <xmmintrin.h> inline __m128 sse_dot4(__m128 a, ...
0
votes
1answer
50 views

Can we push local variable to stack in assembly

I made a simple program which will just push a number and display it on the screen but don't know what is going wrong section .data value db 10 section .text global main extern printf main: push 10 ...
-4
votes
1answer
88 views

What would be your output for this assembly code [closed]

I am learning Assembly on x86 and trying to understand a programe which will add two number. This code and done some modification on top of it to understand it better. section .data message1 db ...
-1
votes
1answer
40 views

NASM Stack Error? Simple Multiplication Program

I'm learning NASM at the moment and am making a simple program that does multiplication of any user-input variables through shifting and addition. I've been running into a series of issues: My ...
0
votes
2answers
78 views

x86 assembly read/write to file

I'm currently trying to write to a file so far I have the following code to append to the file. Does anybody know why this isn't working? It runs fine but by the end nothing has changed. ...
1
vote
1answer
41 views

crafting direct jump in visual studio

I want to a direct jump in Visual Studio. Because Visual Studio uses MASM which does not support direct jumps like jmp 0x12345678 I want to craft this jump with its op code. My code looks like this ...
2
votes
1answer
40 views

usage of fxch - assembly code - AT&T syntax

I'm trying to understand some assembly code with AT&T syntax. Here is a snippet: "mov %eax, %ebx; "\ "mov %eax, %ecx;"\ "fxch %st(1);"\ This is what I understood from it. the mov copies (Am ...
0
votes
1answer
34 views

Visual Studio Inline assembler not working as expected

Is MOV MUL_AXB[EBX * 4], EAX supposed to actually change the effective MUL_AXB address? I have declared MUL_AXB as int* MUL_AXB; on the global scope after the using statements and i have ...
3
votes
1answer
85 views

Readable text in dissassembled code

is there any widely used procedure for hiding readable strings? After debugging my code i found a lot of plain text. I can use some simple encryption (Caesar cipher etc...) but this solution will ...
1
vote
1answer
55 views

returning value from main() without glibc

I am trying to return a value from main() when compiling without GLIBC and it doesn't work. Lets this example that I found on internet: [niko@localhost tests]$ cat stubstart.S .globl _start _start: ...
0
votes
0answers
51 views

Cannot write to dsPIC30F OSCCON

My current project needs to have the dsPIC30F go into low power mode when it receives an external "low power warning" signal. I've verified that EnterLowPowerMode() does in fact execute. However, when ...
0
votes
2answers
79 views

Assembly rdtsc x64 ubuntu

I'm trying to use rdtsc function but i've got weird numbers. I'm trying to call this function from C code and pass the tick back to function. Can you tell me if im doing it right or not ? Asm code: ...
0
votes
2answers
60 views

Passing pointer from c to asm and add value to sse register

I want to pass the pointer to an array between C and ASM code. I've got an array of four double values and i need to pass them to asm, load them to xmm, multiply and return the pointer to four values ...
-1
votes
2answers
65 views

Best Microcontroller with these goals in mind [closed]

recently I wanted to start learning more low level types of programming from OS kernels to device drivers to embedded systems. A goal for me is to get a computer with no software at all on it to ...
4
votes
2answers
98 views

Creating and running executable by hand

Just for interest sake, I want to compile and run the simplest C program by hand; //t.c int main() { return 0; } So I want to do: $ cpp t.c : should do nothing in this case, since no ...
0
votes
0answers
87 views

what would be the data structure for 5 stage of pipelining of assembly line using c++? [closed]

I am trying to simulate assembly language using c++. So far I am able to push each instruction into a struct. I have also taken care of label. Now I want to simulate 5 stage of pipelining and also ...
1
vote
2answers
71 views

Does a CMP+JE consume more clock cycles than a single MUL?

I'm running an x86 processor, but I believe my question is pretty general. I'm curious about the theoretical difference in clock cycles consumed by a CMP + JE sequence versus a single MUL operation. ...
0
votes
4answers
74 views

What should I know to optimize programs? [closed]

I need to run a very computation-intensive program. Therefore the performance is my first concern. There are seems a lot of details of CPU should be taken into account. Like hardware pre-fetch, cache, ...
0
votes
2answers
35 views

Can't link object file using ld - Mac OS X

/********* exit.asm */ [SECTION .text] global _start _start: xor eax, eax xor ebx, ebx mov al, 1 int 0x80 //**************************** First I used nasm -f elf exit.asm to generate the object ...
-2
votes
1answer
85 views

What are the limitations of the data segment in the .exe file?

In C++, if we hardcode a lot of data in the source file, what are the limitations? Can we hardcode an entire Lord of the Rings novel into our exe file? PS: Yeah, I know it's bad programming practice ...
1
vote
1answer
57 views

Need explanation of the usage of assembler and Linux signal processing

I was working on an exception handler in C++. It will be used in a messaging protocol for maximum reliability - I want to get an answer back from a process that received a message at all times - even ...
4
votes
4answers
135 views

Compiler code generation comparisons

Ok, so all started here: Unsigned integer and unsigned char holding same value yet behaving differently why? I wrote the following application to understand what happens behind the scenes (ie, how ...
0
votes
1answer
90 views

how to write this in C

how to write this ASM code in C? loc_536FB0: mov cl, [eax] cmp cl, ' ' jb short loc_536FBC cmp cl, ',' jnz short loc_536FBF loc_536FBC: mov byte ptr [eax], ' ' loc_536FBF mov cl, [eax+1] inc eax ...
-5
votes
1answer
75 views

What do You think about learning these languages? [closed]

I'm a Software Engineering college student. I wanna learn these languages: 1-C 2-Assembly 3-C++ 4-PHP I like OS programming, but I like other types of programs,too. What do You think about these ...
0
votes
1answer
54 views

Bootloader using mixed code using EXTERN

I am creating simple calculator application on bootloader using mixed code including C language with Assembly Code. My C language Code is (addasm.c): #include int main() { bootmain(); ...
5
votes
2answers
114 views

GCC pushing a pointer into the eax and ebx registers

I need to push a pointer into the eax and one into the ebx register. I first solved this with: register int eax asm("eax"); register int ebx asm("ebx"); int main() { eax = ptr1; ebx = ptr2; ...
2
votes
1answer
74 views

Is the PEB address (0x07FFDA00) a RVA from the base addr of the loaded process?

I'm trying to work with the PEB struct in C/ASM, but before I'd like to understand some basics. I read somewhere that most processes have their PEB at address 0x07FFDA00. Now is this address ...
3
votes
1answer
82 views

Why is dynamic binary translation more practical than static binary translation?

When it comes to Binary Translation (Recompilation), I have always heard that dynamic binary translation is often a much better alternative to static binary translation, but I can't ever seem to grasp ...
-3
votes
0answers
73 views

Translate assembly to C [Erase Memory with PIC18] [closed]

I am trying to write to flash memory on my PIC18F87J11 but my problem lies with assembly. The datasheet for my PIC has only assembly and I am using C compiler. I was wondering if someone can help me ...
3
votes
2answers
96 views

make sure one cpu has written a “double” before another cpu read that “double”?

I'm going to running one OS on a dual-core ARM Cortex-A9 CPU (one core runs Linux, the other one has no OS). In the no-OS side we write a 64-bit double to DDR memory, then the Linux side reads it. ...
4
votes
2answers
67 views

__stack_size__, __stack_end__ symbols in 'C'

Is there a direct method in which the values of the stack_start and stack_end symbols can be referenced in a 'C' function? I can do this using a bit of assembler to read each symbol and place it to a ...

1 2 3 4 5 30