llvm-6502/lib/Target/SparcV9/ModuloScheduling/ModuloScheduling.cpp
2003-11-11 22:41:34 +00:00

47 lines
1.2 KiB
C++

//===-- ModuloScheduling.cpp - Software Pipeling Approach - SMS -----------===//
//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// The is a software pipelining pass based on the Swing Modulo Scheduling
// algorithm (SMS).
//
//===----------------------------------------------------------------------===//
#include "ModuloSchedGraph.h"
#include "llvm/Function.h"
#include "llvm/Pass.h"
namespace llvm {
namespace {
class ModuloScheduling : public FunctionPass {
public:
virtual bool runOnFunction(Function &F);
};
RegisterOpt<ModuloScheduling> X("modulo-sched",
"Modulo Scheduling/Software Pipelining");
}
/// Create Modulo Scheduling Pass
///
Pass *createModuloSchedPass() {
return new ModuloScheduling();
}
/// ModuloScheduling::runOnFunction - main transformation entry point
///
bool ModuloScheduling::runOnFunction(Function &F) {
bool Changed = false;
return Changed;
}
} // End llvm namespace