diff options
| author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-03-23 23:48:51 +0000 |
|---|---|---|
| committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-03-23 23:48:51 +0000 |
| commit | a86ccbfe8896342849a9ef70e382e23f6980e265 (patch) | |
| tree | 19c5dbecbd875074227eb85d1b18b3963635c231 /llvm/lib/Target/X86/X86InstrInfo.h | |
| parent | 4165bd677248c5db813c9b48a2e80e987d36aa98 (diff) | |
| download | bcm5719-llvm-a86ccbfe8896342849a9ef70e382e23f6980e265.tar.gz bcm5719-llvm-a86ccbfe8896342849a9ef70e382e23f6980e265.zip | |
Revert "Add a late SSEDomainFix pass that twiddles SSE instructions to avoid domain crossings."
This reverts commit 99345. It was breaking buildbots.
llvm-svn: 99352
Diffstat (limited to 'llvm/lib/Target/X86/X86InstrInfo.h')
| -rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.h b/llvm/lib/Target/X86/X86InstrInfo.h index c3dbae9a5ef..5111719a209 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.h +++ b/llvm/lib/Target/X86/X86InstrInfo.h @@ -486,9 +486,6 @@ class X86InstrInfo : public TargetInstrInfoImpl { /// MemOp2RegOpTable - Load / store unfolding opcode map. /// DenseMap<unsigned*, std::pair<unsigned, unsigned> > MemOp2RegOpTable; - - /// SSEInstrDomainTable - Map SSE opcodes to execution domain info. - DenseMap<unsigned, unsigned> SSEInstrDomainTable; public: explicit X86InstrInfo(X86TargetMachine &tm); @@ -719,14 +716,6 @@ public: /// unsigned getGlobalBaseReg(MachineFunction *MF) const; - /// Some SSE instructions come in variants for three domains. - enum SSEDomain { PackedInt, PackedSingle, PackedDouble, NotSSEDomain }; - - /// GetSSEDomain - Return the SSE execution domain of MI, or NotSSEDomain for - /// unknown instructions. If the instruction has equivalents for other domain, - /// equiv points to a list of opcodes index by domain. - SSEDomain GetSSEDomain(const MachineInstr *MI, const unsigned *&equiv) const; - private: MachineInstr * convertToThreeAddressWithLEA(unsigned MIOpc, MachineFunction::iterator &MFI, @@ -743,9 +732,6 @@ private: /// operand and follow operands form a reference to the stack frame. bool isFrameOperand(const MachineInstr *MI, unsigned int Op, int &FrameIndex) const; - - // Implemented in SSEDomainFix.cpp - void populateSSEInstrDomainTable(); }; } // End llvm namespace |

