Replace some calls to MemCopy with small constant sizes with memcpy
authorjochen@chromium.org <jochen@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Tue, 27 May 2014 12:02:44 +0000 (12:02 +0000)
committerjochen@chromium.org <jochen@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Tue, 27 May 2014 12:02:44 +0000 (12:02 +0000)
commit47cea50399f48cd9f4b79dcba1ed19c3d1809df2
treead030e4257072e95d74e28afd6d3d7d0918e496f
parent2097644fcfcb8dbd407a84872e34b6419fd769bf
Replace some calls to MemCopy with small constant sizes with memcpy

MemCopy is only meant for variable size, large (>64bytes) copies,
otherwise, it's probably slower than memcpy due to the call
overhead and the compiler can't optimize it away.

BUG=none
R=jkummerow@chromium.org
LOG=n

Review URL: https://codereview.chromium.org/306453005

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21519 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
src/arm/assembler-arm.cc
src/arm/constants-arm.cc
src/arm/simulator-arm.cc
src/atomicops_internals_x86_gcc.cc
src/conversions-inl.h
src/gdb-jit.cc
src/mips/assembler-mips.cc
src/mips/simulator-mips.cc