Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DPartiallyInlineLibCalls.cpp66 Instruction *LibCall = Call->clone(); in optimizeSQRT() local
67 Builder.Insert(LibCall); in optimizeSQRT()
84 Phi->addIncoming(LibCall, LibCallBB); in optimizeSQRT()
/freebsd-12.1/contrib/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp123 setOperationAction(ISD::MUL, MVT::i16, LibCall); in MSP430TargetLowering()
135 setOperationAction(ISD::UDIV, MVT::i16, LibCall); in MSP430TargetLowering()
137 setOperationAction(ISD::UREM, MVT::i16, LibCall); in MSP430TargetLowering()
138 setOperationAction(ISD::SDIV, MVT::i16, LibCall); in MSP430TargetLowering()
140 setOperationAction(ISD::SREM, MVT::i16, LibCall); in MSP430TargetLowering()
/freebsd-12.1/contrib/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp2203 const char *LibCall = nullptr; in LowerF128Compare() local
2207 case SPCC::FCC_E : LibCall = is64Bit? "_Qp_feq" : "_Q_feq"; break; in LowerF128Compare()
2208 case SPCC::FCC_NE : LibCall = is64Bit? "_Qp_fne" : "_Q_fne"; break; in LowerF128Compare()
2209 case SPCC::FCC_L : LibCall = is64Bit? "_Qp_flt" : "_Q_flt"; break; in LowerF128Compare()
2210 case SPCC::FCC_G : LibCall = is64Bit? "_Qp_fgt" : "_Q_fgt"; break; in LowerF128Compare()
2211 case SPCC::FCC_LE : LibCall = is64Bit? "_Qp_fle" : "_Q_fle"; break; in LowerF128Compare()
2212 case SPCC::FCC_GE : LibCall = is64Bit? "_Qp_fge" : "_Q_fge"; break; in LowerF128Compare()
2220 case SPCC::FCC_UE : LibCall = is64Bit? "_Qp_cmp" : "_Q_cmp"; break; in LowerF128Compare()
2224 SDValue Callee = DAG.getExternalSymbol(LibCall, PtrVT); in LowerF128Compare()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DTargetLowering.h116 LibCall, // Don't try to expand this to other ops, always use a libcall. enumerator
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp855 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, LibCall); in ARMTargetLowering()
873 setOperationAction(ISD::SDIV, MVT::i32, LibCall); in ARMTargetLowering()
874 setOperationAction(ISD::UDIV, MVT::i32, LibCall); in ARMTargetLowering()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1237 case TargetLowering::LibCall: in LegalizeOp()