1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Remind ourselves to revisit the "pxor vs. xorps/xorpd to clear XMM registers"

issue. Need to do more experiments.

llvm-svn: 26247
This commit is contained in:
Evan Cheng 2006-02-17 00:04:28 +00:00
parent b0ec087c0f
commit c7b32ddecc

View File

@ -437,3 +437,9 @@ It might be better to generate
movw al, 8(%edx)
when we can spare a register. It reduces code size.
//===---------------------------------------------------------------------===//
It's not clear whether we should use pxor or xorps / xorpd to clear XMM
registers. The choice may depend on subtarget information. We should do some
more experiments on different x86 machines.