1. Introduce a new TargetOperandInfo::getRegClass() helper method
authorChris Lattner <sabre@nondot.org>
Wed, 29 Jul 2009 21:10:12 +0000 (21:10 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 29 Jul 2009 21:10:12 +0000 (21:10 +0000)
commitcb778a8634454c70d88955b3732f330a6cbe5b07
tree05ae9b449b85cb530a0eca41c2f518730eae8e2f
parenta938ac6223c5fd315ab745086d843df5e0604e09
1. Introduce a new TargetOperandInfo::getRegClass() helper method
   and convert code to using it, instead of having lots of things
   poke the isLookupPtrRegClass() method directly.

2. Make PointerLikeRegClass contain a 'kind' int, and store it in
   the existing regclass field of TargetOperandInfo when the
   isLookupPtrRegClass() predicate is set.  Make getRegClass pass
   this into TargetRegisterInfo::getPointerRegClass(), allowing
   targets to have multiple ptr_rc things.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77504 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/Target/Target.td
include/llvm/Target/TargetInstrDesc.h
lib/CodeGen/MachineVerifier.cpp
lib/Target/TargetInstrInfo.cpp
lib/Target/X86/X86InstrInfo.cpp
utils/TableGen/InstrInfoEmitter.cpp