From 80347ecb148534169086c719c8228e4e03bdce96 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Mon, 18 Mar 2002 03:18:28 +0000 Subject: [PATCH] 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 --- include/llvm/Target/TargetRegInfo.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/llvm/Target/TargetRegInfo.h b/include/llvm/Target/TargetRegInfo.h index 5f88ae9e839..9b787bb5536 100644 --- a/include/llvm/Target/TargetRegInfo.h +++ b/include/llvm/Target/TargetRegInfo.h @@ -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();