mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-04 09:11:43 +00:00
For long double constants, print an approximation of their value to the .s file to make it easier to read.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46407 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b753065f6d
commit
553c116a1b
@ -939,10 +939,13 @@ void AsmPrinter::EmitGlobalConstant(const Constant *CV, bool Packed) {
|
|||||||
// api needed to prevent premature destruction
|
// api needed to prevent premature destruction
|
||||||
APInt api = CFP->getValueAPF().convertToAPInt();
|
APInt api = CFP->getValueAPF().convertToAPInt();
|
||||||
const uint64_t *p = api.getRawData();
|
const uint64_t *p = api.getRawData();
|
||||||
|
APFloat DoubleVal = CFP->getValueAPF();
|
||||||
|
DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven);
|
||||||
if (TD->isBigEndian()) {
|
if (TD->isBigEndian()) {
|
||||||
O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 48)
|
O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 48)
|
||||||
<< "\t" << TAI->getCommentString()
|
<< "\t" << TAI->getCommentString()
|
||||||
<< " long double most significant halfword\n";
|
<< " long double most significant halfword of ~"
|
||||||
|
<< DoubleVal.convertToDouble() << "\n";
|
||||||
O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 32)
|
O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 32)
|
||||||
<< "\t" << TAI->getCommentString()
|
<< "\t" << TAI->getCommentString()
|
||||||
<< " long double next halfword\n";
|
<< " long double next halfword\n";
|
||||||
@ -958,7 +961,8 @@ void AsmPrinter::EmitGlobalConstant(const Constant *CV, bool Packed) {
|
|||||||
} else {
|
} else {
|
||||||
O << TAI->getData16bitsDirective() << uint16_t(p[1])
|
O << TAI->getData16bitsDirective() << uint16_t(p[1])
|
||||||
<< "\t" << TAI->getCommentString()
|
<< "\t" << TAI->getCommentString()
|
||||||
<< " long double least significant halfword\n";
|
<< " long double least significant halfword of ~"
|
||||||
|
<< DoubleVal.convertToDouble() << "\n";
|
||||||
O << TAI->getData16bitsDirective() << uint16_t(p[0])
|
O << TAI->getData16bitsDirective() << uint16_t(p[0])
|
||||||
<< "\t" << TAI->getCommentString()
|
<< "\t" << TAI->getCommentString()
|
||||||
<< " long double next halfword\n";
|
<< " long double next halfword\n";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user