Home
last modified time | relevance | path

Searched refs:LibCall (Results 1 – 11 of 11) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DPartiallyInlineLibCalls.cpp80 Instruction *LibCall = Call->clone(); in optimizeSQRT() local
81 Builder.Insert(LibCall); in optimizeSQRT()
97 Phi->addIncoming(LibCall, LibCallBB); in optimizeSQRT()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp126 setOperationAction(ISD::MUL, MVT::i16, LibCall); in MSP430TargetLowering()
138 setOperationAction(ISD::UDIV, MVT::i16, LibCall); in MSP430TargetLowering()
140 setOperationAction(ISD::UREM, MVT::i16, LibCall); in MSP430TargetLowering()
141 setOperationAction(ISD::SDIV, MVT::i16, LibCall); in MSP430TargetLowering()
143 setOperationAction(ISD::SREM, MVT::i16, LibCall); in MSP430TargetLowering()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp2212 const char *LibCall = nullptr; in LowerF128Compare() local
2216 case SPCC::FCC_E : LibCall = is64Bit? "_Qp_feq" : "_Q_feq"; break; in LowerF128Compare()
2217 case SPCC::FCC_NE : LibCall = is64Bit? "_Qp_fne" : "_Q_fne"; break; in LowerF128Compare()
2218 case SPCC::FCC_L : LibCall = is64Bit? "_Qp_flt" : "_Q_flt"; break; in LowerF128Compare()
2219 case SPCC::FCC_G : LibCall = is64Bit? "_Qp_fgt" : "_Q_fgt"; break; in LowerF128Compare()
2220 case SPCC::FCC_LE : LibCall = is64Bit? "_Qp_fle" : "_Q_fle"; break; in LowerF128Compare()
2221 case SPCC::FCC_GE : LibCall = is64Bit? "_Qp_fge" : "_Q_fge"; break; in LowerF128Compare()
2229 case SPCC::FCC_UE : LibCall = is64Bit? "_Qp_cmp" : "_Q_cmp"; break; in LowerF128Compare()
2233 SDValue Callee = DAG.getExternalSymbol(LibCall, PtrVT); in LowerF128Compare()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp425 setOperationAction(ISD::FADD, MVT::f128, LibCall); in AArch64TargetLowering()
428 setOperationAction(ISD::FDIV, MVT::f128, LibCall); in AArch64TargetLowering()
430 setOperationAction(ISD::FMUL, MVT::f128, LibCall); in AArch64TargetLowering()
438 setOperationAction(ISD::FSUB, MVT::f128, LibCall); in AArch64TargetLowering()
736 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, LibCall); in AArch64TargetLowering()
741 setOperationAction(ISD::ATOMIC_SWAP, MVT::i8, LibCall); in AArch64TargetLowering()
742 setOperationAction(ISD::ATOMIC_SWAP, MVT::i16, LibCall); in AArch64TargetLowering()
743 setOperationAction(ISD::ATOMIC_SWAP, MVT::i32, LibCall); in AArch64TargetLowering()
744 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, LibCall); in AArch64TargetLowering()
745 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i8, LibCall); in AArch64TargetLowering()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kISelLowering.cpp81 setOperationAction(ISD::MUL, MVT::i32, LibCall); in M68kTargetLowering()
82 setOperationAction(ISD::MUL, MVT::i64, LibCall); in M68kTargetLowering()
89 setOperationAction(OP, MVT::i32, LibCall); in M68kTargetLowering()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp1768 if (TLI->getOperationAction(ISD, VT) == TargetLowering::LibCall) in maybeLoweredToCall()
H A DARMISelLowering.cpp1169 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, LibCall); in ARMTargetLowering()
1187 setOperationAction(ISD::SDIV, MVT::i32, LibCall); in ARMTargetLowering()
1188 setOperationAction(ISD::UDIV, MVT::i32, LibCall); in ARMTargetLowering()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h199 LibCall, // Don't try to expand this to other ops, always use a libcall. enumerator
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp735 setOperationAction(ISD::FADD, MVT::f128, LibCall); in X86TargetLowering()
736 setOperationAction(ISD::STRICT_FADD, MVT::f128, LibCall); in X86TargetLowering()
737 setOperationAction(ISD::FSUB, MVT::f128, LibCall); in X86TargetLowering()
738 setOperationAction(ISD::STRICT_FSUB, MVT::f128, LibCall); in X86TargetLowering()
739 setOperationAction(ISD::FDIV, MVT::f128, LibCall); in X86TargetLowering()
740 setOperationAction(ISD::STRICT_FDIV, MVT::f128, LibCall); in X86TargetLowering()
741 setOperationAction(ISD::FMUL, MVT::f128, LibCall); in X86TargetLowering()
742 setOperationAction(ISD::STRICT_FMUL, MVT::f128, LibCall); in X86TargetLowering()
743 setOperationAction(ISD::FMA, MVT::f128, LibCall); in X86TargetLowering()
744 setOperationAction(ISD::STRICT_FMA, MVT::f128, LibCall); in X86TargetLowering()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1290 case TargetLowering::LibCall: in LegalizeOp()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp1212 setOperationAction(ISD::FADD, MVT::f128, LibCall); in PPCTargetLowering()
1213 setOperationAction(ISD::FSUB, MVT::f128, LibCall); in PPCTargetLowering()