summaryrefslogtreecommitdiff
path: root/lib/Target/X86/README.txt
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2009-12-21 08:03:16 +0000
committerEli Friedman <eli.friedman@gmail.com>2009-12-21 08:03:16 +0000
commit1f1b0f748daf08c4364a34f0af5de692d023c29f (patch)
tree49852ddd23bfddf4cfcb54245f945be0bb2aa9d6 /lib/Target/X86/README.txt
parentb6219ba3d609d7f65285a41bad86626f7436f00f (diff)
downloadllvm-1f1b0f748daf08c4364a34f0af5de692d023c29f.tar.gz
llvm-1f1b0f748daf08c4364a34f0af5de692d023c29f.tar.bz2
llvm-1f1b0f748daf08c4364a34f0af5de692d023c29f.tar.xz
A couple minor README updates.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91823 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/README.txt')
-rw-r--r--lib/Target/X86/README.txt19
1 files changed, 5 insertions, 14 deletions
diff --git a/lib/Target/X86/README.txt b/lib/Target/X86/README.txt
index 9b7aab801e..afd9f53ea6 100644
--- a/lib/Target/X86/README.txt
+++ b/lib/Target/X86/README.txt
@@ -123,20 +123,6 @@ when it can invert the result of the compare for free.
//===---------------------------------------------------------------------===//
-How about intrinsics? An example is:
- *res = _mm_mulhi_epu16(*A, _mm_mul_epu32(*B, *C));
-
-compiles to
- pmuludq (%eax), %xmm0
- movl 8(%esp), %eax
- movdqa (%eax), %xmm1
- pmulhuw %xmm0, %xmm1
-
-The transformation probably requires a X86 specific pass or a DAG combiner
-target specific hook.
-
-//===---------------------------------------------------------------------===//
-
In many cases, LLVM generates code like this:
_test:
@@ -1762,6 +1748,11 @@ LBB1_1: ## bb1
cmpl $150, %edi
jne LBB1_1 ## bb1
+The issue is that we hoist the cast of "scaler" to long long outside of the
+loop, the value comes into the loop as two values, and
+RegsForValue::getCopyFromRegs doesn't know how to put an AssertSext on the
+constructed BUILD_PAIR which represents the cast value.
+
//===---------------------------------------------------------------------===//
Test instructions can be eliminated by using EFLAGS values from arithmetic