blob: 31fdb24ec440d4745d4491bce1e79ccc8e7e484b [file] [log] [blame]
David Goodwin2e7be612009-10-26 16:59:04 +00001//=- llvm/CodeGen/AntiDepBreaker.h - Anti-Dependence Breaking -*- C++ -*-=//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the AntiDepBreaker class, which implements
11// anti-dependence breaking heuristics for post-register-allocation scheduling.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CODEGEN_ANTIDEPBREAKER_H
16#define LLVM_CODEGEN_ANTIDEPBREAKER_H
17
18#include "llvm/CodeGen/MachineBasicBlock.h"
19#include "llvm/CodeGen/MachineFrameInfo.h"
20#include "llvm/CodeGen/MachineFunction.h"
21#include "llvm/CodeGen/MachineRegisterInfo.h"
22#include "llvm/CodeGen/ScheduleDAG.h"
23#include "llvm/Target/TargetRegisterInfo.h"
24
25namespace llvm {
26
27/// AntiDepBreaker - This class works into conjunction with the
28/// post-RA scheduler to rename registers to break register
29/// anti-dependencies.
30class AntiDepBreaker {
31public:
32 /// Start - Initialize anti-dep breaking for a new basic block.
33 virtual void StartBlock(MachineBasicBlock *BB) =0;
34
35 /// BreakAntiDependencies - Identifiy anti-dependencies within a
36 /// basic-block region and break them by renaming registers. Return
37 /// the number of anti-dependencies broken.
38 ///
39 virtual unsigned BreakAntiDependencies(std::vector<SUnit>& SUnits,
40 MachineBasicBlock::iterator& Begin,
41 MachineBasicBlock::iterator& End,
42 unsigned InsertPosIndex) =0;
43
44 /// Observe - Update liveness information to account for the current
45 /// instruction, which will not be scheduled.
46 ///
47 virtual void Observe(MachineInstr *MI, unsigned Count,
48 unsigned InsertPosIndex) =0;
49
50 /// Finish - Finish anti-dep breaking for a basic block.
51 virtual void FinishBlock() =0;
52};
53
54}
55
56#endif