The memory-layout tag has no wiki summary.
1
vote
1answer
50 views
Memory layout mismatching between CPU and GPU code with CUDA
I'm experiencing a very weird situation. I have this template structures:
#ifdef __CUDACC__
#define __HOSTDEVICE __host__ __device__
#else
#define __HOSTDEVICE
#endif
template <typename T>
...
1
vote
1answer
84 views
Does Repa specify its data's memory layout?
I can't see that Repa specifies memory layouts for the data in any of its "manifest representations". Is this specified somewhere?
Of course I can find out through experimentation, but I'd rather ...
1
vote
3answers
168 views
structure size in C
1 #include <stdio.h>
2
3
4 struct test {
5 char c;
6 int i;
7 double d;
8 void *p;
9 int a[0];
10 };
11 ...
1
vote
0answers
91 views
Python: Sending discontinuous data with mpi4py
I have a C-ordered matrix of dimensions (N,M)
mat = np.random.randn(N, M)
and which to send a column of this matrix through a persistent MPI request to another node. However, using mpi4py,
sreq = ...
4
votes
3answers
165 views
Alignment of bitfields inside unions
I'm a bit puzzled by how the following code gets layed out in memory:
struct Thing
{
union
{
unsigned value:24;
uint8_t bytes[3];
};
Thing(int v)
...
2
votes
1answer
712 views
Virtual tables and memory layout in multiple virtual inheritance
I have a several questions about multiple and virtual inheritance.
Consider following code:
struct A {
int a;
A() { f(0); }
A(int i) { f(i); }
virtual void f(int i) { cout << i; }
...
3
votes
3answers
203 views
Mismatch of 'this' address when base class is not polymorphic but derived is
There is this code:
#include <iostream>
class Base
{
public:
Base() {
std::cout << "Base: " << this << std::endl;
}
int x;
int y;
int z;
};
class ...
2
votes
5answers
359 views
C++ Memory layout of inheritance
If I have two classes, one inheriting from the other, and the child class only containing functions, will the memory layout be the same for both classes?
e.g.
class Base {
int a,b,c;
};
class ...
1
vote
1answer
109 views
size of text area
Consider the following program:
#include <stdio.h>
int main(void)
{
return 0;
}
When i run the following commands:
gcc memory-layout.c -o memory-layout
size memory-layout
I ...
1
vote
6answers
305 views
Why does virtual keyword increase the size of derived a class?
I have two classes - one base class and one derived from it :
class base {
int i ;
public :
virtual ~ base () { }
};
class derived : virtual public base { int j ; };
main()
{ cout << ...
3
votes
2answers
50 views
Safe to use Numeric.Complex with PInvoke? (It does not have LayoutKind.Sequential)
I want to use System.Numerics.Complex in an unmanaged PInvoke scenario. Using ILSpy, I noticed it does not have a LayoutKind.Sequential attribute assigned.
/// <summary>Represents a complex ...
0
votes
1answer
231 views
object byte alignment in xcode
Is there a way to get the compile-time byte alignment of a class instance in Xcode? In visual studio there is a flag (/d1reportSingleClassLayoutXXX where XXX is the class name) that will dump the ...
0
votes
1answer
368 views
Map the variables in executable to memory segments
Is there a tool in Linux which maps the different variable in an executable to it corresponding memory segments.
For example, if i have a initialized global variable int x = 10 in my executable, the ...
4
votes
2answers
387 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 ...
2
votes
2answers
1k 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
96 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.
...
4
votes
3answers
590 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 ...
4
votes
2answers
692 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 ...
8
votes
1answer
1k views
How does a memory map of a Windows process look like?
This might be a duplicate question. I wish to know how the memory map of a windows process look like? I am looking for details. Kindly provide links to blogs, articles and other relevant literature.
1
vote
1answer
206 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 ...
6
votes
5answers
914 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.
...
6
votes
4answers
2k 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 ...
0
votes
2answers
409 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 ...
2
votes
2answers
1k views
How many vptr will a object of class(uses single/multiple inheritance) have?
How many vptrs are usually needed for a object whose clas( child ) has single inheritance with a base class which multiple inherits base1 and base2. What is the strategy for identifying how many vptrs ...
9
votes
3answers
802 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;
}
...
14
votes
1answer
1k 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.
...
16
votes
4answers
12k 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 ...
3
votes
2answers
1k 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
3answers
761 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
891 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);
...