aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Analysis/Expressions.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-07-21 19:07:19 +0000
committerChris Lattner <sabre@nondot.org>2001-07-21 19:07:19 +0000
commit19f31f28d8b4192ce241852b477147e2489c666b (patch)
treead354aafc753cb0c7a971dc9629875c9c97d6b6f /include/llvm/Analysis/Expressions.h
parentf98e88f7453df864a56bda6ca19cf70e09bf3e6e (diff)
More functionality, renamed API
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/Expressions.h')
-rw-r--r--include/llvm/Analysis/Expressions.h36
1 files changed, 17 insertions, 19 deletions
diff --git a/include/llvm/Analysis/Expressions.h b/include/llvm/Analysis/Expressions.h
index c21599f18e..0471fb21a6 100644
--- a/include/llvm/Analysis/Expressions.h
+++ b/include/llvm/Analysis/Expressions.h
@@ -13,48 +13,46 @@
#include <assert.h>
class Value;
class ConstPoolInt;
-struct ExprAnalysisResult;
+
+namespace analysis {
+
+struct ExprType;
// ClassifyExpression: Analyze an expression to determine the complexity of the
// expression, and which other values it depends on.
//
-ExprAnalysisResult ClassifyExpression(Value *Expr);
+ExprType ClassifyExpression(Value *Expr);
-// ExprAnalysisResult - Represent an expression of the form CONST*VAR+CONST
+// ExprType - Represent an expression of the form CONST*VAR+CONST
// or simpler. The expression form that yields the least information about the
// expression is just the Linear form with no offset.
//
-struct ExprAnalysisResult {
+struct ExprType {
enum ExpressionType {
Constant, // Expr is a simple constant, Offset is value
Linear, // Expr is linear expr, Value is Var+Offset
ScaledLinear, // Expr is scaled linear exp, Value is Scale*Var+Offset
- } ExprType;
+ } ExprTy;
const ConstPoolInt *Offset; // Offset of expr, or null if 0
Value *Var; // Var referenced, if Linear or above (null if 0)
const ConstPoolInt *Scale; // Scale of var if ScaledLinear expr (null if 1)
- inline ExprAnalysisResult(const ConstPoolInt *CPV = 0) {
+ inline ExprType(const ConstPoolInt *CPV = 0) {
Offset = CPV; Var = 0; Scale = 0;
- ExprType = Constant;
+ ExprTy = Constant;
}
- inline ExprAnalysisResult(Value *Val) {
+ inline ExprType(Value *Val) {
Var = Val; Offset = Scale = 0;
- ExprType = Var ? Linear : Constant;
+ ExprTy = Var ? Linear : Constant;
}
- inline ExprAnalysisResult(const ConstPoolInt *scale, Value *var,
- const ConstPoolInt *offset) {
- assert(!(Scale && !Var) && "Can't have scaled nonvariable!");
+ inline ExprType(const ConstPoolInt *scale, Value *var,
+ const ConstPoolInt *offset) {
Scale = scale; Var = var; Offset = offset;
- ExprType = Scale ? ScaledLinear : (Var ? Linear : Constant);
+ ExprTy = Scale ? ScaledLinear : (Var ? Linear : Constant);
}
-
-
-private:
- friend ExprAnalysisResult ClassifyExpression(Value *);
- inline ExprAnalysisResult operator+(const ConstPoolInt *Offset);
-
};
+} // End namespace analysis
+
#endif