mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 06:38:44 +00:00
Add sub-register sets.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36277 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
34c82696b2
commit
a92d62c15f
@ -38,10 +38,13 @@ class Type;
|
||||
/// to a Zero terminated array of registers that this register aliases. This is
|
||||
/// needed for architectures like X86 which have AL alias AX alias EAX.
|
||||
/// Registers that this does not apply to simply should set this to null.
|
||||
/// The SubRegs field is a zero terminated array of registers that are
|
||||
/// sub-registers of the specific register, e.g. AL, AH are sub-registers of AX.
|
||||
///
|
||||
struct TargetRegisterDesc {
|
||||
const char *Name; // Assembly language name for the register
|
||||
const unsigned *AliasSet; // Register Alias Set, described above
|
||||
const unsigned *SubRegs; // Sub-register set, described above
|
||||
};
|
||||
|
||||
class TargetRegisterClass {
|
||||
|
Loading…
Reference in New Issue
Block a user