mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-11 13:46:13 +00:00
343f0c0467
is currently off by default, and can be enabled with -disable-post-RA-scheduler=false. This doesn't have a significant impact on most code yet because it doesn't yet do anything to address anti-dependencies and it doesn't attempt to disambiguate memory references. Also, several popular targets don't have pipeline descriptions yet. The majority of the changes here are splitting the SelectionDAG-specific code out of ScheduleDAG, so that ScheduleDAG can be moved to libLLVMCodeGen.a. The interface between ScheduleDAG-using code and the rest of the scheduling code is somewhat rough and will evolve. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59676 91177308-0d34-0410-b5e6-96231b3b80d8
42 lines
1.0 KiB
C++
42 lines
1.0 KiB
C++
//===-- SPUHazardRecognizers.h - Cell SPU Hazard Recognizer -----*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines hazard recognizers for scheduling on the Cell SPU
|
|
// processor.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SPUHAZRECS_H
|
|
#define SPUHAZRECS_H
|
|
|
|
#include "llvm/CodeGen/ScheduleDAGSDNodes.h"
|
|
#include "SPUInstrInfo.h"
|
|
|
|
namespace llvm {
|
|
|
|
/// SPUHazardRecognizer
|
|
class SPUHazardRecognizer : public HazardRecognizer
|
|
{
|
|
private:
|
|
const TargetInstrInfo &TII;
|
|
int EvenOdd;
|
|
|
|
public:
|
|
SPUHazardRecognizer(const TargetInstrInfo &TII);
|
|
virtual HazardType getHazardType(SDNode *Node);
|
|
virtual void EmitInstruction(SDNode *Node);
|
|
virtual void AdvanceCycle();
|
|
virtual void EmitNoop();
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif
|
|
|