|
LLVM
4.0.0
|
#include "SplitKit.h"#include "llvm/ADT/Statistic.h"#include "llvm/CodeGen/LiveIntervalAnalysis.h"#include "llvm/CodeGen/LiveRangeEdit.h"#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"#include "llvm/CodeGen/MachineDominators.h"#include "llvm/CodeGen/MachineInstrBuilder.h"#include "llvm/CodeGen/MachineLoopInfo.h"#include "llvm/CodeGen/MachineRegisterInfo.h"#include "llvm/CodeGen/VirtRegMap.h"#include "llvm/Support/Debug.h"#include "llvm/Support/raw_ostream.h"#include "llvm/Target/TargetInstrInfo.h"#include "llvm/Target/TargetMachine.h"Go to the source code of this file.
Macros | |
| #define | DEBUG_TYPE "regalloc" |
Functions | |
| STATISTIC (NumFinished,"Number of splits finished") | |
| STATISTIC (NumSimple,"Number of splits that were simple") | |
| STATISTIC (NumCopies,"Number of copies inserted for splitting") | |
| STATISTIC (NumRemats,"Number of rematerialized defs for splitting") | |
| STATISTIC (NumRepairs,"Number of invalid live ranges repaired") | |
| static bool | removeDeadSegment (SlotIndex Def, LiveRange &LR) |
| #define DEBUG_TYPE "regalloc" |
Definition at line 32 of file SplitKit.cpp.
Definition at line 1083 of file SplitKit.cpp.
References llvm::LiveRange::Segment::end, llvm::SlotIndex::getDeadSlot(), llvm::LiveRange::getSegmentContaining(), and llvm::LiveRange::removeSegment().
| STATISTIC | ( | NumFinished | , |
| "Number of splits finished" | |||
| ) |
| STATISTIC | ( | NumSimple | , |
| "Number of splits that were simple" | |||
| ) |
| STATISTIC | ( | NumRemats | , |
| "Number of rematerialized defs for splitting" | |||
| ) |
| STATISTIC | ( | NumRepairs | , |
| "Number of invalid live ranges repaired" | |||
| ) |
1.8.6