LLVM API Documentation
#include "llvm/CodeGen/RegAllocPBQP.h"#include "RegisterCoalescer.h"#include "Spiller.h"#include "llvm/Analysis/AliasAnalysis.h"#include "llvm/CodeGen/CalcSpillWeights.h"#include "llvm/CodeGen/LiveIntervalAnalysis.h"#include "llvm/CodeGen/LiveRangeEdit.h"#include "llvm/CodeGen/LiveStackAnalysis.h"#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"#include "llvm/CodeGen/MachineDominators.h"#include "llvm/CodeGen/MachineFunctionPass.h"#include "llvm/CodeGen/MachineLoopInfo.h"#include "llvm/CodeGen/MachineRegisterInfo.h"#include "llvm/CodeGen/RegAllocRegistry.h"#include "llvm/CodeGen/VirtRegMap.h"#include "llvm/IR/Module.h"#include "llvm/Support/Debug.h"#include "llvm/Support/FileSystem.h"#include "llvm/Support/raw_ostream.h"#include "llvm/Target/TargetInstrInfo.h"#include "llvm/Target/TargetMachine.h"#include "llvm/Target/TargetSubtargetInfo.h"#include <limits>#include <memory>#include <set>#include <sstream>#include <vector>
Go to the source code of this file.
Defines | |
| #define | DEBUG_TYPE "regalloc" |
Variables | |
| static RegisterRegAlloc | registerPBQPRepAlloc ("pbqp","PBQP register allocator", createDefaultPBQPRegisterAllocator) |
| static cl::opt< bool > | pbqpCoalescing ("pbqp-coalescing", cl::desc("Attempt coalescing during PBQP register allocation."), cl::init(false), cl::Hidden) |
| static cl::opt< bool > | pbqpDumpGraphs ("pbqp-dump-graphs", cl::desc("Dump graphs for each function/round in the compilation unit."), cl::init(false), cl::Hidden) |
| #define DEBUG_TYPE "regalloc" |
Definition at line 62 of file RegAllocPBQP.cpp.
cl::opt<bool> pbqpCoalescing("pbqp-coalescing", cl::desc("Attempt coalescing during PBQP register allocation."), cl::init(false), cl::Hidden) [static] |
Referenced by llvm::createDefaultPBQPRegisterAllocator().
cl::opt<bool> pbqpDumpGraphs("pbqp-dump-graphs", cl::desc("Dump graphs for each function/round in the compilation unit."), cl::init(false), cl::Hidden) [static] |
RegisterRegAlloc registerPBQPRepAlloc("pbqp","PBQP register allocator", createDefaultPBQPRegisterAllocator) [static] |