Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(992)

Unified Diff: src/platform.h

Issue 12790012: Lower limit for complex memcpy on non-ia32 architectures. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform.h
diff --git a/src/platform.h b/src/platform.h
index 56ac61dc7b6352a7323710daf5fd2c7445d28ef4..f2a228c926c23392103a25ea9aedb52ff4549a2a 100644
--- a/src/platform.h
+++ b/src/platform.h
@@ -348,7 +348,7 @@ class OS {
static void MemCopy(void* dest, const void* src, size_t size) {
memcpy(dest, src, size);
}
- static const int kMinComplexMemCopy = 256;
+ static const int kMinComplexMemCopy = 16 * kPointerSize;
#endif // V8_TARGET_ARCH_IA32
static int GetCurrentProcessId();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698