LLVM 18.0.0git
|
#include "llvm/CodeGen/ScheduleDAG.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/iterator_range.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
#include "llvm/CodeGen/SelectionDAGNodes.h"
#include "llvm/CodeGen/TargetInstrInfo.h"
#include "llvm/CodeGen/TargetRegisterInfo.h"
#include "llvm/CodeGen/TargetSubtargetInfo.h"
#include "llvm/Config/llvm-config.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
#include <algorithm>
#include <cassert>
#include <iterator>
#include <limits>
#include <utility>
#include <vector>
Go to the source code of this file.
Macros | |
#define | DEBUG_TYPE "pre-RA-sched" |
Functions | |
STATISTIC (NumNewPredsAdded, "Number of times a single predecessor was added") | |
STATISTIC (NumTopoInits, "Number of times the topological order has been recomputed") | |
Variables | |
static cl::opt< bool > | StressSchedOpt ("stress-sched", cl::Hidden, cl::init(false), cl::desc("Stress test instruction scheduling")) |
#define DEBUG_TYPE "pre-RA-sched" |
Definition at line 39 of file ScheduleDAG.cpp.
STATISTIC | ( | NumNewPredsAdded | , |
"Number of times a single predecessor was added" | |||
) |
STATISTIC | ( | NumTopoInits | , |
"Number of times the topological order has been recomputed" | |||
) |