Revision: 4937 Author: [email protected] Date: Thu Jun 24 04:21:58 2010 Log: Change kMinComplexMemCopy to 64 for IA32. It's just better. Review URL: http://codereview.chromium.org/2818028 http://code.google.com/p/v8/source/detail?r=4937
Modified: /branches/bleeding_edge/src/utils.h ======================================= --- /branches/bleeding_edge/src/utils.h Mon Jun 14 04:20:36 2010 +++ /branches/bleeding_edge/src/utils.h Thu Jun 24 04:21:58 2010 @@ -587,7 +587,7 @@ // Limit below which the extra overhead of the MemCopy function is likely // to outweigh the benefits of faster copying. // TODO(lrn): Try to find a more precise value. -static const int kMinComplexMemCopy = 256; +static const int kMinComplexMemCopy = 64; #else // V8_TARGET_ARCH_IA32 -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
