Tagged Questions
The memory-layout tag has no wiki summary.
9
votes
1answer
548 views
Why do virtual memory addresses for linux binaries start at 0x8048000?
Disassembling an ELF binary on a Ubuntu x86 system I couldn't help but notice that the code(.text) section starts from the virtual address 0x8048000 and all lower memory addresses seem to be unused.
...
8
votes
4answers
4k views
C struct memory layout?
I have C# background. Very newbie to low level language like C.
In C#, struct's memory laid out by compiler by default. Compiler can re-order data fields or pad additional bits between fields ...
7
votes
3answers
425 views
Print layout of C++ object with g++ compiler
Is there a way to print the layout of a C++ object using the g++ compiler or any other means.
A simplified example (assuming int takes 4 bytes)
class A{
int a;
};
class B:public A{
int b;
}
...
4
votes
2answers
62 views
windows process memory layout
So I was playing with Olly debugger, sniffing around what I can yet find out about windows and I pressed that M button and it popped up that memory map window. So I googled up some articles on the ...
4
votes
2answers
228 views
Question about Linux process memory layout
I am talking about Intel 32-bit platform. Linux kernel version 2.6.31-14.
#include <stdio.h>
#include <stdlib.h>
int init_global_var = 10; /* Initialized global variable */
int ...
4
votes
5answers
302 views
Incrementing function pointers
I just learned about function pointers (pointers pointing at the adress where where the machine code of a function is stored). This made me think about machine code and how it is stored in memory.
...
3
votes
3answers
147 views
ELF64/x86_64 and start address of the memory mapping segment (for shared objects)
I have written several program and found out that when compiled in 64bit, the memory mapping segment (where for example shared objects and shared memory are kept) is always located somewhere around ...
3
votes
4answers
471 views
Finding the address range of the data segment
As a programming exercise, I am writing a mark-and-sweep garbage collector in C. I wish to scan the data segment (globals, etc.) for pointers to allocated memory, but I don't know how to get the range ...
3
votes
2answers
584 views
What is the memory layout of a Delphi dynamic array of dynamic array of X?
I am trying to call a procedure in a Delphi DLL from C#. The procedure expects the caller to preallocate and input an array of array of TSomeRecord, of which it will then manipulate the TSomeRecord ...
1
vote
2answers
141 views
Why is the ELF entry point 0x8048000 not changeable?
Following up ELF binary entry point and Why do virtual memory addresses for linux binaries start at 0x8048000?, why cannot I make ld use a different entry point than the default with ld -e?
If I do ...
1
vote
2answers
56 views
Interpreting a vector of structs of 3 ints as an array
OpenGL has functions such as BufferData(int array[]) where array must be of the format x-y-z x-y-z ....
It is simply a sequence of integers where each consecutive 3-tuple is interpreted as a vertex.
...
1
vote
1answer
128 views
How to read/write floating-point values to/from a byte array?
I'm sure this question has been asked many times before, so I did a quick search and found this Wikipedia page that explains the structure of a floating point value.
I'm sending and receiving data ...
1
vote
3answers
542 views
incorrect members order in a C# structure
I have a TCP Client,which puts a packet in a structure
using System.Runtime.InteropServices;
[StructLayoutAttribute(LayoutKind.Sequential)]
public struct tPacket_5000_E
{
public Int16 size;
...
1
vote
3answers
578 views
Variable sized class - C++
I've seen a class which is a class which is defined like this..
class StringChild : public StringBase
{
public:
//some non-virtual functions
static StringChild* CreateMe(int size);
...
0
votes
2answers
200 views
memory layout of vector<bool>
Can someone please explain the memory layout of the data stored in a vector<bool>?
like what layout does the memory have from address &myVec[0] upwards? Does it depend on endianness? Is the ...