summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/README.txt
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2011-07-13 01:33:00 +0000
committerEvan Cheng <evan.cheng@apple.com>2011-07-13 01:33:00 +0000
commit3b737081e49ef7d640d50285b6cb5f686c75f63d (patch)
tree5decfcff2e841118272b8b7b33ef98d10fedc093 /lib/Target/ARM/README.txt
parent61905f0139bbcd59ad361aaff880ca0bbb5cc776 (diff)
downloadllvm-3b737081e49ef7d640d50285b6cb5f686c75f63d.tar.gz
llvm-3b737081e49ef7d640d50285b6cb5f686c75f63d.tar.bz2
llvm-3b737081e49ef7d640d50285b6cb5f686c75f63d.tar.xz
Add an entry.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135024 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/README.txt')
-rw-r--r--lib/Target/ARM/README.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/Target/ARM/README.txt b/lib/Target/ARM/README.txt
index 8ba9a27e95..2f6842e8cb 100644
--- a/lib/Target/ARM/README.txt
+++ b/lib/Target/ARM/README.txt
@@ -681,3 +681,21 @@ is compiled and optimized to:
str r1, [r0]
//===---------------------------------------------------------------------===//
+
+Improve codegen for select's:
+if (x != 0) x = 1
+if (x == 1) x = 1
+
+ARM codegen used to look like this:
+ mov r1, r0
+ cmp r1, #1
+ mov r0, #0
+ moveq r0, #1
+
+The naive lowering select between two different values. It should recognize the
+test is equality test so it's more a conditional move rather than a select:
+ cmp r0, #1
+ movne r0, #0
+
+Currently this is a ARM specific dag combine. We probably should make it into a
+target-neutral one.