2007-12-04 22:23:35 +00:00
|
|
|
//===-- SPUHazardRecognizers.h - Cell SPU Hazard Recognizer -----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-12-04 22:23:35 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines hazard recognizers for scheduling on the Cell SPU
|
|
|
|
// processor.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SPUHAZRECS_H
|
|
|
|
#define SPUHAZRECS_H
|
|
|
|
|
2009-01-15 22:18:12 +00:00
|
|
|
#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
|
2007-12-04 22:23:35 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-01-15 22:18:12 +00:00
|
|
|
|
|
|
|
class TargetInstrInfo;
|
2007-12-04 22:23:35 +00:00
|
|
|
|
|
|
|
/// SPUHazardRecognizer
|
2009-01-15 22:18:12 +00:00
|
|
|
class SPUHazardRecognizer : public ScheduleHazardRecognizer
|
2007-12-04 22:23:35 +00:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
const TargetInstrInfo &TII;
|
|
|
|
int EvenOdd;
|
|
|
|
|
|
|
|
public:
|
|
|
|
SPUHazardRecognizer(const TargetInstrInfo &TII);
|
2009-01-15 22:18:12 +00:00
|
|
|
virtual HazardType getHazardType(SUnit *SU);
|
|
|
|
virtual void EmitInstruction(SUnit *SU);
|
2007-12-04 22:23:35 +00:00
|
|
|
virtual void AdvanceCycle();
|
|
|
|
virtual void EmitNoop();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|