LLVM API Documentation
#include "Spiller.h"
#include "llvm/CodeGen/LiveIntervalAnalysis.h"
#include "llvm/CodeGen/LiveRangeEdit.h"
#include "llvm/CodeGen/LiveStackAnalysis.h"
#include "llvm/CodeGen/MachineFrameInfo.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/MachineInstrBuilder.h"
#include "llvm/CodeGen/MachineLoopInfo.h"
#include "llvm/CodeGen/MachineRegisterInfo.h"
#include "llvm/CodeGen/VirtRegMap.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/ErrorHandling.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.
Defines | |
#define | DEBUG_TYPE "spiller" |
Enumerations | |
enum | SpillerName |
Variables | |
static cl::opt< SpillerName > | spillerOpt ("spiller", cl::desc("Spiller to use: (default: standard)"), cl::Prefix, cl::values(clEnumVal(trivial,"trivial spiller"), clEnumValN(inline_,"inline","inline spiller"), clEnumValEnd), cl::init(trivial)) |
#define DEBUG_TYPE "spiller" |
Definition at line 29 of file Spiller.cpp.
enum SpillerName |
Definition at line 32 of file Spiller.cpp.
cl::opt<SpillerName> spillerOpt("spiller", cl::desc("Spiller to use: (default: standard)"), cl::Prefix, cl::values(clEnumVal(trivial,"trivial spiller"),clEnumValN(inline_,"inline","inline spiller"),clEnumValEnd), cl::init(trivial)) [static] |
Referenced by llvm::createSpiller().