Skip to content

ARM: Stop using setCmpLibcallCC in MachO case #142710

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 55 additions & 57 deletions llvm/lib/Target/ARM/ARMISelLowering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -523,67 +523,65 @@ ARMTargetLowering::ARMTargetLowering(const TargetMachine &TM,
Subtarget->hasARMOps() && !Subtarget->useSoftFloat()) {
static const struct {
const RTLIB::Libcall Op;
const char * const Name;
const ISD::CondCode Cond;
const char *const Name;
} LibraryCalls[] = {
// Single-precision floating-point arithmetic.
{ RTLIB::ADD_F32, "__addsf3vfp", ISD::SETCC_INVALID },
{ RTLIB::SUB_F32, "__subsf3vfp", ISD::SETCC_INVALID },
{ RTLIB::MUL_F32, "__mulsf3vfp", ISD::SETCC_INVALID },
{ RTLIB::DIV_F32, "__divsf3vfp", ISD::SETCC_INVALID },

// Double-precision floating-point arithmetic.
{ RTLIB::ADD_F64, "__adddf3vfp", ISD::SETCC_INVALID },
{ RTLIB::SUB_F64, "__subdf3vfp", ISD::SETCC_INVALID },
{ RTLIB::MUL_F64, "__muldf3vfp", ISD::SETCC_INVALID },
{ RTLIB::DIV_F64, "__divdf3vfp", ISD::SETCC_INVALID },

// Single-precision comparisons.
{ RTLIB::OEQ_F32, "__eqsf2vfp", ISD::SETNE },
{ RTLIB::UNE_F32, "__nesf2vfp", ISD::SETNE },
{ RTLIB::OLT_F32, "__ltsf2vfp", ISD::SETNE },
{ RTLIB::OLE_F32, "__lesf2vfp", ISD::SETNE },
{ RTLIB::OGE_F32, "__gesf2vfp", ISD::SETNE },
{ RTLIB::OGT_F32, "__gtsf2vfp", ISD::SETNE },
{ RTLIB::UO_F32, "__unordsf2vfp", ISD::SETNE },

// Double-precision comparisons.
{ RTLIB::OEQ_F64, "__eqdf2vfp", ISD::SETNE },
{ RTLIB::UNE_F64, "__nedf2vfp", ISD::SETNE },
{ RTLIB::OLT_F64, "__ltdf2vfp", ISD::SETNE },
{ RTLIB::OLE_F64, "__ledf2vfp", ISD::SETNE },
{ RTLIB::OGE_F64, "__gedf2vfp", ISD::SETNE },
{ RTLIB::OGT_F64, "__gtdf2vfp", ISD::SETNE },
{ RTLIB::UO_F64, "__unorddf2vfp", ISD::SETNE },

// Floating-point to integer conversions.
// i64 conversions are done via library routines even when generating VFP
// instructions, so use the same ones.
{ RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp", ISD::SETCC_INVALID },
{ RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp", ISD::SETCC_INVALID },
{ RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp", ISD::SETCC_INVALID },
{ RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp", ISD::SETCC_INVALID },

// Conversions between floating types.
{ RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp", ISD::SETCC_INVALID },
{ RTLIB::FPEXT_F32_F64, "__extendsfdf2vfp", ISD::SETCC_INVALID },

// Integer to floating-point conversions.
// i64 conversions are done via library routines even when generating VFP
// instructions, so use the same ones.
// FIXME: There appears to be some naming inconsistency in ARM libgcc:
// e.g., __floatunsidf vs. __floatunssidfvfp.
{ RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp", ISD::SETCC_INVALID },
{ RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp", ISD::SETCC_INVALID },
{ RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp", ISD::SETCC_INVALID },
{ RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp", ISD::SETCC_INVALID },
// Single-precision floating-point arithmetic.
{RTLIB::ADD_F32, "__addsf3vfp"},
{RTLIB::SUB_F32, "__subsf3vfp"},
{RTLIB::MUL_F32, "__mulsf3vfp"},
{RTLIB::DIV_F32, "__divsf3vfp"},

// Double-precision floating-point arithmetic.
{RTLIB::ADD_F64, "__adddf3vfp"},
{RTLIB::SUB_F64, "__subdf3vfp"},
{RTLIB::MUL_F64, "__muldf3vfp"},
{RTLIB::DIV_F64, "__divdf3vfp"},

// Single-precision comparisons.
{RTLIB::OEQ_F32, "__eqsf2vfp"},
{RTLIB::UNE_F32, "__nesf2vfp"},
{RTLIB::OLT_F32, "__ltsf2vfp"},
{RTLIB::OLE_F32, "__lesf2vfp"},
{RTLIB::OGE_F32, "__gesf2vfp"},
{RTLIB::OGT_F32, "__gtsf2vfp"},
{RTLIB::UO_F32, "__unordsf2vfp"},

// Double-precision comparisons.
{RTLIB::OEQ_F64, "__eqdf2vfp"},
{RTLIB::UNE_F64, "__nedf2vfp"},
{RTLIB::OLT_F64, "__ltdf2vfp"},
{RTLIB::OLE_F64, "__ledf2vfp"},
{RTLIB::OGE_F64, "__gedf2vfp"},
{RTLIB::OGT_F64, "__gtdf2vfp"},
{RTLIB::UO_F64, "__unorddf2vfp"},

// Floating-point to integer conversions.
// i64 conversions are done via library routines even when generating
// VFP
// instructions, so use the same ones.
{RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp"},
{RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp"},
{RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp"},
{RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp"},

// Conversions between floating types.
{RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp"},
{RTLIB::FPEXT_F32_F64, "__extendsfdf2vfp"},

// Integer to floating-point conversions.
// i64 conversions are done via library routines even when generating
// VFP
// instructions, so use the same ones.
// FIXME: There appears to be some naming inconsistency in ARM libgcc:
// e.g., __floatunsidf vs. __floatunssidfvfp.
{RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp"},
{RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp"},
{RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp"},
{RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp"},
};

for (const auto &LC : LibraryCalls) {
for (const auto &LC : LibraryCalls)
setLibcallName(LC.Op, LC.Name);
if (LC.Cond != ISD::SETCC_INVALID)
setCmpLibcallCC(LC.Op, LC.Cond);
}
}
}

Expand Down
Loading