Displaying 3 results from an estimated 3 matches for "bou_false".
2015 Nov 17
3
Mips unconditionally uses fast-isel?
> > The other thing that might work, is having TargetMachine remember how
> > the fast-isel option got set, and make OptLevelChanger do the right
> > thing. But that seems like a hack to work around Mips not obeying the
> > specified optimization level, honestly.
>
> I think we should do that as well. I don't think it's right that optnone
> enables Fast
2015 Nov 18
4
Mips unconditionally uses fast-isel?
...IS.TM.setFastISel(true);
}
Should be:
if (NewOptLevel == CodeGenOpt::None) {
DEBUG(dbgs() << "\nEnable FastISel for Function "
<< IS.MF->getFunction()->getName() << "\n");
IS.TM.setFastISel(EnableFastISelOption != cl::BOU_FALSE);
}
Where EnableFastISelOption has the same value as the global in LLVMTargetMachine.cpp
The main reason I'm asking for this is that I think it's weird to for optnone to use a different code generator
than -O0. These hidden overrides exist to help us debug code generation problem...
2015 Nov 18
2
Mips unconditionally uses fast-isel?
...IS.TM.setFastISel(true);
}
Should be:
if (NewOptLevel == CodeGenOpt::None) {
DEBUG(dbgs() << "\nEnable FastISel for Function "
<< IS.MF->getFunction()->getName() << "\n");
IS.TM.setFastISel(EnableFastISelOption != cl::BOU_FALSE);
}
Where EnableFastISelOption has the same value as the global in LLVMTargetMachine.cpp
The main reason I'm asking for this is that I think it's weird to for optnone to use a different code generator
than –O0. These hidden overrides exist to help us debug code generation problem...