Re: [PATCH 06/61] 8xx: Don't call non-existent Soft_emulate_8xx from SoftwareEmulation.
From: Kumar Gala <hidden>
Date: 2007-07-18 19:07:15
On Jul 18, 2007, at 11:22 AM, Scott Wood wrote:
Kumar Gala wrote:quoted
On Jul 17, 2007, at 8:33 PM, Scott Wood wrote:quoted
On arch/ppc, Soft_emulate_8xx was used when full math emulation was turned off to emulate a minimal subset of floating point load/store instructions, to avoid needing a soft-float toolchain. This function is called, but not present, on arch/powerpc, causing a build error if floating point emulation is turned off. As soft-float toolchains are now common, I'm deleting the call rather than moving Soft_emulate_8xx over to arch/powerpc.We should move the Soft_emulate_8xx code over. I see no reason to break a usage model that existed in arch/ppc.According to the comment in softemu8xx.c, the only reason for it was that "it was easier than trying to get the libraries compiled for software floating point." Given that soft-float toolchains are easily had now, and that full emulation could be used if one really needs to work with hard-float binaries, I don't really see the need for this... If you want to move it over and test it, though, be my guest. :-)
I don't see any reason to break people that might not have updated their toolchains. There is no reason for us to drop a feature like this w/o some additional warning. I think its fine to just move the code over from arch/powerpc and than in the future we can deal with removing it in a more "proper" manor. - k