diff options
author | Chris Lattner <sabre@nondot.org> | 2003-07-23 21:41:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-07-23 21:41:57 +0000 |
commit | 2cd9196e8781ca004f8806b40d32efeff484269b (patch) | |
tree | 0223699ffc640c1a2cc9529989ea650252423199 /lib/Transforms | |
parent | eca0c5c3799ad04a0d3764b58bbdc6006aa2fb14 (diff) |
Add comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7283 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 7411428f40..6d5502533a 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -12,6 +12,15 @@ // // This is a simple worklist driven algorithm. // +// This pass guarantees that the following cannonicalizations are performed on +// the program: +// 1. If a binary operator has a constant operand, it is moved to the RHS +// 2. Logical operators with constant operands are always grouped so that +// 'or's are performed first, then 'and's, then 'xor's. +// 3. SetCC instructions are converted from <,>,<=,>= to ==,!= if possible +// 4. All SetCC instructions on boolean values are replaced with logical ops +// N. This list is incomplete +// //===----------------------------------------------------------------------===// #include "llvm/Transforms/Scalar.h" |