2001-11-01 02:41:52 +00:00
|
|
|
//===-- LevelChange.h - Passes for raising/lowering llvm code ----*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// This family of passes is useful for changing the 'level' of a module. This
|
|
|
|
// can either be raising (f.e. converting direct addressing to use getelementptr
|
|
|
|
// for structs and arrays), or lowering (for instruction selection).
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TRANSFORMS_LEVELCHANGE_H
|
|
|
|
#define LLVM_TRANSFORMS_LEVELCHANGE_H
|
|
|
|
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
|
|
|
|
// RaisePointerReferences - Try to eliminate as many pointer arithmetic
|
|
|
|
// expressions as possible, by converting expressions to use getelementptr and
|
|
|
|
// friends.
|
|
|
|
//
|
2002-01-21 07:31:50 +00:00
|
|
|
struct RaisePointerReferences : public MethodPass {
|
2001-11-01 02:41:52 +00:00
|
|
|
static bool doit(Method *M);
|
|
|
|
|
2002-01-21 07:31:50 +00:00
|
|
|
virtual bool runOnMethod(Method *M) { return doit(M); }
|
2001-11-01 02:41:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// EliminateAuxillaryInductionVariables - Eliminate all aux indvars. This
|
|
|
|
// converts all induction variables to reference a cannonical induction
|
|
|
|
// variable (which starts at 0 and counts by 1).
|
|
|
|
//
|
2002-01-21 07:31:50 +00:00
|
|
|
struct EliminateAuxillaryInductionVariables : public MethodPass {
|
2001-11-01 02:41:52 +00:00
|
|
|
static bool doit(Method *M) { return false; } // TODO!
|
|
|
|
|
2002-01-21 07:31:50 +00:00
|
|
|
virtual bool runOnMethod(Method *M) { return doit(M); }
|
2001-11-01 02:41:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|