diff options
| author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-02-16 17:56:06 +0000 |
|---|---|---|
| committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-02-16 17:56:06 +0000 |
| commit | bc6ba479b6df7bc4cf284a92873b7ba6c2430e56 (patch) | |
| tree | 7814aafc2adea75cbd4d2219200f3394115af2ed /llvm/lib | |
| parent | 97e3115dc26b8932095519348fdd9a0ca003658e (diff) | |
| download | bcm5719-llvm-bc6ba479b6df7bc4cf284a92873b7ba6c2430e56.tar.gz bcm5719-llvm-bc6ba479b6df7bc4cf284a92873b7ba6c2430e56.zip | |
Remove the YMM_HI_6_15 hack.
Call clobbers are now represented with register mask operands. The
regmask can easily represent the fact that xmm6 is call-preserved while
ymm6 isn't. This is automatically computed by TableGen from the
CalleeSavedRegs containing xmm6.
llvm-svn: 150709
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/X86/X86RegisterInfo.td | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/Target/X86/X86RegisterInfo.td b/llvm/lib/Target/X86/X86RegisterInfo.td index d98eea3e377..5263a4934cb 100644 --- a/llvm/lib/Target/X86/X86RegisterInfo.td +++ b/llvm/lib/Target/X86/X86RegisterInfo.td @@ -206,13 +206,6 @@ let Namespace = "X86" in { def YMM15: RegisterWithSubRegs<"ymm15", [XMM15]>, DwarfRegAlias<XMM15>; } - // Pseudo-register that aliases the high part of ymm6-ymm15 that is clobbered - // by win64 calls. Doesn't alias the callee-saved xmm6-xmm15. - def YMM_HI_6_15 : Register<"ymmhi-6-15"> { - let Aliases = [YMM6, YMM7, YMM8, YMM9, YMM10, YMM11, YMM12, YMM13, YMM14, - YMM15]; - } - class STRegister<string Name, list<Register> A> : Register<Name> { let Aliases = A; } |

