Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

I feel really confused about whats the difference with gcc soft-float support and the kernel NWFPE/FastFPE support?

confused feel gcc Kernel support
0
Posted

I feel really confused about whats the difference with gcc soft-float support and the kernel NWFPE/FastFPE support?

0

[31 January 2004 – np] Scenario 1 (hard-float): The compiler emits opcodes designed to be used with a hardware floating point coprocessor (FPU). The FPU usually has a set of extra registers for its use, and the compiler may as well pass floating point argument to functions through those registers. This is of course the best performing solution when a real hardware FPU is used. Scenario 2 (soft-float): the compiler converts floating point operations into function calls and a special library is used to provide all functions performing the required operations, all in software with no FPU instructions at all. There is obviously no extra floating point registers available in this case, therefore all FP arguments to functions have to be passed through standard registers or on the stack. This is of course the best performing solution when no hardware FPU is available, given that the library implementing the FP operations is optimally coded. Now, unfortunately, the default on ARM Linux has tra

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123