Add an option, defaulting to off, to disable the sse domain crossing opts.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102941 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2010-05-03 19:54:02 +00:00
parent 86b6f80a4c
commit 0b12348ddf

View File

@ -20,8 +20,14 @@
#include "llvm/Support/FormattedStream.h"
#include "llvm/Target/TargetOptions.h"
#include "llvm/Target/TargetRegistry.h"
#include "llvm/Support/CommandLine.h"
using namespace llvm;
static cl::opt<bool> DisableSSEDomain("disable-sse-domain",
cl::init(false), cl::Hidden,
cl::desc("Disable SSE Domain Fixing"));
static MCAsmInfo *createMCAsmInfo(const Target &T, StringRef TT) {
Triple TheTriple(TT);
switch (TheTriple.getOS()) {
@ -172,7 +178,8 @@ bool X86TargetMachine::addPostRegAlloc(PassManagerBase &PM,
bool X86TargetMachine::addPreEmitPass(PassManagerBase &PM,
CodeGenOpt::Level OptLevel) {
if (OptLevel != CodeGenOpt::None && Subtarget.hasSSE2()) {
if (OptLevel != CodeGenOpt::None && Subtarget.hasSSE2() &&
!DisableSSEDomain) {
PM.add(createSSEDomainFixPass());
return true;
}