diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-05-10 05:40:37 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-05-10 05:40:37 +0000 |
| commit | f3d6e41d29c5c511d768ea1b18d068ccb9a1b0d4 (patch) | |
| tree | 1783551bf21cf20d167045db4ef5836689644dc0 /llvm | |
| parent | 3b13b58ef01f598f64d2eaa6d6dfb6581d5dba42 (diff) | |
| download | bcm5719-llvm-f3d6e41d29c5c511d768ea1b18d068ccb9a1b0d4.tar.gz bcm5719-llvm-f3d6e41d29c5c511d768ea1b18d068ccb9a1b0d4.zip | |
Add prototype for the PiNodeInserter pass
llvm-svn: 2592
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Transforms/Scalar.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/llvm/include/llvm/Transforms/Scalar.h b/llvm/include/llvm/Transforms/Scalar.h index ba8b90ca47d..b649deec108 100644 --- a/llvm/include/llvm/Transforms/Scalar.h +++ b/llvm/include/llvm/Transforms/Scalar.h @@ -98,6 +98,29 @@ Pass *createInstructionCombiningPass(); //===----------------------------------------------------------------------===// // +// PiNodeInsertion - This pass inserts single entry Phi nodes into basic blocks +// that are preceeded by a conditional branch, where the branch gives +// information about the operands of the condition. For example, this C code: +// if (x == 0) { ... = x + 4; +// becomes: +// if (x == 0) { +// x2 = phi(x); // Node that can hold data flow information about X +// ... = x2 + 4; +// +// Since the direction of the condition branch gives information about X itself +// (whether or not it is zero), some passes (like value numbering or ABCD) can +// use the inserted Phi/Pi nodes as a place to attach information, in this case +// saying that X has a value of 0 in this scope. The power of this analysis +// information is that "in the scope" translates to "for all uses of x2". +// +// This special form of Phi node is refered to as a Pi node, following the +// terminology defined in the "Array Bounds Checks on Demand" paper. +// +Pass *createPiNodeInsertionPass(); + + +//===----------------------------------------------------------------------===// +// // This pass is used to promote memory references to be register references. A // simple example of the transformation performed by this pass is: // |

