Add function getRegClassIDOfType.

getRegClassIDOfValue is now just a wrapper around this.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1897 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Vikram S. Adve 2002-03-18 03:18:28 +00:00
parent 7482532129
commit 80347ecb14

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();