Displaying 1 result from an estimated 1 matches for "__mips16__mulsf3".
2012 Dec 07
0
[LLVMdev] overriding InitLibcallNames?
...rks and there is already this kind of soft
float library that is implemented as hard float mips32 functions.
Basically it is soft float but with different library entry names.
So for example, instead of Names[RTLIB::MUL_F32] = "__mulsf3";
I would want Names[RTLIB::MUL_F32] = "__mips16__mulsf3";
I'm trying to think of the best way to do this since soft float is not
done in target independent
code but this is a target dependent version of soft float.
I'll need to override a whole set of names and mips 16 hard float will
behave like soft float
except for the difference in...