2002-12-17 04:03:08 +00:00
|
|
|
//===- MRegisterInfo.cpp - Target Register Information Implementation -----===//
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-12-17 04:03:08 +00:00
|
|
|
//
|
|
|
|
// This file implements the MRegisterInfo interface.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Target/MRegisterInfo.h"
|
2006-02-01 18:10:56 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2005-09-30 17:49:27 +00:00
|
|
|
MRegisterInfo::MRegisterInfo(const TargetRegisterDesc *D, unsigned NR,
|
2002-12-28 20:34:18 +00:00
|
|
|
regclass_iterator RCB, regclass_iterator RCE,
|
2005-04-22 17:54:37 +00:00
|
|
|
int CFSO, int CFDO)
|
2002-12-17 04:03:08 +00:00
|
|
|
: Desc(D), NumRegs(NR), RegClassBegin(RCB), RegClassEnd(RCE) {
|
|
|
|
assert(NumRegs < FirstVirtualRegister &&
|
|
|
|
"Target has too many physical registers!");
|
|
|
|
|
2002-12-28 20:34:18 +00:00
|
|
|
CallFrameSetupOpcode = CFSO;
|
|
|
|
CallFrameDestroyOpcode = CFDO;
|
2002-12-17 04:03:08 +00:00
|
|
|
}
|
|
|
|
|
2004-10-27 06:00:53 +00:00
|
|
|
MRegisterInfo::~MRegisterInfo() {}
|
|
|
|
|
2004-08-26 22:21:04 +00:00
|
|
|
std::vector<bool> MRegisterInfo::getAllocatableSet(MachineFunction &MF) const {
|
|
|
|
std::vector<bool> Allocatable(NumRegs);
|
|
|
|
for (MRegisterInfo::regclass_iterator I = regclass_begin(),
|
|
|
|
E = regclass_end(); I != E; ++I) {
|
|
|
|
const TargetRegisterClass *RC = *I;
|
|
|
|
for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF),
|
|
|
|
E = RC->allocation_order_end(MF); I != E; ++I)
|
|
|
|
Allocatable[*I] = true;
|
|
|
|
}
|
|
|
|
return Allocatable;
|
2005-04-21 22:55:34 +00:00
|
|
|
}
|