Tagged Questions
C Programming Language function - "Copy block of memory"
13
votes
11answers
3k views
How to increase performance of memcpy
Summary:
memcpy seems unable to transfer over 2GB/sec on my system in a real or test application. What can I do to get faster memory-to-memory copies?
Full details:
As part of a data capture ...
12
votes
5answers
1k views
What makes Apple's PowerPC memcpy so fast?
I've written several copy functions in search of a good memory strategy on PowerPC. Using the Altivec or fp registers with cache hints (dcb*) doubles the performance over a simple byte copy loop for ...
10
votes
4answers
977 views
Can I call memcpy() and memmove() with “number of bytes” set to zero?
Do I need to treat cases when I actully have nothing to move/copy with memmove()/memcpy() as edge cases
int numberOfBytes = ...
if( numberOfBytes != 0 ) {
memmove( dest, source, numberOfBytes );
...
10
votes
12answers
3k views
faster alternative to memcpy?
I have a function that is doing memcpy, but it's taking up an enormous amount of cycles. Is there a faster alternative/approach than using memcpy to move a piece of memory?
10
votes
1answer
6k views
memcpy vs assignment in C
Under what circumstances should I expect memcpys to outperform assignments on modern INTEL/AMD hardware? I am using GCC 4.2.x on a 32 bit Intel platform (but am interested in 64 bit as well).
8
votes
1answer
290 views
A curious string copy function in C
When I was reading the nginx code, I have seen this function :
#define ngx_cpymem(dst, src, n) (((u_char *) memcpy(dst, src, n)) + (n))
static ngx_inline u_char *
ngx_copy(u_char *dst, u_char ...
8
votes
3answers
662 views
memcpy vs assignment in C — should be memmove?
As pointed out in an answer to this question, the compiler (in this case gcc-4.1.2, yes it's old, no I can't change it) can replace struct assignments with memcpy where it thinks it is appropriate.
...
8
votes
4answers
3k views
memcpy vs memmove
I am trying to understand the difference between memcpy and memmove and I have read the text that memcpy doesn't take care of the overlapping src and dest wheres memmove does.
However, when I execute ...
7
votes
7answers
741 views
What are real significant cases when memcpy() is faster than memmove()?
The key difference between memcpy() and memmove() is that memmove() will work fine when source and destination overlap. When buffers surely don't overlap memcpy() is preferable since it's potentially ...
7
votes
3answers
3k views
Fully optimized memcpy/memmove for Core 2 or Core i7 architecture?
The theoretical maximum of memory bandwidth for a Core 2 processor with DDR3 dual channel memory is impressive: According to the Wikipedia article on the architecture, 10+ or 20+ gigabytes per ...
6
votes
1answer
225 views
Is it guaranteed to be safe to perform memcpy(0,0,0)?
I am not so well-versed in the C standard, so please bear with me.
I would like to know if it is guaranteed, by the standard, that memcpy(0,0,0) is safe.
The only restriction I could find is that if ...
6
votes
4answers
405 views
memcpy adds ff ff ff to the beginning of a byte
I have an array that is like this:
unsigned char array[] = {'\xc0', '\x3f', '\x0e', '\x54', '\xe5', '\x20'};
unsigned char array2[6];
When I use memcpy:
memcpy(array2, array, 6);
And print both ...
6
votes
4answers
155 views
C strange array behaviour
After learning that both strncmp is not what it seems to be and strlcpy not being available on my operating system (Linux), I figured I could try and write it myself.
I found a quote from Ulrich ...
6
votes
4answers
819 views
c++ memcpy return value
according to http://www.cplusplus.com/reference/clibrary/cstring/memcpy/ c++'s memcpy takes three parameters: destination, source and size/bytes. it also returns a pointer. why is that so? aren't the ...
5
votes
2answers
263 views
Assignment or memcpy? What is the preferred approach to setting an array member variable?
For this example, I am working with objective-c, but answers from the broader C/C++ community are welcome.
@interface BSWidget : NSObject {
float tre[3];
}
@property(assign) float* tre;
.
- ...
5
votes
4answers
639 views
memcpy and pointers
I am confuse on how to read the pointers copied in an array using memcpy.
Following is what I have tried, but does not work.
Basically, I have allocated block of memory in which I am copying pointers ...
5
votes
6answers
482 views
Is the memcpy() function reentrant?
I call some C++ functions inside a signal handler and my program is terminated by segmentation fault.
When I check with gdb, memcpy() function is where i get SIGSEGV.
I would like to know if memcpy() ...
5
votes
7answers
881 views
Linux Device Driver: Symbol “memcpy” not found
I'm trying to write a Linux device driver. I've got it to work really well, until I tried to use "memcpy". I don't even get a compiler error, when I "make" it just warns me:
WARNING: "memcpy" ...
5
votes
11answers
1k views
memcpy(), what should the value of the size parameter be?
I want to copy an int array to another int array. They use the same define for length so they'll always be of the same length.
What are the pros/cons of the following two alternatives of the size ...
5
votes
5answers
733 views
Does “&s[0]” point to contiguous characters in a std::string?
I'm doing some maintenance work and ran across something like the following:
std::string s;
s.resize( strLength );
// strLength is a size_t with the length of a C string in it.
memcpy( ...
5
votes
6answers
934 views
Make compiler copy characters using movsd
I would like to copy a relatively short sequence of memory (less than 1 KB, typically 2-200 bytes) in a time critical function. The best code for this on CPU side seems to be rep movsd. However I ...
5
votes
7answers
1k views
Microsoft SDL and memcpy deprecation
As some of you may know, Microsoft banned memcpy() from their Security Development Lifecycle, replacing it with memcpy_s().
void *memcpy(void *dest, const void *src, size_t n);
/* simplified ...
5
votes
17answers
8k views
C strcpy() - evil?
Some people seem to think that C's strcpy() function is bad or evil. While I admit that it's usually better to use strncpy() in order to avoid buffer overflows, the following (an implementation of the ...
4
votes
3answers
104 views
avoid trap representation with memcpy
Please consider the following code:
float float_value = x; // x is any valid float value
int int_value = 0;
size_t size = sizeof(int) < sizeof(float) ? sizeof(int) : sizeof(float);
...
4
votes
5answers
267 views
C - Malloc and memcpy (memory management)
I'm a bit new to C and I'm having trouble understanding how memory works, especially in-built functions like memcpy.
Here's a struct I'm using
struct data_t {
int datasize;
void *data;
...
4
votes
4answers
141 views
Off-chip memcpy?
I was profiling a program today at work that does a lot of buffered network activity, and this program spent most of its time in memcpy, just moving data back and forth between library-managed network ...
4
votes
3answers
279 views
atomic memcpy suggestion
While testing a program for scalability, I came across the situation where I have to make my memcpy operation as atomic operation . I have to copy 64bytes of data from one location to other .
I came ...
4
votes
4answers
157 views
Is memcpy() safe when copy some content larger than dst?
Is it safe when the request_token.size() is larger than LEN?
char dst[LEN];
memcpy(dst, request_token.c_str(), request_token.size());
4
votes
1answer
338 views
What should replace “memcpy” inside OpenCL kernels?
The OpenCL language, which extends C99, does not provide the memcpy function. What should be used instead?
4
votes
3answers
308 views
How to copy memory from source thats not on byte alignment (shifted)
I can think of some nasty inefficient ways to accomplish this task, but I'm wondering what the best way is.
For example I want to copy 10 bytes starting at the 3rd bit in a byte and copy to a pointer ...
4
votes
7answers
2k views
How is each byte in an integer stored in CPU / memory?
i have tried this
char c[4];
int i=89;
memcpy(&c[0],&i,4);
cout<<(int)c[0]<<endl;
cout<<(int)c[1]<<endl;
cout<<(int)c[2]<<endl;
...
4
votes
15answers
1k views
C memcpy() a function
Is there any method to calculate size of a function? I have a pointer to a function and I have to copy entire function using memcpy. I have to malloc some space and know 3rd parameter of memcpy - ...
4
votes
6answers
4k views
Very fast memcpy for image processing?
I am doing image processing in C that requires copying large chunks of data around memory - the source and destination never overlap.
What is the absolute fastest way to do this on the x86 platform ...
4
votes
6answers
6k views
C Programming. How to deep copy a struct?
I have the following two structs where "child struct" has a "rusage struct" as an element.
Then I create two structs of type "child" let's call them childA and childB
How do I copy just the rusage ...
4
votes
4answers
1k views
Performance of list(…).insert(…)
I thought about the following question about computer's architecture. Suppose I do in Python
from bisect import bisect
index = bisect(x, a) # O(log n) (also, shouldn't it be a standard list ...
4
votes
9answers
4k views
Memcpy() in secure programming?
I recently stumbled across an article that claims Microsoft is banning the memcpy() function in its secure programming shops. I understand the vulnerabilities inherent in the function, but is it ...
3
votes
2answers
90 views
Converting an array of int to an array of char and back via memcpy in c++
I want to convert an array of int to an array of char and then back again, for serialization purposes.
It does not need to work cross-platform.
I came up with
//sample int array
int arr[] = ...
3
votes
2answers
75 views
Create an object in memory pointed to by a void pointer
If I have a void* to some chunk of free memory and I know there is at least sizeof(T) available, is there any way to create an object of type T in that location in memory?
I was just going to create ...
3
votes
2answers
389 views
Memcpy of native array to managed array in C++ CLI
Am I doing this right?
I get a pointer to a native array and need to copy to a managed array. Use memcpy() with a pin_ptr.
unsigned char* pArray;
unsigned int arrayCount;
// get pArray & ...
3
votes
2answers
173 views
Getting GCC to compile without inserting call to memcpy
I'm currently using GCC 4.5.3, compiled for PowerPC 440, and am compiling some code that doesn't require libc. I don't have any direct calls to memcpy(), but the compiler seems to be inserting one ...
3
votes
4answers
153 views
How can I copy a repeating pattern into a memory buffer?
I want write a repeating pattern of bytes into a block of memory. My idea is to write the first example of the pattern, and then copy it into the rest of the buffer. For example, if I start with this:
...
3
votes
1answer
118 views
streaming loads and non USWC memory
I just read this rather interesting article, Copying Accelerated Video Decode Frame Buffers.
Where they explain how to do copying from USWC memory as fast as possible using streaming loads.
My ...
3
votes
4answers
566 views
Swap pointers instead of memcpy
EDIT: I'm sorry for my mistakes in my code snippets, now I see both outputs were same. Below is an edited version.
Let's say I have a structure:
typedef struct
{
char m[5];
char f[6];
} ...
3
votes
4answers
141 views
memcpy copying partly over itself
Is this ok?
char buf[] = { 0, 1, 2 };
memcpy(buf, buf + 1, 2);
Does having a bigger datatype make any difference? I know I could use memmove(), but I'm just curious.
3
votes
4answers
228 views
C structure assignment of same address valid?
If I have something like this in my code:
void f(struct foo *x, struct foo *y)
{
*x = *y; // structure copy (memcpy?)
}
If x and y point to the same address, what happens?
Is this valid code, ...
3
votes
3answers
241 views
Why is memcpy not functioning properly?
I have a class for an RDT Header that holds information for an implementation of several reliable data transfer protocols. I need to attach that information (a total of 12 bytes) to my send buffer to ...
3
votes
4answers
674 views
memcpy segmentation fault on linux but not os x
I'm working on implementing a log based file system for a file as a class project. I have a good amount of it working on my 64 bit OS X laptop, but when I try to run the code on the CS department's 32 ...
3
votes
5answers
795 views
memmove, memcpy, and new
I am making a simple byte buffer that stores its data in a char array acquired with new and I was just wondering if the memcpy and memmove functions would give me anything weird if used on memory ...
3
votes
8answers
2k views
C++ equivalent for memset on char*
char * oldname = new char[strlen(name) + 1];
memcpy(oldname,name,strlen(name) + 1);
name = new char[strlen(oldname) + strlen(r.name) + 1];
memset(name, '\0', strlen(name));
...
3
votes
7answers
268 views
C++: Will structure be copied properly?
I have a pointer to a structure and I need to implement a method that will copy all of the memory contents of a structure. Generally speaking I need to perform a deep copy of a structure.
Here's the ...