Add function getRegClassIDOfType.

getRegClassIDOfValue is now just a wrapper around this.

llvm-svn: 1897
This commit is contained in:
Vikram S. Adve 2002-03-18 03:18:28 +00:00
parent 493b8241e0
commit a1cbf5e076
1 changed files with 4 additions and 1 deletions

View File

@ -14,6 +14,7 @@
class TargetMachine;
class IGNode;
class Type;
class Value;
class LiveRangeInfo;
class Method;
@ -84,9 +85,11 @@ public:
// condition code register. If isCCReg is true below, the ID of the condition
// code regiter class will be returned. Otherwise, the normal register
// class (eg. int, float) must be returned.
virtual unsigned getRegClassIDOfType (const Type *type,
bool isCCReg = false) const =0;
virtual unsigned getRegClassIDOfValue (const Value *Val,
bool isCCReg = false) const =0;
inline unsigned int getNumOfRegClasses() const {
return MachineRegClassArr.size();